orc-shared 1.7.0-dev.8 → 5.2.0-dev.1

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 (175) hide show
  1. package/dist/actions/modules.js +15 -1
  2. package/dist/actions/navigation.js +1 -14
  3. package/dist/actions/scopes.js +2 -3
  4. package/dist/buildStore.js +1 -7
  5. package/dist/components/AppFrame/Sidebar.js +8 -4
  6. package/dist/components/MaterialUI/DataDisplay/Notification.js +0 -6
  7. package/dist/components/MaterialUI/DataDisplay/PredefinedElements/InformationItem.js +6 -18
  8. package/dist/components/MaterialUI/DataDisplay/PredefinedElements/StepperModal.js +1 -2
  9. package/dist/components/MaterialUI/DataDisplay/TooltippedElements/MultipleLinesText.js +2 -4
  10. package/dist/components/MaterialUI/DataDisplay/tableHelpers.js +7 -7
  11. package/dist/components/MaterialUI/Inputs/Autocomplete.js +0 -5
  12. package/dist/components/MaterialUI/Inputs/DatePicker.js +8 -15
  13. package/dist/components/MaterialUI/Inputs/InputBase.js +16 -102
  14. package/dist/components/MaterialUI/Inputs/InputBaseProps.js +1 -7
  15. package/dist/components/MaterialUI/Inputs/PredefinedElements/SearchControl.js +46 -43
  16. package/dist/components/MaterialUI/Inputs/TimePicker.js +2 -5
  17. package/dist/components/MaterialUI/Navigation/DropDownMenu.js +1 -6
  18. package/dist/components/MaterialUI/Surfaces/SectionExpansionPanel.js +0 -1
  19. package/dist/components/MaterialUI/hocs/withDeferredTooltip.js +1 -3
  20. package/dist/components/Routing/Page.js +1 -4
  21. package/dist/components/Routing/SegmentPage.js +1 -4
  22. package/dist/components/Routing/SubPage.js +8 -38
  23. package/dist/components/Scope/useScopeConfirmationModalState.js +3 -1
  24. package/dist/constants.js +2 -18
  25. package/dist/content/icons/hide.svg +1 -10
  26. package/dist/content/icons/open-in-new-tab.svg +1 -3
  27. package/dist/content/iconsSheet.svg +650 -117
  28. package/dist/content/orckestra-logo-white.png +0 -0
  29. package/dist/hooks/useEditState.js +2 -4
  30. package/dist/reducers/modules.js +3 -4
  31. package/dist/reducers/navigation.js +0 -16
  32. package/dist/reducers/request.js +1 -6
  33. package/dist/reducers/scopes.js +0 -3
  34. package/dist/reducers/view.js +1 -1
  35. package/dist/selectors/authentication.js +1 -15
  36. package/dist/selectors/metadata.js +1 -1
  37. package/dist/sharedMessages.js +1 -17
  38. package/dist/utils/propertyHelper.js +0 -33
  39. package/dist/utils/timezoneHelper.js +1 -23
  40. package/package.json +7 -10
  41. package/src/actions/modules.js +10 -0
  42. package/src/actions/modules.test.js +14 -0
  43. package/src/actions/navigation.js +0 -7
  44. package/src/actions/navigation.test.js +0 -12
  45. package/src/actions/scopes.js +1 -2
  46. package/src/actions/scopes.test.js +1 -2
  47. package/src/buildStore.js +0 -6
  48. package/src/components/AppFrame/About.test.js +3 -3
  49. package/src/components/AppFrame/Sidebar.js +3 -4
  50. package/src/components/Form/InputField.test.js +0 -18
  51. package/src/components/Form/Inputs/Date.test.js +0 -18
  52. package/src/components/MaterialUI/DataDisplay/Notification.js +0 -6
  53. package/src/components/MaterialUI/DataDisplay/Notification.test.js +0 -37
  54. package/src/components/MaterialUI/DataDisplay/PredefinedElements/InformationItem.js +5 -23
  55. package/src/components/MaterialUI/DataDisplay/PredefinedElements/InformationItem.test.js +0 -121
  56. package/src/components/MaterialUI/DataDisplay/PredefinedElements/StepperModal.js +1 -2
  57. package/src/components/MaterialUI/DataDisplay/PredefinedElements/StepperModal.test.js +0 -20
  58. package/src/components/MaterialUI/DataDisplay/TooltippedElements/MultipleLinesText.js +1 -2
  59. package/src/components/MaterialUI/DataDisplay/tableHelpers.js +8 -8
  60. package/src/components/MaterialUI/DataDisplay/tableHelpers.test.js +0 -93
  61. package/src/components/MaterialUI/Inputs/Autocomplete.js +0 -5
  62. package/src/components/MaterialUI/Inputs/Autocomplete.test.js +0 -15
  63. package/src/components/MaterialUI/Inputs/DatePicker.js +3 -17
  64. package/src/components/MaterialUI/Inputs/DatePicker.test.js +1 -143
  65. package/src/components/MaterialUI/Inputs/InputBase.js +15 -103
  66. package/src/components/MaterialUI/Inputs/InputBase.test.js +1 -376
  67. package/src/components/MaterialUI/Inputs/InputBaseProps.js +0 -6
  68. package/src/components/MaterialUI/Inputs/InputBaseProps.test.js +0 -6
  69. package/src/components/MaterialUI/Inputs/PredefinedElements/SearchControl.js +27 -39
  70. package/src/components/MaterialUI/Inputs/PredefinedElements/SearchControl.test.js +34 -39
  71. package/src/components/MaterialUI/Inputs/TimePicker.js +1 -5
  72. package/src/components/MaterialUI/Navigation/DropDownMenu.js +1 -6
  73. package/src/components/MaterialUI/Surfaces/SectionExpansionPanel.js +0 -1
  74. package/src/components/MaterialUI/hocs/withDeferredTooltip.js +1 -2
  75. package/src/components/MaterialUI/hocs/withDeferredTooltip.test.js +0 -52
  76. package/src/components/Routing/Page.js +1 -12
  77. package/src/components/Routing/SegmentPage.js +1 -12
  78. package/src/components/Routing/SubPage.js +9 -41
  79. package/src/components/Routing/SubPage.test.js +1 -295
  80. package/src/components/Scope/useScopeConfirmationModalState.js +3 -1
  81. package/src/components/Scope/useScopeConfirmationModalState.test.js +35 -4
  82. package/src/components/Text.test.js +59 -44
  83. package/src/constants.js +0 -15
  84. package/src/content/icons/hide.svg +1 -10
  85. package/src/content/icons/open-in-new-tab.svg +1 -3
  86. package/src/content/iconsSheet.svg +650 -117
  87. package/src/content/orckestra-logo-white.png +0 -0
  88. package/src/hooks/useEditState.js +2 -12
  89. package/src/hooks/useEditState.test.js +1 -1
  90. package/src/hooks/useLabelMessage.test.js +10 -16
  91. package/src/reducers/modules.js +4 -4
  92. package/src/reducers/modules.test.js +5 -5
  93. package/src/reducers/navigation.js +0 -24
  94. package/src/reducers/navigation.test.js +0 -38
  95. package/src/reducers/request.js +1 -6
  96. package/src/reducers/request.test.js +0 -34
  97. package/src/reducers/scopes.js +0 -3
  98. package/src/reducers/scopes.test.js +0 -47
  99. package/src/reducers/view.js +1 -1
  100. package/src/reducers/view.test.js +8 -1
  101. package/src/selectors/authentication.js +0 -13
  102. package/src/selectors/authentication.test.js +0 -322
  103. package/src/selectors/metadata.js +1 -1
  104. package/src/selectors/metadata.test.js +0 -12
  105. package/src/sharedMessages.js +1 -17
  106. package/src/translations/en-US.json +12 -16
  107. package/src/translations/fr-CA.json +12 -16
  108. package/src/utils/propertyHelper.js +0 -38
  109. package/src/utils/propertyHelper.test.js +0 -160
  110. package/src/utils/timezoneHelper.js +0 -18
  111. package/src/utils/timezoneHelper.test.js +1 -23
  112. package/dist/actions/globalErrorMessages.js +0 -63
  113. package/dist/actions/tasks.js +0 -170
  114. package/dist/components/MaterialUI/DataDisplay/PredefinedElements/GlobalErrorMessages.js +0 -160
  115. package/dist/components/MaterialUI/DataDisplay/PredefinedElements/LookupDisplayValue.js +0 -88
  116. package/dist/components/TaskDetailsModal.js +0 -191
  117. package/dist/content/icons/anonymize.svg +0 -3
  118. package/dist/content/icons/archives.svg +0 -3
  119. package/dist/content/icons/clean-index.svg +0 -3
  120. package/dist/content/icons/date-index.svg +0 -3
  121. package/dist/content/icons/inventory.svg +0 -4
  122. package/dist/content/icons/query-tester.svg +0 -10
  123. package/dist/content/icons/reciprocity.svg +0 -10
  124. package/dist/content/icons/schema.svg +0 -11
  125. package/dist/content/icons/synonyms.svg +0 -3
  126. package/dist/content/icons/tenant.svg +0 -3
  127. package/dist/content/icons/time-index.svg +0 -3
  128. package/dist/hooks/useDispatchWithErrorHandling.js +0 -103
  129. package/dist/hooks/useScopeGuardLoader.js +0 -77
  130. package/dist/reducers/globalErrorMessages.js +0 -78
  131. package/dist/reducers/scopeRouteState.js +0 -83
  132. package/dist/reducers/tasks.js +0 -98
  133. package/dist/selectors/globalErrorMessages.js +0 -57
  134. package/dist/selectors/scopeRouteState.js +0 -53
  135. package/dist/selectors/tasks.js +0 -64
  136. package/dist/utils/responseProcessingHelper.js +0 -86
  137. package/src/actions/globalErrorMessages.js +0 -12
  138. package/src/actions/globalErrorMessages.test.js +0 -21
  139. package/src/actions/tasks.js +0 -77
  140. package/src/actions/tasks.test.js +0 -169
  141. package/src/components/MaterialUI/DataDisplay/PredefinedElements/GlobalErrorMessages.js +0 -108
  142. package/src/components/MaterialUI/DataDisplay/PredefinedElements/GlobalErrorMessages.test.js +0 -468
  143. package/src/components/MaterialUI/DataDisplay/PredefinedElements/LookupDisplayValue.js +0 -29
  144. package/src/components/MaterialUI/DataDisplay/PredefinedElements/LookupDisplayValue.test.js +0 -147
  145. package/src/components/TaskDetailsModal.js +0 -132
  146. package/src/components/TaskDetailsModal.test.js +0 -317
  147. package/src/content/icons/anonymize.svg +0 -3
  148. package/src/content/icons/archives.svg +0 -3
  149. package/src/content/icons/clean-index.svg +0 -3
  150. package/src/content/icons/date-index.svg +0 -3
  151. package/src/content/icons/inventory.svg +0 -4
  152. package/src/content/icons/query-tester.svg +0 -10
  153. package/src/content/icons/reciprocity.svg +0 -10
  154. package/src/content/icons/schema.svg +0 -11
  155. package/src/content/icons/synonyms.svg +0 -3
  156. package/src/content/icons/tenant.svg +0 -3
  157. package/src/content/icons/time-index.svg +0 -3
  158. package/src/hooks/useDispatchWithErrorHandling.js +0 -57
  159. package/src/hooks/useDispatchWithErrorHandling.test.js +0 -230
  160. package/src/hooks/useScopeGuardLoader.js +0 -25
  161. package/src/hooks/useScopeGuardLoader.test.js +0 -187
  162. package/src/reducers/globalErrorMessages.js +0 -25
  163. package/src/reducers/globalErrorMessages.test.js +0 -66
  164. package/src/reducers/scopeRouteState.js +0 -29
  165. package/src/reducers/scopeRouteState.test.js +0 -49
  166. package/src/reducers/tasks.js +0 -56
  167. package/src/reducers/tasks.test.js +0 -404
  168. package/src/selectors/globalErrorMessages.js +0 -11
  169. package/src/selectors/globalErrorMessages.test.js +0 -25
  170. package/src/selectors/scopeRouteState.js +0 -5
  171. package/src/selectors/scopeRouteState.test.js +0 -13
  172. package/src/selectors/tasks.js +0 -16
  173. package/src/selectors/tasks.test.js +0 -60
  174. package/src/utils/responseProcessingHelper.js +0 -42
  175. package/src/utils/responseProcessingHelper.test.js +0 -218
@@ -1,119 +1,652 @@
1
1
  <svg xmlns="http://www.w3.org/2000/svg">
2
- <symbol id="icon-address-book" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
3
2
  <path stroke="none" fill-rule="evenodd" d="M1.5,18 L1,18 C0.723857625,18 0.5,17.7761424 0.5,17.5 C0.5,17.2238576 0.723857625,17 1,17 L1.5,17 L1.5,16 L1,16 C0.723857625,16 0.5,15.7761424 0.5,15.5 C0.5,15.2238576 0.723857625,15 1,15 L1.5,15 L1.5,13 L1,13 C0.723857625,13 0.5,12.7761424 0.5,12.5 C0.5,12.2238576 0.723857625,12 1,12 L1.5,12 L1.5,10 L1,10 C0.723857625,10 0.5,9.77614237 0.5,9.5 C0.5,9.22385763 0.723857625,9 1,9 L1.5,9 L1.5,7 L1,7 C0.723857625,7 0.5,6.77614237 0.5,6.5 C0.5,6.22385763 0.723857625,6 1,6 L1.5,6 L1.5,2.23913083 C1.5,0.993342853 2.57888071,0 3.88888889,0 L19,0 C19.2761424,0 19.5,0.223857625 19.5,0.5 C19.5,0.776142375 19.2761424,1 19,1 L3.88888889,1 C3.11356373,1 2.5,1.56491802 2.5,2.23913043 C2.5,2.91334285 3.11356373,3.47826087 3.88888889,3.47826087 L19,3.47826087 C19.2761424,3.47826087 19.5,3.70211849 19.5,3.97826087 L19.5,20.5 C19.5,20.7761424 19.2761424,21 19,21 L3.88888889,21 C2.57888071,21 1.5,20.0066571 1.5,18.7608696 L1.5,18 Z M2.5,18 L2.5,18.7608696 C2.5,19.435082 3.11356373,20 3.88888889,20 L18.5,20 L18.5,4.47826087 L3.88888889,4.47826087 C3.37276835,4.47826087 2.89252396,4.32407185 2.5,4.06100338 L2.5,6 L3,6 C3.27614237,6 3.5,6.22385763 3.5,6.5 C3.5,6.77614237 3.27614237,7 3,7 L2.5,7 L2.5,9 L3,9 C3.27614237,9 3.5,9.22385763 3.5,9.5 C3.5,9.77614237 3.27614237,10 3,10 L2.5,10 L2.5,12 L3,12 C3.27614237,12 3.5,12.2238576 3.5,12.5 C3.5,12.7761424 3.27614237,13 3,13 L2.5,13 L2.5,15 L3,15 C3.27614237,15 3.5,15.2238576 3.5,15.5 C3.5,15.7761424 3.27614237,16 3,16 L2.5,16 L2.5,17 L3,17 C3.27614237,17 3.5,17.2238576 3.5,17.5 C3.5,17.7761424 3.27614237,18 3,18 L2.5,18 Z M4,2.5 C3.72385763,2.5 3.5,2.27614237 3.5,2 C3.5,1.72385763 3.72385763,1.5 4,1.5 L18,1.5 C18.2761424,1.5 18.5,1.72385763 18.5,2 C18.5,2.27614237 18.2761424,2.5 18,2.5 L4,2.5 Z M13,15.5 L14,15.5 L14,11.5 L8,11.5 L8,15.5 L9,15.5 L9,14.125 C9,13.1915 9.922,12.5 11,12.5 C12.078,12.5 13,13.1915 13,14.125 L13,15.5 Z M14.5,10.5 C14.7761424,10.5 15,10.7238576 15,11 L15,16 C15,16.2761424 14.7761424,16.5 14.5,16.5 L7.5,16.5 C7.22385763,16.5 7,16.2761424 7,16 L7,11 C7,10.7238576 7.22385763,10.5 7.5,10.5 L14.5,10.5 Z M12,15.5 L12,14.125 C12,13.8165 11.578,13.5 11,13.5 C10.422,13.5 10,13.8165 10,14.125 L10,15.5 L12,15.5 Z M10.6876525,6.6095656 C10.8702618,6.46347813 11.1297382,6.46347813 11.3123475,6.6095656 L16.3123475,10.6095656 C16.6814164,10.9048207 16.4726388,11.5 16,11.5 L6,11.5 C5.52736118,11.5 5.31858357,10.9048207 5.68765248,10.6095656 L10.6876525,6.6095656 Z M7.42539053,10.5 L14.5746095,10.5 L11,7.64031242 L7.42539053,10.5 Z"/>
4
- <symbol id="icon-alert" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
5
3
  <path stroke="none" fill-rule="evenodd" d="M18.7,15.2084392 C17.8,15.2084392 17.1,14.5084392 17.1,13.6084392 L17.1,9.80843918 C17.1,7.20843918 15.5,4.90843918 13.1,3.90843918 C12.8,2.80843918 11.8,2.00843918 10.6,2.00843918 C9.4,1.90843918 8.4,2.70843918 8.1,3.80843918 C5.7,4.80843918 4.1,7.10843918 4.1,9.70843918 L4.1,13.5084392 C4.1,14.4084392 3.4,15.1084392 2.5,15.1084392 C2.2,15.1084392 2,15.3084392 2,15.6084392 C2,15.9084392 2.2,16.1084392 2.5,16.1084392 L8.1,16.1084392 C8.3,17.3084392 9.4,18.2084392 10.7,18.2084392 C12,18.2084392 13,17.3084392 13.3,16.1084392 L18.9,16.1084392 C19.2,16.1084392 19.4,15.9084392 19.4,15.6084392 C19.4,15.3084392 19,15.2084392 18.7,15.2084392 Z M10.6,17.3084392 C9.9,17.3084392 9.3,16.8084392 9.1,16.2084392 L12.1,16.2084392 C11.9,16.8084392 11.3,17.3084392 10.6,17.3084392 Z M4.5,15.2084392 C4.8,14.8084392 5.1,14.2084392 5.1,13.6084392 L5.1,9.80843918 C5.1,7.60843918 6.5,5.50843918 8.7,4.70843918 C8.9,4.60843918 9,4.50843918 9,4.30843918 C9.1,3.50843918 9.8,2.90843918 10.6,2.90843918 C11.4,2.90843918 12.1,3.50843918 12.2,4.20843918 C12.2,4.40843918 12.4,4.50843918 12.5,4.60843918 C14.7,5.50843918 16.1,7.50843918 16.1,9.80843918 L16.1,13.6084392 C16.1,14.2084392 16.3,14.7084392 16.7,15.2084392 L4.5,15.2084392 Z"/>
6
- <symbol id="icon-anonymize" xmlns="http://www.w3.org/2000/svg">
7
- <symbol id="icon-app-list" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
8
4
  <path stroke="none" fill-rule="evenodd" d="M21,18 C22.7,18 24,19.3 24,21 C24,22.7 22.7,24 21,24 C19.3,24 18,22.7 18,21 C18,19.3 19.3,18 21,18 Z M3,0 C4.7,0 6,1.3 6,3 C6,4.7 4.7,6 3,6 C1.3,6 0,4.7 0,3 C0,1.3 1.3,0 3,0 Z M12,0 C13.7,0 15,1.3 15,3 C15,4.7 13.7,6 12,6 C10.3,6 9,4.7 9,3 C9,1.3 10.3,0 12,0 Z M21,0 C22.7,0 24,1.3 24,3 C24,4.7 22.7,6 21,6 C19.3,6 18,4.7 18,3 C18,1.3 19.3,0 21,0 Z M3,9 C4.7,9 6,10.3 6,12 C6,13.7 4.7,15 3,15 C1.3,15 0,13.7 0,12 C0,10.3 1.3,9 3,9 Z M12,9 C13.7,9 15,10.3 15,12 C15,13.7 13.7,15 12,15 C10.3,15 9,13.7 9,12 C9,10.3 10.3,9 12,9 Z M21,9 C22.7,9 24,10.3 24,12 C24,13.7 22.7,15 21,15 C19.3,15 18,13.7 18,12 C18,10.3 19.3,9 21,9 Z M3,18 C4.7,18 6,19.3 6,21 C6,22.7 4.7,24 3,24 C1.3,24 0,22.7 0,21 C0,19.3 1.3,18 3,18 Z M12,18 C13.7,18 15,19.3 15,21 C15,22.7 13.7,24 12,24 C10.3,24 9,22.7 9,21 C9,19.3 10.3,18 12,18 Z"/>
9
- <symbol id="icon-archives" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
10
- <symbol id="icon-arrow-large-left" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
11
5
  <path stroke="none" fill-rule="evenodd" d="M8.79069767,17.6511628 C8.69302326,17.6511628 8.59534884,17.6511628 8.49767442,17.5534884 L0.195348837,10.7162791 C0.0976744186,10.6186047 0,10.5209302 0,10.3255814 C0,10.1302326 0.0976744186,10.0325581 0.195348837,9.93488372 L8.49767442,3.09767442 C8.59534884,3 8.79069767,3 8.98604651,3 C9.18139535,3.09767442 9.27906977,3.29302326 9.27906977,3.48837209 L9.27906977,6.90697674 L20.5116279,6.90697674 C20.8046512,6.90697674 21,7.10232558 21,7.39534884 L21,13.255814 C21,13.5488372 20.8046512,13.744186 20.5116279,13.744186 L9.27906977,13.744186 L9.27906977,17.1627907 C9.27906977,17.3581395 9.18139535,17.5534884 8.98604651,17.6511628 C8.88837209,17.6511628 8.88837209,17.6511628 8.79069767,17.6511628 Z M1.26976744,10.3255814 L8.30232558,16.0883721 L8.30232558,13.255814 C8.30232558,12.9627907 8.49767442,12.7674419 8.79069767,12.7674419 L20.0232558,12.7674419 L20.0232558,7.88372093 L8.79069767,7.88372093 C8.49767442,7.88372093 8.30232558,7.68837209 8.30232558,7.39534884 L8.30232558,4.5627907 L1.26976744,10.3255814 Z"/>
12
- <symbol id="icon-arrow-more" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
13
6
  <path fill="none" stroke-linecap="round" stroke-linejoin="round" d="M3,3 L10,10 L3,17 M11,3 L18,10 L11,17"/>
14
- <symbol id="icon-arrow-redo" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
15
7
  <path stroke="none" fill-rule="evenodd" d="M19.029584,12.2809247 C18.8628775,7.00658018 15.2326659,3.19258875 10.3067022,3.00670333 C5.40670221,2.80670333 1.20670221,6.70670333 1.00670221,11.7067033 C0.806702206,16.7067033 4.70670221,20.8067033 9.70670221,21.0067033 C10.0067022,21.0067033 10.2067022,21.2067033 10.2067022,21.5067033 C10.2067022,21.8067033 10.0067022,22.0067033 9.70670221,22.0067033 C4.10670221,21.8067033 -0.193297794,17.1067033 0.00670220616,11.6067033 C0.206702206,6.10670333 4.80670221,1.80670333 10.4067022,2.00670333 C15.6758018,2.18839642 19.7069373,6.24904408 20.0258834,11.7893978 L22.1067022,8.70670333 C22.3067022,8.50670333 22.6067022,8.40670333 22.8067022,8.60670333 C23.0067022,8.70670333 23.1067022,9.00670333 22.9067022,9.30670333 L19.9067022,13.8067033 C19.7067022,14.1067033 19.3067022,14.1067033 19.1067022,13.9067033 L15.6067022,9.90670333 C15.4067022,9.70670333 15.4067022,9.40670333 15.6067022,9.20670333 C15.8067022,9.00670333 16.1067022,9.00670333 16.3067022,9.20670333 L19.029584,12.2809247 Z"/>
16
- <symbol id="icon-arrow-small-left" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
17
8
  <path stroke="none" fill-rule="evenodd" d="M5.70710678,11 L10.8535534,16.1464466 C11.0488155,16.3417088 11.0488155,16.6582912 10.8535534,16.8535534 C10.6582912,17.0488155 10.3417088,17.0488155 10.1464466,16.8535534 L4.14644661,10.8535534 C3.95118446,10.6582912 3.95118446,10.3417088 4.14644661,10.1464466 L10.1464466,4.14644661 C10.3417088,3.95118446 10.6582912,3.95118446 10.8535534,4.14644661 C11.0488155,4.34170876 11.0488155,4.65829124 10.8535534,4.85355339 L5.70710678,10 L17.4996996,10 C17.775842,10 17.9996996,10.2238576 17.9996996,10.5 C17.9996996,10.7761424 17.775842,11 17.4996996,11 L5.70710678,11 Z"/>
18
- <symbol id="icon-arrow-small-right" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
19
9
  <path stroke="none" fill-rule="evenodd" d="M16.2928932,11 L4.5,11 C4.22385763,11 4,10.7761424 4,10.5 C4,10.2238576 4.22385763,10 4.5,10 L16.2928932,10 L11.1464466,4.85355339 C10.9511845,4.65829124 10.9511845,4.34170876 11.1464466,4.14644661 C11.3417088,3.95118446 11.6582912,3.95118446 11.8535534,4.14644661 L17.8535534,10.1464466 C18.0488155,10.3417088 18.0488155,10.6582912 17.8535534,10.8535534 L11.8535534,16.8535534 C11.6582912,17.0488155 11.3417088,17.0488155 11.1464466,16.8535534 C10.9511845,16.6582912 10.9511845,16.3417088 11.1464466,16.1464466 L16.2928932,11 Z"/>
20
- <symbol id="icon-arrow-undo" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
21
10
  <path stroke="none" fill-rule="evenodd" d="M3.01423325,11.8990153 C3.28597065,6.30267924 7.33544142,2.18959261 12.6392305,2.00670333 C18.2392305,1.80670333 22.8392305,6.10670333 23.0392305,11.6067033 C23.2392305,17.1067033 18.9392305,21.8067033 13.4392305,22.0067033 C13.1392305,22.0067033 12.9392305,21.8067033 12.9392305,21.5067033 C12.9392305,21.2067033 13.1392305,21.0067033 13.4392305,21.0067033 C18.4392305,20.8067033 22.2392305,16.6067033 22.1392305,11.7067033 C21.9392305,6.70670333 17.7392305,2.90670333 12.8392305,3.00670333 C7.8577734,3.19120174 4.23790285,6.94986482 4.02070459,12.1631035 L6.63923048,9.20670333 C6.83923048,9.00670333 7.13923048,9.00670333 7.33923048,9.20670333 C7.53923048,9.40670333 7.53923048,9.70670333 7.33923048,9.90670333 L3.83923048,13.9067033 C3.63923048,14.1067033 3.23923048,14.1067033 3.03923048,13.8067033 L0.0392304845,9.30670333 C-0.0607695155,9.00670333 0.0392304845,8.70670333 0.239230485,8.60670333 C0.439230485,8.50670333 0.739230485,8.50670333 0.939230485,8.70670333 L3.01423325,11.8990153 Z"/>
22
- <symbol id="icon-calendar-date" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
23
11
  <g fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
24
12
  <polyline points="2.625 1.458 .292 1.458 .292 13.708 13.708 13.708 13.708 1.458 11.375 1.458"/>
25
13
  <polygon points="4.375 2.625 2.625 2.625 2.625 .292 4.375 .292"/>
26
14
  <polygon points="11.375 2.625 9.625 2.625 9.625 .292 11.375 .292"/>
27
15
  <path d="M4.375 1.45833333L9.625 1.45833333M.291666667 4.375L13.7083333 4.375"/>
28
16
  <polyline points="5.542 11.375 5.542 6.708 4.375 7.875"/>
29
17
  <path d="M4.375,11.375 L6.70833333,11.375"/>
30
18
  <polyline points="8.167 11.375 9.917 6.708 7 6.708 7 7.292"/>
31
19
  <path d="M7.875,9.04166667 L9.625,9.04166667"/>
32
20
  </g>
33
- <symbol id="icon-calendar-generic" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
34
21
  <path stroke="none" fill-rule="evenodd" d="M16,16 L17.5,16 C17.8,16 18,16.2 18,16.5 C18,16.8 17.8,17 17.5,17 L16,17 L16,18.5 C16,18.8 15.8,19 15.5,19 C15.2,19 15,18.8 15,18.5 L15,17 L11,17 L11,18.5 C11,18.8 10.8,19 10.5,19 C10.2,19 10,18.8 10,18.5 L10,17 L6,17 L6,18.5 C6,18.8 5.8,19 5.5,19 C5.2,19 5,18.8 5,18.5 L5,17 L3,17 C2.7,17 2.5,16.8 2.5,16.5 C2.5,16.2 2.7,16 3,16 L5,16 L5,14 L3,14 C2.7,14 2.5,13.8 2.5,13.5 C2.5,13.2 2.7,13 3,13 L5,13 L5,11 L3,11 C2.7,11 2.5,10.8 2.5,10.5 C2.5,10.2 2.7,10 3,10 L5,10 L5,8.5 C5,8.2 5.2,8 5.5,8 C5.8,8 6,8.2 6,8.5 L6,10 L10,10 L10,8.5 C10,8.2 10.2,8 10.5,8 C10.8,8 11,8.2 11,8.5 L11,10 L15,10 L15,8.5 C15,8.2 15.2,8 15.5,8 C15.8,8 16,8.2 16,8.5 L16,10 L17.5,10 C17.8,10 18,10.2 18,10.5 C18,10.8 17.8,11 17.5,11 L16,11 L16,13 L17.5,13 C17.8,13 18,13.2 18,13.5 C18,13.8 17.8,14 17.5,14 L16,14 L16,16 Z M15,16 L15,14 L11,14 L11,16 L15,16 Z M10,16 L10,14 L6,14 L6,16 L10,16 Z M6,13 L10,13 L10,11 L6,11 L6,13 Z M11,13 L15,13 L15,11 L11,11 L11,13 Z M2,6 L19,6 L19,3 L17,3 L17,4.5 C17,4.8 16.8,5 16.5,5 L13.5,5 C13.2,5 13,4.8 13,4.5 L13,3 L8,3 L8,4.5 C8,4.8 7.8,5 7.5,5 L4.5,5 C4.2,5 4,4.8 4,4.5 L4,3 L2,3 L2,6 Z M2,7 L2,20 L19,20 L19,7 L2,7 Z M8,2 L13,2 L13,1.5 C13,1.2 13.2,1 13.5,1 L16.5,1 C16.8,1 17,1.2 17,1.5 L17,2 L19.5,2 C19.8,2 20,2.2 20,2.5 L20,20.5 C20,20.8 19.8,21 19.5,21 L1.5,21 C1.2,21 1,20.8 1,20.5 L1,2.5 C1,2.2 1.2,2 1.5,2 L4,2 L4,1.5 C4,1.2 4.2,1 4.5,1 L7.5,1 C7.8,1 8,1.2 8,1.5 L8,2 Z M7,4 L7,2 L5,2 L5,4 L7,4 Z M16,2 L14,2 L14,4 L16,4 L16,2 Z"/>
35
- <symbol id="icon-campaign" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
36
22
  <path stroke="none" fill-rule="evenodd" d="M9,11 C10.1,11 11,10.1 11,9 C11,7.9 10.1,7 9,7 C7.9,7 7,7.9 7,9 C7,10.1 7.9,11 9,11 Z M9,8 C9.6,8 10,8.4 10,9 C10,9.6 9.6,10 9,10 C8.4,10 8,9.6 8,9 C8,8.4 8.4,8 9,8 Z M24,12 C24,11.1 23.5,10.3 22.8,9.9 C23.3,9.2 23.4,8.3 23.1,7.5 C22.7,6.6 22,6 21.1,5.9 C21.3,5.1 21.1,4.2 20.4,3.5 C19.8,2.9 18.9,2.6 18,2.8 C18,2 17.4,1.3 16.6,0.9 C15.8,0.6 14.8,0.7 14.2,1.2 C13.7,0.5 12.9,0 12,0 C11.1,0 10.3,0.5 9.9,1.2 C9.2,0.7 8.2,0.6 7.4,0.9 C6.6,1.3 6,2 5.9,2.9 C5.1,2.7 4.2,2.9 3.5,3.6 C2.9,4.2 2.7,5.1 2.9,5.9 C2,6 1.3,6.6 0.9,7.4 C0.6,8.2 0.7,9.2 1.2,9.9 C0.5,10.3 0,11.1 0,12 C0,12.9 0.5,13.7 1.2,14.1 C0.7,14.8 0.6,15.7 0.9,16.5 C1.3,17.4 2,18 2.9,18.1 C2.7,18.9 2.9,19.8 3.6,20.5 C4.2,21.1 5.1,21.4 6,21.2 C6,22 6.6,22.7 7.4,23.1 C8.2,23.4 9.2,23.3 9.8,22.8 C10.2,23.5 11,24 11.9,24 C12.8,24 13.6,23.5 14,22.8 C14.7,23.3 15.6,23.5 16.4,23.1 C17.2,22.8 17.8,22 17.9,21.2 C18.7,21.4 19.6,21.2 20.3,20.5 C20.9,19.9 21.2,19 21,18.1 C21.8,18 22.6,17.4 22.9,16.6 C23.2,15.8 23.1,14.8 22.6,14.2 C23.5,13.7 24,12.9 24,12 Z M21.8,13.5 C21.6,13.5 21.4,13.7 21.4,13.9 C21.4,14.1 21.4,14.3 21.6,14.4 C22.2,14.8 22.4,15.6 22.2,16.2 C22,16.8 21.2,17.2 20.5,17.1 C20.3,17.1 20.1,17.1 20,17.3 C19.9,17.5 19.9,17.7 20,17.9 C20.4,18.5 20.3,19.3 19.8,19.8 C19.3,20.3 18.5,20.4 17.9,20 C17.7,19.9 17.5,19.9 17.3,20 C17.1,20.1 17,20.3 17.1,20.5 C17.2,21.2 16.9,21.9 16.2,22.2 C15.5,22.5 14.8,22.2 14.4,21.6 C14.3,21.4 14.1,21.3 13.9,21.4 C13.7,21.4 13.5,21.6 13.5,21.8 C13.3,22.5 12.7,23 12,23 C11.3,23 10.7,22.5 10.5,21.8 C10.5,21.6 10.3,21.4 10.1,21.4 C10.1,21.4 10,21.4 10,21.4 C9.8,21.4 9.7,21.5 9.6,21.6 C9.2,22.2 8.4,22.4 7.8,22.2 C7.1,21.9 6.8,21.2 6.9,20.5 C6.9,20.3 6.9,20.1 6.7,20 C6.5,19.9 6.3,19.9 6.1,20 C5.5,20.4 4.7,20.3 4.2,19.8 C3.7,19.3 3.6,18.5 4,17.9 C4.1,17.7 4.1,17.5 4,17.3 C3.9,17.1 3.7,17 3.5,17.1 C2.8,17.3 2.1,16.9 1.8,16.2 C1.5,15.5 1.8,14.8 2.4,14.4 C2.6,14.3 2.7,14.1 2.6,13.9 C2.6,13.7 2.4,13.5 2.2,13.5 C1.5,13.3 1,12.7 1,12 C1,11.3 1.5,10.7 2.2,10.5 C2.4,10.5 2.6,10.3 2.6,10.1 C2.6,9.9 2.6,9.7 2.4,9.6 C1.8,9.2 1.6,8.5 1.8,7.8 C2.1,7.1 2.8,6.8 3.5,6.9 C3.7,6.9 3.9,6.9 4,6.7 C4.1,6.5 4.1,6.3 4,6.1 C3.6,5.5 3.7,4.7 4.2,4.2 C4.7,3.7 5.5,3.6 6.1,4 C6.3,4.1 6.5,4.1 6.7,4 C6.9,3.9 7,3.7 6.9,3.5 C6.8,2.8 7.1,2.1 7.8,1.8 C8.5,1.5 9.2,1.8 9.6,2.4 C9.7,2.6 9.9,2.7 10.1,2.6 C10.3,2.6 10.5,2.4 10.5,2.2 C10.7,1.5 11.3,1 12,1 C12.7,1 13.3,1.5 13.5,2.2 C13.5,2.4 13.7,2.6 13.9,2.6 C14.1,2.6 14.3,2.6 14.4,2.4 C14.8,1.8 15.6,1.6 16.2,1.8 C16.9,2.1 17.2,2.8 17.1,3.5 C17.1,3.7 17.1,3.9 17.3,4 C17.5,4.1 17.7,4.1 17.9,4 C18.5,3.6 19.3,3.7 19.8,4.2 C20.3,4.7 20.4,5.5 20,6.1 C19.9,6.3 19.9,6.5 20,6.7 C20.1,6.9 20.3,7 20.5,6.9 C21.2,6.7 21.9,7.1 22.2,7.8 C22.5,8.5 22.2,9.2 21.6,9.6 C21.4,9.7 21.3,9.9 21.4,10.1 C21.5,10.3 21.6,10.5 21.8,10.5 C22.5,10.6 23,11.2 23,12 C23,12.7 22.5,13.3 21.8,13.5 Z M16.4,7.6 C16.2,7.4 15.9,7.4 15.7,7.6 L7.7,15.6 C7.5,15.8 7.5,16.1 7.7,16.3 C7.8,16.4 7.9,16.4 8.1,16.4 C8.3,16.4 8.4,16.4 8.5,16.3 L16.5,8.3 C16.5,8.2 16.5,7.8 16.4,7.6 Z M15,13 C13.9,13 13,13.9 13,15 C13,16.1 13.9,17 15,17 C16.1,17 17,16.1 17,15 C17,13.9 16.1,13 15,13 Z M15,16 C14.4,16 14,15.6 14,15 C14,14.4 14.4,14 15,14 C15.6,14 16,14.4 16,15 C16,15.6 15.6,16 15,16 Z"/>
37
- <symbol id="icon-caret-down" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8 8">
38
23
  <polygon fill-rule="evenodd" points="0 2.04 3.98 6 8 2"/>
39
- <symbol id="icon-caret-up" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8 8">
40
24
  <polygon fill-rule="evenodd" points="0 2.04 3.98 6 8 2" transform="rotate(-180 4 4)"/>
41
- <symbol id="icon-checkmark-filled" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
42
25
  <path stroke="none" fill-rule="evenodd" d="M6.7826087,12.0516851 L16.7563411,2.14525178 C16.9513259,1.95158274 17.2660654,1.95158274 17.4610502,2.14525178 L20.3523545,5.01704665 C20.5492152,5.21257896 20.5492152,5.53101078 20.3523545,5.72654309 L7.1349632,18.8547482 C6.93997848,19.0484173 6.62523891,19.0484173 6.43025419,18.8547482 L0.647645492,13.1111585 C0.450784836,12.9156262 0.450784836,12.5971943 0.647645492,12.401662 L3.53894984,9.52986716 C3.73393456,9.33619812 4.04867413,9.33619812 4.24365886,9.52986716 L6.7826087,12.0516851 Z"/>
43
- <symbol id="icon-checkmark-outlined" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
44
26
  <path stroke="none" fill-rule="evenodd" d="M6.7826087,12.0516851 L16.7563411,2.14525178 C16.9513259,1.95158274 17.2660654,1.95158274 17.4610502,2.14525178 L20.3523545,5.01704665 C20.5492152,5.21257896 20.5492152,5.53101078 20.3523545,5.72654309 L7.1349632,18.8547482 C6.93997848,19.0484173 6.62523891,19.0484173 6.43025419,18.8547482 L0.647645492,13.1111585 C0.450784836,12.9156262 0.450784836,12.5971943 0.647645492,12.401662 L3.53894984,9.52986716 C3.73393456,9.33619812 4.04867413,9.33619812 4.24365886,9.52986716 L6.7826087,12.0516851 Z M7.1349632,13.1111585 C6.93997848,13.3048275 6.62523891,13.3048275 6.43025419,13.1111585 L3.89130435,10.5893406 L1.7095127,12.7564103 L6.7826087,17.7952748 L19.2904873,5.37179487 L17.1086957,3.20472517 L7.1349632,13.1111585 Z"/>
45
- <symbol id="icon-chevron-down" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 7 7">
46
27
  <polyline fill="none" stroke-linecap="round" stroke-linejoin="round" points="0 2 3.507 5 7 2"/>
47
- <symbol id="icon-chevron-up" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 7 7">
48
28
  <polyline fill="none" stroke-linecap="round" stroke-linejoin="round" points="0 2 3.507 5 7 2" transform="rotate(-180 3.5 3.5)"/>
49
- <symbol id="icon-chrome" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs>
50
29
  <linearGradient id="ChromeA" x1="11.94" y1="7.7" x2="11.94" y2="16.25" gradientUnits="userSpaceOnUse">
51
30
  <stop offset="0" stop-color="#96c1e9"/>
52
31
  <stop offset="1" stop-color="#146cb5"/>
53
32
  </linearGradient>
54
33
  </defs>
55
34
  <path d="M12 0a12.23 12.23 0 0 1 10.75 6.77H11.37s-2.15-.07-4 2.54a5.29 5.29 0 0 0-.46 4.44L2.07 5.32A11.85 11.85 0 0 1 12 0z" fill="#e6322a"/>
56
35
  <path d="M22.39 18a12.25 12.25 0 0 1-11.26 6l5.7-9.86s1.13-1.82-.21-4.71A5.31 5.31 0 0 0 13 6.75h9.73A11.88 11.88 0 0 1 22.39 18z" fill="#feda00"/>
57
36
  <path d="M1.6 18a12.25 12.25 0 0 1 .47-12.69l5.69 9.86s1 1.9 4.19 2.18A5.34 5.34 0 0 0 16 15.53L11.16 24a11.86 11.86 0 0 1-9.56-6z" fill="#65b54c"/>
58
37
  <path d="M11.13,24l1.6-6.68A5.39,5.39,0,0,0,16,15.56Z" fill="#60ac48"/>
59
38
  <path d="M6.61 12.07a5.33 5.33 0 1 1 5.33 5.34 5.33 5.33 0 0 1-5.33-5.34z" fill="#fff"/>
60
39
  <path d="M7.5,12.07a4.44,4.44,0,1,1,4.44,4.45A4.44,4.44,0,0,1,7.5,12.07Z" fill="url(#ChromeA)"/>
61
40
  <path d="M22.73,6.75,16.14,8.68A5.36,5.36,0,0,0,13,6.75Z" fill="#f1cf00"/>
62
41
  <path d="M6.8,13.51,2.07,5.32,7,10.16a4.78,4.78,0,0,0-.31,2.5Z" fill="#da3027"/>
63
- <symbol id="icon-clean-index" xmlns="http://www.w3.org/2000/svg">
64
- <symbol id="icon-clock" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
65
42
  <path fill="none" stroke-linecap="round" stroke-linejoin="round" d="M13.7083333,7 C13.7083333,10.7053333 10.7041667,13.7083333 7,13.7083333 C3.2935,13.7083333 0.291666667,10.7053333 0.291666667,7 C0.291666667,3.29466667 3.2935,0.291666667 7,0.291666667 C10.7041667,0.291666667 13.7083333,3.29466667 13.7083333,7 L13.7083333,7 Z M6.70833333,3.79166667 L6.70833333,7 L10.2083333,10.2083333"/>
66
- <symbol id="icon-close" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
67
43
  <g fill="none" fill-rule="evenodd">
68
44
  <path stroke="none" fill="#CCC" d="M14.4,7.2 C14.4,11.2 11.2,14.4 7.2,14.4 C3.2,14.4 -1.82076576e-13,11.2 -1.82076576e-13,7.2 C-1.82076576e-13,3.2 3.2,-1.15463195e-14 7.2,-1.15463195e-14 C11.2,-1.04916076e-14 14.4,3.2 14.4,7.2 L14.4,7.2 Z"/>
69
45
  <path stroke="none" fill="#FFF" d="M7.9,7.2 L10.3,4.8 C10.5,4.6 10.5,4.3 10.3,4.1 C10.1,3.9 9.8,3.9 9.6,4.1 L7.2,6.5 L4.8,4.1 C4.6,3.9 4.3,3.9 4.1,4.1 C3.9,4.3 3.9,4.6 4.1,4.8 L6.5,7.2 L4.1,9.6 C3.9,9.8 3.9,10.1 4.1,10.3 C4.2,10.4 4.3,10.4 4.5,10.4 C4.7,10.4 4.8,10.4 4.9,10.3 L7.3,7.9 L9.7,10.3 C9.8,10.4 9.9,10.4 10.1,10.4 C10.3,10.4 10.4,10.4 10.5,10.3 C10.7,10.1 10.7,9.8 10.5,9.6 L7.9,7.2 Z"/>
70
46
  </g>
71
- <symbol id="icon-close2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
72
47
  <path stroke="none" fill-rule="evenodd" d="M7.9,7.2 L10.3,4.8 C10.5,4.6 10.5,4.3 10.3,4.1 C10.1,3.9 9.8,3.9 9.6,4.1 L7.2,6.5 L4.8,4.1 C4.6,3.9 4.3,3.9 4.1,4.1 C3.9,4.3 3.9,4.6 4.1,4.8 L6.5,7.2 L4.1,9.6 C3.9,9.8 3.9,10.1 4.1,10.3 C4.2,10.4 4.3,10.4 4.5,10.4 C4.7,10.4 4.8,10.4 4.9,10.3 L7.3,7.9 L9.7,10.3 C9.8,10.4 9.9,10.4 10.1,10.4 C10.3,10.4 10.4,10.4 10.5,10.3 C10.7,10.1 10.7,9.8 10.5,9.6 L7.9,7.2 Z"/>
73
- <symbol id="icon-cogwheel" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
74
48
  <path stroke="none" fill-rule="evenodd" d="M17.4339623,14.2641509 L19.1179245,15.9481132 C19.3160377,16.1462264 19.3160377,16.4433962 19.1179245,16.6415094 L16.6415094,19.1179245 C16.4433962,19.3160377 16.1462264,19.3160377 15.9481132,19.1179245 L14.2641509,17.4339623 C13.7688679,17.6320755 13.1745283,17.8301887 12.2830189,18.1273585 L12.2830189,20.504717 C12.2830189,20.8018868 12.0849057,21 11.7877358,21 L9.21226415,21 C8.91509434,21 8.71698113,20.8018868 8.71698113,20.504717 L8.71698113,18.1273585 C7.9245283,17.9292453 7.23113208,17.7311321 6.73584906,17.4339623 L5.05188679,19.1179245 C4.85377358,19.3160377 4.55660377,19.3160377 4.35849057,19.1179245 L1.88207547,16.6415094 C1.68396226,16.4433962 1.68396226,16.1462264 1.88207547,15.9481132 L3.56603774,14.2641509 C3.36792453,13.7688679 3.16981132,13.1745283 2.87264151,12.2830189 L0.495283019,12.2830189 C0.198113208,12.2830189 -1.81188398e-13,12.0849057 -1.81188398e-13,11.7877358 L-1.81188398e-13,9.21226415 C-1.81188398e-13,8.91509434 0.198113208,8.71698113 0.495283019,8.71698113 L2.87264151,8.71698113 C3.07075472,7.9245283 3.26886792,7.23113208 3.56603774,6.73584906 L1.88207547,5.05188679 C1.68396226,4.85377358 1.68396226,4.55660377 1.88207547,4.35849057 L4.35849057,1.88207547 C4.55660377,1.68396226 4.85377358,1.68396226 5.05188679,1.88207547 L6.73584906,3.56603774 C7.23113208,3.36792453 7.8254717,3.16981132 8.71698113,2.87264151 L8.71698113,0.495283019 C8.71698113,0.198113208 8.91509434,-1.0658141e-14 9.21226415,-1.0658141e-14 L11.7877358,-1.0658141e-14 C12.0849057,-1.0658141e-14 12.2830189,0.198113208 12.2830189,0.495283019 L12.2830189,2.97169811 C13.0754717,3.16981132 13.7688679,3.36792453 14.2641509,3.66509434 L15.9481132,1.88207547 C16.1462264,1.68396226 16.4433962,1.68396226 16.6415094,1.88207547 L19.1179245,4.35849057 C19.3160377,4.55660377 19.3160377,4.85377358 19.1179245,5.05188679 L17.4339623,6.73584906 C17.6320755,7.23113208 17.8301887,7.8254717 18.1273585,8.71698113 L20.504717,8.71698113 C20.8018868,8.71698113 21,8.91509434 21,9.21226415 L21,11.7877358 C21,12.0849057 20.8018868,12.2830189 20.504717,12.2830189 L18.1273585,12.2830189 C17.8301887,13.0754717 17.6320755,13.7688679 17.4339623,14.2641509 Z M16.4433962,14.6603774 C16.245283,14.4622642 16.245283,14.2641509 16.3443396,14.0660377 C16.6415094,13.5707547 16.8396226,12.7783019 17.1367925,11.6886792 C17.2358491,11.490566 17.4339623,11.2924528 17.6320755,11.2924528 L19.9103774,11.2924528 L19.9103774,9.70754717 L17.6320755,9.70754717 C17.4339623,9.70754717 17.2358491,9.50943396 17.1367925,9.31132075 C16.8396226,8.22169811 16.6415094,7.42924528 16.3443396,6.93396226 C16.245283,6.73584906 16.245283,6.43867925 16.4433962,6.33962264 L18.1273585,4.65566038 L16.3443396,2.87264151 L14.6603774,4.55660377 C14.4622642,4.75471698 14.2641509,4.75471698 14.0660377,4.65566038 C13.5707547,4.35849057 12.7783019,4.16037736 11.6886792,3.86320755 C11.490566,3.76415094 11.2924528,3.56603774 11.2924528,3.36792453 L11.2924528,0.990566038 L9.70754717,0.990566038 L9.70754717,3.26886792 C9.70754717,3.46698113 9.50943396,3.66509434 9.31132075,3.76415094 C8.22169811,4.06132075 7.42924528,4.35849057 6.93396226,4.65566038 C6.73584906,4.75471698 6.43867925,4.75471698 6.33962264,4.55660377 L4.65566038,2.97169811 L2.97169811,4.65566038 L4.65566038,6.33962264 C4.85377358,6.53773585 4.85377358,6.73584906 4.75471698,6.93396226 C4.35849057,7.42924528 4.06132075,8.22169811 3.86320755,9.31132075 C3.76415094,9.50943396 3.56603774,9.70754717 3.36792453,9.70754717 L0.990566038,9.70754717 L0.990566038,11.2924528 L3.26886792,11.2924528 C3.46698113,11.2924528 3.66509434,11.490566 3.76415094,11.6886792 C4.06132075,12.7783019 4.25943396,13.5707547 4.55660377,14.0660377 C4.65566038,14.2641509 4.65566038,14.5613208 4.45754717,14.6603774 L2.77358491,16.3443396 L4.55660377,18.1273585 L6.24056604,16.4433962 C6.43867925,16.245283 6.63679245,16.245283 6.83490566,16.3443396 C7.33018868,16.6415094 8.12264151,16.8396226 9.21226415,17.1367925 C9.41037736,17.2358491 9.60849057,17.4339623 9.60849057,17.6320755 L9.60849057,19.9103774 L11.1933962,19.9103774 L11.1933962,17.6320755 C11.1933962,17.4339623 11.3915094,17.2358491 11.5896226,17.1367925 C12.6792453,16.8396226 13.4716981,16.6415094 13.9669811,16.3443396 C14.1650943,16.245283 14.4622642,16.245283 14.5613208,16.4433962 L16.245283,18.1273585 L18.0283019,16.3443396 L16.4433962,14.6603774 Z M14.8584906,10.5 C14.8584906,12.9764151 12.8773585,14.8584906 10.5,14.8584906 C8.12264151,14.8584906 6.14150943,12.8773585 6.14150943,10.5 C6.14150943,8.02358491 8.12264151,6.14150943 10.5,6.14150943 C12.8773585,6.14150943 14.8584906,8.02358491 14.8584906,10.5 Z M13.8679245,10.5 C13.8679245,8.61792453 12.3820755,7.13207547 10.5,7.13207547 C8.61792453,7.13207547 7.13207547,8.61792453 7.13207547,10.5 C7.13207547,12.3820755 8.61792453,13.8679245 10.5,13.8679245 C12.3820755,13.8679245 13.8679245,12.3820755 13.8679245,10.5 Z"/>
75
- <symbol id="icon-collapse" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19 17">
76
49
  <path stroke="none" fill-rule="evenodd" d="M2.93835042,7.00281511 L6.34789802,10.8614725 L4.84915723,12.1857746 L-0.72,5.88304115 L4.86465339,-0.09 L6.32556592,1.27591895 L2.84100542,5.00281511 L18.9966556,5.00281511 L18.9966556,7.00281511 L2.93835042,7.00281511 Z M10.9966556,10.0028151 L18.9966556,10.0028151 L18.9966556,12.0028151 L10.9966556,12.0028151 L10.9966556,10.0028151 Z M10.9966556,15.0028151 L18.9966556,15.0028151 L18.9966556,17.0028151 L10.9966556,17.0028151 L10.9966556,15.0028151 Z"/>
77
- <symbol id="icon-commerce-modeler" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
78
50
  <path stroke="none" fill-rule="evenodd" d="M12.0351641,5.98720362e-09 C12.193041,5.98720362e-09 12.3502192,0.00300649278 12.5066423,0.00896795478 C12.5907129,-0.00590522248 12.6770243,-0.00115921039 12.7594404,0.021480022 C18.6977301,0.369964566 23.4916127,4.982633 23.9996213,10.9953778 L23.9837502,11.515968 C23.9738694,11.8400674 23.7082818,12.097681 23.3840313,12.097681 L7.51659383,12.097681 C7.59589669,13.6414154 7.91516751,15.2149771 8.4741556,16.7995866 L11.3999525,16.7999022 C11.7313219,16.7999022 11.99995,17.0685298 11.99995,17.3998987 C11.99995,17.7312676 11.7313219,17.9998952 11.3999525,17.9998952 L8.94256424,17.9997029 C9.66148625,19.6800729 10.6484205,21.3675037 11.9030706,23.0397856 C12.2127617,23.4525628 11.8914337,24.0378167 11.376929,23.9980786 L10.921559,23.9628773 C4.76770074,23.4252281 0,18.0740755 0,11.7555006 C0,11.6760213 0.000772642048,11.5967485 0.00231108987,11.5176888 C0.00209352529,11.5110475 0.00198389427,11.5043788 0.00198389427,11.4976845 C0.00198389427,11.4818558 0.00259683705,11.4661702 0.00380028218,11.4506503 C0.157693367,5.28767439 4.96769588,0.435221419 11.1805116,0.0276653644 C11.2354751,0.0166276028 11.2917474,0.0133150054 11.3475714,0.0177975563 C11.4002785,0.0150278359 11.4530838,0.0125774819 11.5059851,0.0104483851 C11.6724168,0.00343263261 11.8528248,5.98720362e-09 12.0351641,5.98720362e-09 Z M7.6456869,17.9992321 L3.09564558,17.9999587 C4.70882299,20.4096208 7.22601673,22.1466527 10.1524483,22.654075 C9.10303309,21.1111658 8.26717592,19.5538305 7.6456869,17.9992321 Z M6.31541769,12.097681 L1.20516144,12.097681 C1.25596345,13.7785819 1.67960743,15.3761256 2.39575725,16.7998766 L7.20831056,16.7993495 C6.68782629,15.2186611 6.38991008,13.6453947 6.31541769,12.097681 Z M15.6551838,5.99911321 L8.53019172,5.99959459 C7.89601938,7.57332498 7.55389241,9.21440944 7.50347499,10.897688 L16.7905812,10.897614 C16.7276443,9.21074682 16.3471368,7.57012209 15.6551838,5.99911321 Z M7.24260862,5.99957699 L2.90351691,5.99904942 C1.96845187,7.4224935 1.37662256,9.08956106 1.23370513,10.897688 L6.3025922,10.897688 C6.34806409,9.22088637 6.66102977,7.58027735 7.24260862,5.99957699 Z M21.0476143,5.9960629 L20.9999125,5.99996506 L20.9999125,5.99996506 L16.956462,5.99889238 C17.586003,7.5730412 17.933676,9.21310697 17.9913353,10.8971371 L22.7901906,10.897688 C22.6143634,9.08842875 21.9967228,7.42024845 21.0476143,5.9960629 Z M9.83537123,1.40840916 C7.43705764,1.87255577 5.34676564,3.08663319 3.82366471,4.79910428 L7.74141686,4.79922818 C8.28535102,3.62777703 8.98317428,2.49408149 9.83537123,1.40840916 Z M12.0351641,1.19999302 C11.8745353,1.19999302 11.7162407,1.20290216 11.5705404,1.20879767 C10.5462259,2.34777744 9.71524541,3.54909571 9.07741823,4.79922568 L15.0585164,4.7992411 C14.3622926,3.54606214 13.4591577,2.34338911 12.3524538,1.20397563 C12.2454747,1.20147685 12.1404931,1.19999302 12.0351641,1.19999302 Z M14.1531993,1.40445876 L14.2148167,1.47752033 C15.1024218,2.53858252 15.8371268,3.64878825 16.4155304,4.79897073 L20.1216814,4.79946384 C18.5871893,3.08193917 16.5069131,1.86560109 14.1531993,1.40445876 Z M16.7048904,13.7999196 C16.7048904,13.4685507 16.9735184,13.1999231 17.3048879,13.1999231 L19.916077,13.1999231 C20.2474464,13.1999231 20.5160745,13.4685507 20.5160745,13.7999196 L20.5160745,14.5040885 C20.7531119,14.6166784 20.9811438,14.748021 21.1934666,14.8952386 L21.7906837,14.5478147 C22.0779755,14.3806862 22.4463899,14.4789464 22.6122932,14.7669471 L23.9178878,17.0334001 C24.0828744,17.3198093 23.9851501,17.6857115 23.6993324,17.8517213 L23.0977333,18.2011446 C23.1102702,18.335191 23.1167036,18.4681156 23.1167036,18.6003729 C23.1167036,18.7331353 23.1104527,18.8658317 23.0981773,18.9987442 L23.7000101,19.3463801 C23.9866722,19.5119644 24.0850549,19.8784375 23.9198628,20.1653254 L22.6142682,22.4327408 C22.4484105,22.7207845 22.0799916,22.8191062 21.792667,22.6520054 L21.194396,22.3040662 C20.9818576,22.4519741 20.7535286,22.5836407 20.5160745,22.6962394 L20.5160745,23.3998637 C20.5160745,23.7312326 20.2474464,23.9998602 19.916077,23.9998602 L17.3048879,23.9998602 C16.9735184,23.9998602 16.7048904,23.7312326 16.7048904,23.3998637 L16.7048904,22.6974855 C16.4617962,22.583569 16.2286491,22.4508352 16.0135369,22.3023569 L15.4039462,22.65332 C15.1167175,22.8186878 14.7498133,22.7198476 14.5845215,22.4325754 L13.279887,20.1651601 C13.1148743,19.878373 13.2131712,19.5121325 13.4996076,19.3465114 L14.1012229,18.9986501 C14.0892236,18.8662047 14.0831413,18.7334713 14.0831413,18.6003729 C14.0831413,18.4679055 14.0894043,18.3349581 14.1016505,18.2014344 L13.4995526,17.8517213 C13.2136061,17.6856367 13.1159446,17.3195028 13.2811877,17.0330696 L14.5887022,14.7666166 C14.7543027,14.4795638 15.121263,14.3811258 15.4082977,14.5467582 L16.0147802,14.8967268 C16.2295713,14.7490445 16.4623117,14.61671 16.7048904,14.5028427 L16.7048904,13.7999196 Z M17.9048854,14.9009057 C17.9048854,15.1513616 17.7493134,15.3754693 17.5146637,15.4630356 C17.116889,15.6114768 16.7394271,15.8254993 16.4502715,16.0723201 C16.2570469,16.237255 15.9808915,16.2626224 15.7608523,16.1356496 L15.3282757,15.8860327 L14.6195591,17.114526 L15.0516884,17.3655172 C15.2703758,17.4925361 15.3859388,17.7430414 15.340627,17.9918479 C15.3026776,18.2002276 15.2831363,18.4028646 15.2831363,18.6003729 C15.2831363,18.8019924 15.3023965,19.0036131 15.3401919,19.2065357 C15.3867395,19.4564481 15.270744,19.7085693 15.0506734,19.8358168 L14.6185943,20.0856502 L15.3253219,21.3139214 L15.7613638,21.0628766 C15.9819256,20.9358913 16.2586042,20.9618723 16.45167,21.1276984 C16.7400219,21.3753666 17.1164682,21.5890276 17.5135729,21.7363419 C17.7487915,21.8236011 17.9048854,22.0479957 17.9048854,22.2988777 L17.9048854,22.7998672 L19.3160795,22.7998672 L19.3160795,22.2988777 C19.3160795,22.0481538 19.4719796,21.8238656 19.7069871,21.7364922 C20.0941438,21.5925513 20.4625601,21.3804367 20.7568149,21.1276984 C20.9506118,20.9612443 21.2285554,20.9357577 21.4493927,21.0641911 L21.8750408,21.3117373 L22.580955,20.0857819 L22.1484388,19.8359481 C21.9282291,19.7087487 21.8121278,19.4565427 21.858693,19.2065357 C21.8970864,19.0004026 21.9167086,18.7992274 21.9167086,18.6003729 C21.9167086,18.4055549 21.8968342,18.2036701 21.8582579,17.9918479 C21.8129462,17.7430414 21.9285091,17.4925361 22.1471965,17.3655172 L22.5796546,17.1143351 L21.8732532,15.8880542 L21.449456,16.1345931 C21.2291956,16.2627269 20.9520263,16.2377571 20.7582134,16.0723201 C20.463071,15.820389 20.0936305,15.6078981 19.7058949,15.4628838 C19.4714572,15.3752035 19.3160795,15.1512029 19.3160795,14.9009057 L19.3160795,14.3999161 L17.9048854,14.3999161 L17.9048854,14.9009057 Z M19.7999175,18.600388 C19.7999175,17.9372871 19.2628809,17.3998987 18.6009147,17.3998987 C17.9383655,17.3998987 17.3999275,17.9378697 17.3999275,18.600388 C17.3999275,19.2620161 17.9384681,19.7998847 18.6009147,19.7998847 C19.2627786,19.7998847 19.7999175,19.2625987 19.7999175,18.600388 Z M20.9999125,18.600388 C20.9999125,19.9252625 19.9255916,20.9998777 18.6009147,20.9998777 C17.2760639,20.9998777 16.1999325,19.9250892 16.1999325,18.600388 C16.1999325,17.2748991 17.2758591,16.1999057 18.6009147,16.1999057 C19.9257962,16.1999057 20.9999125,17.2747256 20.9999125,18.600388 Z"/>
79
- <symbol id="icon-copy" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
80
51
  <path stroke="none" fill-rule="evenodd" d="M8.2,16.5 C7.8,17.1 7.4,17.7 7.2,18.3 C7.1,18.7 7,18.9 7,19.1 C6.9,19.7 6,19.6 6,19 C6,18.9 6,18.8 6,18.6 C6,18.3 6.1,18 6.1,17.6 C6.2,16.6 6.5,15.5 6.9,14.6 C8.1,11.9 10.1,10.3 13.3,10.1 L13.3,9 C13.3,8.6 13.8,8.3 14.1,8.6 L17.8,11.5 C18.1,11.7 18.1,12.1 17.8,12.3 L14.1,15.2 C13.8,15.5 13.3,15.2 13.3,14.8 L13.3,13.8 C11,14 9.4,15 8.2,16.5 Z M13.8,12.9 C14.1,12.9 14.3,13.1 14.3,13.4 L14.3,13.8 L16.7,11.9 L14.3,10 L14.3,10.4 C14.3,10.7 14.1,10.9 13.8,10.9 C10.8,10.9 8.9,12.4 7.8,14.8 C7.7,15.1 7.6,15.3 7.5,15.6 C9,13.9 11,12.9 13.8,12.9 Z M20,17.9 C20,18.2 19.8,18.4 19.5,18.4 L14.9,18.4 L14.9,20.5 C14.9,20.8 14.7,21 14.4,21 L2.5,21 C2.2,21 2,20.8 2,20.5 L2,3.1 C2,2.8 2.2,2.6 2.5,2.6 L7.1,2.6 L7.1,0.5 C7.1,0.2 7.3,0 7.6,0 L15.3,0 C15.4,0 15.6,0.1 15.7,0.2 L20,4.5 C20,4.58067702 20,4.58067702 20,4.7 C20,4.8 20,4.8 20,4.9 C20,5.1 20,9.43333333 20,17.9 Z M19,5.3 L15.2,5.3 C14.9,5.3 14.7,5.1 14.7,4.8 L14.7,1 L8.1,1 L8.1,2.6 L10.1,2.6 C10.2,2.6 10.4,2.7 10.5,2.8 L14.7,7.1 C14.9,7.3 14.9,7.6 14.7,7.8 C14.7,7.9 14.5,8 14.4,8 L10.1,8 C9.9,8 9.6,7.7 9.6,7.5 L9.6,3.6 L3,3.6 L3,20 L13.9,20 L13.9,16.3 C13.9,16 14.1,15.8 14.4,15.8 C14.7,15.8 14.9,16 14.9,16.3 L14.9,17.4 L19,17.4 L19,5.3 Z M18.3,4.3 L15.7,1.7 L15.7,4.3 L18.3,4.3 Z M13.2,7 L10.6,4.3 L10.6,7 L13.2,7 Z"/>
81
- <symbol id="icon-countries" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
82
52
  <path stroke="none" fill-rule="evenodd" d="M12,0 C18.6268038,0 24,5.37351898 24,12 C24,18.6284651 18.6278197,24 12,24 C5.37151894,24 0,18.6288037 0,12 C0,5.3731803 5.37253487,0 12,0 Z M12,1.5 C6.20098985,1.5 1.5,6.2015546 1.5,12 C1.5,17.8003007 6.1999816,22.5 12,22.5 C17.7994,22.5 22.5,17.7999647 22.5,12 C22.5,9.70056598 21.7605385,7.57354347 20.5064629,5.84383271 C20.4001403,6.08797077 20.2786488,6.32776933 20.1420569,6.56045791 C19.6529769,7.39362115 19.0211263,8.04885391 18.2236069,8.4476136 C18.116852,8.50099106 17.9945243,8.51441924 17.8787323,8.48547125 C17.1213112,8.29611598 16.2730633,8.42550972 15.5194016,8.76808324 C15.4120694,8.8168706 15.311393,8.86834442 15.2212815,8.91939342 C15.3758397,9.13872547 15.5121533,9.44214137 15.6556647,9.82483828 C15.7425623,10.0565654 15.8224569,10.3023949 15.8940626,10.5479 C15.9099695,10.6024381 15.9242279,10.6526162 15.936746,10.6976591 C15.9817558,10.7139633 16.0390743,10.7226222 16.1111112,10.7226222 C16.244513,10.7226222 16.4026059,10.6910036 16.5641084,10.6371695 C16.6644473,10.6037232 16.7405545,10.5711058 16.7763933,10.5531864 C16.9688876,10.4569392 17.2013734,10.4946665 17.3535535,10.6468466 C17.9666352,11.2599283 17.8994637,12.0457282 17.3764132,12.891489 C17.1636814,13.2354716 16.8835363,13.5838209 16.5113544,13.9891078 C16.3452937,14.1699392 15.8094146,14.7272303 15.7254671,14.8186341 C15.6639039,14.8856654 15.6115692,14.9485816 15.5728636,14.9884083 L15.549,15.009 L15.562491,15.0154955 C15.5792749,15.0269977 15.6005688,15.0465093 15.6271072,15.0699255 C15.6610053,15.0996564 15.6610053,15.0996564 15.6981704,15.1319703 C15.9818673,15.3790049 16.108959,15.5200627 16.1927277,15.7685048 C16.3193079,16.1439179 16.1908807,16.5166262 15.8535535,16.8539534 C15.3710447,17.3364622 14.8857767,17.6546664 14.4857256,17.8424151 C14.3793634,19.0835073 13.6851801,19.874825 12.624295,20.2520286 C12.0707177,20.4488561 11.5836279,20.5004 11,20.5004 C10.2003237,20.5004 9,18.3398174 9,17.5004 C9,17.1849841 9.0789272,16.9745117 9.30278644,16.5267932 C9.45392721,16.2245117 9.5,16.1016508 9.5,16.0004 C9.5,15.9743641 9.44026873,15.8399686 9.32471563,15.666639 C9.26393424,15.5754669 9.19134806,15.4774756 9.10956563,15.3752475 C8.93553784,15.1577128 8.75951945,14.9670262 8.64644664,14.8539534 C8.55267845,14.7601852 8.5,14.6330082 8.5,14.5004 C8.5,13.9022524 8.37102724,13.6515053 8.12508139,13.5427714 C7.88430869,13.4363245 7.58378355,13.4253963 6.77158047,13.4718079 C6.407352,13.4926209 6.22195118,13.5004 6,13.5004 C5.10747905,13.5004 4.52026013,12.9784276 4.21933541,12.1759617 C4.05362035,11.7340549 4,11.3050921 4,11.0004 C4,10.8535339 4.01334161,10.6107166 4.05284729,10.3025723 C4.11856962,9.78993809 4.23709895,9.27631102 4.42363216,8.79132466 C4.88596035,7.58927139 5.69068108,6.75236184 6.90194195,6.51010966 C8.32402697,6.22569266 9.22046157,6.35375475 9.69355343,6.82684661 C9.82572604,6.95901922 9.90858006,7.09912092 9.95431923,7.23336003 C10.2579612,7.45628068 10.7245698,7.4977415 11.4178006,7.38220304 C11.6210844,7.3483224 11.8239522,7.30566327 12.128311,7.23542662 C12.5927136,7.12825681 12.8575252,7.06874448 13.0523402,7.03643643 C13.0564778,6.99705796 13.0606685,6.95577845 13.0648628,6.91278752 C13.0966406,6.58706407 13.1178156,6.26476938 13.1234982,5.96643347 C13.1312,5.56208628 13.1088274,5.2333999 13.0580415,5.02398035 C11.7972292,5.55691848 10.6326539,4.94336052 10.5021406,3.54661615 C10.4234547,2.69897983 11.0763806,2.05388562 12.2325347,1.50343117 C12.1557731,1.50085053 12.0779858,1.5 12,1.5 Z M14.3767331,1.77021949 L14.0700371,1.86405514 C13.826699,1.94118238 13.5879222,2.02375169 13.3581611,2.1114913 C12.1512717,2.57237019 11.4640138,3.08958335 11.4978314,3.45388206 C11.5655289,4.17837461 12.0561061,4.41332996 12.7763933,4.0531864 C13.350198,3.76628402 13.8149712,4.08317482 13.9953544,4.66297783 C14.098163,4.99343393 14.1337417,5.43816872 14.1233168,5.98547764 C14.1170827,6.31276673 14.0942623,6.66010745 14.0601374,7.00988748 C14.0359128,7.25818933 14.0115848,7.4548408 13.9949748,7.57111068 C13.9597856,7.81743505 13.7488253,8.0004 13.5,8.0004 C13.2851692,8.0004 13.1240283,8.03192757 12.3531706,8.20981782 C12.0303364,8.28431801 11.8104634,8.33055299 11.5821996,8.36859696 C10.5197136,8.54567794 9.73055924,8.43806598 9.14644665,7.85395339 C9.079013,7.78651974 9.03283018,7.70180772 9.01220839,7.61022306 L9,7.517 L8.99943457,7.53645564 C8.99813148,7.5443497 8.99482173,7.54232848 8.98644665,7.53395339 C8.79953851,7.34704525 8.2259731,7.26510734 7.09805809,7.49069034 C6.26789883,7.65672219 5.70712115,8.23993097 5.35697777,9.15030374 C5.20199415,9.55326117 5.10097693,9.99100244 5.04472896,10.4297366 C5.01105246,10.6924133 5,10.8935679 5,11.0004 C5,11.1957079 5.04012966,11.5167451 5.1556646,11.8248383 C5.32348988,12.2723724 5.58002097,12.5004 6,12.5004 C6.19703033,12.5004 6.36878108,12.4931937 6.71453068,12.4734366 C7.70836542,12.416646 8.08169799,12.4302217 8.52943256,12.6281675 C9.13143953,12.894318 9.45091915,13.4487607 9.49476544,14.2931922 C9.61228831,14.4188605 9.75088147,14.5761113 9.89043445,14.7505525 C9.98920758,14.8740189 10.0786584,14.9947775 10.1567659,15.1119388 C10.3745462,15.4386091 10.5,15.7208804 10.5,16.0004 C10.5,16.3158159 10.4210729,16.5262883 10.1972136,16.9740068 C10.0460729,17.2762883 10,17.3991492 10,17.5004 C10,17.6328627 10.2206944,18.1930868 10.4995787,18.6950785 C10.7529627,19.1511698 11.0463161,19.5004 11,19.5004 C11.4781006,19.5004 11.8698558,19.4589444 12.2892854,19.3098139 C13.0662009,19.0335773 13.5,18.490525 13.5,17.5004 C13.5,17.2851848 13.6377151,17.0941154 13.8418862,17.0260584 C13.9076499,17.0041371 14.043539,16.9458989 14.2259286,16.8445714 C14.5386534,16.6708354 14.8529204,16.4403729 15.1464467,16.1468466 C15.2055454,16.0877479 15.2255877,16.0689671 15.2349261,16.0706208 L15.238,16.073 L15.2267627,16.059556 C15.2011791,16.0316255 15.144532,15.9758651 15.0414748,15.886126 C15.0046753,15.8541351 15.0046753,15.8541351 14.9654856,15.8197634 C14.6506827,15.5419962 14.5,15.3400173 14.5,15.0004 C14.5,14.6159324 14.9394765,14.1374212 15.7748061,13.3127228 C16.108023,12.9498668 16.3526335,12.6457033 16.5259161,12.3655093 C16.7248574,12.0438257 16.8058936,11.8040803 16.7807227,11.6172758 C16.5580348,11.6834724 16.3334046,11.7226222 16.1111112,11.7226222 C15.7386284,11.7226222 15.4033591,11.6108658 15.1464467,11.3539534 C15.0823673,11.289874 15.0369079,11.209584 15.0149288,11.1216678 C15.0007821,11.0650809 14.9731269,10.9618348 14.9340626,10.8279 C14.8689495,10.6046551 14.7965003,10.3817346 14.7193355,10.1759617 C14.624559,9.92322447 14.5298008,9.71647928 14.4431884,9.57789947 C14.4013916,9.51102451 14.3908615,9.50089701 14.491742,9.50041858 C14.1468247,9.49876779 13.8313621,9.21930184 13.9418833,8.80735915 C13.9848531,8.64719901 14.079908,8.5277167 14.2212901,8.40121684 C14.424778,8.21914878 14.7420917,8.02294718 15.1055986,7.85771676 C15.9888589,7.4562348 16.9833891,7.28735232 17.9271957,7.47212035 C18.465705,7.1619117 18.9148756,6.67564683 19.2796635,6.05421928 C19.4847258,5.70488911 19.6521475,5.33177809 19.7847225,4.95477204 C18.3716748,3.39427524 16.4971374,2.26103504 14.3767331,1.77021949 Z"/>
83
- <symbol id="icon-customers" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
84
53
  <path stroke="none" fill-rule="evenodd" d="M24,21.6011958 C24,21.0017084 23.9,20.3023063 23.9,19.7028188 C23.8,18.8035875 23.7,18.0042709 23.5,17.504698 C23.1,16.2058084 21,15.106748 17,13.6080293 L17,12.708798 C17.1,12.6088834 17.3,12.4090543 17.4,12.1093105 C17.7,11.509823 17.9,10.810421 18,9.91118971 C19,9.51153138 19,7.81298348 18.2,7.21349599 C18.3,7.11358141 18.3,6.91375224 18.4,6.71392308 C18.6,6.11443558 18.8,5.61486267 18.8,5.01537518 C18.8,4.71563143 18.8,4.41588768 18.7,4.11614393 C18.3,2.6174252 15.9,1.41845021 14.3,2.51751062 C14.1,2.71733978 14,3.01708353 14.2,3.21691269 C14.4,3.41674186 14.7,3.51665644 14.9,3.31682728 C15.9,2.6174252 17.6,3.51665644 17.8,4.3159731 C17.8,4.51580226 17.9,4.71563143 17.8,4.91546059 C17.8,5.31511892 17.6,5.71477725 17.4,6.21435016 C17.4,6.11443558 17,7.21349599 17,7.31341057 C17,7.7130689 17.2,8.01281265 17.5,8.01281265 C17.8,8.01281265 17.8,9.01195847 17.5,9.01195847 C17.2,9.01195847 17,9.21178763 17,9.51153138 C17,10.5106772 16.8,11.2100793 16.6,11.7096522 C16.5,12.0093959 16.3,12.1093105 16.3,12.1093105 C16.2,12.2092251 16.1,12.4090543 16.1,12.5089689 L16.1,14.0076876 C16.1,14.2075168 16.2,14.4073459 16.4,14.5072605 C20.2,15.9060647 22.3,17.1050396 22.6,17.9043563 C22.7,18.3040146 22.9,19.0034167 22.9,19.9026479 C23,20.5021354 23,21.1016229 23,21.7011104 C23,21.801025 23,21.9009396 23,22.0008542 L21,22.0008542 C20.7,22.0008542 20.5,22.2006833 20.5,22.5004271 C20.5,22.8001708 20.7,23 21,23 L23.5,23 C23.8,23 24,22.8001708 24,22.5004271 C24,22.3005979 24,22.0008542 24,21.6011958 Z M18.9,19.7028188 C18.8,18.8035875 18.7,18.0042709 18.5,17.504698 C18.2,16.7053813 17.3,16.1058938 15.7,15.4064917 C15.1,15.106748 12.9,14.3074313 12,14.0076876 L12,12.1093105 C12.1,12.0093959 12.3,11.8095668 12.4,11.509823 C12.7,11.0102501 12.9,10.310848 13,9.4116168 C13.9,9.01195847 14,7.31341057 13.2,6.71392308 C13.2,6.71392308 13.2,6.71392308 13.2,6.61400849 C13.3,6.51409391 13.3,6.41417933 13.4,6.31426475 C13.7,5.61486267 13.9,4.91546059 13.8,4.3159731 C13.8,4.11614393 13.8,4.01622935 13.7,3.81640019 C13.1,1.51836479 7.5,1.41845021 6.3,3.41674186 C5.1,3.31682728 4.6,4.21605852 4.7,5.51494809 C4.7,5.81469183 4.8,6.11443558 4.9,6.41417933 C4.9,6.51409391 5,7.01366682 5,7.01366682 L5,9.01195847 C5,10.2109335 5.4,11.1101647 6.2,11.8095668 C6.5,12.0093959 6.7,12.2092251 7,12.3091397 L7,14.1076022 C6.7,14.2075168 6.4,14.3074313 6,14.5072605 C5.6,14.6071751 5.4,14.7070897 5.2,14.8070042 C2.1,15.9060647 0.9,16.6054667 0.5,17.6046126 C0.3,18.1041855 0.2,18.9035021 0.1,19.8027334 C0.1,20.4022209 0,21.0017084 0,21.6011958 C0,22.0008542 0,22.3005979 0,22.5004271 C0,22.8001708 0.2,23 0.5,23 L18.5,23 C18.8,23 19,22.8001708 19,22.5004271 C19,22.3005979 19,22.0008542 19,21.6011958 C19,21.0017084 18.9,20.4022209 18.9,19.7028188 Z M1,22.0008542 C1,21.9009396 1,21.801025 1,21.7011104 C1,21.1016229 1.1,20.4022209 1.1,19.9026479 C1.2,19.0034167 1.3,18.4039292 1.4,17.9043563 C1.6,17.3048688 2.8,16.7053813 5.4,15.8061501 C5.6,15.7062355 5.8,15.7062355 6.2,15.5064063 C6.8,15.3065772 7.2,15.106748 7.6,15.0068334 C7.9,14.9069188 8,14.7070897 8,14.5072605 L8,12.0093959 C8,11.8095668 7.9,11.6097376 7.6,11.509823 C7.5,11.4099084 7.1,11.3099939 6.8,11.0102501 C6.3,10.5106772 6,9.91118971 6,9.01195847 L6,7.01366682 C6,6.91375224 5.8,6.21435016 5.8,6.21435016 C5.8,5.91460642 5.7,5.61486267 5.7,5.41503351 C5.6,4.61571685 5.8,4.3159731 6.5,4.51580226 C6.8,4.51580226 7,4.3159731 7.1,4.11614393 C7.4,2.71733978 12.4,2.71733978 12.8,4.11614393 C12.8,4.21605852 12.8,4.3159731 12.8,4.41588768 C12.8,4.81554601 12.7,5.31511892 12.4,5.91460642 C12.4,6.014521 12.3,6.11443558 12.3,6.21435016 C12.3,6.31426475 12.2,6.31426475 12.2,6.51409391 C12,6.71392308 12,6.81383766 12,7.01366682 C12,7.31341057 12.2,7.51323973 12.5,7.51323973 C12.8,7.51323973 12.8,8.51238556 12.5,8.51238556 C12.2,8.51238556 12,8.71221472 12,9.01195847 C12,10.0111043 11.8,10.7105064 11.6,11.2100793 C11.5,11.509823 11.3,11.6097376 11.3,11.6097376 C11.1,11.6097376 11,11.8095668 11,12.0093959 L11,14.5072605 C11,14.7070897 11.1,14.9069188 11.3,15.0068334 C11.5,15.106748 14.5,16.2058084 15.3,16.5055521 C16.7,17.1050396 17.4,17.6046126 17.6,18.0042709 C17.7,18.4039292 17.9,19.1033313 17.9,20.0025625 C18,20.60205 18,21.2015375 18,21.801025 C18,21.9009396 18,22.0008542 18,22.1007688 L1,22.0008542 L1,22.0008542 Z"/>
85
- <symbol id="icon-dashboard" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
86
54
  <path stroke="none" fill-rule="evenodd" d="M5.3,12.7 L3.4,11.9 C3.1,11.8 2.9,11.9 2.7,12.2 C2.5,12.5 2.7,12.7 3,12.9 L4.8,13.7 C4.9,13.7 4.9,13.7 5,13.7 C5.2,13.7 5.4,13.6 5.5,13.4 C5.6,13.1 5.5,12.8 5.3,12.7 Z M12,9 C12.3,9 12.5,8.8 12.5,8.5 L12.5,6.5 C12.5,6.2 12.3,6 12,6 C11.7,6 11.5,6.2 11.5,6.5 L11.5,8.5 C11.5,8.8 11.7,9 12,9 Z M5.6,8.9 C5.4,8.7 5.1,8.7 4.9,8.9 C4.7,9.1 4.7,9.4 4.9,9.6 L6.3,11 C6.4,11.1 6.5,11.1 6.7,11.1 C6.9,11.1 7,11.1 7,11.1 C7.2,10.9 7.2,10.6 7,10.4 L5.6,8.9 Z M14.7,9.5 C14.8,9.5 14.8,9.5 14.9,9.5 C15.1,9.5 15.3,9.4 15.4,9.2 L16.2,7.4 C16.3,7.1 16.2,6.9 15.9,6.7 C15.6,6.6 15.4,6.7 15.2,7 L14.4,8.8 C14.3,9.1 14.4,9.4 14.7,9.5 Z M4.5,16 L2.5,16 C2.2,16 2,16.2 2,16.5 C2,16.8 2.2,17 2.5,17 L4.5,17 C4.8,17 5,16.8 5,16.5 C5,16.2 4.8,16 4.5,16 Z M18.5,13.3 C18.6,13.5 18.8,13.6 19,13.6 C19.1,13.6 19.1,13.6 19.2,13.6 L21,12.8 C21.3,12.7 21.4,12.4 21.3,12.1 C21.2,11.8 20.9,11.7 20.6,11.8 L18.8,12.6 C18.5,12.8 18.4,13.1 18.5,13.3 Z M12,4 C5.4,4 0,9.4 0,16 L0,20.5 C0,20.8 0.2,21 0.5,21 L23.5,21 C23.8,21 24,20.8 24,20.5 L24,16 C24,9.4 18.6,4 12,4 Z M23,20 L1,20 L1,16 C1,9.9 5.9,5 12,5 C18.1,5 23,9.9 23,16 L23,20 Z M18.4,9.6 C18.2,9.4 17.9,9.4 17.7,9.6 L13,14.3 C12.7,14.1 12.4,14 12,14 C10.9,14 10,14.9 10,16 C10,17.1 10.9,18 12,18 C13.1,18 14,17.1 14,16 C14,15.6 13.9,15.3 13.7,15 L18.3,10.4 C18.6,10.1 18.6,9.8 18.4,9.6 Z M12,17 C11.4,17 11,16.6 11,16 C11,15.4 11.4,15 12,15 C12.6,15 13,15.4 13,16 C13,16.6 12.6,17 12,17 Z M8.8,7 C8.7,6.8 8.4,6.7 8.2,6.8 C7.9,6.9 7.8,7.2 7.9,7.4 L8.7,9.2 C8.8,9.4 9,9.5 9.2,9.5 C9.3,9.5 9.3,9.5 9.4,9.5 C9.7,9.4 9.8,9.1 9.7,8.8 L8.8,7 Z M19,16.5 C19,16.8 19.2,17 19.5,17 L21.5,17 C21.8,17 22,16.8 22,16.5 C22,16.2 21.8,16 21.5,16 L19.5,16 C19.2,16 19,16.2 19,16.5 Z"/>
87
- <symbol id="icon-date-index" xmlns="http://www.w3.org/2000/svg">
88
- <symbol id="icon-delete" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
89
55
  <path stroke="none" fill-rule="evenodd" d="M20.0375,2.625 L14.35,2.625 L14.35,0.4375 C14.35,0.175 14.175,0 13.9125,0 L6.9125,0 C6.65,0 6.475,0.175 6.475,0.4375 L6.475,2.625 L0.7875,2.625 C0.525,2.625 0.35,2.8 0.35,3.0625 C0.35,3.325 0.525,3.5 0.7875,3.5 L2.975,3.5 L2.975,20.5625 C2.975,20.825 3.15,21 3.4125,21 L17.4125,21 C17.675,21 17.85,20.825 17.85,20.5625 L17.85,3.5 L20.0375,3.5 C20.3,3.5 20.475,3.325 20.475,3.0625 C20.475,2.8 20.3,2.625 20.0375,2.625 Z M7.35,0.875 L13.475,0.875 L13.475,2.625 L7.35,2.625 L7.35,0.875 Z M16.975,20.125 L3.85,20.125 L3.85,3.5 L16.975,3.5 L16.975,20.125 Z M6.9125,16.625 C7.175,16.625 7.35,16.45 7.35,16.1875 L7.35,6.5625 C7.35,6.3 7.175,6.125 6.9125,6.125 C6.65,6.125 6.475,6.3 6.475,6.5625 L6.475,16.1875 C6.475,16.45 6.65,16.625 6.9125,16.625 Z M10.4125,16.625 C10.675,16.625 10.85,16.45 10.85,16.1875 L10.85,6.5625 C10.85,6.3 10.675,6.125 10.4125,6.125 C10.15,6.125 9.975,6.3 9.975,6.5625 L9.975,16.1875 C9.975,16.45 10.2375,16.625 10.4125,16.625 Z M13.9125,16.625 C14.175,16.625 14.35,16.45 14.35,16.1875 L14.35,6.5625 C14.35,6.3 14.175,6.125 13.9125,6.125 C13.65,6.125 13.475,6.3 13.475,6.5625 L13.475,16.1875 C13.475,16.45 13.65,16.625 13.9125,16.625 Z"/>
90
- <symbol id="icon-dependent-scope" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
91
56
  <path stroke="none" fill-rule="evenodd" d="M12.2436796,17.7662798 L6.13132041,17.7662798 C6.22425178,18.0182902 6.275,18.2907187 6.275,18.575 C6.275,19.8659656 5.2284656,20.9125 3.9375,20.9125 C2.6465344,20.9125 1.6,19.8659656 1.6,18.575 C1.6,17.2840344 2.6465344,16.2375 3.9375,16.2375 C4.49947362,16.2375 5.01512823,16.4358152 5.41829798,16.7662798 L12.956702,16.7662798 C13.2201635,16.5503293 13.5316595,16.3908106 13.8727261,16.3061874 L14.0068576,15.6532516 L3.81767011,15.6532516 C3.61149236,15.6532516 3.42645558,15.5266957 3.35169663,15.334549 L0.0708486772,6.90205791 C-0.0566813617,6.57427804 0.185106991,6.22076058 0.536822151,6.22076058 L15.944559,6.22076058 L16.9265071,1.44075863 C16.9742703,1.20825303 17.1789186,1.04137178 17.4162795,1.04137178 L19.9508282,1.04137178 C20.2269705,1.04137178 20.4508282,1.26522941 20.4508282,1.54137178 C20.4508282,1.81751416 20.2269705,2.04137178 19.9508282,2.04137178 L17.8240065,2.04137178 L14.898387,16.2829261 C15.9686274,16.4969424 16.775,17.441802 16.775,18.575 C16.775,19.8659656 15.7284656,20.9125 14.4375,20.9125 C13.1465344,20.9125 12.1,19.8659656 12.1,18.575 C12.1,18.2907187 12.1507482,18.0182902 12.2436796,17.7662798 Z M9.46345215,10.7801302 L10.6694546,9.55327421 C10.8630359,9.35634558 11.1796067,9.35363205 11.3765354,9.54721336 C11.573464,9.74079468 11.5761775,10.0573655 11.3825962,10.2542942 L9.2885563,12.3845432 C9.09262423,12.5838632 8.77134671,12.5838632 8.57541465,12.3845432 L6.48137473,10.2542942 C6.28779341,10.0573655 6.29050695,9.74079468 6.48743558,9.54721336 C6.68436421,9.35363205 7.00093507,9.35634558 7.19451638,9.55327421 L8.46345215,10.8441518 L8.46345215,7.22076058 L1.26786948,7.22076058 L4.15964523,14.6532516 L14.212286,14.6532516 L15.7391306,7.22076058 L9.46345215,7.22076058 L9.46345215,10.7801302 Z M3.9375,19.9125 C4.67618085,19.9125 5.275,19.3136809 5.275,18.575 C5.275,17.8363191 4.67618085,17.2375 3.9375,17.2375 C3.19881915,17.2375 2.6,17.8363191 2.6,18.575 C2.6,19.3136809 3.19881915,19.9125 3.9375,19.9125 Z M14.4375,19.9125 C15.1761809,19.9125 15.775,19.3136809 15.775,18.575 C15.775,17.8363191 15.1761809,17.2375 14.4375,17.2375 C13.6988191,17.2375 13.1,17.8363191 13.1,18.575 C13.1,19.3136809 13.6988191,19.9125 14.4375,19.9125 Z"/>
92
- <symbol id="icon-dot-menu" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15">
93
57
  <path stroke="none" fill-rule="evenodd" d="M2.5,9 C1.67157288,9 1,8.32842712 1,7.5 C1,6.67157288 1.67157288,6 2.5,6 C3.32842712,6 4,6.67157288 4,7.5 C4,8.32842712 3.32842712,9 2.5,9 Z M7.5,9 C6.67157288,9 6,8.32842712 6,7.5 C6,6.67157288 6.67157288,6 7.5,6 C8.32842712,6 9,6.67157288 9,7.5 C9,8.32842712 8.32842712,9 7.5,9 Z M12.5,9 C11.6715729,9 11,8.32842712 11,7.5 C11,6.67157288 11.6715729,6 12.5,6 C13.3284271,6 14,6.67157288 14,7.5 C14,8.32842712 13.3284271,9 12.5,9 Z"/>
94
- <symbol id="icon-dropdown-chevron-down" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10">
95
58
  <polyline fill="none" stroke-linecap="round" stroke-linejoin="round" points="9 3 5 7 1 3"/>
96
- <symbol id="icon-dropdown-chevron-right" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10">
97
59
  <polyline fill="none" stroke-linecap="round" stroke-linejoin="round" points="9 3 5 7 1 3" transform="rotate(-90 5 5)"/>
98
- <symbol id="icon-dropdown-chevron-up" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10">
99
60
  <polyline fill="none" stroke-linecap="round" stroke-linejoin="round" points="9 3 5 7 1 3" transform="rotate(-180 5 5)"/>
100
- <symbol id="icon-edge" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24"><linearGradient id="EdgeA" gradientUnits="userSpaceOnUse" x1="5.528" y1="16.566" x2="22.24" y2="16.566">
101
61
  <stop offset="0" stop-color="#0c59a4"/>
102
62
  <stop offset="1" stop-color="#114a8b"/>
103
63
  </linearGradient>
104
64
  <use xlink:href="#EdgeH" fill="url(#EdgeA)"/>
105
65
  <radialGradient id="EdgeB" cx="839.093" cy="-912.225" r="1.044" gradientTransform="matrix(8.563,0,0,8.1348,-7170.3892,7437.5156)" gradientUnits="userSpaceOnUse">
106
66
  <stop offset=".72" stop-opacity="0"/>
107
67
  <stop offset=".95" stop-opacity=".53"/>
108
68
  <stop offset="1"/>
109
69
  </radialGradient>
110
70
  <use xlink:href="#EdgeH" opacity=".35" fill="url(#EdgeB)" enable-background="new"/>
111
71
  <linearGradient id="EdgeC" gradientUnits="userSpaceOnUse" x1="14.346" y1="9.322" x2="3.905" y2="20.695">
112
72
  <stop offset="0" stop-color="#1b9de2"/>
113
73
  <stop offset=".16" stop-color="#1595df"/>
114
74
  <stop offset=".67" stop-color="#0680d7"/>
115
75
  <stop offset="1" stop-color="#0078d4"/>
116
76
  </linearGradient>
117
77
  <use xlink:href="#EdgeI" fill="url(#EdgeC)"/>
118
78
  <radialGradient id="EdgeD" cx="597.16" cy="-1154.837" r="1.568" gradientTransform="matrix(1.2844,-8.4773,6.8504,1.0276,7150.6665,6267.6426)" gradientUnits="userSpaceOnUse">
119
79
  <stop offset=".76" stop-opacity="0"/>
120
80
  <stop offset=".95" stop-opacity=".5"/>
121
81
  <stop offset="1"/>
122
82
  </radialGradient>
123
83
  <use xlink:href="#EdgeI" opacity=".41" fill="url(#EdgeD)" enable-background="new"/>
124
84
  <radialGradient id="EdgeE" cx="1214.536" cy="-1357.069" r="2.216" gradientTransform="matrix(-0.3425 8.563 -18.2391 -0.685 -24333.3242 -11325.2383)" gradientUnits="userSpaceOnUse">
125
85
  <stop offset="0" stop-color="#35c1f1"/>
126
86
  <stop offset=".11" stop-color="#34c1ed"/>
127
87
  <stop offset=".23" stop-color="#2fc2df"/>
128
88
  <stop offset=".31" stop-color="#2bc3d2"/>
129
89
  <stop offset=".67" stop-color="#36c752"/>
130
90
  </radialGradient>
131
91
  <use xlink:href="#EdgeJ" fill="url(#EdgeE)"/>
132
92
  <radialGradient id="EdgeF" cx="1336.106" cy="-958.269" r="1.066" gradientTransform="matrix(2.3976,8.2205,-6.6791,1.9695,-9581.3789,-9088.8467)" gradientUnits="userSpaceOnUse">
133
93
  <stop offset="0" stop-color="#66eb6e"/>
134
94
  <stop offset="1" stop-color="#66eb6e" stop-opacity="0"/>
135
95
  </radialGradient>
136
96
  <use xlink:href="#EdgeJ" fill="url(#EdgeF)"/>
137
97
  <defs>
138
98
  <path id="EdgeH" d="M21.7 17.9c-.3.2-.6.3-1 .4-1.1.4-2.2.6-3.4.6-4.4 0-8.3-3.1-8.3-7 0-1.1.6-2 1.5-2.6-4 .2-5 4.3-5 6.8 0 6.9 6.4 7.6 7.8 7.6.7 0 1.9-.2 2.5-.4h.1c2.6-.9 4.8-2.6 6.2-4.9.1-.2.1-.4-.1-.5-.1-.1-.2-.1-.3 0h0z"/>
139
99
  <path id="EdgeI" d="M9.9 22.6c-.8-.5-1.6-1.2-2.1-2-2.5-3.4-1.7-8.1 1.7-10.6.4-.3.7-.5 1.1-.7.2-.1.7-.3 1.4-.3.9 0 1.8.5 2.4 1.2.4.5.6 1.1.6 1.7 0 0 2.3-7.5-7.5-7.5-4.1.1-7.5 4-7.5 7.4 0 1.8.4 3.6 1.1 5.2 2.6 5.5 8.9 8.2 14.7 6.3-2 .7-4.1.4-5.9-.7h0z"/>
140
100
  <path id="EdgeJ" d="M14.3 14c-.1.1-.3.2-.3.5 0 .2.2.5.4.7 1.3.9 3.9.8 3.9.8 1 0 2-.3 2.8-.8 1.8-1 2.8-2.9 2.9-5 0-2.1-.7-3.5-1.1-4.1C20.9 2.2 16.7 0 12 0 5.4 0 .1 5.3 0 11.8c0-3.4 3.4-6.2 7.5-6.2.3 0 2.2 0 3.9.9 1.5.8 2.3 1.8 2.9 2.7.6 1 .7 2.3.7 2.8 0 .6-.2 1.3-.7 2z"/>
141
101
  </defs>
142
- <symbol id="icon-edit" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
143
102
  <path stroke="none" fill-rule="evenodd" d="M7.1625566,18.6855797 C7.15603101,18.6929152 7.14925216,18.7001046 7.14222006,18.7071367 C7.13517241,18.7141844 7.12796672,18.7209776 7.12061439,18.7275165 L6.93219739,18.9159094 C6.86637603,18.9817223 6.78349056,19.0278556 6.6928716,19.0491159 L1.30453827,20.3132825 C0.94325229,20.3980445 0.618780344,20.0735614 0.70355473,19.7122783 L1.9677214,14.3247783 C1.98898221,14.2341711 2.03510978,14.1512961 2.10091262,14.0854806 L2.28983159,13.8965253 C2.29634032,13.8892112 2.30310088,13.8820423 2.31011328,13.8750299 C2.31710236,13.8680409 2.32424687,13.8613019 2.33153568,13.8548132 L13.3308258,2.85340783 C13.3316485,2.85257785 13.3324746,2.85175003 13.3333042,2.8509244 L14.5030049,1.68100331 C14.5057501,1.67812614 14.5085362,1.67527366 14.5113633,1.67244661 C14.5141671,1.66964278 14.5169959,1.66687922 14.5198491,1.66415591 L15.1003396,1.08355381 C15.9472542,0.237722152 17.3194956,0.237722152 18.1654701,1.08369663 L19.9341131,2.85150651 C20.7790357,3.69751233 20.7790357,5.06857125 19.9338641,5.91590939 L19.3787968,6.47090545 C19.3685479,6.48335133 19.3576057,6.49541776 19.3459701,6.50705339 C19.3343188,6.51870463 19.3222356,6.52966064 19.309772,6.53992143 L18.192426,7.65712426 C18.1811998,7.67098158 18.169123,7.68437754 18.1561958,7.69724226 C18.1438449,7.70953346 18.1310128,7.72104603 18.1177605,7.73178011 L7.1625566,18.6855797 Z M3.37134428,14.2291542 L6.78807776,17.6458876 L17.0952838,7.34000334 L13.6851797,3.91333521 L3.37134428,14.2291542 Z M2.8158286,15.087852 L1.86136465,19.1554918 L5.92912393,18.2011474 L2.8158286,15.087852 Z M14.3922207,3.2061582 L17.8024379,6.63293993 L18.2836247,6.15181484 L14.8650489,2.73323905 L14.3922207,3.2061582 Z M15.5720877,2.02606428 L18.9907769,5.44475341 L19.2263275,5.20923293 C19.6816309,4.75276209 19.6816309,4.013821 19.2268633,3.55847004 L17.4584466,1.79088672 C17.0028377,1.33527785 16.2634124,1.33527785 15.8072541,1.79085273 L15.5720877,2.02606428 Z"/>
144
- <symbol id="icon-email-template-variables" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
145
103
  <path stroke="none" fill-rule="evenodd" d="M19.5,-1.77635684e-14 C19.7454599,-1.77635684e-14 19.9496084,0.176875161 19.9919443,0.410124368 L20,0.5 L20,8.486 L23.7832644,11.087979 C23.7972097,11.097609 23.8058014,11.1040972 23.8142024,11.1108849 L23.7832644,11.087979 C23.8084004,11.10526 23.8316617,11.1246284 23.8528803,11.1457645 C23.8610613,11.153801 23.8690127,11.1623063 23.8767019,11.1711364 C23.88643,11.1823769 23.895375,11.1935879 23.9038117,11.2051442 C23.907644,11.210372 23.9118918,11.2164499 23.9160251,11.2226499 L23.9302284,11.2452372 C23.9358576,11.2547444 23.9411698,11.2644345 23.9461563,11.2742908 L23.9160251,11.2226499 C23.9364892,11.2533459 23.9531111,11.2854818 23.9660044,11.3184902 C23.9715731,11.3330523 23.9766182,11.3480426 23.9809493,11.3632742 C23.9836803,11.3723913 23.9860519,11.3817503 23.9881446,11.3911447 C23.9889496,11.3953557 23.9897385,11.3991118 23.9904845,11.4028795 L23.9952213,11.4302067 C23.997805,11.4486346 23.9993452,11.4671338 23.9998595,11.485616 L24,11.5 L24,22 C24,23.0539541 23.183733,23.9181281 22.1492093,23.9945117 L22,24 L2,24 C0.946045915,24 0.0818719427,23.183733 0.00548826356,22.1492093 L0,22 L0,11.5 L0.000140515329,11.485616 C0.000701566161,11.4654536 0.00248349015,11.4452709 0.00550924594,11.4251827 L0,11.5 C0,11.4631331 0.0040640316,11.4267953 0.0118952731,11.3915509 C0.0248876585,11.3326414 0.0487343085,11.2755107 0.0839748528,11.2226499 C0.119393981,11.1695212 0.163221385,11.1253579 0.212515446,11.0907482 L0.216735589,11.087979 L4,8.486 L4,0.5 C4,0.254540111 4.17687516,0.0503916296 4.41012437,0.00805566941 L4.5,-1.77635684e-14 L19.5,-1.77635684e-14 Z M19,0.999 L5,0.999 L5,13.898 L6.7773501,15.0839749 C7.00711444,15.2371511 7.06920138,15.5475858 6.91602515,15.7773501 C6.7798685,15.9815851 6.51945827,16.0533342 6.30189943,15.9591765 L6.2226499,15.9160251 L1,12.435 L1,22 C1,22.5124392 1.38640848,22.9354505 1.88345779,22.9932662 L2,23 L22,23 C22.5124392,23 22.9354505,22.6135915 22.9932662,22.1165422 L23,22 L23,12.434 L17.7773501,15.9160251 C17.5475858,16.0692014 17.2371511,16.0071144 17.0839749,15.7773501 C16.9478182,15.5731151 16.981746,15.3051406 17.1523373,15.1405316 L17.2226499,15.0839749 L19,13.897 L19,0.999 Z M15.5,16 C15.5851518,16 15.6684021,16.0217352 15.7421072,16.0625244 L15.8123475,16.1095656 L20.8123475,20.1095656 C21.0279785,20.2820704 21.0629392,20.5967166 20.8904344,20.8123475 C20.7370968,21.0040195 20.47145,21.0529396 20.2628659,20.9402888 L20.1876525,20.8904344 L15.323,16.999 L8.676,16.999 L3.81234752,20.8904344 C3.62067555,21.043772 3.35076933,21.0331862 3.17200088,20.8774963 L3.1095656,20.8123475 C2.95622802,20.6206756 2.96681377,20.3507693 3.12250373,20.1720009 L3.18765248,20.1095656 L8.18765248,16.1095656 C8.25414487,16.0563717 8.3327303,16.021338 8.41576513,16.0071458 L8.5,16 L15.5,16 Z M4,9.7 L1.392,11.493 L4,13.232 L4,9.7 Z M20,9.701 L20,13.231 L22.606,11.493 L20,9.701 Z M8.6800999,3.50005062 C8.95621432,3.49612127 9.18323465,3.71677086 9.18716401,3.99288527 C9.19109336,4.26899969 8.97044377,4.49602002 8.69432935,4.49994861 L8.27760165,4.50320939 L8.12170464,4.5 C8.01285353,4.5 7.94971943,4.56351572 7.89789084,4.83893987 L7.86787507,5.03081051 L7.83892086,5.28066202 L7.80056356,5.67605708 C7.73066687,6.35697452 7.58854766,6.87546025 7.30989178,7.22371662 L7.291,7.244 L7.32189039,7.27971073 C7.57693935,7.59923171 7.71713427,8.06088152 7.79080012,8.65806224 L7.86162535,9.37852845 L7.88964652,9.59952351 L7.9196979,9.7658425 C7.96181028,9.95433147 8.01347907,10.0161037 8.09127436,10.0275039 L8.12170464,10.0295669 L8.68721463,10.0295669 C8.963357,10.0295669 9.18721568,10.2534245 9.18721568,10.5295669 C9.18721568,10.7750268 9.01033947,10.9791752 8.77709026,11.0215112 L8.68721463,11.0295669 L8.12170464,11.0295669 C7.26992965,11.0295669 7.0049015,10.5954388 6.87634653,9.55345445 L6.81566902,8.93828681 C6.73130722,8.07277802 6.58559205,7.78469978 6.10226147,7.75301292 L5.99999996,7.75 C5.37100721,7.75 5.33516174,6.85922791 5.89416513,6.75911772 L5.99999996,6.75 L6.09934198,6.74683276 C6.54201994,6.71682794 6.69714745,6.46746814 6.78736981,5.73775702 L6.8286845,5.33629004 C6.95063691,4.03441936 7.17655543,3.49994861 8.14861655,3.50072478 L8.33083767,3.50318339 L8.6800999,3.50005062 Z M15.565511,3.49999895 C16.417286,3.49999895 16.6823141,3.93412703 16.8108691,4.97611137 L16.8715466,5.591279 C16.9559084,6.45678779 17.1016236,6.74486604 17.5849542,6.77655289 L17.6872157,6.77956581 C18.3162084,6.77956581 18.3520539,7.6703379 17.7930505,7.77044809 L17.6872157,7.77956581 L17.5878737,7.78273306 C17.1451957,7.81273787 16.9900682,8.06209767 16.8998458,8.79180879 L16.8585311,9.19327577 C16.7365787,10.4951465 16.5106602,11.0296172 15.5385991,11.028841 L15.356378,11.0263824 L15.0071157,11.0295152 C14.7310013,11.0334445 14.503981,10.812795 14.5000516,10.5366805 C14.4961223,10.2605661 14.7167719,10.0335458 14.9928863,10.0296172 L15.409614,10.0263564 L15.565511,10.0295658 C15.6743621,10.0295658 15.7374962,9.96605009 15.7893248,9.69062595 L15.8193406,9.49875531 L15.8482948,9.2489038 L15.8866521,8.85350873 C15.9565488,8.17259129 16.098668,7.65410556 16.3773239,7.30584919 L16.3962156,7.28556581 L16.3653253,7.24985508 C16.1102763,6.9303341 15.9700814,6.46868429 15.8964155,5.87150357 L15.8255903,5.15103737 L15.7975691,4.93004231 L15.7675177,4.76372331 C15.7254054,4.57523434 15.6737366,4.51346207 15.5959413,4.50206192 L15.565511,4.49999895 L15.000001,4.49999895 C14.7238586,4.49999895 14.5,4.27614132 14.5,3.99999895 C14.5,3.75453906 14.6768762,3.55039058 14.9101254,3.50805461 L15.000001,3.49999895 L15.565511,3.49999895 Z M10.8102878,4.95603593 C11.4246541,4.95603593 11.7534657,5.33998872 12.2346852,6.35357101 L12.4139542,6.1317314 L12.6147457,5.8887544 L12.7903393,5.6839307 C13.1943275,5.2235863 13.4379772,5.00226706 13.7329264,4.96260665 L13.8334331,4.95603593 L14.6305403,4.95603593 C14.9066827,4.95603593 15.1305403,5.17989356 15.1305403,5.45603593 C15.1305403,5.70149582 14.9536652,5.9056443 14.720416,5.94798026 L14.6305403,5.95603593 L13.8772449,5.95672339 C13.9102844,5.95824653 13.912828,5.96272133 13.9012672,5.97414965 L13.885612,5.98804402 C13.8423061,6.02539126 13.7919447,6.07375081 13.7346333,6.13302979 L13.5419548,6.34353217 L13.2867349,6.64450272 L12.699,7.374 L12.7897302,7.56672362 C12.8148142,7.61849862 12.8392082,7.6679802 12.8629223,7.71521485 L12.9971306,7.97203125 L13.1155127,8.17715172 C13.2445838,8.38717046 13.3423438,8.49619758 13.4122956,8.52017282 L13.4405825,8.52528713 L14.1769959,8.52528713 C14.4531383,8.52528713 14.6769959,8.74914476 14.6769959,9.02528713 C14.6769959,9.27074702 14.5001208,9.47489551 14.2668716,9.51723147 L14.1769959,9.52528713 L13.4405825,9.52528713 C12.8881101,9.52528713 12.5563455,9.26098417 12.1585952,8.54016453 L11.998,8.232 L11.7555322,8.51516504 C11.1733903,9.174225 10.7826814,9.48028908 10.3810661,9.52064998 L10.2526165,9.52520826 L9.5532417,9.52022448 C9.27710836,9.51799094 9.05506871,9.29232999 9.05730225,9.01619665 C9.05953579,8.74006331 9.28519674,8.51802365 9.56133008,8.5202572 L10.2881,8.52528713 C10.2985865,8.52528713 10.3157481,8.51750179 10.3391078,8.50220981 L10.4273049,8.43409261 L10.6230709,8.25112493 L10.8864169,7.97622349 L11.2076856,7.61503189 L11.4492748,7.32908545 L11.533,7.225 L11.4347035,7.00590315 L11.2880156,6.69949578 L11.1581492,6.44822113 L11.0461624,6.25044874 L10.9531134,6.10454815 C10.8976285,6.02420937 10.8554742,5.97736482 10.8280614,5.96184055 L10.8102878,5.95603593 L9.94253248,5.95603593 C9.6663901,5.95603593 9.44253248,5.73217831 9.44253248,5.45603593 C9.44253248,5.21057604 9.61940764,5.00642756 9.85265685,4.9640916 L9.94253248,4.95603593 L10.8102878,4.95603593 Z"/>
146
- <symbol id="icon-email-templates" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
147
104
  <path stroke="none" fill-rule="evenodd" d="M19.1459,9.5 C19.4220424,9.5 19.6459,9.72385763 19.6459,10 L19.6459,10 L19.645,11.038 L19.8407928,11.1266902 C20.0957933,11.2503406 20.3413448,11.3920808 20.5715178,11.5493378 L20.5715178,11.5493378 L20.726,11.661 L21.6147616,11.1456466 C21.8274372,11.022111 22.0933517,11.0729888 22.2469507,11.2541356 L22.2469507,11.2541356 L22.2989622,11.3280857 L23.9309622,14.1560857 C24.0689861,14.3952595 23.9869878,14.7010387 23.7478139,14.8390624 L23.7478139,14.8390624 L22.855,15.354 L22.8729541,15.4950956 C22.8808804,15.5770503 22.8868669,15.658725 22.8908718,15.7401867 L22.8908718,15.7401867 L22.8969,15.984 C22.8969,16.1455461 22.888936,16.3073889 22.8733174,16.4708727 L22.8733174,16.4708727 L22.856,16.614 L23.749656,17.1298465 C23.9622748,17.2524423 24.0507867,17.5076038 23.970993,17.7308039 L23.970993,17.7308039 L23.9330948,17.8126844 L22.3030948,20.6406844 C22.1650133,20.8802515 21.8587016,20.962256 21.6193963,20.8237215 L21.6193963,20.8237215 L20.727,20.306 L20.5725295,20.4190165 C20.3428021,20.5761121 20.0975725,20.7179628 19.8426196,20.8421301 L19.8426196,20.8421301 L19.645,20.932 L19.6459,21.969 C19.6459,22.2144599 19.4690248,22.4186084 19.2357756,22.4609443 L19.2357756,22.4609443 L19.1459,22.469 L15.8809,22.469 C15.6047576,22.469 15.3809,22.2451424 15.3809,21.969 L15.3809,21.969 L15.38,20.932 L15.1754935,20.83951 C14.9166472,20.7144844 14.6684575,20.5724966 14.4378646,20.4161799 L14.4378646,20.4161799 L14.283,20.305 L13.3808287,20.8246294 C13.1682937,20.946637 12.9036222,20.8952574 12.7506475,20.7146243 L12.7506475,20.7146243 L12.6988378,20.6409143 L11.0668378,17.8129143 C10.9287783,17.5736788 11.0108581,17.2678186 11.250144,17.1298465 L11.250144,17.1298465 L12.142,16.614 L12.126492,16.4746955 L12.1088285,16.2291642 L12.1029,15.984 C12.1029,15.8217943 12.1109932,15.659005 12.1268459,15.4950956 L12.1268459,15.4950956 L12.143,15.354 L11.2519861,14.8390624 C11.0393074,14.7163287 10.9509221,14.4609607 11.0309706,14.2377366 L11.0309706,14.2377366 L11.0689704,14.1558561 L12.7029704,11.3278561 C12.8409887,11.0889849 13.1463986,11.0070374 13.3854567,11.1447317 L13.3854567,11.1447317 L14.284,11.662 L14.4389211,11.5521515 C14.6699965,11.3956542 14.9185525,11.2537536 15.1774352,11.1292506 L15.1774352,11.1292506 L15.38,11.037 L15.3809,10 C15.3809,9.75454011 15.5577752,9.55039163 15.7910244,9.50805567 L15.7910244,9.50805567 L15.8809,9.5 Z M18.645,10.5 L16.38,10.5 L16.3809,11.373 C16.3809,11.5521539 16.2853829,11.7151045 16.1347011,11.8038237 L16.1347011,11.8038237 L16.05495,11.8417287 C15.5314963,12.0360994 15.0350611,12.3167545 14.6516024,12.6442215 C14.4906918,12.7816362 14.2607034,12.8028813 14.0773433,12.6972683 L14.0773433,12.6972683 L13.318,12.26 L12.185,14.222 L12.9388139,14.6579376 C13.0961935,14.748759 13.1898199,14.9161858 13.1889203,15.0934106 L13.1889203,15.0934106 L13.1804508,15.1825302 C13.1292374,15.4575653 13.1029,15.7233945 13.1029,15.984 C13.1029,16.2478115 13.1287558,16.5132795 13.1795074,16.7867739 C13.2181769,16.9951595 13.1212638,17.2052853 12.937656,17.3111535 L12.937656,17.3111535 L12.182,17.746 L13.315,19.709 L14.0779713,19.2713706 C14.2350705,19.1811864 14.4262285,19.1840112 14.5788431,19.2730853 L14.5788431,19.2730853 L14.6516024,19.3247785 C15.034348,19.6516365 15.5304915,19.9325966 16.0564617,20.1298354 C16.2516136,20.2030174 16.3809,20.3895777 16.3809,20.598 L16.3809,20.598 L16.38,21.469 L18.645,21.469 L18.6459,20.598 C18.6459,20.4193523 18.7408859,20.2567665 18.8909192,20.1678738 L18.8909192,20.1678738 L18.9703383,20.1298354 C19.4839398,19.9372348 19.9699345,19.6580563 20.3601976,19.3247785 C20.5214134,19.1871031 20.7519277,19.1660637 20.9354037,19.2722785 L20.9354037,19.2722785 L21.686,19.707 L22.816,17.746 L22.062144,17.3111535 C21.9052187,17.2206705 21.8115798,17.0539961 21.8118749,16.8772908 L21.8118749,16.8772908 L21.8199921,16.7884085 C21.8708862,16.508971 21.8969,16.2441642 21.8969,15.984 C21.8969,15.7233945 21.8705626,15.4575653 21.8193492,15.1825302 C21.7805422,14.9741227 21.8773765,14.7638959 22.0609861,14.6579376 L22.0609861,14.6579376 L22.814,14.222 L21.683,12.262 L20.9360384,12.6963534 C20.7787074,12.7877413 20.5866147,12.785441 20.4332893,12.6961092 L20.4332893,12.6961092 L20.3601976,12.6442215 C19.9692342,12.3103456 19.4831687,12.0315934 18.97185,11.8417287 C18.7759094,11.7689713 18.6459,11.5820128 18.6459,11.373 L18.6459,11.373 L18.645,10.5 Z M17.4993,13.3084 C18.9771326,13.3084 20.1753,14.5069477 20.1753,15.9844 C20.1753,17.4633523 18.9776325,18.6614 17.4993,18.6614 C16.0209675,18.6614 14.8233,17.4633523 14.8233,15.9844 C14.8233,14.5069477 16.0214674,13.3084 17.4993,13.3084 Z M17.4993,14.3084 C16.5738232,14.3084 15.8233,15.0591615 15.8233,15.9844 C15.8233,16.9111385 16.5733234,17.6614 17.4993,17.6614 C18.4252766,17.6614 19.1753,16.9111385 19.1753,15.9844 C19.1753,15.0591615 18.4247768,14.3084 17.4993,14.3084 Z M19.974,2 C21.0304802,2 21.9160478,2.81758623 21.9943711,3.85097062 L22,4 L22,8.5 C22,8.77614237 21.7761424,9 21.5,9 C21.2545401,9 21.0503916,8.82312484 21.0080557,8.58987563 L21,8.5 L21,4 C21,3.88482227 20.979175,3.77365967 20.9410423,3.6699602 L11.2854433,11.3905177 C11.1289226,11.5156658 10.9159768,11.5335199 10.7433581,11.4440921 L10.6608572,11.3904382 L1.04372448,3.69767848 C1.02604247,3.75674208 1.01344955,3.8183 1.00645021,3.88183877 L1,4 L1,15 C1,15.5200168 1.37011495,15.936533 1.85914927,15.9933822 L1.974,16 L9.5,16 C9.77614237,16 10,16.2238576 10,16.5 C10,16.7454599 9.82312484,16.9496084 9.58987563,16.9919443 L9.5,17 L1.974,17 C0.921476626,17 0.07969209,16.1861995 0.00534085813,15.1495456 L3.55271368e-15,15 L3.55271368e-15,4 C3.55271368e-15,2.9427916 0.793683681,2.0815761 1.82509792,2.00546809 L1.974,2 L19.974,2 Z M19.974,3 L1.974,3 C1.91260989,3 1.8526945,3.00557204 1.79470021,3.01626178 L10.973,10.359 L20.1558268,3.01620825 C20.1323367,3.01198086 20.1085862,3.0085542 20.0846069,3.00595927 L19.974,3 Z"/>
148
- <symbol id="icon-error-cross-filled" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 23">
149
105
  <polygon fill-rule="evenodd" points="7 11.5 0 18.5 4.5 23 11.5 16 18.5 23 23 18.5 16 11.5 23 4.5 18.5 0 11.5 7 4.5 0 0 4.5"/>
150
- <symbol id="icon-error-cross-outlined" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25 25">
151
106
  <path stroke="none" fill-rule="evenodd" d="M0.146446609,4.64644661 L0.0885911588,4.7156945 C-0.0464048927,4.91056264 -0.0271197425,5.17998704 0.146446609,5.35355339 L6.793,12 L0.146446609,18.6464466 C-0.0488155365,18.8417088 -0.0488155365,19.1582912 0.146446609,19.3535534 L4.64644661,23.8535534 L4.7156945,23.9114088 C4.91056264,24.0464049 5.17998704,24.0271197 5.35355339,23.8535534 L12,17.207 L18.6464466,23.8535534 C18.8417088,24.0488155 19.1582912,24.0488155 19.3535534,23.8535534 L23.8535534,19.3535534 L23.9114088,19.2843055 C24.0464049,19.0894374 24.0271197,18.820013 23.8535534,18.6464466 L17.207,12 L23.8535534,5.35355339 C24.0488155,5.15829124 24.0488155,4.84170876 23.8535534,4.64644661 L19.3535534,0.146446609 L19.2843055,0.0885911588 C19.0894374,-0.0464048927 18.820013,-0.0271197425 18.6464466,0.146446609 L12,6.793 L5.35355339,0.146446609 C5.15829124,-0.0488155365 4.84170876,-0.0488155365 4.64644661,0.146446609 L0.146446609,4.64644661 Z M19,1.207 L22.793,5 L16.1464466,11.6464466 L16.0885912,11.7156945 C15.9535951,11.9105626 15.9728803,12.179987 16.1464466,12.3535534 L22.793,19 L19,22.793 L12.3535534,16.1464466 L12.2843055,16.0885912 C12.0894374,15.9535951 11.820013,15.9728803 11.6464466,16.1464466 L5,22.793 L1.207,19 L7.85355339,12.3535534 L7.91140884,12.2843055 C8.04640489,12.0894374 8.02711974,11.820013 7.85355339,11.6464466 L1.207,5 L5,1.207 L11.6464466,7.85355339 C11.8417088,8.04881554 12.1582912,8.04881554 12.3535534,7.85355339 L19,1.207 Z" transform="translate(.5 .5)"/>
152
- <symbol id="icon-expand" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19 17">
153
107
  <path stroke="none" fill-rule="evenodd" d="M16.6417907,5 L13.2506296,1.16215105 L14.7493704,-0.162151049 L20.3185276,6.14058239 L14.7338742,12.1136235 L13.2729617,10.7477046 L16.7769776,7 L0,7 L0,5 L16.6417907,5 Z M0,15 L8,15 L8,17 L0,17 L0,15 Z M0,10 L8,10 L8,12 L0,12 L0,10 Z"/>
154
- <symbol id="icon-export" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
155
108
  <path stroke="none" fill-rule="evenodd" d="M8.9,4.9 L12,1.7 L12,12.5 C12,12.8 12.2,13 12.5,13 C12.8,13 13,12.8 13,12.5 L13,1.7 L16.1,4.8 C16.2,5 16.4,5 16.5,5 C16.6,5 16.8,5 16.9,4.9 C17.1,4.7 17.1,4.4 16.9,4.2 L12.9,0.2 C12.9,0.2 12.8,0.1 12.7,0.1 C12.6,0 12.4,0 12.3,0 C12.2,0 12.2,0.1 12.1,0.1 L8.1,4.1 C8,4.3 8,4.7 8.1,4.9 C8.2,5.1 8.7,5 8.9,4.9 Z M16,21 L20,21 C20.3,21 20.5,20.8 20.5,20.5 C20.5,20.2 20.3,20 20,20 L16,20 C15.7,20 15.5,20.2 15.5,20.5 C15.5,20.8 15.7,21 16,21 Z M24,17.5 C24,17.4 24,17.4 24,17.5 C24,17.4 23.9,17.3 23.9,17.3 L23.9,17.3 L18.9,11.3 C18.8,11.2 18.7,11.1 18.5,11.1 L17.5,11.1 C17.2,11.1 17,11.3 17,11.6 C17,11.9 17.2,12.1 17.5,12.1 L18.3,12.1 L22.5,17.1 L1.6,17.1 L5.8,12.1 L7,12.1 C7.3,12.1 7.5,11.9 7.5,11.6 C7.5,11.3 7.3,11 7,11 L5.5,11 C5.4,11 5.2,11.1 5.1,11.2 L0.1,17.2 L0.1,17.2 C0.1,17.3 0,17.3 0,17.4 C0,17.4 0,17.4 0,17.5 L0,17.5 L0,21.5 C3.60822483e-16,22.9 1.1,24 2.5,24 L21.5,24 C22.9,24 24,22.9 24,21.5 L24,17.5 L24,17.5 Z M23,21.5 C23,22.3 22.3,23 21.5,23 L2.5,23 C1.7,23 1,22.3 1,21.5 L1,18 L23,18 L23,21.5 Z"/>
156
- <symbol id="icon-filter" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
157
109
  <path stroke="none" fill-rule="evenodd" d="M3.6,3.9 L10.3,10.6 C10.4,10.8 10.4,10.9 10.4,11 L10.4,16.9 L11.4,16 L11.4,11 C11.4,10.9 11.4,10.8 11.5,10.7 L18.2,4 L3.6,4 L3.6,3.9 Z M10,18.5 C9.9,18.5 9.9,18.5 9.8,18.5 C9.6,18.4 9.5,18.3 9.5,18.1 L9.5,11.2 L2.1,3.8 C2,3.7 2,3.5 2,3.3 C2.1,3.1 2.3,3 2.5,3 L19.3,3 C19.5,3 19.7,3.1 19.7,3.3 C19.8,3.5 19.7,3.7 19.6,3.8 L12.3,11.2 L12.3,16.2 C12.3,16.3 12.3,16.4 12.2,16.5 L10.3,18.4 C10.2,18.5 10.1,18.5 10,18.5 L10,18.5 Z"/>
158
- <symbol id="icon-firefox" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 77.42 79.97"><defs>
159
110
  <linearGradient id="FirefoxA" x1="69.49" x2="5.147" y1="12.386" y2="74.466" xlink:href="#FirefoxO">
160
111
  <stop stop-color="#fff44f" offset=".048"/>
161
112
  <stop stop-color="#ffe847" offset=".111"/>
162
113
  <stop stop-color="#ffc830" offset=".225"/>
163
114
  <stop stop-color="#ff980e" offset=".368"/>
164
115
  <stop stop-color="#ff8b16" offset=".401"/>
165
116
  <stop stop-color="#ff672a" offset=".462"/>
166
117
  <stop stop-color="#ff3647" offset=".534"/>
167
118
  <stop stop-color="#e31587" offset=".705"/>
168
119
  </linearGradient>
169
120
  <radialGradient id="FirefoxB" cx="-7907" cy="-8515" r="80.8" gradientTransform="translate(7974 8524)" xlink:href="#FirefoxO">
170
121
  <stop stop-color="#ffbd4f" offset=".129"/>
171
122
  <stop stop-color="#ffac31" offset=".186"/>
172
123
  <stop stop-color="#ff9d17" offset=".247"/>
173
124
  <stop stop-color="#ff980e" offset=".283"/>
174
125
  <stop stop-color="#ff563b" offset=".403"/>
175
126
  <stop stop-color="#ff3750" offset=".467"/>
176
127
  <stop stop-color="#f5156c" offset=".71"/>
177
128
  <stop stop-color="#eb0878" offset=".782"/>
178
129
  <stop stop-color="#e50080" offset=".86"/>
179
130
  </radialGradient>
180
131
  <radialGradient id="FirefoxC" cx="-7937" cy="-8482" r="80.8" gradientTransform="translate(0 0) translate(7974 8524)" xlink:href="#FirefoxO">
181
132
  <stop stop-color="#960e18" offset=".3"/>
182
133
  <stop stop-color="#b11927" stop-opacity=".74" offset=".351"/>
183
134
  <stop stop-color="#db293d" stop-opacity=".343" offset=".435"/>
184
135
  <stop stop-color="#f5334b" stop-opacity=".094" offset=".497"/>
185
136
  <stop stop-color="#ff3750" stop-opacity="0" offset=".53"/>
186
137
  </radialGradient>
187
138
  <radialGradient id="FirefoxD" cx="-7927" cy="-8533" r="58.53" gradientTransform="translate(7974 8524)" xlink:href="#FirefoxO">
188
139
  <stop stop-color="#fff44f" offset=".132"/>
189
140
  <stop stop-color="#ffdc3e" offset=".252"/>
190
141
  <stop stop-color="#ff9d12" offset=".506"/>
191
142
  <stop stop-color="#ff980e" offset=".526"/>
192
143
  </radialGradient>
193
144
  <radialGradient id="FirefoxE" cx="-7946" cy="-8461" r="38.47" gradientTransform="translate(7974 8524)" xlink:href="#FirefoxO">
194
145
  <stop stop-color="#3a8ee6" offset=".353"/>
195
146
  <stop stop-color="#5c79f0" offset=".472"/>
196
147
  <stop stop-color="#9059ff" offset=".669"/>
197
148
  <stop stop-color="#c139e6" offset="1"/>
198
149
  </radialGradient>
199
150
  <radialGradient id="FirefoxF" cx="-7936" cy="-8492" r="20.4" gradientTransform="matrix(0.972,-0.235,0.275,1.138,10090,7834)" xlink:href="#FirefoxO">
200
151
  <stop stop-color="#9059ff" stop-opacity="0" offset=".206"/>
201
152
  <stop stop-color="#8c4ff3" stop-opacity=".064" offset=".278"/>
202
153
  <stop stop-color="#7716a8" stop-opacity=".45" offset=".747"/>
203
154
  <stop stop-color="#6e008b" stop-opacity=".6" offset=".975"/>
204
155
  </radialGradient>
205
156
  <radialGradient id="FirefoxG" cx="-7938" cy="-8518" r="27.68" gradientTransform="translate(7974 8524)" xlink:href="#FirefoxO">
206
157
  <stop stop-color="#ffe226" offset="0"/>
207
158
  <stop stop-color="#ffdb27" offset=".121"/>
208
159
  <stop stop-color="#ffc82a" offset=".295"/>
209
160
  <stop stop-color="#ffa930" offset=".502"/>
210
161
  <stop stop-color="#ff7e37" offset=".732"/>
211
162
  <stop stop-color="#ff7139" offset=".792"/>
212
163
  </radialGradient>
213
164
  <radialGradient id="FirefoxH" cx="-7916" cy="-8536" r="118.1" gradientTransform="translate(7974 8524)" xlink:href="#FirefoxO">
214
165
  <stop stop-color="#fff44f" offset=".113"/>
215
166
  <stop stop-color="#ff980e" offset=".456"/>
216
167
  <stop stop-color="#ff5634" offset=".622"/>
217
168
  <stop stop-color="#ff3647" offset=".716"/>
218
169
  <stop stop-color="#e31587" offset=".904"/>
219
170
  </radialGradient>
220
171
  <radialGradient id="FirefoxI" cx="-7927" cy="-8523" r="86.5" gradientTransform="matrix(.105 .995 -.653 .069 -4685 8470)" xlink:href="#FirefoxO">
221
172
  <stop stop-color="#fff44f" offset="0"/>
222
173
  <stop stop-color="#ffe847" offset=".06"/>
223
174
  <stop stop-color="#ffc830" offset=".168"/>
224
175
  <stop stop-color="#ff980e" offset=".304"/>
225
176
  <stop stop-color="#ff8b16" offset=".356"/>
226
177
  <stop stop-color="#ff672a" offset=".455"/>
227
178
  <stop stop-color="#ff3647" offset=".57"/>
228
179
  <stop stop-color="#e31587" offset=".737"/>
229
180
  </radialGradient>
230
181
  <radialGradient id="FirefoxJ" cx="-7938" cy="-8508" r="73.72" gradientTransform="translate(7974 8524)" xlink:href="#FirefoxO">
231
182
  <stop stop-color="#fff44f" offset=".137"/>
232
183
  <stop stop-color="#ff980e" offset=".48"/>
233
184
  <stop stop-color="#ff5634" offset=".592"/>
234
185
  <stop stop-color="#ff3647" offset=".655"/>
235
186
  <stop stop-color="#e31587" offset=".904"/>
236
187
  </radialGradient>
237
188
  <radialGradient id="FirefoxK" cx="-7919" cy="-8504" r="80.69" gradientTransform="translate(7974 8524)" xlink:href="#FirefoxO">
238
189
  <stop stop-color="#fff44f" offset=".094"/>
239
190
  <stop stop-color="#ffe141" offset=".231"/>
240
191
  <stop stop-color="#ffaf1e" offset=".509"/>
241
192
  <stop stop-color="#ff980e" offset=".626"/>
242
193
  </radialGradient>
243
194
  <linearGradient id="FirefoxL" x1="68.71" x2="13.97" y1="12.056" y2="66.806" xlink:href="#FirefoxO">
244
195
  <stop stop-color="#fff44f" stop-opacity=".8" offset=".167"/>
245
196
  <stop stop-color="#fff44f" stop-opacity=".634" offset=".266"/>
246
197
  <stop stop-color="#fff44f" stop-opacity=".217" offset=".489"/>
247
198
  <stop stop-color="#fff44f" stop-opacity="0" offset=".6"/>
248
199
  </linearGradient>
249
200
  <path id="FirefoxM" d="M74.62 26.83c-1.684-4.052-5.1-8.427-7.775-9.81a40.27 40.27 0 0 1 3.925 11.76v.037l.007.041a35.1 35.1 0 0 1-1.206 26.16c-4.442 9.531-15.19 19.3-32.02 18.82-18.18-.515-34.2-14.01-37.19-31.68-.545-2.787 0-4.2.274-6.465a28.88 28.88 0 0 0-.623 5.348v.2a38.76 38.76 0 0 0 76.95 6.554l.176-1.5a39.86 39.86 0 0 0-2.514-19.47z"/>
250
201
  <path id="FirefoxN" d="M38.82 33.79c-.064.964-3.47 4.289-4.661 4.289-11.02 0-12.81 6.667-12.81 6.667.488 5.614 4.4 10.24 9.129 12.68a13.44 13.44 0 0 0 .654.312q.569.252 1.138.466a17.24 17.24 0 0 0 5.043.973c19.32.906 23.06-23.1 9.119-30.07a13.38 13.38 0 0 1 9.345 2.269 19.56 19.56 0 0 0-16.98-9.917c-.46 0-.91.038-1.362.069a19.39 19.39 0 0 0-10.67 4.111c.591.5 1.258 1.168 2.663 2.553 2.63 2.591 9.375 5.275 9.39 5.59z"/>
251
202
  <linearGradient id="FirefoxO" gradientUnits="userSpaceOnUse"/>
252
203
  </defs>
253
204
  <path d="M74.62 26.83c-1.684-4.052-5.1-8.427-7.775-9.81a40.27 40.27 0 0 1 3.925 11.76l.007.065c-4.382-10.92-11.81-15.33-17.88-24.92l-.913-1.484a12.24 12.24 0 0 1-.427-.8 7.053 7.053 0 0 1-.578-1.535.1.1 0 0 0-.088-.1.138.138 0 0 0-.073 0c-.005 0-.013.009-.019.011s-.019.011-.028.015l.015-.026c-9.735 5.7-13.04 16.25-13.34 21.53a19.39 19.39 0 0 0-10.67 4.111 11.59 11.59 0 0 0-1-.758 17.97 17.97 0 0 1-.109-9.473 28.7 28.7 0 0 0-9.329 7.21h-.018c-1.536-1.947-1.428-8.367-1.34-9.708a6.928 6.928 0 0 0-1.294.687 28.22 28.22 0 0 0-3.788 3.245 33.84 33.84 0 0 0-3.623 4.347v.006-.007a32.73 32.73 0 0 0-5.2 11.74l-.052.256a61.89 61.89 0 0 0-.381 2.42c0 .029-.006.056-.009.085a36.94 36.94 0 0 0-.629 5.343v.2a38.76 38.76 0 0 0 76.95 6.554l.176-1.5a39.86 39.86 0 0 0-2.514-19.47zM29.95 57.17c.181.087.351.181.537.264l.027.017q-.282-.135-.564-.281zm40.828-28.314v-.037l.007.041z"
254
205
  fill="url(#FirefoxA)"/>
255
206
  <use xlink:href="#FirefoxM" fill="url(#FirefoxB)"/>
256
207
  <use xlink:href="#FirefoxM" fill="url(#FirefoxC)"/>
257
208
  <path d="M55.78 31.38l.241.177a21.1 21.1 0 0 0-3.6-4.695C40.371 14.812 49.264.742 50.763.022L50.778 0c-9.735 5.7-13.04 16.25-13.34 21.53.452-.031.9-.069 1.362-.069a19.56 19.56 0 0 1 16.98 9.917z" fill="url(#FirefoxD)"/>
258
209
  <use xlink:href="#FirefoxN" fill="url(#FirefoxE)"/>
259
210
  <use xlink:href="#FirefoxN" fill="url(#FirefoxF)"/>
260
211
  <path d="M24.96 24.36l.8.531a17.97 17.97 0 0 1-.109-9.473 28.7 28.7 0 0 0-9.329 7.21c.189-.005 5.811-.106 8.638 1.732z" fill="url(#FirefoxG)"/>
261
212
  <path d="M.354 42.16c2.991 17.67 19.01 31.17 37.19 31.68 16.83.476 27.58-9.294 32.02-18.82a35.1 35.1 0 0 0 1.206-26.16v-.037c0-.029-.006-.046 0-.037l.007.065c1.375 8.977-3.191 17.67-10.33 23.56l-.022.05c-13.91 11.33-27.22 6.834-29.91 5q-.282-.135-.564-.281c-8.109-3.876-11.46-11.26-10.74-17.6a9.953 9.953 0 0 1-9.181-5.775 14.62 14.62 0 0 1 14.25-.572 19.3 19.3 0 0 0 14.55.572c-.015-.315-6.76-3-9.39-5.59-1.405-1.385-2.072-2.052-2.663-2.553a11.59 11.59 0 0 0-1-.758l-.8-.531c-2.827-1.838-8.449-1.737-8.635-1.732h-.018c-1.536-1.947-1.428-8.367-1.34-9.708a6.928 6.928 0 0 0-1.294.687 28.22 28.22 0 0 0-3.788 3.245 33.84 33.84 0 0 0-3.638 4.337v.006-.007a32.73 32.73 0 0 0-5.2 11.74c-.019.079-1.396 6.099-.717 9.221z"
262
213
  fill="url(#FirefoxH)"/>
263
214
  <path d="M52.42 26.86a21.1 21.1 0 0 1 3.6 4.7l.581.476c8.787 8.1 4.183 19.55 3.84 20.36 7.138-5.881 11.7-14.58 10.33-23.56-4.384-10.93-11.82-15.34-17.88-24.93l-.913-1.484a12.24 12.24 0 0 1-.427-.8 7.053 7.053 0 0 1-.578-1.535.1.1 0 0 0-.088-.1.138.138 0 0 0-.073 0c-.005 0-.013.009-.019.011s-.019.011-.028.015c-1.499.711-10.39 14.79 1.66 26.83z" fill="url(#FirefoxI)"/>
264
215
  <path d="M56.6 32.04c-.169-.155-.368-.315-.581-.476l-.241-.177a13.38 13.38 0 0 0-9.345-2.269c13.94 6.97 10.2 30.97-9.119 30.07a17.24 17.24 0 0 1-5.043-.973q-.569-.213-1.138-.466a14.44 14.44 0 0 1-.654-.312l.027.017c2.694 1.839 16 6.332 29.91-5l.022-.05c.347-.81 4.951-12.26-3.84-20.36z" fill="url(#FirefoxJ)"/>
265
216
  <path d="M21.35 44.74s1.789-6.667 12.81-6.667c1.191 0 4.6-3.325 4.661-4.289a19.3 19.3 0 0 1-14.55-.572 14.62 14.62 0 0 0-14.25.572 9.953 9.953 0 0 0 9.181 5.775c-.718 6.337 2.632 13.72 10.74 17.6.181.087.351.181.537.264-4.733-2.445-8.641-7.069-9.129-12.68z" fill="url(#FirefoxK)"/>
266
217
  <path d="M74.62 26.83c-1.684-4.052-5.1-8.427-7.775-9.81a40.27 40.27 0 0 1 3.925 11.76l.007.065c-4.382-10.92-11.81-15.33-17.88-24.92l-.913-1.484a12.24 12.24 0 0 1-.427-.8 7.053 7.053 0 0 1-.578-1.535.1.1 0 0 0-.088-.1.138.138 0 0 0-.073 0c-.005 0-.013.009-.019.011s-.019.011-.028.015l.015-.026c-9.735 5.7-13.04 16.25-13.34 21.53.452-.031.9-.069 1.362-.069a19.56 19.56 0 0 1 16.98 9.917 13.38 13.38 0 0 0-9.345-2.269c13.94 6.97 10.2 30.97-9.119 30.07a17.24 17.24 0 0 1-5.043-.973q-.569-.213-1.138-.466a14.44 14.44 0 0 1-.654-.312l.027.017q-.282-.135-.564-.281c.181.087.351.181.537.264-4.733-2.446-8.641-7.07-9.129-12.68 0 0 1.789-6.667 12.81-6.667 1.191 0 4.6-3.325 4.661-4.289-.015-.315-6.76-3-9.39-5.59-1.405-1.385-2.072-2.052-2.663-2.553a11.59 11.59 0 0 0-1-.758 17.97 17.97 0 0 1-.109-9.473 28.7 28.7 0 0 0-9.329 7.21h-.018c-1.536-1.947-1.428-8.367-1.34-9.708a6.928 6.928 0 0 0-1.294.687A28.22 28.22 0 0 0 9.9 16.858a33.84 33.84 0 0 0-3.623 4.347v.006-.007a32.73 32.73 0 0 0-5.2 11.74l-.052.256a66.11 66.11 0 0 0-.447 2.445h0a45.09 45.09 0 0 0-.572 5.403v.2a38.76 38.76 0 0 0 76.95 6.554l.176-1.5a39.86 39.86 0 0 0-2.514-19.47zm-3.845 1.991l.007.041z"
267
218
  fill="url(#FirefoxL)"/>
268
- <symbol id="icon-global-scope" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
269
219
  <path stroke="none" fill-rule="evenodd" d="M7.45793675,11 L16.5066971,11 C16.4580648,9.28926535 16.107877,7.61384675 15.4572754,6 L8.51530754,6 C7.86640352,7.60810427 7.51394659,9.28362995 7.45793675,11 Z M7.45869662,12 C7.51430985,13.6421015 7.83665011,15.3163289 8.4257174,17 L15.4771375,17 C16.094563,15.3210132 16.4354928,13.6467125 16.5009227,12 L7.45869662,12 Z M22.9557034,11 C22.7921619,9.16367563 22.1822813,7.46086299 21.2344997,6 L16.4976168,6 C17.093396,7.61532602 17.4096505,9.2899701 17.4463803,11 L22.9557034,11 Z M23,12 L17.4361571,12 C17.3675519,13.6455754 17.0439403,15.3191933 16.4653226,17 L21.8107597,17 C22.5717164,15.5019593 23,13.8034225 23,12 Z M1.02247668,11 L6.51979753,11 C6.57165159,9.28939328 6.89697753,7.61472164 7.49673592,6 L2.64864324,6 C1.71899323,7.46402916 1.14052851,9.16820834 1.02247668,11 Z M1.00383096,12.0000001 C1.04982226,13.799065 1.50821143,15.4988928 2.28697715,17.000001 L7.4219431,17 C6.87306545,15.3187642 6.57230793,13.6451374 6.52050576,12 L1.00382766,12 Z M8.96140752,5 L15.0117386,5 C14.3326755,3.61060706 13.4235542,2.27259398 12.2851406,1.00357717 C12.1903963,1.0011971 12.0953447,1 12,1 C11.8816527,1 11.7983206,1 11.7085641,1 C10.5608643,2.26395735 9.64514412,3.60342336 8.96140752,5 Z M20.5022197,5 C18.8259563,2.96304571 16.4280814,1.54513742 13.6898222,1.12750217 C14.688793,2.36296012 15.4887174,3.65858761 16.0895925,5 L20.5022197,5 Z M3.36819143,5 L7.90679757,5 C8.51429422,3.64827118 9.32059683,2.34355754 10.326297,1.10065006 C7.5009127,1.49199741 5.04826956,2.92909394 3.36819143,5 Z M8.80656728,18 C9.49320909,19.6672397 10.4405145,21.339324 11.6484836,22.9943395 C11.7651918,22.9981036 11.8823728,23 12,23 C12.0259446,23 12.0518674,22.9999114 12.0777683,22.9997344 C13.3528583,21.3481228 14.3522273,19.6739914 15.0768606,18 L8.80656728,18 Z M21.2344997,18 L16.0912614,18 C15.4279506,19.642277 14.5217779,21.2874646 13.3727432,22.9161811 C16.6751617,22.5096699 19.5125252,20.6541649 21.2344997,18 Z M2.87207031,18 C4.55337442,20.5648423 7.23236984,22.39118 10.3489489,22.8734914 C9.26050118,21.2583281 8.40306247,19.6275413 7.77738752,18 L2.87207031,18 Z M24,12 C24,18.7 18.6,24 12,24 C5.4,24 0,18.4 0,11.7 C0,5.3 5,0.2 11.5,0 C11.7,0 11.8,0 12,0 C18.7,0 24,5.3 24,12 Z"/>
270
- <symbol id="icon-grid-view" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
271
220
  <path stroke="none" fill-rule="evenodd" d="M18.5,17.5 L18.5,15.5 L16.5,15.5 L16.5,17.5 L18.5,17.5 Z M19,18.5 L16,18.5 C15.7,18.5 15.5,18.3 15.5,18 L15.5,15 C15.5,14.7 15.7,14.5 16,14.5 L19,14.5 C19.3,14.5 19.5,14.7 19.5,15 L19.5,18 C19.5,18.3 19.3,18.5 19,18.5 Z M4.5,5.5 L4.5,3.5 L2.5,3.5 L2.5,5.5 L4.5,5.5 Z M5,6.5 L2,6.5 C1.7,6.5 1.5,6.3 1.5,6 L1.5,3 C1.5,2.7 1.7,2.5 2,2.5 L5,2.5 C5.3,2.5 5.5,2.7 5.5,3 L5.5,6 C5.5,6.3 5.3,6.5 5,6.5 Z M4.5,11.5 L4.5,9.5 L2.5,9.5 L2.5,11.5 L4.5,11.5 Z M5,12.5 L2,12.5 C1.7,12.5 1.5,12.3 1.5,12 L1.5,9 C1.5,8.7 1.7,8.5 2,8.5 L5,8.5 C5.3,8.5 5.5,8.7 5.5,9 L5.5,12 C5.5,12.3 5.3,12.5 5,12.5 Z M4.5,17.5 L4.5,15.5 L2.5,15.5 L2.5,17.5 L4.5,17.5 Z M5,18.5 L2,18.5 C1.7,18.5 1.5,18.3 1.5,18 L1.5,15 C1.5,14.7 1.7,14.5 2,14.5 L5,14.5 C5.3,14.5 5.5,14.7 5.5,15 L5.5,18 C5.5,18.3 5.3,18.5 5,18.5 Z M11.5,5.5 L11.5,3.5 L9.5,3.5 L9.5,5.5 L11.5,5.5 Z M12,6.5 L9,6.5 C8.7,6.5 8.5,6.3 8.5,6 L8.5,3 C8.5,2.7 8.7,2.5 9,2.5 L12,2.5 C12.3,2.5 12.5,2.7 12.5,3 L12.5,6 C12.5,6.3 12.3,6.5 12,6.5 Z M11.5,11.5 L11.5,9.5 L9.5,9.5 L9.5,11.5 L11.5,11.5 Z M12,12.5 L9,12.5 C8.7,12.5 8.5,12.3 8.5,12 L8.5,9 C8.5,8.7 8.7,8.5 9,8.5 L12,8.5 C12.3,8.5 12.5,8.7 12.5,9 L12.5,12 C12.5,12.3 12.3,12.5 12,12.5 Z M11.5,17.5 L11.5,15.5 L9.5,15.5 L9.5,17.5 L11.5,17.5 Z M12,18.5 L9,18.5 C8.7,18.5 8.5,18.3 8.5,18 L8.5,15 C8.5,14.7 8.7,14.5 9,14.5 L12,14.5 C12.3,14.5 12.5,14.7 12.5,15 L12.5,18 C12.5,18.3 12.3,18.5 12,18.5 Z M18.5,5.5 L18.5,3.5 L16.5,3.5 L16.5,5.5 L18.5,5.5 Z M19,6.5 L16,6.5 C15.7,6.5 15.5,6.3 15.5,6 L15.5,3 C15.5,2.7 15.7,2.5 16,2.5 L19,2.5 C19.3,2.5 19.5,2.7 19.5,3 L19.5,6 C19.5,6.3 19.3,6.5 19,6.5 Z M18.5,11.5 L18.5,9.5 L16.5,9.5 L16.5,11.5 L18.5,11.5 Z M19,12.5 L16,12.5 C15.7,12.5 15.5,12.3 15.5,12 L15.5,9 C15.5,8.7 15.7,8.5 16,8.5 L19,8.5 C19.3,8.5 19.5,8.7 19.5,9 L19.5,12 C19.5,12.3 19.3,12.5 19,12.5 Z"/>
272
- <symbol id="icon-hide" xmlns="http://www.w3.org/2000/svg">
273
- <symbol id="icon-html-templates" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
274
- <symbol id="icon-import-export" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
275
221
  <path stroke="none" fill-rule="evenodd" d="M11.8063167,4.9 L14.9063167,1.7 L14.9063167,12.5 C14.9063167,12.8 15.1063167,13 15.4063167,13 C15.7063167,13 15.9063167,12.8 15.9063167,12.5 L15.9063167,1.7 L19.0063167,4.8 C19.2063167,5 19.5063167,5 19.7063167,4.8 C19.9063167,4.6 19.9063167,4.3 19.7063167,4.1 L15.7063167,0.1 C15.7063167,0.1 15.6063167,0 15.5063167,0 C15.5063167,3.60822483e-16 15.3063167,3.60822483e-16 15.2063167,3.60822483e-16 C15.1063167,3.60822483e-16 15.1063167,0.1 15.0063167,0.1 C15.0063167,0.1 15.0063167,0.1 15.0063167,0.1 L11.0063167,4.1 C10.8063167,4.3 10.8063167,4.6 11.0063167,4.8 C11.2063167,5 11.6063167,5 11.8063167,4.9 Z M9.00631668,12.9 C9.00631668,12.9 9.00631668,12.9 9.00631668,12.9 C9.10631668,12.9 9.10631668,13 9.20631668,13 C9.30631668,13 9.30631668,13 9.40631668,13 C9.40631668,13 9.40631668,13 9.40631668,13 C9.50631668,13 9.50631668,13 9.60631668,13 C9.70631668,13 9.70631668,12.9 9.80631668,12.9 C9.80631668,12.9 9.80631668,12.9 9.80631668,12.9 L13.8063167,8.9 C14.0063167,8.7 14.0063167,8.4 13.8063167,8.2 C13.6063167,8 13.3063167,8 13.1063167,8.2 L9.90631668,11.3 L9.90631668,0.5 C9.90631668,0.2 9.70631668,0 9.40631668,0 C9.10631668,0 8.90631668,0.2 8.90631668,0.5 L8.90631668,11.3 L5.80631668,8.1 C5.60631668,8 5.20631668,8 5.00631668,8.1 C4.90631668,8.3 4.90631668,8.7 5.00631668,8.9 L9.00631668,12.9 Z M15.9063167,21 L19.9063167,21 C20.2063167,21 20.4063167,20.8 20.4063167,20.5 C20.4063167,20.2 20.2063167,20 19.9063167,20 L15.9063167,20 C15.6063167,20 15.4063167,20.2 15.4063167,20.5 C15.4063167,20.8 15.6063167,21 15.9063167,21 Z M23.9063167,17.5 C23.9063167,17.4 23.9063167,17.4 23.9063167,17.5 C23.9063167,17.4 23.8063167,17.3 23.8063167,17.2 C23.8063167,17.2 23.8063167,17.2 23.8063167,17.2 L18.8063167,11.2 C18.2063167,11.1 18.0063167,11.4 18.2063167,12 L22.4063167,17 L1.50631668,17 L5.70631668,12 C6.00631668,11.2 5.80631668,11 5.10631668,11.2 L0.10631668,17.2 C0.10631668,17.2 0.10631668,17.2 0.10631668,17.2 C0.10631668,17.3 0.00631667954,17.3 0.00631667954,17.4 C0.00631667954,17.4 0.00631667954,17.4 0.00631667954,17.5 C0.00631667954,17.5 0.00631667954,17.5 0.00631667954,17.5 L0.00631667954,21.5 C-0.0936833205,22.9 1.00631668,24 2.40631668,24 L21.4063167,24 C22.8063167,24 23.9063167,22.9 23.9063167,21.5 L23.9063167,17.5 C23.9063167,17.5 23.9063167,17.5 23.9063167,17.5 Z M22.9063167,21.5 C22.9063167,22.3 22.2063167,23 21.4063167,23 L2.40631668,23 C1.60631668,23 0.90631668,22.3 0.90631668,21.5 L0.90631668,18 L22.9063167,18 L22.9063167,21.5 Z"/>
276
- <symbol id="icon-import" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
277
222
  <path stroke="none" fill-rule="evenodd" d="M16.175,8.1 L13.075,11.3 L13.075,0.5 C13.075,0.2 12.875,0 12.575,0 C12.275,0 12.075,0.2 12.075,0.5 L12.075,11.3 L8.975,8.2 C8.875,8 8.675,8 8.575,8 C8.475,8 8.275,8 8.175,8.1 C7.975,8.3 7.975,8.6 8.175,8.8 L12.175,12.8 C12.175,12.8 12.275,12.9 12.375,12.9 C12.475,13 12.675,13 12.775,13 C12.875,13 12.875,12.9 12.975,12.9 L16.975,8.9 C17.075,8.7 17.075,8.3 16.975,8.1 C16.875,7.9 16.375,8 16.175,8.1 Z M16,21 L20,21 C20.3,21 20.5,20.8 20.5,20.5 C20.5,20.2 20.3,20 20,20 L16,20 C15.7,20 15.5,20.2 15.5,20.5 C15.5,20.8 15.7,21 16,21 Z M23.9,17.3 L18.9,11.3 C18.8,11.2 18.7,11.1 18.5,11.1 L17.5,11.1 C17.2,11.1 17,11.3 17,11.6 C17,11.9 17.2,12.1 17.5,12.1 L18.3,12.1 L22.5,17.1 L1.6,17.1 L5.8,12.1 L7,12.1 C7.3,12.1 7.5,11.9 7.5,11.6 C7.5,11.3 7.3,11 7,11 L5.5,11 C5.4,11 5.2,11.1 5.1,11.2 L0.1,17.2 C0.1,17.3 0,17.3 0,17.4 C0,17.4 0,17.4 0,17.5 L0,21.5 C3.60822483e-16,22.9 1.1,24 2.5,24 L21.5,24 C22.9,24 24,22.9 24,21.5 L24,17.5 C24,17.4 23.9,17.3 23.9,17.3 Z M23,21.5 C23,22.3 22.3,23 21.5,23 L2.5,23 C1.7,23 1,22.3 1,21.5 L1,18 L23,18 L23,21.5 Z"/>
278
- <symbol id="icon-info" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
279
223
  <path stroke="none" fill-rule="evenodd" d="M9.6,16 L9.6,9 L8.3,9 L8.3,8 L10.1,8 C10.4,8 10.6,8.2 10.6,8.5 L10.6,16 L12.8,16 L12.8,17 L7.4,17 L7.4,16 L9.6,16 Z M9.7,4 C10.2,4 10.6,4.4 10.6,4.9 C10.6,5.4 10.2,5.8 9.7,5.8 C9.2,5.8 8.8,5.4 8.8,4.9 C8.7,4.5 9.1,4 9.7,4 Z M19.4,10.3 C19.4,5.2 15.3,1.1 10.2,1.1 C5.1,1.1 1,5.2 1,10.3 C1,15.4 5.1,19.5 10.2,19.5 C15.2,19.6 19.4,15.4 19.4,10.3 Z M20.4,10.3 C20.4,16 15.8,20.5 10.2,20.5 C4.5,20.5 -1.81188398e-13,15.9 -1.81188398e-13,10.3 C-1.81188398e-13,4.7 4.4,0 10.1,0 C15.8,0 20.4,4.6 20.4,10.3 Z"/>
280
- <symbol id="icon-inventory" version="1.1" viewBox="0 0 24.3 20.301" xmlns="http://www.w3.org/2000/svg">
281
- <path d="m11.521 10.585c0.134 0 0.242 0.113 0.242 0.252v2.517c0 0.139-0.108 0.252-0.242 0.252h-0.242v6.293a0.25 0.25 0 0 1-0.198 0.248l-0.043 4e-3h-10.162c-0.134 0-0.242-0.113-0.242-0.252v-6.293h-0.242c-0.119 0-0.218-0.089-0.238-0.206l-4e-3 -0.046v-2.517c0-0.139 0.108-0.252 0.242-0.252zm-0.726 3.021h-9.677v6.041h9.677zm0.484-2.517h-10.645v2.014h10.645zm12.629-0.504c0.134 0 0.242 0.113 0.242 0.252v2.517c0 0.139-0.108 0.252-0.242 0.252h-0.242v6.293a0.25 0.25 0 0 1-0.198 0.248l-0.043 4e-3h-10.162c-0.134 0-0.242-0.113-0.242-0.252v-6.293h-0.242c-0.119 0-0.218-0.089-0.238-0.206l-4e-3 -0.045v-2.517c0-0.139 0.108-0.252 0.242-0.252h11.129zm-0.726 3.021h-9.677v6.041h9.677zm0.484-2.517h-10.645v2.014h10.645zm-5.951-10.939c0.134 0 0.242 0.113 0.242 0.252v2.517c0 0.139-0.108 0.252-0.242 0.252h-0.242v6.293a0.25 0.25 0 0 1-0.199 0.248l-0.043 4e-3h-10.162c-0.134 0-0.242-0.113-0.242-0.252v-6.293h-0.242c-0.119 0-0.218-0.089-0.238-0.206l-4e-3 -0.045v-2.518c0-0.139 0.108-0.252 0.242-0.252h11.129zm-0.726 3.021h-9.678v6.041h9.677v-6.041zm0.484-2.517h-10.646v2.014h10.645v-2.015z" fill-rule="evenodd" stroke-width=".3"/>
282
- <path d="m4.795 14.933h2.323m10.064 0h2.323m-8.516-10.435h2.323" stroke-stroke-linejoin="round"/>
283
- </symbol>
284
- <symbol id="icon-languages" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
285
224
  <path stroke="none" fill-rule="evenodd" d="M2.32298137,1.30434783 C1.7604056,1.30434783 1.30434783,1.7604056 1.30434783,2.32298137 L1.30434783,21.6770186 C1.30434783,22.2395944 1.7604056,22.6956522 2.32298137,22.6956522 L21.6770186,22.6956522 C22.2395944,22.6956522 22.6956522,22.2395944 22.6956522,21.6770186 L22.6956522,2.32298137 C22.6956522,1.7604056 22.2395944,1.30434783 21.6770186,1.30434783 L2.32298137,1.30434783 Z M2.08695652,0 L21.9130435,0 C23.0656377,0 24,0.934362261 24,2.08695652 L24,21.9130435 C24,23.0656377 23.0656377,24 21.9130435,24 L2.08695652,24 C0.934362261,24 0,23.0656377 0,21.9130435 L0,2.08695652 C0,0.934362261 0.934362261,0 2.08695652,0 Z M8.34782609,2.86956522 C8.78004893,2.86956522 9.13043478,3.21995107 9.13043478,3.65217391 L9.13030435,5.47756522 L12.5217391,5.47826087 C12.953962,5.47826087 13.3043478,5.82864672 13.3043478,6.26086957 C13.3043478,6.69309241 12.953962,7.04347826 12.5217391,7.04347826 L11.0127673,7.04271688 C10.6379048,8.1191625 10.0168214,9.21007333 9.25218398,10.173134 C10.3291046,11.0458702 11.2887861,11.4689941 12.6794903,11.7551943 C13.1028413,11.8423179 13.3754075,12.2561393 13.2882839,12.6794903 C13.2011603,13.1028413 12.7873389,13.3754075 12.3639879,13.2882839 C10.7025276,12.9463634 9.50199038,12.4052337 8.19610286,11.3333997 C6.95846368,12.5095592 5.51873924,13.3043478 4.17391304,13.3043478 C3.7416902,13.3043478 3.39130435,12.953962 3.39130435,12.5217391 C3.39130435,12.0895163 3.7416902,11.7391304 4.17391304,11.7391304 C5.94491738,11.7391304 8.30784918,9.39159528 9.33166979,7.04292098 L4.17391304,7.04347826 C3.7416902,7.04347826 3.39130435,6.69309241 3.39130435,6.26086957 C3.39130435,5.82864672 3.7416902,5.47826087 4.17391304,5.47826087 L7.56430435,5.47756522 L7.56521739,3.65217391 C7.56521739,3.21995107 7.91560324,2.86956522 8.34782609,2.86956522 Z M16.6956522,10.6956522 C18.2753052,10.6956522 19.5652174,11.7854522 19.5652174,13.461854 L19.5652174,19.826087 C19.5652174,20.2583098 19.2148315,20.6086957 18.7826087,20.6086957 C18.3503858,20.6086957 18,20.2583098 18,19.826087 L17.999087,17.9996522 L15.391087,17.9996522 L15.3913043,19.826087 C15.3913043,20.2583098 15.0409185,20.6086957 14.6086957,20.6086957 C14.1764728,20.6086957 13.826087,20.2583098 13.826087,19.826087 L13.826087,13.461854 C13.826087,11.7854522 15.1159992,10.6956522 16.6956522,10.6956522 Z M16.6956522,12.2608696 C15.9274791,12.2608696 15.3913043,12.7138642 15.3913043,13.461854 L15.391087,16.4346522 L17.999087,16.4346522 L18,13.461854 C18,12.7138642 17.4638252,12.2608696 16.6956522,12.2608696 Z"/>
286
- <symbol id="icon-list-view" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
287
225
  <path stroke="none" fill-rule="evenodd" d="M4,18 L4,16 L2,16 L2,18 L4,18 Z M4.5,19 L1.5,19 C1.2,19 1,18.7 1,18.5 L1,15.5 C1,15.2 1.2,15 1.5,15 L4.5,15 C4.8,15 5,15.2 5,15.5 L5,18.5 C5,18.7 4.8,19 4.5,19 Z M7.5,4 L18.5,4 C19.2,4 19.2,5 18.5,5 L7.5,5 C6.8,5 6.8,4 7.5,4 Z M4,6 L4,4 L2,4 L2,6 L4,6 Z M4.5,7 L1.5,7 C1.2,7 1,6.7 1,6.5 L1,3.5 C1,3.2 1.2,3 1.5,3 L4.5,3 C4.8,3 5,3.2 5,3.5 L5,6.5 C5,6.7 4.8,7 4.5,7 Z M7.5,10 L18.5,10 C19.2,10 19.2,11 18.5,11 L7.5,11 C6.8,11 6.8,10 7.5,10 Z M4,12 L4,10 L2,10 L2,12 L4,12 Z M4.5,13 L1.5,13 C1.2,13 1,12.7 1,12.5 L1,9.5 C1,9.2 1.2,9 1.5,9 L4.5,9 C4.8,9 5,9.2 5,9.5 L5,12.5 C5,12.7 4.8,13 4.5,13 Z M7.5,16 L18.5,16 C19.2,16 19.2,17 18.5,17 L7.5,17 C6.8,17 6.8,16 7.5,16 Z"/>
288
- <symbol id="icon-lock" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
289
- <symbol id="icon-logout" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
290
226
  <path stroke="none" fill-rule="evenodd" d="M15.4666667,0 C15.7284905,0 15.9462489,0.184565385 15.9914073,0.427955862 L16,0.52173913 L16,4.89440994 C16,5.1825585 15.7612185,5.41614907 15.4666667,5.41614907 C15.2048428,5.41614907 14.9870844,5.23158368 14.941926,4.98819321 L14.9333333,4.89440994 L14.9333333,1.04295652 L1.06666667,1.04295652 L1.06666667,22.956 L14.9333333,22.956 L14.9333333,20.2206211 C14.9333333,19.9644891 15.1220002,19.7514646 15.3707993,19.7072879 L15.4666667,19.698882 C15.7284905,19.698882 15.9462489,19.8834474 15.9914073,20.1268378 L16,20.2206211 L16,23.4782609 C16,23.7343929 15.8113332,23.9474174 15.562534,23.9915941 L15.4666667,24 L0.533333333,24 C0.271509452,24 0.0537510716,23.8154346 0.00859271404,23.5720441 L0,23.4782609 L0,0.52173913 C0,0.265607073 0.188666838,0.0525825701 0.437465992,0.00840591591 L0.533333333,0 L15.4666667,0 Z M18.8035555,6.11113193 L18.8699731,6.17730595 L23.8699701,12.1356358 C23.9447152,12.224707 23.987236,12.3340227 23.9975325,12.4461271 C23.9989527,12.4634134 24,12.4815905 24,12.5 L23.9974814,12.5544268 C23.990112,12.6338364 23.9665709,12.711832 23.9268582,12.7822079 L23.8699701,12.8643642 L18.8699731,18.822694 C18.6842197,19.0440501 18.3679957,19.0603633 18.163667,18.8591305 C17.9820415,18.6802569 17.949963,18.3897047 18.0755373,18.1718804 L18.1300334,18.0939656 L22.405,13 L4.52631579,13 C4.23563961,13 4,12.7761424 4,12.5 C4,12.2545401 4.18618438,12.0503916 4.43170986,12.0080557 L4.52631579,12 L22.406,12 L18.1300334,6.90603439 C17.9649193,6.70927343 17.9584712,6.41673378 18.1025833,6.2128219 L18.163667,6.14086953 C18.3452925,5.96199593 18.6153291,5.95501048 18.8035555,6.11113193 Z"/>
291
- <symbol id="icon-logs" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
292
227
  <path stroke="none" fill-rule="evenodd" d="M11.5280248,0.00210971502 C11.5456255,0.00071029323 11.56339,6.66133815e-15 11.5812682,6.66133815e-15 C11.7563047,6.66133815e-15 11.8972991,0.0680838923 11.9843897,0.184389741 L16.8368829,5.03688287 C16.8538014,5.05137898 16.869545,5.06712258 16.8840411,5.08404113 L16.9,5.1 C16.9,5.10127305 16.9000162,5.1025623 16.9000482,5.10386735 C16.9634448,5.18724679 16.9988704,5.29579378 16.9988704,5.42205359 C16.9988704,5.43755484 16.9983364,5.4527891 16.9972823,5.46774258 C16.9990305,5.47933731 17,5.49015343 17,5.5 L17,10 L16,10 L16,5.92205359 L11.51331,5.92205359 C11.21331,5.92205359 11.01331,5.72205359 11.01331,5.42205359 L11.01331,1 L1,1 L1,21 L11,21 L11,22 L0.5,22 C0.2,22 0,21.8 0,21.5 L0,0.5 C0,0.2 0.2,0 0.5,0 L11.5,0 C11.5086384,0 11.5180229,0.000746211971 11.5280248,0.00210971502 Z M15.2103247,4.91032471 L12.0812682,1.78126823 L12.0812682,4.88184273 L15.2103247,4.91032471 Z M3.5,7 C3.2,7 3,6.8 3,6.5 C3,6.2 3.2,6 3.5,6 L8,6 C8.3,6 8.5,6.2 8.5,6.5 C8.5,6.8 8.3,7 8,7 L3.5,7 Z M3.5,10 C3.2,10 3,9.8 3,9.5 C3,9.2 3.2,9 3.5,9 L11.5,9 C11.8,9 12,9.2 12,9.5 C12,9.8 11.8,10 11.5,10 L3.5,10 Z M3.5,13 C3.2,13 3,12.8 3,12.5 C3,12.2 3.2,12 3.5,12 L9.5,12 C9.8,12 10,12.2 10,12.5 C10,12.8 9.8,13 9.5,13 L3.5,13 Z M3.5,16 C3.2,16 3,15.8 3,15.5 C3,15.2 3.2,15 3.5,15 L8.5,15 C8.8,15 9,15.2 9,15.5 C9,15.8 8.8,16 8.5,16 L3.5,16 Z M24,17.5 C24,21.1 21.1,24 17.5,24 C13.9,24 11,21.1 11,17.5 C11,13.9 13.9,11 17.5,11 C21.1,11 24,13.9 24,17.5 Z M23,17.5 C23,14.5 20.5,12 17.5,12 C14.5,12 12,14.5 12,17.5 C12,20.5 14.5,23 17.5,23 C20.5,23 23,20.5 23,17.5 Z M18,17 L19.5,17 C19.8,17 20,17.2 20,17.5 C20,17.8 19.8,18 19.5,18 L17.5,18 C17.2,18 17,17.8 17,17.5 L17,14 C17,13.7 17.2,13.5 17.5,13.5 C17.8,13.5 18,13.7 18,14 L18,17 Z"/>
293
- <symbol id="icon-notes-empty" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
294
228
  <path stroke="none" fill-rule="evenodd" d="M20.647423,12.1464702 C20.8426814,11.9511858 21.159282,11.9511753 21.3545534,12.1464466 L21.3545534,12.1464466 L23.8545534,14.6464466 C24.0498063,14.8416996 24.0498169,15.1582639 23.854577,15.3535298 L23.854577,15.3535298 L16.3535534,22.8555534 L16.3535534,22.8555534 C16.3210097,22.8880971 16.285096,22.9152168 16.2469356,22.9369126 C16.2129068,22.9561538 16.1759475,22.9717371 16.1373606,22.982762 L16.2132588,22.9543902 C16.1996901,22.9607858 16.1858931,22.9665371 16.1719139,22.971644 L16.1373606,22.982762 L12.6373606,23.982762 C12.2601846,24.0905265 11.9114735,23.7418154 12.019238,23.3646394 L12.019238,23.3646394 L13.019238,19.8646394 C13.0225865,19.8529199 13.0263554,19.8413506 13.0305326,19.829952 C13.0354629,19.8161069 13.0412142,19.8023099 13.0476098,19.7887412 C13.0533177,19.7769701 13.0592152,19.7656276 13.0655371,19.7545288 C13.0867832,19.716904 13.1139029,19.6809903 13.1464466,19.6484466 Z M13.746,20.955 L13.227,22.774 L15.045,22.254 L13.746,20.955 Z M11.5,1.77635684e-14 C11.5289644,1.77635684e-14 11.5576698,0.00251316923 11.5858244,0.00741874956 L11.5,1.77635684e-14 C11.53718,1.77635684e-14 11.5734121,0.00405810679 11.6082776,0.0117555499 C11.627752,0.0161752938 11.6470999,0.0217060499 11.6660321,0.0283713194 C11.6767797,0.032003496 11.6875823,0.0362330462 11.6981944,0.04081971 C11.7122274,0.0470222758 11.7258544,0.0536592396 11.7391668,0.06090986 C11.7513627,0.0674500504 11.7634712,0.0747354237 11.7752322,0.0825044328 C11.7813925,0.0866293699 11.7874946,0.090849458 11.7935072,0.0952091774 L11.805052,0.103808328 C11.8176175,0.113497606 11.8297092,0.123771313 11.8412864,0.134588748 L11.8535534,0.146446609 L16.8535534,5.14644661 L16.8654113,5.15871357 C16.8762287,5.17029076 16.8865024,5.18238246 16.8961917,5.19494796 L16.8535534,5.14644661 C16.8776252,5.17051844 16.8989891,5.19679203 16.917449,5.22479402 C16.9252646,5.23652877 16.9325499,5.24863729 16.9393234,5.26106504 C16.9463408,5.27414565 16.9529777,5.28777256 16.9589828,5.30166987 C16.963767,5.31241775 16.9679965,5.32322028 16.9718538,5.33419807 C16.978294,5.35290006 16.9838247,5.37224798 16.9881784,5.39190902 C16.9895896,5.39781538 16.9908237,5.40395012 16.9919443,5.41012437 C16.992995,5.41655007 16.9933917,5.41892848 16.9937713,5.42131063 L17,5.5 L17,13 L16,13 L16,6 L11.5,6 C11.2545401,6 11.0503916,5.82312484 11.0080557,5.58987563 L11,5.5 L11,1 L1,1 L1,21 L9.5,21 L9.5,22 L0.5,22 C0.254540111,22 0.0503916296,21.8231248 0.00805566941,21.5898756 L2.30926389e-14,21.5 L2.30926389e-14,0.5 C2.30926389e-14,0.254540111 0.176875161,0.0503916296 0.410124368,0.00805566941 L0.5,1.77635684e-14 L11.5,1.77635684e-14 Z M19,15.206 L14.206,20.001 L15.999,21.794 L20.794,17 L19,15.206 Z M21.001,13.207 L19.707,14.499 L21.501,16.293 L22.794,15 L21.001,13.207 Z M12,1.707 L12,5 L15.294,5 L12,1.707 Z"/>
295
- <symbol id="icon-notes-filled" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
296
229
  <path stroke="none" fill-rule="evenodd" d="M20.6464466,11.6464466 C20.8417088,11.4511845 21.1582912,11.4511845 21.3535534,11.6464466 L21.3535534,11.6464466 L23.8535534,14.1464466 C24.0488155,14.3417088 24.0488155,14.6582912 23.8535534,14.8535534 L23.8535534,14.8535534 L16.3515534,22.3555534 L16.3515534,22.3555534 C16.3190097,22.3880971 16.283096,22.4152168 16.2449356,22.4369126 C16.2108971,22.4561579 16.1739424,22.4717386 16.1353606,22.482762 L16.2112588,22.4543902 C16.1976901,22.4607858 16.1838931,22.4665371 16.1699139,22.471644 L16.1353606,22.482762 L12.6353606,23.482762 C12.2581846,23.5905265 11.9094735,23.2418154 12.017238,22.8646394 L12.017238,22.8646394 L13.017238,19.3646394 C13.0205869,19.3529184 13.0243564,19.3413475 13.0285343,19.3299475 C13.0334629,19.3161069 13.0392142,19.3023099 13.0456098,19.2887412 C13.0513233,19.276959 13.0572218,19.2656152 13.0635449,19.2545151 C13.0847832,19.216904 13.1119029,19.1809903 13.1444466,19.1484466 Z M13.744,20.455 L13.225,22.274 L15.044,21.755 L13.744,20.455 Z M16.9939428,5.42239391 L17,5.50137719 L16.9819981,12.0363772 L15.9820019,12.0336228 L15.998,6 L11.5,6 C11.2545401,6 11.0503916,5.82312484 11.0080557,5.58987563 L11,5.5 L11,1 L1,1 L1,21 L11,21 L11,22 L0.5,22 C0.254540111,22 0.0503916296,21.8231248 0.00805566941,21.5898756 L-1.42108547e-14,21.5 L-1.42108547e-14,0.5 C-1.42108547e-14,0.254540111 0.176875161,0.0503916296 0.410124368,0.00805566941 L0.5,1.77635684e-14 L11.5,1.77635684e-14 C11.5289644,1.77635684e-14 11.5576698,0.00251316923 11.5858244,0.00741874956 L11.5,1.77635684e-14 C11.53718,1.77635684e-14 11.5734121,0.00405810679 11.6082776,0.0117555499 C11.627752,0.0161752938 11.6470999,0.0217060499 11.6660321,0.0283713194 C11.6767797,0.032003496 11.6875823,0.0362330462 11.6981944,0.04081971 C11.7122274,0.0470222758 11.7258544,0.0536592396 11.7391668,0.06090986 C11.7513627,0.0674500504 11.7634712,0.0747354237 11.7752322,0.0825044328 C11.7813925,0.0866293699 11.7874946,0.090849458 11.7935072,0.0952091774 L11.805052,0.103808328 C11.8176175,0.113497606 11.8297092,0.123771313 11.8412864,0.134588748 L11.8535534,0.146446609 L16.8535534,5.14644661 L16.8654113,5.15871357 C16.8762287,5.17029076 16.8865024,5.18238246 16.8961917,5.19494796 L16.8535534,5.14644661 C16.8777119,5.17060508 16.8991419,5.19698016 16.9176461,5.22509324 C16.9252646,5.23652877 16.9325499,5.24863729 16.9393234,5.26106504 C16.9460119,5.27357186 16.9521693,5.28613455 16.9577891,5.29892993 C16.9633616,5.31127723 16.9683748,5.32406798 16.9728642,5.33710256 C16.9780698,5.35260169 16.9827131,5.36859599 16.9865529,5.3848132 C16.9886127,5.39304989 16.9903879,5.40154903 16.9919443,5.41012437 L16.9939428,5.42239391 L16.9939428,5.42239391 Z M19,14.707 L14.205,19.502 L15.998,21.295 L20.793,16.5 L19,14.707 Z M8.4814,15 C8.75754237,15 8.9814,15.2238576 8.9814,15.5 C8.9814,15.7454599 8.80452484,15.9496084 8.57127563,15.9919443 L8.4814,16 L3.4814,16 C3.20525763,16 2.9814,15.7761424 2.9814,15.5 C2.9814,15.2545401 3.15827516,15.0503916 3.39152437,15.0080557 L3.4814,15 L8.4814,15 Z M21,12.707 L19.707,14 L21.5,15.793 L22.793,14.5 L21,12.707 Z M9.4814,12 C9.75754237,12 9.9814,12.2238576 9.9814,12.5 C9.9814,12.7454599 9.80452484,12.9496084 9.57127563,12.9919443 L9.4814,13 L3.4814,13 C3.20525763,13 2.9814,12.7761424 2.9814,12.5 C2.9814,12.2545401 3.15827516,12.0503916 3.39152437,12.0080557 L3.4814,12 L9.4814,12 Z M11.4814,9 C11.7575424,9 11.9814,9.22385763 11.9814,9.5 C11.9814,9.74545989 11.8045248,9.94960837 11.5712756,9.99194433 L11.4814,10 L3.4814,10 C3.20525763,10 2.9814,9.77614237 2.9814,9.5 C2.9814,9.25454011 3.15827516,9.05039163 3.39152437,9.00805567 L3.4814,9 L11.4814,9 Z M7.9814,6 C8.25754237,6 8.4814,6.22385763 8.4814,6.5 C8.4814,6.74545989 8.30452484,6.94960837 8.07127563,6.99194433 L7.9814,7 L3.4814,7 C3.20525763,7 2.9814,6.77614237 2.9814,6.5 C2.9814,6.25454011 3.15827516,6.05039163 3.39152437,6.00805567 L3.4814,6 L7.9814,6 Z M15.293,5 L12,1.707 L12,5 L15.293,5 Z"/>
297
- <symbol id="icon-open-in-new-tab" xmlns="http://www.w3.org/2000/svg">
298
- <symbol id="icon-opera" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs>
299
230
  <linearGradient id="OperaA" x1="12" y1=".26" x2="12" y2="24.09" gradientUnits="userSpaceOnUse">
300
231
  <stop offset=".46" stop-color="#e52d37"/>
301
232
  <stop offset="1" stop-color="#981917"/>
302
233
  </linearGradient>
303
234
  <linearGradient id="OperaB" x1="15.95" y1="22.29" x2="15.95" y2="1.71" gradientUnits="userSpaceOnUse">
304
235
  <stop offset="0" stop-color="#e94d50"/>
305
236
  <stop offset="1" stop-color="#941914"/>
306
237
  </linearGradient>
307
238
  </defs>
308
239
  <path d="M19.28 2.46A12 12 0 1 0 24 12a12 12 0 0 0-4.72-9.54zm-11 16.09A10.86 10.86 0 0 1 7.9 5.92h0a5.25 5.25 0 0 1 4.17-2.33c3.33 0 6 3.78 6 8.44s-2.71 8.45-6 8.45a5.09 5.09 0 0 1-3.83-1.92z" fill="url(#OperaA)"/>
309
240
  <path d="M24,12a12,12,0,0,1-4.72,9.54,9.15,9.15,0,0,1-3.61.75,9.34,9.34,0,0,1-7.42-3.74,5.09,5.09,0,0,0,3.83,1.92c3.33,0,6-3.78,6-8.45s-2.71-8.44-6-8.44A5.25,5.25,0,0,0,7.91,5.91a9.41,9.41,0,0,1,7.76-4.2,9.15,9.15,0,0,1,3.61.75A12,12,0,0,1,24,12Z" fill="url(#OperaB)"/>
310
- <symbol id="icon-orckestra-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 260 260">
311
- <symbol id="icon-orders-settings" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
312
241
  <path stroke="none" d="M12.1212737,0.0149273899 L12.1993631,0.0414649719 L23.6993631,5.04146497 C23.7267178,5.05378722 23.7458342,5.06406299 23.7642168,5.07551155 L23.6993631,5.04146497 C23.7308114,5.05513816 23.7601438,5.07165577 23.78719,5.09058546 C23.8752368,5.15228138 23.9440986,5.24234048 23.9776191,5.35045242 C23.9802724,5.36045426 23.9832498,5.37111525 23.9858736,5.38187225 C23.9952103,5.41944845 24,5.45894924 24,5.5 L23.9953562,5.43148585 C23.9967469,5.44147074 23.9978376,5.45151191 23.998623,5.46159578 L24,5.5 L24,18.5 C24,18.6960717 23.8853986,18.8740482 23.7069015,18.9551832 L23.7069015,18.9551832 L12.7069015,23.9551832 C12.6983028,23.9590917 12.6896739,23.9627354 12.6810221,23.9661191 C12.6644847,23.9727264 12.6477069,23.9782939 12.6306305,23.982966 C12.620519,23.9856515 12.6101188,23.9881575 12.5997187,23.9903149 C12.572237,23.9960541 12.5437253,23.9994522 12.5148271,24.0003058 C12.5014662,24.0007477 12.488556,24.0006156 12.4757251,23.9999825 C12.4670436,23.999429 12.4607455,23.9989604 12.4544383,23.998368 C12.4364185,23.9967958 12.4185026,23.9941212 12.4008462,23.9904983 L12.3904992,23.9880981 L12.3904992,23.9880981 L12.3744849,23.9843374 C12.3533008,23.9787756 12.3325557,23.9718389 12.3123792,23.9636106 L12.3076923,23.9615385 L8.11432939,22.2143039 C7.85942874,22.1080953 7.73889002,21.8153584 7.84509862,21.5604578 C7.93950627,21.3338794 8.1812943,21.2134636 8.41288432,21.2640954 L8.49894478,21.291227 L12,22.75 L12,10.833 L1,6.25 L1,18.166 L1.66956979,18.4456541 C1.89614815,18.5400617 2.01656399,18.7818498 1.96593211,19.0134398 L1.93880056,19.0995002 C1.84439291,19.3260786 1.60260489,19.4464944 1.37101486,19.3958626 L1.28495441,19.368731 L0.307692308,18.9615385 C0.147986477,18.8949944 0.0360024157,18.7517347 0.0072662723,18.5850485 L0,18.5 L0,5.5 L0.000261662773,5.48059656 C0.000995508743,5.46203925 0.00276487427,5.44359664 0.00553689598,5.42535217 L0,5.5 C0,5.45998969 0.00456440138,5.4214232 0.0131339416,5.38467337 C0.0169397718,5.36998047 0.0211530399,5.35526567 0.0260244955,5.34077917 C0.0315748534,5.32261012 0.0387562627,5.30467967 0.0468964169,5.287344 C0.0491575156,5.28372548 0.051376597,5.27915382 0.053665113,5.27461569 C0.0628828278,5.25536515 0.0731857541,5.2378939 0.0844589219,5.22118267 C0.0896903619,5.2139764 0.0953028029,5.20607213 0.101150512,5.19832596 C0.114371261,5.1805673 0.128643394,5.16419047 0.143874622,5.14882541 C0.146734857,5.14594128 0.149900432,5.14280918 0.153111875,5.13971631 C0.200589899,5.09587346 0.246688688,5.0654823 0.296626138,5.04311459 L0.300636944,5.04146497 L11.8006369,0.0414649719 C11.9023643,-0.00276433146 12.0151307,-0.0116101921 12.1212737,0.0149273899 Z M3.97267123,15.0674776 C4.99377958,14.0472295 6.49125771,13.7663134 7.79554839,14.3190245 C8.12583688,14.4589887 8.20563603,14.8909416 7.94715575,15.1396753 L7.94715575,15.1396753 L6.60445396,16.431939 L6.60445396,17.425939 L7.59945396,17.425939 L8.89175427,16.0840962 C9.11989856,15.8471313 9.50199604,15.8946635 9.67172912,16.1588147 L9.67172912,16.1588147 L9.71247951,16.2361756 C10.2637941,17.540178 9.98468461,19.0093693 8.96326123,20.0299316 C8.04649024,20.9482486 6.71990797,21.2687813 5.5110051,20.9206164 L5.5110051,20.9206164 L5.43745396,20.895939 L2.83943318,23.4947737 C2.78560777,23.5472916 2.70868751,23.6111734 2.61009303,23.677149 L2.61009303,23.677149 L2.50432643,23.7434792 C1.90095763,24.0980698 1.20669408,24.1124825 0.593239927,23.5478093 L0.593239927,23.5478093 L0.534281025,23.4913673 L0.371442461,23.3092933 C-0.0880238492,22.7287303 -0.0530937435,22.0865148 0.280581463,21.5245821 C0.369628975,21.3746198 0.460405096,21.2622765 0.532845501,21.1888084 L0.532845501,21.1888084 L3.11945396,18.593939 L3.09509424,18.5190572 C2.76429265,17.3749038 3.02480991,16.1295108 3.82573255,15.2237099 L3.82573255,15.2237099 Z M6.50756303,15.0417845 C5.9022234,15.023285 5.30214145,15.2291843 4.82046621,15.6440275 L4.82046621,15.6440275 L4.67962899,15.7747333 C3.95513926,16.4992231 3.76002654,17.5874199 4.15767782,18.5288513 C4.23675546,18.716066 4.1946478,18.9325193 4.05115362,19.076436 L4.05115362,19.076436 L1.24298032,21.8928684 L1.17219893,21.9847138 L1.14041764,22.0351521 C0.9885,22.2909922 0.983930789,22.5088263 1.20978842,22.7516687 L1.20978842,22.7516687 L1.25514704,22.7976512 L1.35159492,22.878993 C1.5660328,23.0353152 1.76744252,23.0166323 1.99765898,22.8813376 L1.99765898,22.8813376 L2.08955554,22.8211801 C2.11340753,22.8037557 2.12980084,22.7900519 2.13669993,22.7833468 L2.13669993,22.7833468 L4.95438617,19.9656606 C5.09835629,19.8216905 5.31524648,19.7793979 5.50275955,19.8587304 C6.43792725,20.2543782 7.52764107,20.0525662 8.25600574,19.3229738 C8.7594648,18.8199389 9.0097268,18.1735652 8.98910375,17.5162583 L8.98910375,17.5162583 L8.98345396,17.429939 L8.1720744,18.273412 C8.09667101,18.3517306 7.99836307,18.4027964 7.89247687,18.4200899 L7.89247687,18.4200899 L7.81188076,18.4266259 L6.10396414,18.4266259 C5.82782176,18.4266259 5.60396414,18.2027683 5.60396414,17.9266259 L5.60396414,17.9266259 L5.60396414,16.2194617 C5.60396414,16.0835213 5.65931519,15.9534408 5.75726863,15.8591809 L5.75726863,15.8591809 L6.60045396,15.047939 Z M23,6.276 L13,10.821 L13,22.723 L23,18.177 L23,6.276 Z M3.64605009,9.5215423 L3.7236068,9.5527864 L9.7236068,12.5527864 C9.86476681,12.6233664 9.96259986,12.75536 9.99128976,12.9069957 L10,13 L10,14.5410822 C10,14.8172245 9.77614237,15.0410822 9.5,15.0410822 C9.25454011,15.0410822 9.05039163,14.864207 9.00805567,14.6309578 L9,14.5410822 L9,13.309 L4,10.809 L4,13.9778457 C4,14.2233056 3.82312484,14.4274541 3.58987563,14.46979 L3.5,14.4778457 C3.25454011,14.4778457 3.05039163,14.3009705 3.00805567,14.0677213 L3,13.9778457 L3,10 C3,9.65690061 3.3332929,9.424522 3.64605009,9.5215423 Z M7.175,3.143 L1.776,5.49 L12.491,9.954 L17.098,7.86 L7.175,3.143 Z M12,1.045 L8.392,2.614 L18.289,7.319 L22.269,5.51 L12,1.045 Z"/>
313
- <symbol id="icon-orders" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
314
242
  <path stroke="none" fill-rule="evenodd" d="M3.3,15.38 L8.8,17.78 C9.1,17.972 9.5,17.684 9.5,17.3 L9.5,12.5 C9.5,12.308 9.4,12.116 9.2,12.02 L3.7,9.62 C3.4,9.524 3,9.716 3,10.1 L3,14.9 C3,15.092 3.1,15.284 3.3,15.38 Z M4,10.868 L8.5,12.788 L8.5,16.532 L4,14.612 L4,10.868 Z M24,5.78 C24,5.684 24,5.684 23.9,5.588 C23.9,5.588 23.9,5.588 23.9,5.492 L23.8,5.396 C23.8,5.396 23.8,5.396 23.7,5.396 L23.7,5.396 L12.2,0.5 C12.1,0.5 11.9,0.5 11.8,0.5 L0.3,5.3 L0.3,5.3 C0.3,5.3 0.3,5.3 0.2,5.3 L0.1,5.396 C0.1,5.396 0.1,5.396 0.1,5.492 C0,5.588 0,5.684 0,5.78 L0,5.78 L0,18.26 C0,18.452 0.1,18.644 0.3,18.74 L11.8,23.54 C11.8,23.54 11.8,23.54 11.9,23.54 L12,23.54 L12.1,23.54 C12.1,23.54 12.1,23.54 12.2,23.54 L23.7,18.74 C23.9,18.644 24,18.452 24,18.26 L24,5.78 L24,5.78 Z M12,1.46 L22.2,5.78 L17.6,7.7 L8.3,2.996 L12,1.46 Z M11.5,22.292 L1,17.972 L1,6.548 L11.5,10.964 L11.5,22.292 Z M12,10.1 L1.8,5.78 L7.2,3.476 L16.5,8.18 L12,10.1 Z M23,17.972 L12.5,22.388 L12.5,10.868 L23,6.548 L23,17.972 Z"/>
315
- <symbol id="icon-organization" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
316
243
  <path stroke="none" fill-rule="evenodd" d="M20.1217075,16.002 C21.42345,16.002 22.477487,17.0556729 22.477487,18.3577794 C22.477487,19.0347942 22.1918242,19.6452151 21.7344113,20.0749752 C23.020563,20.6779357 23.9109838,21.9857198 23.9109838,23.502 C23.9109838,23.7474599 23.7341086,23.9516084 23.5008594,23.9939443 L23.4109838,24.002 L16.8322457,24.002 C16.5561033,24.002 16.3322457,23.7781424 16.3322457,23.502 C16.3322457,21.9854312 17.222421,20.6776918 18.5092034,20.072326 C18.0515909,19.6452151 17.7659281,19.0347942 17.7659281,18.3577794 C17.7659281,17.0556729 18.8199651,16.002 20.1217075,16.002 Z M12.2005782,16.002 C13.5023206,16.002 14.5563576,17.0556729 14.5563576,18.3577794 C14.5563576,19.0347942 14.2706948,19.6452151 13.8132819,20.0749752 C15.0997639,20.6778165 15.9898544,21.9855034 15.9898544,23.502 C15.9898544,23.7474599 15.8129792,23.9516084 15.57973,23.9939443 L15.4898544,24.002 L8.91204422,24.002 C8.63590185,24.002 8.41204422,23.7781424 8.41204422,23.502 C8.41204422,21.9856232 9.30204793,20.6778824 10.5883934,20.0724398 C10.1304615,19.6452151 9.84479873,19.0347942 9.84479873,18.3577794 C9.84479873,17.0556729 10.8988357,16.002 12.2005782,16.002 Z M4.20336182,16.002 C5.5051043,16.002 6.55914125,17.0556729 6.55914125,18.3577794 C6.55914125,19.0347942 6.27347848,19.6452151 5.81606556,20.0749752 C7.10221734,20.6779357 7.99263807,21.9857198 7.99263807,23.502 C7.99263807,23.7474599 7.81576291,23.9516084 7.5825137,23.9939443 L7.49263807,24.002 L0.9139,24.002 C0.637757625,24.002 0.4139,23.7781424 0.4139,23.502 C0.4139,21.9854312 1.3040753,20.6776918 2.59085772,20.072326 C2.13324517,19.6452151 1.8475824,19.0347942 1.8475824,18.3577794 C1.8475824,17.0556729 2.90161935,16.002 4.20336182,16.002 Z M20.1216147,20.7135589 C18.8109912,20.7135589 17.7125962,21.6155012 17.4130024,22.832691 L17.377155,23.0005704 L22.866,23.001 C22.6500548,21.8105286 21.6788224,20.8839276 20.466366,20.734631 L20.2915725,20.7186461 L20.1216147,20.7135589 Z M12.2004854,20.7135589 C10.8905474,20.7135589 9.79234289,21.6155891 9.49279083,22.8327305 L9.45694827,23.0006024 L14.944,23.001 C14.7289924,21.8102776 13.758145,20.883885 12.5453502,20.7346255 L12.3705034,20.7186447 L12.2004854,20.7135589 Z M4.20326903,20.7135589 C2.89264554,20.7135589 1.79425045,21.6155012 1.49465669,22.832691 L1.45880933,23.0005704 L6.947,23.001 C6.73167934,21.8105286 5.76047539,20.8839276 4.54802023,20.734631 L4.37322675,20.7186461 L4.20326903,20.7135589 Z M20.1217075,17.002 C19.3721725,17.002 18.7659281,17.608035 18.7659281,18.3577794 C18.7659281,19.1063865 19.3728908,19.7135589 20.1217075,19.7135589 C20.8705242,19.7135589 21.477487,19.1063865 21.477487,18.3577794 C21.477487,17.608035 20.8712426,17.002 20.1217075,17.002 Z M12.2005782,17.002 C11.4510431,17.002 10.8447987,17.608035 10.8447987,18.3577794 C10.8447987,19.1063865 11.4517615,19.7135589 12.2005782,19.7135589 C12.9493948,19.7135589 13.5563576,19.1063865 13.5563576,18.3577794 C13.5563576,17.608035 12.9501132,17.002 12.2005782,17.002 Z M4.20336182,17.002 C3.45382678,17.002 2.8475824,17.608035 2.8475824,18.3577794 C2.8475824,19.1063865 3.45454513,19.7135589 4.20336182,19.7135589 C4.95217852,19.7135589 5.55914125,19.1063865 5.55914125,18.3577794 C5.55914125,17.608035 4.95289687,17.002 4.20336182,17.002 Z M12.0004,0.0161 C13.8086775,0.0161 15.2744,1.48109259 15.2744,3.2891 C15.2744,4.38384431 14.7364726,5.35294917 13.9104124,5.94690569 C15.6895477,6.69194519 16.9385,8.45040078 16.9385,10.5 C16.9385,10.7454599 16.7616248,10.9496084 16.5283756,10.9919443 L16.4385,11 L12.4999,10.9991 L12.4999,12.0001 L19.5,12.0005 C19.7454599,12.0005 19.9496084,12.1773752 19.9919443,12.4106244 L20,12.5005 L20,14.4585 C20,14.7346424 19.7761424,14.9585 19.5,14.9585 C19.2545401,14.9585 19.0503916,14.7816248 19.0080557,14.5483756 L19,14.4585 L19,13 L12.4999,12.9991 L12.5,14.479 C12.5,14.7551424 12.2761424,14.979 12,14.979 C11.7545401,14.979 11.5503916,14.8021248 11.5080557,14.5688756 L11.5,14.479 L11.4999,12.9991 L5,13 L5,14.4585 C5,14.7039599 4.82312484,14.9081084 4.58987563,14.9504443 L4.5,14.9585 C4.25454011,14.9585 4.05039163,14.7816248 4.00805567,14.5483756 L4,14.4585 L4,12.5005 C4,12.2550401 4.17687516,12.0508916 4.41012437,12.0085557 L4.5,12.0005 L11.4999,12.0001 L11.4999,10.9991 L7.5625,11 C7.28635763,11 7.0625,10.7761424 7.0625,10.5 C7.0625,8.45112272 8.31137354,6.69256791 10.0894006,5.94538471 C9.26363744,5.35291144 8.7264,4.38403621 8.7264,3.2891 C8.7264,1.48045763 10.1907576,0.0161 12.0004,0.0161 Z M11.9995,6.562 C10.0973315,6.562 8.50969225,7.91270882 8.14250382,9.70666815 L8.10787356,9.90053285 L8.094,9.999 L15.906,9.999 L15.8931335,9.9003856 C15.6242693,8.14073201 14.1905402,6.76387797 12.402375,6.5823364 L12.2022726,6.56712538 L11.9995,6.562 Z M12.0004,1.0161 C10.7430424,1.0161 9.7264,2.03274237 9.7264,3.2891 C9.7264,4.54458419 10.7431691,5.5611 12.0004,5.5611 C13.2563774,5.5611 14.2744,4.54383784 14.2744,3.2891 C14.2744,2.03348888 13.2565042,1.0161 12.0004,1.0161 Z"/>
317
- <symbol id="icon-override" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
318
244
  <path stroke="none" fill-rule="evenodd" d="M6.503,10.2225031 C6.89137624,10.2225031 7.2756878,10.2536456 7.6532791,10.3152009 C7.92582367,10.3596314 8.11074667,10.6165904 8.06631618,10.889135 C8.02188569,11.1616796 7.76492663,11.3466026 7.49238206,11.3021721 C7.1679652,11.2492853 6.83746097,11.2225031 6.503,11.2225031 L6.448,11.222 L6.39097758,11.287336 C5.85230001,11.9036106 5.4117484,12.5506713 5.06949611,13.2220125 L7.42931415,13.2229031 C7.70545652,13.2229031 7.92931415,13.4467607 7.92931415,13.7229031 C7.92931415,13.968363 7.75243899,14.1725114 7.51918978,14.2148474 L7.42931415,14.2229031 L4.63833259,14.2224451 C4.35147348,15.0305632 4.19820281,15.8673349 4.17879488,16.7224667 L7.49997333,16.7225031 C7.77611571,16.7224883 8,16.946334 8,17.2224764 C8,17.4679363 7.82314882,17.6720942 7.58990187,17.7144426 L7.50002667,17.7225031 L4.21636241,17.7222966 C4.29621882,18.5455394 4.49664168,19.3817228 4.81786516,20.2220586 L8.22643916,20.2238599 C8.31909602,20.0041015 8.40689485,19.7815743 8.49029711,19.5557665 C8.64093361,19.1479251 8.76737534,18.703763 8.86933649,18.2232594 L8.94121279,17.8560674 L9.92541627,18.0331083 C9.80324714,18.7122692 9.6377468,19.3353264 9.42835703,19.9022396 L9.305,20.222 L11.6877598,20.2232896 C12.2042248,19.3344301 12.5,18.3011291 12.5,17.1985031 C12.5,17.0003817 12.4905388,16.8036989 12.4717486,16.6088727 C12.4452387,16.3340057 12.6465718,16.0896915 12.9214388,16.0631816 C13.1963057,16.0366717 13.4406199,16.2380049 13.4671298,16.5128719 C13.4889977,16.7396084 13.5,16.9683285 13.5,17.1985031 C13.5,21.0783137 10.358474,24.2225031 6.482,24.2225031 C6.39194736,24.2225031 6.30228814,24.2207331 6.2130532,24.217226 C6.20041025,24.2175786 6.18729335,24.216866 6.17422894,24.2156425 C2.51930371,24.0509564 -0.414135313,20.9724371 -0.498148944,17.2458315 C-0.499819486,17.2385697 -0.499999999,17.2307708 -0.499999999,17.2229297 L-0.498940846,17.2058269 C-0.499645982,17.1644632 -0.5,17.1230209 -0.5,17.0815031 C-0.5,15.749412 -0.129045415,14.5169403 0.518716931,13.475003 C0.522155747,13.4690971 0.525832275,13.4629691 0.529634488,13.4569282 C1.70465655,11.5807383 3.77889537,10.326682 6.19951449,10.2289649 L6.503,10.2225031 Z M7.76113411,21.2232309 L5.25659827,21.2223402 C5.58721644,21.8901351 5.99383402,22.5583515 6.47656774,23.222609 C6.47931695,23.2225026 6.48065843,23.2225031 6.482,23.2225031 L6.526,23.221 L6.68623933,23.001297 C7.09678361,22.4167735 7.45153237,21.8280221 7.76113411,21.2232309 Z M4.15266931,21.2229536 L2.08057544,21.2226972 C2.88964059,22.1278255 3.95753936,22.7869703 5.1603927,23.0696367 C4.76500914,22.4563993 4.42943503,21.8400892 4.15266931,21.2229536 Z M10.9601902,21.2232436 L8.87541176,21.2229816 C8.57855263,21.8524279 8.23939179,22.4636449 7.84832502,23.0669077 C9.0694356,22.7833469 10.1493041,22.1267139 10.9601902,21.2232436 Z M3.21276567,17.7225067 L0.532952712,17.7230763 C0.626180281,18.6264365 0.913792957,19.4750307 1.35193908,20.2226652 L3.75552438,20.2222995 C3.46605257,19.3844491 3.28507467,18.5484007 3.21276567,17.7225067 Z M24.0007887,-0.5 C24.2769311,-0.5 24.5007887,-0.276142375 24.5007887,0 C24.5007887,0.245459889 24.3239136,0.44960837 24.0906644,0.491944331 L24.0007887,0.5 L21.991,0.5 L19.2978655,13.1379894 C20.0053673,13.4461238 20.5,14.1515496 20.5,14.9725031 C20.5,16.0770726 19.6045695,16.9725031 18.5,16.9725031 C17.3954305,16.9725031 16.5,16.0770726 16.5,14.9725031 C16.5,14.7964175 16.5227559,14.6256468 16.5654872,14.4629714 L11.9345128,14.4629714 C11.9772441,14.6256468 12,14.7964175 12,14.9725031 C12,16.0770726 11.1045695,16.9725031 10,16.9725031 C8.8954305,16.9725031 8,16.0770726 8,14.9725031 C8,13.8679336 8.8954305,12.9725031 10,12.9725031 C10.502077,12.9725031 10.9609436,13.1575094 11.3121469,13.4630693 L17.1878531,13.4630693 C17.493833,13.1968554 17.8815343,13.0221474 18.308334,12.9815682 L18.46976,12.222 L10.4497184,12.2225031 C10.2775113,12.2225031 10.1196399,12.1341539 10.0287826,11.9923776 L9.9891823,11.9171989 L7.11875325,5.12744705 C6.9910034,4.82526582 7.18370403,4.49334605 7.4923825,4.44012457 L7.57928939,4.43275123 L20.13076,4.432 L21.0979195,-0.104239929 C21.1409651,-0.306176844 21.3024171,-0.457727962 21.5001891,-0.492460477 L21.5869328,-0.5 L24.0007887,-0.5 Z M3.58326342,14.2223295 L1.2387917,14.2223453 C0.821279473,14.9660324 0.564433194,15.812968 0.510606603,16.7218318 L3.17843,16.7227967 C3.19501518,15.8714157 3.32989347,15.0347677 3.58326342,14.2223295 Z M10,13.9725031 C9.44771525,13.9725031 9,14.4202183 9,14.9725031 C9,15.5247878 9.44771525,15.9725031 10,15.9725031 C10.5522847,15.9725031 11,15.5247878 11,14.9725031 C11,14.7863535 10.9491373,14.6120836 10.8605512,14.4628327 L10.7741341,14.4636951 C10.5150375,14.4636951 10.3019701,14.2666212 10.2766527,14.0141945 C10.1903797,13.9862558 10.0967959,13.9725031 10,13.9725031 Z M19.0731138,14.1529225 L19.035413,14.227135 C18.9611233,14.3469364 18.8383882,14.4313466 18.6971226,14.4561556 L18.6103788,14.4636951 L17.6394488,14.4628327 C17.5508627,14.6120836 17.5,14.7863535 17.5,14.9725031 C17.5,15.5247878 17.9477153,15.9725031 18.5,15.9725031 C19.0522847,15.9725031 19.5,15.5247878 19.5,14.9725031 C19.5,14.6334197 19.3312326,14.3337541 19.0731138,14.1529225 Z M5.02427042,11.3956589 L4.90242773,11.425614 C3.73197445,11.73026 2.7133475,12.3630466 1.95155363,13.2215298 L3.96060627,13.2225435 C4.24024923,12.5942211 4.59477074,11.9836744 5.02427042,11.3956589 Z M14.03176,5.432 L8.332,5.432 L10.781,11.222 L18.68276,11.222 L19.91676,5.432 L15.03176,5.432 L15.00476,7.771 L16.1444057,6.61369231 C16.3379871,6.41676368 16.6545579,6.41405015 16.8514865,6.60763147 C17.0265342,6.77970375 17.048128,7.04895295 16.9148072,7.24497103 L16.8575474,7.31471227 L14.8632237,9.34352087 C14.6890618,9.52069422 14.4158616,9.54038015 14.2196912,9.40257865 L14.150082,9.34352087 L12.1557583,7.31471227 C11.962177,7.11778364 11.9648905,6.80121278 12.1618191,6.60763147 C12.3368668,6.43555918 12.6064466,6.41858407 12.8001505,6.55524544 L12.8688999,6.61369231 L14.00476,7.769 L14.03176,5.432 Z M5.57682951,4.22250301 C5.85297189,4.22250301 6.07682951,4.44636064 6.07682951,4.72250301 C6.07682951,4.99864539 5.85297189,5.22250301 5.57682951,5.22250301 C2.94157893,5.22250301 2.21943677,5.96006705 2.18946756,8.49279139 L2.189,8.619 L3.07081216,7.85264724 C3.25601247,7.69155284 3.52612567,7.69102386 3.71114887,7.83922624 L3.77621194,7.90175079 C3.93730634,8.0869511 3.93783532,8.3570643 3.78963294,8.5420875 L3.72710839,8.60715057 L2.02016036,10.0926782 C1.97452436,10.1325024 1.92158339,10.1641761 1.86360186,10.1854214 C1.85438261,10.1881561 1.84473872,10.191368 1.83502574,10.1942775 C1.81541209,10.2007973 1.79495149,10.2055622 1.77405144,10.2090314 C1.77039256,10.2090525 1.76741594,10.2095183 1.76443625,10.2099572 C1.74160544,10.2138982 1.71754459,10.2157294 1.69306766,10.2158031 L1.68283275,10.2152389 C1.67442818,10.215097 1.66602718,10.2147441 1.65763826,10.2141805 L1.69306766,10.2158031 C1.62855605,10.215996 1.56686135,10.203963 1.51017772,10.1818851 C1.50394016,10.1790416 1.49710222,10.1762227 1.49031708,10.1732461 C1.46824905,10.1638982 1.44761892,10.1529727 1.42790356,10.140713 C1.42709734,10.1399026 1.4261258,10.1392956 1.4251559,10.138685 L1.41656725,10.1334504 C1.39580542,10.1197521 1.37612415,10.1045469 1.35767965,10.0879898 L1.35057664,10.0812678 L-0.24496513,8.59585654 C-0.447077954,8.40769433 -0.45838716,8.09131391 -0.270224948,7.88920108 C-0.102969649,7.70954524 0.165593869,7.68064781 0.365160067,7.80859647 L0.436430514,7.86394127 L1.189,8.565 L1.18988743,8.47821096 C1.23463714,5.41638548 2.3653535,4.22250301 5.57682951,4.22250301 Z"/>
319
- <symbol id="icon-pause" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
320
245
  <path stroke="none" fill-rule="evenodd" d="M8.69177777,7.08424444 L7.08424444,7.08424444 L7.08424444,13.9068444 L8.69177777,13.9068444 L8.69177777,7.08424444 Z M9.19177777,14.9068444 L6.58424444,14.9068444 C6.30810206,14.9068444 6.08424444,14.6829868 6.08424444,14.4068444 L6.08424444,6.58424444 C6.08424444,6.30810206 6.30810206,6.08424444 6.58424444,6.08424444 L9.19177777,6.08424444 C9.46792014,6.08424444 9.69177777,6.30810206 9.69177777,6.58424444 L9.69177777,14.4068444 C9.69177777,14.6829868 9.46792014,14.9068444 9.19177777,14.9068444 Z M19.9910889,10.4955444 C19.9910889,5.25097648 15.739857,1 10.4955444,1 C5.25066957,1 1,5.25066957 1,10.4955444 C1,15.7404193 5.25066957,19.9910889 10.4955444,19.9910889 C15.739857,19.9910889 19.9910889,15.7401124 19.9910889,10.4955444 Z M20.9910889,10.4955444 C20.9910889,16.2924106 16.2921283,20.9910889 10.4955444,20.9910889 C4.69838482,20.9910889 5.5067062e-14,16.292704 5.5067062e-14,10.4955444 C5.5067062e-14,4.69838482 4.69838482,5.5067062e-14 10.4955444,5.5067062e-14 C16.2921283,5.5067062e-14 20.9910889,4.69867828 20.9910889,10.4955444 Z M11.7993111,14.9068444 C11.5231687,14.9068444 11.2993111,14.6829868 11.2993111,14.4068444 L11.2993111,6.58424444 C11.2993111,6.30810206 11.5231687,6.08424444 11.7993111,6.08424444 L14.4068444,6.08424444 C14.6829868,6.08424444 14.9068444,6.30810206 14.9068444,6.58424444 L14.9068444,14.4068444 C14.9068444,14.6829868 14.6829868,14.9068444 14.4068444,14.9068444 L11.7993111,14.9068444 Z M13.9068444,13.9068444 L13.9068444,7.08424444 L12.2993111,7.08424444 L12.2993111,13.9068444 L13.9068444,13.9068444 Z"/>
321
- <symbol id="icon-plus" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
322
246
  <path stroke="none" fill-rule="evenodd" d="M15.5,10 L11.1,10 L11.1,5.5 C11.1,5.2 10.9,5 10.6,5 C10.3,5 10.1,5.2 10.1,5.5 L10.1,10 L5.5,10 C5.2,10 5,10.3 5,10.5 C5,10.7 5.2,11 5.5,11 L10.1,11 L10.1,15.5 C10.1,15.8 10.3,16 10.6,16 C10.9,16 11.1,15.8 11.1,15.5 L11.1,11 L15.5,11 C15.8,11 16,10.8 16,10.5 C16,10.2 15.8,10 15.5,10 Z"/>
323
- <symbol id="icon-popout" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
324
247
  <path stroke="none" fill-rule="evenodd" d="M8.5,21 L1.5,21 C1.22385763,21 1,21.2238576 1,21.5 L1,23.5 C1,23.7761424 1.22385763,24 1.5,24 L8.5,24 C8.77614237,24 9,23.7761424 9,23.5 L9,21.5 C9,21.2238576 8.77614237,21 8.5,21 Z M8,22 L8,23 L2,23 L2,22 L8,22 Z M16.5,9 L16.5113359,9.00012778 C16.5327448,9.00061037 16.5541285,9.00245997 16.5753447,9.00567644 L16.5,9 C16.5353751,9 16.5698922,9.00367368 16.6031905,9.01066034 C16.6196997,9.01414306 16.6368356,9.0186662 16.6537388,9.02411164 C16.6666596,9.02826323 16.6789671,9.03279825 16.6910366,9.03779224 C16.7047846,9.04345908 16.7185886,9.04989874 16.7321351,9.05700224 C16.7440467,9.06329334 16.7556825,9.07001934 16.7670103,9.07718801 C16.7791878,9.08484665 16.7909554,9.09302185 16.8024313,9.10175969 C16.8157542,9.11192025 16.8288187,9.1229392 16.8412864,9.13458875 C16.8456325,9.13865079 16.8497698,9.14265635 16.853854,9.14674744 L16.864439,9.15767597 C16.8778391,9.17193624 16.8904117,9.18698315 16.9020802,9.20274003 L16.853854,9.14674744 C16.8792393,9.17217596 16.9013169,9.19965567 16.9200875,9.22865205 C16.9295284,9.2433324 16.9381565,9.25831383 16.9460061,9.27375753 C16.95142,9.28436229 16.956412,9.29514769 16.9609993,9.30606275 C16.9669546,9.3201926 16.9723394,9.33483565 16.9770412,9.3497814 C16.9817943,9.36505877 16.9857581,9.38018271 16.9890034,9.39542882 C16.9899978,9.39986139 16.9910104,9.40497916 16.9919443,9.41012437 L16.9948943,9.42851678 C16.9973763,9.44579526 16.9989534,9.46317858 16.9996256,9.48059018 L17,9.5 L17,13.458 C17,13.7341424 16.7761424,13.958 16.5,13.958 C16.2545401,13.958 16.0503916,13.7811248 16.0080557,13.5478756 L16,13.458 L16,10.705 L7.43925256,19.251854 C7.24382441,19.44695 6.92724203,19.4466807 6.73214603,19.2512526 C6.55872737,19.0775386 6.53967137,18.8080979 6.67483312,18.6133447 L6.73274744,18.544146 L15.291,10 L12,10 C11.7545401,10 11.5503916,9.82312484 11.5080557,9.58987563 L11.5,9.5 C11.5,9.25454011 11.6768752,9.05039163 11.9101244,9.00805567 L12,9 L16.5,9 Z M21.4997,0 C22.8255967,0 23.9097717,1.03113919 23.9943843,2.3355767 L23.9997,2.5 L23.999898,4.48979673 C23.9999659,4.49318964 24,4.49659083 24,4.5 L23.999,4.51 L23.9997,13.5 C23.9997,14.8245657 22.9679958,15.9099653 21.6640555,15.9946779 L21.4997,16 L13.9687,16 C13.6925576,16 13.4687,15.7761424 13.4687,15.5 C13.4687,15.2545401 13.6455752,15.0503916 13.8788244,15.0080557 L13.9687,15 L21.4997,15 C22.2790788,15 22.9201113,14.404402 22.9928301,13.6443347 L22.9997,13.5 L22.999,5 L3.999,5 L3.9997,13.5 C3.9997,14.2785803 4.59543256,14.9203174 5.35538901,14.9931218 L5.4997,15 L6.9697,15 C7.24584237,15 7.4697,15.2238576 7.4697,15.5 C7.4697,15.7454599 7.29282484,15.9496084 7.05957563,15.9919443 L6.9697,16 L5.4997,16 C4.17505759,16 3.08972861,14.9673002 3.00502172,13.664236 L2.9997,13.5 L2.9997,2.5 C2.9997,1.17439769 4.03147806,0.0899518156 5.33535337,0.00531710894 L5.4997,0 L21.4997,0 Z M21.4997,1 L5.4997,1 C4.7201784,1 4.07927185,1.59484686 4.00656839,2.35553272 L3.9997,2.5 L3.999,4 L22.999,4 L22.9997,2.5 C22.9997,1.71989871 22.4051933,1.07950365 21.6442273,1.00686237 L21.4997,1 Z M10.5,2 C10.776,2 11,2.224 11,2.5 C11,2.776 10.776,3 10.5,3 C10.224,3 10,2.776 10,2.5 C10,2.224 10.224,2 10.5,2 Z M8.5,2 C8.776,2 9,2.224 9,2.5 C9,2.776 8.776,3 8.5,3 C8.225,3 8,2.776 8,2.5 C8,2.224 8.225,2 8.5,2 Z M6.5,2 C6.777,2 7,2.224 7,2.5 C7,2.776 6.777,3 6.5,3 C6.225,3 6,2.776 6,2.5 C6,2.224 6.225,2 6.5,2 Z"/>
325
- <symbol id="icon-price-settings" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
326
248
  <path stroke="none" d="M8.992,-0.0004 C9.0981248,-0.0004 9.20076975,0.033338409 9.2855961,0.0948736113 L9.34565083,0.146144074 L23.8536508,14.6621441 C24.0271427,14.8357317 24.0463778,15.1051117 23.9113845,15.2999407 L23.8535326,15.3691742 L15.3685326,23.8531742 C15.1949674,24.0267189 14.9255633,24.0459986 14.730704,23.9110154 L14.6614588,23.8531656 L10.7080128,19.8999921 C10.5127439,19.7047367 10.512733,19.3881542 10.7079884,19.1928853 C10.8815488,19.019313 11.1509725,19.0000186 11.3458453,19.1350079 L11.4150952,19.1928609 L15.015,22.7926 L22.793,15.0146 L8.785,0.9996 L0.999,0.9996 L1.007,8.7906 L4.76795564,12.6928301 C4.93829838,12.8695613 4.95262194,13.139295 4.81406251,13.3316457 L4.75494246,13.3998172 C4.57821128,13.5701599 4.3084776,13.5844835 4.11612685,13.445924 L4.04795543,13.386804 L0.147999895,9.34058692 C0.0807228705,9.27078678 0.0356800464,9.18348003 0.0173120885,9.08965784 L0.00800022177,8.99407092 L-4.85545115e-09,0.50007092 C-4.85545115e-09,0.254447653 0.176678476,0.0500541584 0.410067366,0.00766576788 L0.499999995,-0.0004 L8.992,-0.0004 Z M3.97267123,15.0674776 C4.99377958,14.0472295 6.49125771,13.7663134 7.79554839,14.3190245 C8.12583688,14.4589887 8.20563603,14.8909416 7.94715575,15.1396753 L7.94715575,15.1396753 L6.60445396,16.431939 L6.60445396,17.425939 L7.59945396,17.425939 L8.89175427,16.0840962 C9.11989856,15.8471313 9.50199604,15.8946635 9.67172912,16.1588147 L9.67172912,16.1588147 L9.71247951,16.2361756 C10.2637941,17.540178 9.98468461,19.0093693 8.96326123,20.0299316 C8.04649024,20.9482486 6.71990797,21.2687813 5.5110051,20.9206164 L5.5110051,20.9206164 L5.43745396,20.895939 L2.83943318,23.4947737 C2.78560777,23.5472916 2.70868751,23.6111734 2.61009303,23.677149 L2.61009303,23.677149 L2.50432643,23.7434792 C1.90095763,24.0980698 1.20669408,24.1124825 0.593239927,23.5478093 L0.593239927,23.5478093 L0.534281025,23.4913673 L0.371442461,23.3092933 C-0.0880238492,22.7287303 -0.0530937435,22.0865148 0.280581463,21.5245821 C0.369628975,21.3746198 0.460405096,21.2622765 0.532845501,21.1888084 L0.532845501,21.1888084 L3.11945396,18.593939 L3.09509424,18.5190572 C2.76429265,17.3749038 3.02480991,16.1295108 3.82573255,15.2237099 L3.82573255,15.2237099 Z M6.50756303,15.0417845 C5.9022234,15.023285 5.30214145,15.2291843 4.82046621,15.6440275 L4.82046621,15.6440275 L4.67962899,15.7747333 C3.95513926,16.4992231 3.76002654,17.5874199 4.15767782,18.5288513 C4.23675546,18.716066 4.1946478,18.9325193 4.05115362,19.076436 L4.05115362,19.076436 L1.24298032,21.8928684 L1.17219893,21.9847138 L1.14041764,22.0351521 C0.9885,22.2909922 0.983930789,22.5088263 1.20978842,22.7516687 L1.20978842,22.7516687 L1.25514704,22.7976512 L1.35159492,22.878993 C1.5660328,23.0353152 1.76744252,23.0166323 1.99765898,22.8813376 L1.99765898,22.8813376 L2.08955554,22.8211801 C2.11340753,22.8037557 2.12980084,22.7900519 2.13669993,22.7833468 L2.13669993,22.7833468 L4.95438617,19.9656606 C5.09835629,19.8216905 5.31524648,19.7793979 5.50275955,19.8587304 C6.43792725,20.2543782 7.52764107,20.0525662 8.25600574,19.3229738 C8.7594648,18.8199389 9.0097268,18.1735652 8.98910375,17.5162583 L8.98910375,17.5162583 L8.98345396,17.429939 L8.1720744,18.273412 C8.09667101,18.3517306 7.99836307,18.4027964 7.89247687,18.4200899 L7.89247687,18.4200899 L7.81188076,18.4266259 L6.10396414,18.4266259 C5.82782176,18.4266259 5.60396414,18.2027683 5.60396414,17.9266259 L5.60396414,17.9266259 L5.60396414,16.2194617 C5.60396414,16.0835213 5.65931519,15.9534408 5.75726863,15.8591809 L5.75726863,15.8591809 L6.60045396,15.047939 Z M11.5164659,10.7775468 L11.9170387,11.1767152 C12.6180409,10.6777547 13.6194728,10.7775468 14.320475,11.4760915 L14.320475,11.4760915 L13.6194728,12.1746362 C13.2189,11.7754678 12.6180409,11.7754678 12.2174682,12.1746362 C11.8168955,12.5738046 11.8168955,13.1725572 12.2174682,13.5717256 C12.6180409,13.970894 13.2189,13.970894 13.6194728,13.5717256 C14.4206182,12.7733888 15.6223364,12.7733888 16.4234819,13.5717256 C17.1244841,14.1704782 17.2246273,15.1683992 16.7239114,15.966736 L16.7239114,15.966736 L17.024341,16.2661123 L16.3233387,16.964657 L15.922766,16.5654886 C15.2217637,17.0644491 14.2203319,16.964657 13.5193296,16.2661123 L13.5193296,16.2661123 L14.2203319,15.5675676 C14.6209046,15.966736 15.2217637,15.966736 15.6223364,15.5675676 C16.0229091,15.1683992 16.0229091,14.5696466 15.6223364,14.1704782 C15.2217637,13.7713098 14.6209046,13.7713098 14.2203319,14.1704782 C13.4191864,14.968815 12.2174682,14.968815 11.4163228,14.1704782 C10.8154637,13.5717256 10.7153205,12.5738046 11.2160364,11.8752599 L11.2160364,11.8752599 L10.8154637,11.4760915 L11.5164659,10.7775468 Z M5.5,3 C6.88014237,3 8,4.11985763 8,5.5 C8,6.88014237 6.88014237,8 5.5,8 C4.11985763,8 3,6.88014237 3,5.5 C3,4.11985763 4.11985763,3 5.5,3 Z M5.5,4 C4.67214237,4 4,4.67214237 4,5.5 C4,6.32785763 4.67214237,7 5.5,7 C6.32785763,7 7,6.32785763 7,5.5 C7,4.67214237 6.32785763,4 5.5,4 Z"/>
327
- <symbol id="icon-price" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
328
249
  <path stroke="none" fill-rule="evenodd" d="M11.4163228,14.1704782 C12.2174682,14.968815 13.4191864,14.968815 14.2203319,14.1704782 C14.6209046,13.7713098 15.2217637,13.7713098 15.6223364,14.1704782 C16.0229091,14.5696466 16.0229091,15.1683992 15.6223364,15.5675676 C15.2217637,15.966736 14.6209046,15.966736 14.2203319,15.5675676 L13.5193296,16.2661123 C14.2203319,16.964657 15.2217637,17.0644491 15.922766,16.5654886 L16.3233387,16.964657 L17.024341,16.2661123 L16.7239114,15.966736 C17.2246273,15.1683992 17.1244841,14.1704782 16.4234819,13.5717256 C15.6223364,12.7733888 14.4206182,12.7733888 13.6194728,13.5717256 C13.2189,13.970894 12.6180409,13.970894 12.2174682,13.5717256 C11.8168955,13.1725572 11.8168955,12.5738046 12.2174682,12.1746362 C12.6180409,11.7754678 13.2189,11.7754678 13.6194728,12.1746362 L14.320475,11.4760915 C13.6194728,10.7775468 12.6180409,10.6777547 11.9170387,11.1767152 L11.5164659,10.7775468 L10.8154637,11.4760915 L11.2160364,11.8752599 C10.7153205,12.5738046 10.8154637,13.5717256 11.4163228,14.1704782 Z M23.9342205,14.6694387 L9.31331594,0.1995842 C9.31331594,0.0997920998 9.11302957,0 9.01288639,0 L0.500715911,0 C0.200286364,0 0,0.1995842 0,0.498960499 L0,8.98128898 C0,9.08108108 0.100143182,9.28066528 0.100143182,9.38045738 L14.6209046,23.8503119 C14.821191,24.049896 15.1216205,24.049896 15.3219069,23.8503119 L23.8340773,15.3679834 C24.0343637,15.1683992 24.0343637,14.8690229 23.9342205,14.6694387 Z M15.0214773,22.7525988 L1.00143182,8.78170478 L1.00143182,0.997920998 L8.81260003,0.997920998 L22.8326455,14.968815 L15.0214773,22.7525988 Z M5.50787502,2.99376299 C4.10587047,2.99376299 3.00429546,4.09147609 3.00429546,5.48856549 C3.00429546,6.88565489 4.10587047,7.98336798 5.50787502,7.98336798 C6.90987957,7.98336798 8.01145457,6.88565489 8.01145457,5.48856549 C8.01145457,4.09147609 6.90987957,2.99376299 5.50787502,2.99376299 Z M5.50787502,6.98544699 C4.70672956,6.98544699 4.00572728,6.28690229 4.00572728,5.48856549 C4.00572728,4.69022869 4.70672956,3.99168399 5.50787502,3.99168399 C6.30902047,3.99168399 7.01002275,4.69022869 7.01002275,5.48856549 C7.01002275,6.28690229 6.30902047,6.98544699 5.50787502,6.98544699 Z"/>
329
- <symbol id="icon-print" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
330
250
  <path stroke="none" fill-rule="evenodd" d="M16.2329243,5.42208459 C16.1932042,5.43223993 16.1515804,5.4376389 16.1086957,5.4376389 L13.5,5.4376389 C13.2238576,5.4376389 13,5.21378128 13,4.9376389 L13,2 L5.34782609,2 L5.34782609,4.92857143 C5.34782609,5.2047138 5.12396846,5.42857143 4.84782609,5.42857143 C4.57168371,5.42857143 4.34782609,5.2047138 4.34782609,4.92857143 L4.34782609,1.5 C4.34782609,1.22385763 4.57168371,1 4.84782609,1 L13.5434783,1 C13.6748405,1 13.8009261,1.05169579 13.894479,1.14391227 L16.5031747,3.71534085 C16.598503,3.80930737 16.6521739,3.93757342 16.6521739,4.07142857 L16.6521739,4.92857143 C16.6521739,5.17722237 16.47067,5.3834808 16.2329243,5.42208459 Z M15.6521739,4.4376389 L15.6521739,4.28064562 L14,2.65207419 L14,4.4376389 L15.6521739,4.4376389 Z M4.34782609,15.7142857 L2.23913043,15.7142857 C1.0080639,15.7142857 0,14.7206227 0,13.5 L0,8.35714286 C0,7.13652013 1.0080639,6.14285714 2.23913043,6.14285714 L18.7608696,6.14285714 C19.9925438,6.14285714 21,7.13626367 21,8.35714286 L21,13.5 C21,14.7208792 19.9925438,15.7142857 18.7608696,15.7142857 L16.6521739,15.7142857 L16.6521739,19.5 C16.6521739,19.7761424 16.4283163,20 16.1521739,20 L4.84782609,20 C4.57168371,20 4.34782609,19.7761424 4.34782609,19.5 L4.34782609,15.7142857 Z M4.34782609,14.7142857 L4.34782609,12.6428571 C4.34782609,12.3667148 4.57168371,12.1428571 4.84782609,12.1428571 L16.1521739,12.1428571 C16.4283163,12.1428571 16.6521739,12.3667148 16.6521739,12.6428571 L16.6521739,14.7142857 L18.7608696,14.7142857 C19.4433782,14.7142857 20,14.1654264 20,13.5 L20,8.35714286 C20,7.69171643 19.4433782,7.14285714 18.7608696,7.14285714 L2.23913043,7.14285714 C1.55715349,7.14285714 1,7.6920513 1,8.35714286 L1,13.5 C1,14.1650916 1.55715349,14.7142857 2.23913043,14.7142857 L4.34782609,14.7142857 Z M15.6521739,13.1428571 L5.34782609,13.1428571 L5.34782609,19 L15.6521739,19 L15.6521739,13.1428571 Z M3.47826087,9.21428571 C3.47826087,9.0180513 3.31502042,8.85714286 3.10869565,8.85714286 C2.90286393,8.85714286 2.73913043,9.01842584 2.73913043,9.21428571 C2.73913043,9.40966299 2.90324045,9.57142857 3.10869565,9.57142857 C3.31464405,9.57142857 3.47826087,9.41003768 3.47826087,9.21428571 Z M4.47826087,9.21428571 C4.47826087,9.96541182 3.86388585,10.5714286 3.10869565,10.5714286 C2.35415086,10.5714286 1.73913043,9.96519415 1.73913043,9.21428571 C1.73913043,8.46273754 2.35392643,7.85714286 3.10869565,7.85714286 C3.86411001,7.85714286 4.47826087,8.46252013 4.47826087,9.21428571 Z M6.58695652,14.8571429 C6.31081415,14.8571429 6.08695652,14.6332852 6.08695652,14.3571429 C6.08695652,14.0810005 6.31081415,13.8571429 6.58695652,13.8571429 L14.4130435,13.8571429 C14.6891859,13.8571429 14.9130435,14.0810005 14.9130435,14.3571429 C14.9130435,14.6332852 14.6891859,14.8571429 14.4130435,14.8571429 L6.58695652,14.8571429 Z M6.58695652,16.5714286 C6.31081415,16.5714286 6.08695652,16.3475709 6.08695652,16.0714286 C6.08695652,15.7952862 6.31081415,15.5714286 6.58695652,15.5714286 L14.4130435,15.5714286 C14.6891859,15.5714286 14.9130435,15.7952862 14.9130435,16.0714286 C14.9130435,16.3475709 14.6891859,16.5714286 14.4130435,16.5714286 L6.58695652,16.5714286 Z M6.58695652,18.2857143 C6.31081415,18.2857143 6.08695652,18.0618567 6.08695652,17.7857143 C6.08695652,17.5095719 6.31081415,17.2857143 6.58695652,17.2857143 L14.4130435,17.2857143 C14.6891859,17.2857143 14.9130435,17.5095719 14.9130435,17.7857143 C14.9130435,18.0618567 14.6891859,18.2857143 14.4130435,18.2857143 L6.58695652,18.2857143 Z"/>
331
- <symbol id="icon-profiles-settings" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
332
251
  <path stroke="none" fill-rule="evenodd" d="M3.97267123,15.0674776 C4.99377958,14.0472295 6.49125771,13.7663134 7.79554839,14.3190245 C8.12583688,14.4589887 8.20563603,14.8909416 7.94715575,15.1396753 L7.94715575,15.1396753 L6.60445396,16.431939 L6.60445396,17.425939 L7.59945396,17.425939 L8.89175427,16.0840962 C9.11989856,15.8471313 9.50199604,15.8946635 9.67172912,16.1588147 L9.67172912,16.1588147 L9.71247951,16.2361756 C10.2637941,17.540178 9.98468461,19.0093693 8.96326123,20.0299316 C8.04649024,20.9482486 6.71990797,21.2687813 5.5110051,20.9206164 L5.5110051,20.9206164 L5.43745396,20.895939 L2.83943318,23.4947737 C2.78560777,23.5472916 2.70868751,23.6111734 2.61009303,23.677149 L2.61009303,23.677149 L2.50432643,23.7434792 C1.90095763,24.0980698 1.20669408,24.1124825 0.593239927,23.5478093 L0.593239927,23.5478093 L0.534281025,23.4913673 L0.371442461,23.3092933 C-0.0880238492,22.7287303 -0.0530937435,22.0865148 0.280581463,21.5245821 C0.369628975,21.3746198 0.460405096,21.2622765 0.532845501,21.1888084 L0.532845501,21.1888084 L3.11945396,18.593939 L3.09509424,18.5190572 C2.76429265,17.3749038 3.02480991,16.1295108 3.82573255,15.2237099 L3.82573255,15.2237099 Z M6.50756303,15.0417845 C5.9022234,15.023285 5.30214145,15.2291843 4.82046621,15.6440275 L4.82046621,15.6440275 L4.67962899,15.7747333 C3.95513926,16.4992231 3.76002654,17.5874199 4.15767782,18.5288513 C4.23675546,18.716066 4.1946478,18.9325193 4.05115362,19.076436 L4.05115362,19.076436 L1.24298032,21.8928684 L1.17219893,21.9847138 L1.14041764,22.0351521 C0.9885,22.2909922 0.983930789,22.5088263 1.20978842,22.7516687 L1.20978842,22.7516687 L1.25514704,22.7976512 L1.35159492,22.878993 C1.5660328,23.0353152 1.76744252,23.0166323 1.99765898,22.8813376 L1.99765898,22.8813376 L2.08955554,22.8211801 C2.11340753,22.8037557 2.12980084,22.7900519 2.13669993,22.7833468 L2.13669993,22.7833468 L4.95438617,19.9656606 C5.09835629,19.8216905 5.31524648,19.7793979 5.50275955,19.8587304 C6.43792725,20.2543782 7.52764107,20.0525662 8.25600574,19.3229738 C8.7594648,18.8199389 9.0097268,18.1735652 8.98910375,17.5162583 L8.98910375,17.5162583 L8.98345396,17.429939 L8.1720744,18.273412 C8.09667101,18.3517306 7.99836307,18.4027964 7.89247687,18.4200899 L7.89247687,18.4200899 L7.81188076,18.4266259 L6.10396414,18.4266259 C5.82782176,18.4266259 5.60396414,18.2027683 5.60396414,17.9266259 L5.60396414,17.9266259 L5.60396414,16.2194617 C5.60396414,16.0835213 5.65931519,15.9534408 5.75726863,15.8591809 L5.75726863,15.8591809 L6.60045396,15.047939 Z M5.5,2.5 C5.63260824,2.5 5.7597852,2.55267842 5.85355339,2.64644661 L7.70710678,4.5 L18.5,4.5 C18.7761424,4.5 19,4.72385763 19,5 L19,6.5 L20.5,6.5 C20.7761424,6.5 21,6.72385763 21,7 L21,8.5 L22.0263158,8.5 C22.5229956,8.5 22.9368243,8.8686502 22.9934086,9.34885799 L23,9.46153846 L23,20.5384615 C23,21.0343108 22.6216485,21.4383788 22.1393386,21.4935729 L22.0263158,21.5 L9.48656223,21.5 C9.21041986,21.5 8.98656223,21.2761424 8.98656223,21 C8.98656223,20.7545401 9.16343739,20.5503916 9.3966866,20.5080557 L9.48656223,20.5 L22,20.5 L22,9.5 L5,9.5 L5,13.4215562 C5,13.6670161 4.82312484,13.8711646 4.58987563,13.9135006 L4.5,13.9215562 C4.25454011,13.9215562 4.05039163,13.7446811 4.00805567,13.5114319 L4,13.4215562 L4,9.46153846 C4,8.96568923 4.37835152,8.56162122 4.86066141,8.50642707 L4.97368421,8.5 L20,8.5 L20,7.5 L3,7.5 L3,15.1127543 L3,15.1127543 C3,15.3888966 2.77614237,15.6127543 2.5,15.6127543 C2.22385763,15.6127543 2,15.3888966 2,15.1127543 L2,7 C2,6.72385763 2.22385763,6.5 2.5,6.5 L18,6.5 L18,5.5 L7.5,5.5 C7.36739176,5.5 7.2402148,5.44732158 7.14644661,5.35355339 L5.29289322,3.5 L1,3.5 L1,17 C1,17.2761424 0.776142375,17.5 0.5,17.5 C0.223857625,17.5 0,17.2761424 0,17 L0,3 C0,2.72385763 0.223857625,2.5 0.5,2.5 L5.5,2.5 Z M19,13 C19.2761424,13 19.5,13.2238576 19.5,13.5 L19.5008006,14.0856324 C20.0828087,14.2918151 20.5,14.8473823 20.5,15.5 C20.5,15.7761424 20.2761424,16 20,16 C19.7238576,16 19.5,15.7761424 19.5,15.5 C19.5,15.2241175 19.2759132,15 19.0003596,15 C18.7241424,15 18.5,15.2240618 18.5,15.5 C18.5,15.7759382 18.7241424,16 19.0003596,16 C19.8282287,16 20.5,16.6718634 20.5,17.5 C20.5,18.1530325 20.0829284,18.7083607 19.5008767,18.9144235 L19.5,19.428 C19.5,19.7041424 19.2761424,19.928 19,19.928 C18.7238576,19.928 18.5,19.7041424 18.5,19.428 L18.4995411,18.9144412 C17.9171751,18.7084164 17.5,18.1531639 17.5,17.5 C17.5,17.2238576 17.7238576,17 18,17 C18.2761424,17 18.5,17.2238576 18.5,17.5 C18.5,17.7763532 18.7238384,18 19.0003596,18 C19.2762172,18 19.5,17.7762976 19.5,17.5 C19.5,17.2241175 19.2759132,17 19.0003596,17 C18.1719381,17 17.5,16.3283034 17.5,15.5 C17.5,14.8472508 17.9172949,14.2917594 18.4996172,14.0856147 L18.5,13.5 C18.5,13.2238576 18.7238576,13 19,13 Z M10.9645845,16.2409717 C11.3760634,16.7998291 11.6112043,17.5183702 11.6112043,18.4680562 C11.6112043,18.8764545 11.361155,18.9940319 11.028002,19.0289785 C10.9012419,19.0422752 10.7392066,19.0395405 10.5309822,19.0233482 C10.255671,19.0019389 10.0498428,18.7613994 10.0712521,18.4860882 C10.0902826,18.2413672 10.2824529,18.0515463 10.5182824,18.0274215 L10.5872107,18.026 L10.5869875,18.009277 C10.5390972,17.5817394 10.4218159,17.2445675 10.2498102,16.9675288 L10.1593149,16.8338805 C9.99558763,16.6115115 10.0431262,16.2985186 10.2654953,16.1347913 C10.4878643,15.9710641 10.8008572,16.0186027 10.9645845,16.2409717 Z M8.88631613,13 C9.78552337,13 10.7804393,13.8329586 10.6987027,15.0649728 C10.6804226,15.3405094 10.442237,15.549057 10.1667003,15.5307769 C9.89116369,15.5124967 9.68261609,15.2743111 9.70089625,14.9987745 C9.7402144,14.4061322 9.25511537,14 8.88631613,14 C8.75947996,14 8.65418944,14.0226183 8.5687964,14.058635 L8.51005432,14.0867077 L8.43901013,14.1341679 C8.23137319,14.2485551 7.96532743,14.2018531 7.81039599,14.0114671 C7.65546454,13.8210812 7.66379797,13.551096 7.81863856,13.3705091 L7.89690006,13.2967989 L7.97894275,13.2405633 C8.03757105,13.2041377 8.10465917,13.1690882 8.18017376,13.137238 C8.38503129,13.0508341 8.62166946,13 8.88631613,13 Z M16.0571052,10 C16.2429531,10 16.4134668,10.1030795 16.499834,10.2676399 L17.5495062,12.2676399 C17.7242411,12.6005724 17.4827778,13 17.1067773,13 L16.606,13 L16.6067773,14.5 C16.6067773,14.7761424 16.3829197,15 16.1067773,15 L12.1067773,15 C11.830635,15 11.6067773,14.7761424 11.6067773,14.5 L11.606,13 L11.1067773,13 C10.7644947,13 10.5234085,12.6638236 10.6331952,12.3396257 L11.310477,10.3396257 C11.3792255,10.1366125 11.5697213,10 11.7840592,10 L16.0571052,10 Z M15.606,13 L12.606,13 L12.6067773,14 L15.6067773,14 L15.606,13 Z M15.7548435,11 L12.1426302,11 L11.8039893,12 L16.2796795,12 L15.7548435,11 Z"/>
333
- <symbol id="icon-profiles" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
334
252
  <path stroke="none" fill-rule="evenodd" d="M5.5,2.5 C5.63260824,2.5 5.7597852,2.55267842 5.85355339,2.64644661 L7.70710678,4.5 L18.5,4.5 C18.7761424,4.5 19,4.72385763 19,5 L19,6.5 L20.5,6.5 C20.7761424,6.5 21,6.72385763 21,7 L21,8.5 L22.5,8.5 C22.7761424,8.5 23,8.72385763 23,9 L23,21 C23,21.2761424 22.7761424,21.5 22.5,21.5 L4.5,21.5 C4.22385763,21.5 4,21.2761424 4,21 L4,9 C4,8.72385763 4.22385763,8.5 4.5,8.5 L20,8.5 L20,7.5 L3,7.5 L3,19 C3,19.2761424 2.77614237,19.5 2.5,19.5 C2.22385763,19.5 2,19.2761424 2,19 L2,7 C2,6.72385763 2.22385763,6.5 2.5,6.5 L18,6.5 L18,5.5 L7.5,5.5 C7.36739176,5.5 7.2402148,5.44732158 7.14644661,5.35355339 L5.29289322,3.5 L1,3.5 L1,17 C1,17.2761424 0.776142375,17.5 0.5,17.5 C0.223857625,17.5 0,17.2761424 0,17 L0,3 C0,2.72385763 0.223857625,2.5 0.5,2.5 L5.5,2.5 Z M22,9.5 L5,9.5 L5,20.5 L22,20.5 L22,9.5 Z M19,13 C19.2761424,13 19.5,13.2238576 19.5,13.5 L19.5008006,14.0856324 C20.0828087,14.2918151 20.5,14.8473823 20.5,15.5 C20.5,15.7761424 20.2761424,16 20,16 C19.7238576,16 19.5,15.7761424 19.5,15.5 C19.5,15.2241175 19.2759132,15 19.0003596,15 C18.7241424,15 18.5,15.2240618 18.5,15.5 C18.5,15.7759382 18.7241424,16 19.0003596,16 C19.8282287,16 20.5,16.6718634 20.5,17.5 C20.5,18.1530325 20.0829284,18.7083607 19.5008767,18.9144235 L19.5,19.428 C19.5,19.7041424 19.2761424,19.928 19,19.928 C18.7238576,19.928 18.5,19.7041424 18.5,19.428 L18.4995411,18.9144412 C17.9171751,18.7084164 17.5,18.1531639 17.5,17.5 C17.5,17.2238576 17.7238576,17 18,17 C18.2761424,17 18.5,17.2238576 18.5,17.5 C18.5,17.7763532 18.7238384,18 19.0003596,18 C19.2762172,18 19.5,17.7762976 19.5,17.5 C19.5,17.2241175 19.2759132,17 19.0003596,17 C18.1719381,17 17.5,16.3283034 17.5,15.5 C17.5,14.8472508 17.9172949,14.2917594 18.4996172,14.0856147 L18.5,13.5 C18.5,13.2238576 18.7238576,13 19,13 Z M8.84792695,13 C10.2327154,13 11.0460318,14.3974353 10.5470889,15.7245427 C11.2553306,16.3911071 11.5898161,17.4837885 11.5824265,18.9664919 C11.5810551,19.2416582 11.3576024,19.464 11.0824327,19.464 L7.00012251,19.464 C6.72489432,19.464 6.50141719,19.2415672 6.500128,18.966342 C6.49321028,17.4894972 6.76675669,16.4167902 7.36371293,15.7691852 C6.770013,14.5211223 7.46367561,13 8.84792695,13 Z M8.84792695,14 C8.20788792,14 7.88549943,14.8825462 8.40518443,15.5661165 C8.57816751,15.7936507 8.52555016,16.1196352 8.28976406,16.2811898 C7.84143498,16.5883732 7.56544491,17.3080914 7.51025339,18.464 L10.5697471,18.464 C10.504068,17.3495297 10.1870836,16.6364687 9.65158455,16.287692 C9.42675736,16.1412594 9.35758532,15.8434771 9.49484486,15.6129352 C9.96546376,14.822481 9.56180352,14 8.84792695,14 Z M16.0571052,10 C16.2429531,10 16.4134668,10.1030795 16.499834,10.2676399 L17.5495062,12.2676399 C17.7242411,12.6005724 17.4827778,13 17.1067773,13 L16.606,13 L16.6067773,14.5 C16.6067773,14.7761424 16.3829197,15 16.1067773,15 L12.1067773,15 C11.830635,15 11.6067773,14.7761424 11.6067773,14.5 L11.606,13 L11.1067773,13 C10.7644947,13 10.5234085,12.6638236 10.6331952,12.3396257 L11.310477,10.3396257 C11.3792255,10.1366125 11.5697213,10 11.7840592,10 L16.0571052,10 Z M15.606,13 L12.606,13 L12.6067773,14 L15.6067773,14 L15.606,13 Z M15.7548435,11 L12.1426302,11 L11.8039893,12 L16.2796795,12 L15.7548435,11 Z"/>
335
- <symbol id="icon-providers" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
336
253
  <path stroke="none" fill-rule="evenodd" d="M23.5000824,14 C23.7762248,14 24.0000824,14.2238576 24.0000824,14.5 L24.0000824,22.5 C24.0000824,22.7761424 23.7762248,23 23.5000824,23 L19.5000824,23 C19.22394,23 19.0000824,22.7761424 19.0000824,22.5 L19.0031699,21.8221629 C17.5813879,22.3083444 14.6221835,23.328146 13.9320367,23.5339624 C12.4596922,23.9730467 11.4961266,24.0946166 10.4829725,23.931218 C9.52206126,23.776245 8.56516192,23.3845929 6.82482557,22.4832618 C6.30260954,22.2128028 3.91319663,20.9435918 4.09746695,21.0410006 C2.76520995,20.3367441 1.58745425,19.7281399 0.276490258,19.0727116 C-0.0287777105,18.9200901 -0.0947979579,18.5132445 0.146543493,18.2719228 C1.31339546,17.1051665 2.33334894,16.7730911 3.651012,17.1488964 L7.02058882,18.2151826 C7.11433244,17.5712397 7.52948279,17 8.26603985,17 L11.8405079,17 C11.8353399,17 12.0802605,16.8261527 12.362668,16.6281726 L12.6089533,16.4560571 C12.8545018,16.2850154 13.0829638,16.1276704 13.1604559,16.078303 C14.2446063,15.3876303 15.2856328,15 16.4362526,15 L19,15 L19.0000824,14.5 C19.0000824,14.2238576 19.22394,14 19.5000824,14 L23.5000824,14 Z M19,16 L16.4362526,16 C15.5063618,16 14.6355862,16.3242367 13.6977515,16.921697 C13.5306551,17.028148 13.3663484,17.1397141 13.1743028,17.2754734 C13.1025206,17.326217 12.7987468,17.5439226 12.7234873,17.5967481 C12.3053008,17.8902781 12.1055042,18 11.8405079,18 L8.26603985,18 C7.91142992,18 7.91142992,19 8.26603985,19 L13.8830611,19 L13.8830611,20 L8.26603985,20 C7.74457201,20 7.3842048,19.7136741 7.1849382,19.3179356 L3.36302144,18.1064201 C2.61873194,17.8942675 2.05096987,17.9882988 1.37999788,18.508091 C2.23240161,18.9386883 3.04693716,19.3590469 3.90849538,19.8111949 L4.557,20.153 L4.56689969,20.1581295 C4.74103798,20.2509522 6.80767262,21.3482224 7.28471423,21.5952852 C8.93559149,22.4502849 9.81639953,22.8107934 10.6421923,22.9439749 C11.4819875,23.0794146 12.3054676,22.9755188 13.6462531,22.5756682 C14.3717003,22.3593245 17.7596269,21.1888202 19.0033334,20.7654307 L19,16 Z M23.0000824,15 L20.0000824,15 L20.0000824,22 L23.0000824,22 L23.0000824,15 Z M11.4980824,-1.0658141e-14 C11.7742248,-1.0658141e-14 11.9980824,0.223857625 11.9980824,0.5 L11.9980824,1.90837701 C12.5242367,2.15583347 12.9798599,2.41475981 13.3604912,2.70712174 L14.4994855,2.02246316 C14.7391144,1.87842028 15.050294,1.95886452 15.1900919,2.2009945 L16.6900919,4.7989945 C16.8281968,5.03819215 16.7461929,5.34405821 16.506952,5.48208799 L15.3131028,6.17087768 C15.3997953,6.7279505 15.3987504,7.27599223 15.313436,7.82885547 L16.5070769,8.51798412 C16.7462293,8.65605475 16.8281686,8.96185665 16.6900919,9.2010055 L15.1900919,11.7990055 C15.050234,12.0412394 14.7388667,12.1216305 14.4992232,11.9773791 L13.3619067,11.2927808 C12.9811625,11.5847055 12.5264288,11.8430631 11.9980824,12.0921636 L11.9980824,13.5 C11.9980824,13.7761424 11.7742248,14 11.4980824,14 L8.4980824,14 C8.22194003,14 7.9980824,13.7761424 7.9980824,13.5 L7.9980824,12.1578876 C7.40423527,11.9794768 6.98160257,11.7230192 6.50956015,11.3080163 C6.5033566,11.3025623 6.49736501,11.2972862 6.4915097,11.2921197 L5.24183263,11.9861182 C5.00321157,12.1186346 4.70240944,12.035298 4.56600071,11.7988805 L3.06700071,9.20088047 C2.92893685,8.96159434 3.01109331,8.65568804 3.25046243,8.51776811 L4.44655494,7.82860237 C4.36093676,7.27169169 4.36347923,6.72382296 4.44964412,6.17014859 L3.26308457,5.48143507 C3.02396357,5.34264232 2.9428761,5.0361299 3.08208443,4.79725061 L4.59608443,2.19925061 C4.73389389,1.96277176 5.03622616,1.88104617 5.27440986,2.01588762 L6.49435717,2.7065288 C6.49878232,2.70261626 6.50327734,2.69864807 6.50786921,2.69459982 C6.97948673,2.27881668 7.40272241,2.02185356 7.9980824,1.84308362 L7.9980824,0.5 C7.9980824,0.223857625 8.22194003,-1.0658141e-14 8.4980824,-1.0658141e-14 L11.4980824,-1.0658141e-14 Z M10.9980824,1 L8.9980824,1 L8.9980824,2.23 C8.9980824,2.46438898 8.83526251,2.66731884 8.60644426,2.71811649 C7.96642461,2.86020085 7.61728711,3.04965573 7.16917783,3.44471375 C7.09855304,3.50697734 7.05120155,3.55018453 6.90182028,3.68777255 C6.7421084,3.83487559 6.50571035,3.86208453 6.31675494,3.75511238 L5.21145972,3.12937847 L4.19826789,4.86799959 L5.25708023,5.48256493 C5.44514073,5.59172069 5.54109352,5.80990561 5.49443677,6.0222847 C5.34950871,6.68198972 5.34510613,7.31574137 5.49129655,7.97707898 C5.53840866,8.19020519 5.44182649,8.40926217 5.25270237,8.51823189 L4.18319488,9.13446175 L5.18634528,10.8730773 L6.31933217,10.2438818 C6.50752324,10.1393713 6.7414807,10.1670403 6.90010119,10.3125664 C7.0568799,10.4564028 7.09905541,10.4947653 7.16983432,10.5569916 C7.61900807,10.9518892 7.96783607,11.1411125 8.60644426,11.2828835 C8.83526251,11.3336812 8.9980824,11.536611 8.9980824,11.771 L8.9980824,13 L10.9980824,13 L10.9980824,11.771 C10.9980824,11.5733383 11.1145275,11.3942298 11.2951828,11.3140189 C12.009185,10.9970019 12.5832152,10.67255 12.9777515,10.3119365 C13.1411444,10.1625924 13.3832884,10.1384607 13.5729416,10.2526209 L14.5786792,10.8580164 L15.574061,9.13401503 L14.5070879,8.51801588 C14.3184257,8.40909491 14.2219988,8.19055927 14.2687138,7.97778026 C14.4130177,7.32049926 14.4154415,6.6861243 14.2680193,6.02360212 C14.220577,5.8103943 14.3170206,5.59106622 14.5062128,5.48191201 L15.574061,4.86586002 L14.5785233,3.14171371 L13.5706793,3.74753684 C13.3807574,3.86170041 13.1383485,3.83723905 12.9750636,3.68743357 C12.5820639,3.32687664 12.0053246,3.00086455 11.2959471,2.68731971 C11.1148806,2.60728834 10.9980824,2.42796484 10.9980824,2.23 L10.9980824,1 Z M9.8781824,4.5002 C11.2590181,4.5002 12.3781824,5.61975085 12.3781824,7.0002 C12.3781824,8.38064915 11.2590181,9.5002 9.8781824,9.5002 C8.49942666,9.5002 7.3781824,8.37972955 7.3781824,7.0002 C7.3781824,5.62067045 8.49942666,4.5002 9.8781824,4.5002 Z M9.8781824,5.5002 C9.05155692,5.5002 8.3781824,6.17310981 8.3781824,7.0002 C8.3781824,7.82729019 9.05155692,8.5002 9.8781824,8.5002 C10.7066561,8.5002 11.3781824,7.8284417 11.3781824,7.0002 C11.3781824,6.1719583 10.7066561,5.5002 9.8781824,5.5002 Z"/>
337
- <symbol id="icon-query-tester" xmlns="http://www.w3.org/2000/svg">
338
- <symbol id="icon-query" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
339
254
  <path fill="none" stroke-linecap="round" stroke-linejoin="round" d="M20.5,10.5 C20.5,16.022 16.023,20.5 10.5,20.5 C4.977,20.5 0.5,16.022 0.5,10.5 C0.5,4.978 4.977,0.5 10.5,0.5 C16.023,0.5 20.5,4.978 20.5,10.5 L20.5,10.5 Z M17.5723,17.5732 L23.5003,23.5002 M15.3789,15.0488 L16.8789,12.4508 L15.3789,11.5858 C15.5339,10.8798 15.5449,10.1698 15.3779,9.4148 L16.8789,8.5488 L15.3789,5.9508 L13.9349,6.8188 C13.4019,6.3318 12.6189,5.9508 12.1189,5.7298 L12.1189,3.9998 L9.1189,3.9998 L9.1189,5.7298 C8.1189,5.9528 7.7169,6.3318 7.1849,6.8198 L5.6499,5.9508 L4.1359,8.5488 L5.6279,9.4148 C5.4729,10.1158 5.4569,10.8248 5.6239,11.5858 L4.1209,12.4508 L5.6209,15.0488 L7.1839,14.1808 C7.7169,14.6698 8.1189,15.0488 9.1189,15.2708 L9.1189,16.9998 L12.1189,16.9998 L12.1189,15.2708 C12.6189,15.0488 13.4019,14.6698 13.9369,14.1808 L15.3789,15.0488 L15.3789,15.0488 Z M12.5,10.5 C12.5,11.604 11.605,12.5 10.5,12.5 C9.396,12.5 8.5,11.604 8.5,10.5 C8.5,9.396 9.396,8.5 10.5,8.5 C11.605,8.5 12.5,9.396 12.5,10.5 L12.5,10.5 Z"/>
340
- <symbol id="icon-read-only-checkmark" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
341
255
  <path stroke="none" fill-rule="evenodd" d="M12.7577233,2.44495169 C13.22202,1.75886124 14.154593,1.57906185 14.8406835,2.04335851 C15.4864157,2.4803436 15.6836686,3.33213405 15.3175533,4.0028307 L15.2422767,4.12631864 L8.47499604,14.1263186 C7.97231866,14.8691242 6.94483105,15.0001993 6.27297558,14.4386442 L6.16444353,14.3386246 L0.931724148,9.02994085 C0.350174153,8.43994839 0.357018125,7.49022558 0.947010587,6.90867559 C1.50012852,6.36347247 2.3694157,6.33541248 2.95509841,6.82017349 L3.06827585,6.92396203 L7.015,10.929 L12.7577233,2.44495169 Z"/>
342
- <symbol id="icon-read-only-not-selected" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
343
256
  <path stroke="none" fill-rule="evenodd" d="M14.0606602,1.93933983 C14.609835,2.48851461 14.6441584,3.35757702 14.1636304,3.94673776 L14.0606602,4.06066017 L10.121,8 L14.0606602,11.9393398 C14.6464466,12.5251263 14.6464466,13.4748737 14.0606602,14.0606602 C13.5114854,14.609835 12.642423,14.6441584 12.0532622,14.1636304 L11.9393398,14.0606602 L8,10.121 L4.06066017,14.0606602 C3.47487373,14.6464466 2.52512627,14.6464466 1.93933983,14.0606602 C1.39016504,13.5114854 1.35584162,12.642423 1.83636956,12.0532622 L1.93933983,11.9393398 L5.879,8 L1.93933983,4.06066017 C1.35355339,3.47487373 1.35355339,2.52512627 1.93933983,1.93933983 C2.48851461,1.39016504 3.35757702,1.35584162 3.94673776,1.83636956 L4.06066017,1.93933983 L8,5.879 L11.9393398,1.93933983 C12.5251263,1.35355339 13.4748737,1.35355339 14.0606602,1.93933983 Z"/>
344
- <symbol id="icon-reciprocity" xmlns="http://www.w3.org/2000/svg">
345
- <symbol id="icon-recurring" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
346
257
  <path stroke="none" fill-rule="evenodd" d="M15.8931177,2.7903044 C19.6380589,4.37172259 22.0134956,8.0321794 22.0051997,12.0292901 C22.0046033,12.3054319 21.7802804,12.5288232 21.5041386,12.5282485 C21.2279968,12.5276739 21.0046055,12.303351 21.0051801,12.0272092 C21.012667,8.4293437 18.8747509,5.13489714 15.504109,3.7115385 C10.9247365,1.7778667 5.64571616,3.92236184 3.71121278,8.50135935 C1.777896,13.0799807 3.9230944,18.3602429 8.50185083,20.2946444 C13.0777259,22.2257747 18.3115136,20.1919864 20.3730825,15.4489689 L16.7233158,17.133859 C16.5005181,17.2368724 16.2409877,17.1620033 16.1046715,16.9680564 L16.0596411,16.8898593 C15.9566277,16.6670616 16.0314967,16.4075312 16.2254437,16.2712151 L16.3036407,16.2261846 L21.1279964,13.995581 C21.3969321,13.8712351 21.7060896,14.0072936 21.8056274,14.2723204 L21.8307003,14.3652589 L22.7410218,19.6964234 C22.7875016,19.968626 22.6045172,20.2269691 22.3323147,20.273449 C22.0903568,20.3147645 21.8593497,20.1747748 21.7783576,19.9519794 L21.7552891,19.8647419 L21.1299823,16.1996774 C18.7473624,21.1956855 13.0761553,23.3105171 8.11285812,21.2158852 C3.02530309,19.06653 0.641826259,13.1997614 2.790009,8.1122789 C4.93943513,3.02455613 10.8049731,0.64180007 15.8931177,2.7903044 Z M15.851812,6.68247889 C16.0493516,6.82817951 16.1086549,7.09170284 16.0042732,7.30454546 L15.9574076,7.38165667 L11.9494076,12.8156665 C11.8740052,12.9178963 11.7633426,12.9866121 11.6407949,13.0100092 L11.5470209,13.0188754 L6.74026891,13.0188754 C6.46412654,13.0188754 6.24026891,12.7950178 6.24026891,12.5188754 C6.24026891,12.2734155 6.41714407,12.069267 6.65039328,12.0269311 L6.74026891,12.0188754 L11.2941246,12.0180156 L15.1526342,6.78807446 C15.3165474,6.56584243 15.62958,6.51856568 15.851812,6.68247889 Z"/>
347
- <symbol id="icon-refresh" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
348
258
  <path stroke="none" d="M21.0674281,9.99502847 L21.1291615,10.0703587 L23.9151615,14.2213587 C24.0690508,14.4506461 24.0079286,14.7612722 23.7786413,14.9151615 C23.5748303,15.051952 23.3067517,15.0188569 23.1416135,14.8487778 L23.0848385,14.7786413 L21.3060028,12.1283907 C21.1630915,16.0599657 18.2510373,19.6645065 14.2829347,20.6012635 C11.2338897,21.3227538 8.07845713,20.4068006 5.88590813,18.246895 C5.68918705,18.0531028 5.68681275,17.7365292 5.88060498,17.5398081 C6.07439721,17.343087 6.39097079,17.3407127 6.58769187,17.534505 C8.53768219,19.4554632 11.3421163,20.2695291 14.0529218,19.6280759 C17.74289,18.7569786 20.4130924,15.2782825 20.3082409,11.615215 L17.8916923,14.5065936 C17.7343066,14.6949557 17.4676779,14.738206 17.2615408,14.6211376 L17.1874064,14.5696923 C16.9990443,14.4123066 16.955794,14.1456779 17.0728624,13.9395408 L17.1243077,13.8654064 L20.2643707,10.1040304 C20.2894026,10.0675064 20.3192574,10.0342846 20.3532272,10.0054033 L20.3303077,10.0284064 C20.5226456,9.79821285 20.8653948,9.7921831 21.0674281,9.99502847 Z M18.9551321,5.88083829 C19.1381381,6.08763145 19.1188549,6.40362611 18.9120617,6.58663213 C18.7052686,6.76963815 18.3892739,6.75035486 18.2062679,6.54356171 C16.2666461,4.35182773 13.2719521,3.37132883 10.3716412,4.05780921 C6.24562714,5.03240841 3.4340336,9.07876399 4.0042612,13.2205763 L6.53505851,10.1916653 C6.69241531,10.0032791 6.95903731,9.95998781 7.1651924,10.0770246 L7.23933466,10.1284585 C7.42772095,10.2858153 7.47101219,10.5524373 7.35397541,10.7585924 L7.30254149,10.8327347 L4.09754149,14.6697347 C3.90524041,14.899956 3.56249544,14.9060403 3.36043019,14.7032297 L3.29868481,14.6279102 L0.511684807,10.4769102 C0.357757413,10.2476484 0.418828008,9.9370122 0.648089799,9.78308481 C0.851878057,9.64626046 1.11996215,9.67931106 1.28512862,9.84936271 L1.34191519,9.9194898 L2.9314093,12.2881031 C2.86332126,8.02782206 5.87252976,4.09301859 10.141536,3.08464348 C13.4038693,2.31247524 16.773619,3.41577191 18.9551321,5.88083829 Z"/>
349
- <symbol id="icon-reorder" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
350
259
  <path stroke="none" fill-rule="evenodd" d="M13.5218727,11.95 C13.5218727,11.15 12.8218727,10.45 12.0218727,10.45 C11.2218727,10.45 10.5218727,11.15 10.5218727,11.95 C10.5218727,12.75 11.2218727,13.45 12.0218727,13.45 C12.8218727,13.45 13.5218727,12.75 13.5218727,11.95 Z M14.5218727,11.95 C14.5218727,13.35 13.4218727,14.45 12.0218727,14.45 C10.6218727,14.45 9.52187272,13.35 9.52187272,11.95 C9.52187272,10.55 10.6218727,9.45 12.0218727,9.45 C13.4218727,9.45 14.5218727,10.55 14.5218727,11.95 Z M12.0218727,1.15 L7.62187272,5.95 L16.3218727,5.95 L12.0218727,1.15 Z M17.5218727,6.95 L6.52187272,6.95 C6.12187272,6.95 5.82187272,6.45 6.12187272,6.15 L11.6218727,0.15 C11.8218727,-0.05 12.1218727,-0.05 12.3218727,0.15 L17.8218727,6.15 C18.2218727,6.45 17.9218727,6.95 17.5218727,6.95 Z M12.0218727,22.75 L16.4218727,17.95 L7.62187272,17.95 L12.0218727,22.75 Z M6.52187272,16.95 L17.5218727,16.95 C17.9218727,16.95 18.2218727,17.45 17.9218727,17.75 L12.4218727,23.75 C12.2218727,23.95 11.9218727,23.95 11.7218727,23.75 L6.22187272,17.75 C5.82187272,17.45 6.12187272,16.95 6.52187272,16.95 Z"/>
351
- <symbol id="icon-report-problem-triangle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 23">
352
260
  <path fill="none" stroke-linecap="round" stroke-linejoin="round" d="M22.5,22.5 L0.5,22.5 L11.5,0.5 L22.5,22.5 L22.5,22.5 Z M12,19 C12,19.276 11.776,19.5 11.5,19.5 C11.224,19.5 11,19.276 11,19 C11,18.724 11.224,18.5 11.5,18.5 C11.776,18.5 12,18.724 12,19 L12,19 Z M11.5,15.8052 L11.5,8.1532"/>
353
- <symbol id="icon-reports" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
354
261
  <path stroke="none" fill-rule="evenodd" d="M20.5,24 L3.5,24 C3.2,24 3,23.8 3,23.5 L3,0.5 C3,0.2 3.2,0 3.5,0 L14.5,0 C14.5,0 14.5,0 14.5,0 C14.6,0 14.8,0.1 14.9,0.1 L20.9,6.1 C20.9,6.2 21,6.4 21,6.5 C21,6.5 21,6.5 21,6.5 L21,23.5 C21,23.8 20.8,24 20.5,24 Z M4,23 L20,23 L20,7 L14.5,7 C14.2,7 14,6.8 14,6.5 L14,1 L4,1 L4,23 Z M15,6 L19.3,6 L15,1.7 L15,6 Z M14.5,20 C12.6,20 11,18.4 11,16.5 C11,14.6 12.6,13 14.5,13 C16.4,13 18,14.6 18,16.5 C18,18.4 16.4,20 14.5,20 Z M13,18.5 C13.4,18.8 13.9,19 14.5,19 C15.9,19 17,17.9 17,16.5 C17,15.3 16.1,14.3 15,14 L15,16.5 C15,16.6 14.9,16.8 14.8,16.9 L13,18.5 Z M14,14 C12.9,14.2 12,15.2 12,16.5 C12,17 12.1,17.4 12.3,17.8 L14,16.3 L14,14 Z M9,20 L7,20 C6.7,20 6.5,19.8 6.5,19.5 C6.5,19.2 6.7,19 7,19 L9,19 C9.3,19 9.5,19.2 9.5,19.5 C9.5,19.8 9.3,20 9,20 Z M9,17 L7,17 C6.7,17 6.5,16.8 6.5,16.5 C6.5,16.2 6.7,16 7,16 L9,16 C9.3,16 9.5,16.2 9.5,16.5 C9.5,16.8 9.3,17 9,17 Z M9,14 L7,14 C6.7,14 6.5,13.8 6.5,13.5 C6.5,13.2 6.7,13 7,13 L9,13 C9.3,13 9.5,13.2 9.5,13.5 C9.5,13.8 9.3,14 9,14 Z M16,11 L7,11 C6.7,11 6.5,10.8 6.5,10.5 C6.5,10.2 6.7,10 7,10 L16,10 C16.3,10 16.5,10.2 16.5,10.5 C16.5,10.8 16.3,11 16,11 Z M12,8 L7,8 C6.7,8 6.5,7.8 6.5,7.5 C6.5,7.2 6.7,7 7,7 L12,7 C12.3,7 12.5,7.2 12.5,7.5 C12.5,7.8 12.3,8 12,8 Z"/>
355
- <symbol id="icon-reset-override" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
356
262
  <g fill="none" fill-rule="evenodd">
357
263
  <path stroke="none" fill="#333" d="M6.503 10.2225031C10.3833626 10.2225031 13.5 13.3235489 13.5 17.1985031 13.5 21.0783137 10.358474 24.2225031 6.482 24.2225031 2.631322 24.2225031-.5 20.9861907-.5 17.0815031-.5 13.3379417 2.42969784 10.3811472 6.19951449 10.2289649L6.19951449 10.2289649zM7.74832804 21.222801L5.25706401 21.2232808C5.57496815 21.8652573 5.96310863 22.5076213 6.42158918 23.1464813L6.477 23.2225031C6.49737651 23.2225031 6.51273953 23.2224454 6.52808887 23.2223302L6.38525308 23.4157323C6.93117138 22.6881095 7.38547838 21.9552065 7.74832804 21.222801zM4.1525829 21.2227609L2.08146 21.2236866C2.89064463 22.1285583 3.95857352 22.787441 5.16139938 23.0698731 4.76564232 22.4575738 4.42964319 21.8405808 4.1525829 21.2227609zM10.9597775 21.2237034L8.85262429 21.2228895C8.5760728 21.8392305 8.24084036 22.454742 7.84699659 23.0661005 9.06863742 22.7837541 10.1487158 22.1271837 10.9597775 21.2237034zM3.2127836 17.7227114L.532952712 17.7230763C.626180281 18.6264365.913792957 19.4750307 1.35193908 20.2226652L3.75569616 20.2227967C3.46614809 19.3848491 3.28511888 18.5487022 3.2127836 17.7227114zM8.7894424 17.7225001L4.21645935 17.7232954C4.2964127 18.5465426 4.49693078 19.3827266 4.81824778 20.2230595L8.18728029 20.2227452C8.50881677 19.3822599 8.7094594 18.5459146 8.7894424 17.7225001zM12.4774934 17.7232769L9.79303486 17.7228825C9.72060038 18.5489407 9.53941924 19.3851432 9.24966644 20.2231338L11.6877598 20.2232896C12.1214076 19.4769623 12.3994679 18.6288028 12.4774934 17.7232769zM3.58321778 14.2224758L1.2387917 14.2223453C.821126524 14.9663049.564245033 15.8135885.510547529 16.7228307L3.17842828 16.7228848C3.19500488 15.8715245 3.32986854 15.0348962 3.58321778 14.2224758zM8.36773191 14.2226922L4.63816558 14.2229156C4.35141399 15.030888 4.19819904 15.8675008 4.17879488 16.7224667L8.82712738 16.722857C8.80781846 15.8676967 8.65459524 15.0308781 8.36773191 14.2226922zM11.7135657 14.222166L9.4229113 14.222961C9.67615118 15.0351804 9.81094108 15.8715749 9.82747924 16.7226783L12.4816072 16.7227756C12.4111256 15.8154979 12.1405961 14.9675834 11.7135657 14.222166zM5.02432038 11.3955906L4.90242773 11.425614C3.73152043 11.7303782 2.71255728 12.3635375 1.95066725 13.2225289L3.96058484 13.2225916C4.24024196 12.594228 4.59478725 11.9836421 5.02432038 11.3955906zM6.503 11.2225031C6.48455364 11.2225031 6.46615286 11.2225845 6.44778547 11.2227478L6.58807105 11.0679763C5.95859598 11.7497839 5.45215369 12.4711741 5.06898764 13.22301L7.9369101 13.2228972C7.59458607 12.5512633 7.15386559 11.9039058 6.6149221 11.2873344L6.557 11.2235031zM7.98796147 11.4044187L8.09823625 11.5584472C8.47588042 12.0963255 8.79165612 12.6524215 9.04563796 13.2231721L10.9936412 13.2225363C10.2113253 12.3446267 9.1714054 11.7009218 7.98796147 11.4044187zM18.0149362 18.2241328L17.9795 18.222503C18.0768069 18.222212 18.1677049 18.2497369 18.2446641 18.2975931 18.2455008 18.2984255 18.2464605 18.2990251 18.2474186 18.2996283L18.2560004 18.3048557C18.2767622 18.3185539 18.2964435 18.3337592 18.314888 18.3503162L18.3219978 18.3570454 19.9175396 19.8424567C20.1196524 20.0306189 20.1309616 20.3469993 19.9427994 20.5491122 19.7755441 20.728768 19.5069806 20.7576654 19.3074144 20.6297168L19.2361439 20.574372 18.4827382 19.8715007 18.4826802 19.9600951C18.4379305 23.0219206 17.3072142 24.2158031 14.0957382 24.2158031 13.8195958 24.2158031 13.5957382 23.9919454 13.5957382 23.7158031 13.5957382 23.4396607 13.8195958 23.2158031 14.0957382 23.2158031 16.7309887 23.2158031 17.4531309 22.478239 17.4831001 19.9455147L17.4827382 19.8185007 16.6017623 20.585666C16.416562 20.7467604 16.1464488 20.7472894 15.9614256 20.599087L15.8963625 20.5365625C15.7352681 20.3513622 15.7347391 20.0812489 15.8829415 19.8962257L15.9454661 19.8311627 17.6461292 18.3511994C17.7344003 18.2715358 17.8512377 18.2228889 17.9795 18.222503L17.9897417 18.2230743C17.9981463 18.2232162 18.0065473 18.2235691 18.0149362 18.2241328z"/>
358
264
  <path stroke="none" fill="#333" d="M24.0007887,-0.5 C24.2769311,-0.5 24.5007887,-0.276142375 24.5007887,0 C24.5007887,0.245459889 24.3239136,0.44960837 24.0906644,0.491944331 L24.0007887,0.5 L21.991,0.5 L19.2978655,13.1379894 C20.0053673,13.4461238 20.5,14.1515496 20.5,14.9725031 C20.5,16.0770726 19.6045695,16.9725031 18.5,16.9725031 C17.3954305,16.9725031 16.5,16.0770726 16.5,14.9725031 C16.5,14.7964175 16.5227559,14.6256468 16.5654872,14.4629714 L14.0957382,14.4636951 C13.8195958,14.4636951 13.5957382,14.2398375 13.5957382,13.9636951 C13.5957382,13.7182352 13.7726133,13.5140867 14.0058625,13.4717508 L14.0957382,13.4636951 L17.1878531,13.4630693 C17.493833,13.1968554 17.8815343,13.0221474 18.308334,12.9815682 L18.46976,12.222 L12.3820053,12.2225031 C12.1058629,12.2225031 11.8820053,11.9986454 11.8820053,11.7225031 C11.8820053,11.4770432 12.0588804,11.2728947 12.2921296,11.2305587 L12.3820053,11.2225031 L18.68276,11.222 L19.91676,5.432 L15.03176,5.432 L15.00476,7.771 L16.1444057,6.61369231 C16.3379871,6.41676368 16.6545579,6.41405015 16.8514865,6.60763147 C17.0265342,6.77970375 17.048128,7.04895295 16.9148072,7.24497103 L16.8575474,7.31471227 L14.8632237,9.34352087 C14.6890618,9.52069422 14.4158616,9.54038015 14.2196912,9.40257865 L14.150082,9.34352087 L12.1557583,7.31471227 C11.962177,7.11778364 11.9648905,6.80121278 12.1618191,6.60763147 C12.3368668,6.43555918 12.6064466,6.41858407 12.8001505,6.55524544 L12.8688999,6.61369231 L14.00476,7.769 L14.03176,5.432 L8.332,5.432 L10.1184292,9.65481276 C10.2140092,9.88089906 10.1305881,10.1378083 9.93223404,10.267628 L9.8525889,10.3100447 C9.6265026,10.4056248 9.36959338,10.3222037 9.23977361,10.1238495 L9.19735693,10.0442044 L7.11875325,5.12744705 C6.9910034,4.82526582 7.18370403,4.49334605 7.4923825,4.44012457 L7.57928939,4.43275123 L20.13076,4.432 L21.0979195,-0.104239929 C21.1409651,-0.306176844 21.3024171,-0.457727962 21.5001891,-0.492460477 L21.5869328,-0.5 L24.0007887,-0.5 Z M19.0731138,14.1529225 L19.035413,14.227135 C18.9611233,14.3469364 18.8383882,14.4313466 18.6971226,14.4561556 L18.6103788,14.4636951 L17.6394488,14.4628327 C17.5508627,14.6120836 17.5,14.7863535 17.5,14.9725031 C17.5,15.5247878 17.9477153,15.9725031 18.5,15.9725031 C19.0522847,15.9725031 19.5,15.5247878 19.5,14.9725031 C19.5,14.6334197 19.3312326,14.3337541 19.0731138,14.1529225 Z"/>
359
265
  </g>
360
- <symbol id="icon-safari" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g transform="translate(4 2)">
361
266
  <linearGradient id="SafariA" gradientUnits="userSpaceOnUse" x1="7.998" y1="21.994" x2="7.998" y2="-2.012">
362
267
  <stop offset=".25" stop-color="#dbdbda"/>
363
268
  <stop offset="1" stop-color="#fff"/>
364
269
  </linearGradient>
365
270
  <circle cx="8" cy="10" r="12" fill="url(#SafariA)"/>
366
271
  <radialGradient id="SafariB" cx="-295.722" cy="521.844" r=".059" gradientTransform="matrix(229.4 0 0 -229.4 67848.1016 119718.5)" gradientUnits="userSpaceOnUse">
367
272
  <stop offset="0" stop-color="#2abce1"/>
368
273
  <stop offset=".114" stop-color="#2abbe1"/>
369
274
  <stop offset="1" stop-color="#3375f8"/>
370
275
  </radialGradient>
371
276
  <circle cx="8" cy="10" r="11.1" fill="url(#SafariB)"/>
372
277
  <g transform="translate(9.688 8.719)">
373
278
  <path d="M-1.7-7.1c-.1 0-.1-.1-.1-.1v-2c0-.1.1-.1.1-.1l.1.1v2c.1 0 0 .1-.1.1h0z" fill="#f3f3f3"/>
374
279
  <path d="M-1.7-7.1c-.1 0-.1-.1-.1-.1v-2c0-.1.1-.1.1-.1.1 0 .2.1.2.1v2c0 0-.1.1-.2.1h0zm0-2.2c-.1 0-.1.1-.1.1v2c0 .1.1.1.1.1.1 0 .1-.1.1-.1v-2c.1-.1 0-.1-.1-.1h0z" fill="#fff"/>
375
280
  <path d="M-.7-8.2c-.1 0-.1-.1-.1-.1l.1-.9c0-.1.1-.1.2-.1s.1.1.1.1l-.1.9c-.1.1-.2.1-.2.1h0z" fill="#f3f3f3"/>
376
281
  <path d="M-.7-8.2c-.1 0-.1-.1-.1-.1l.1-.9c0-.1.1-.1.2-.1s.1.1.1.1l-.1.9c-.1.1-.1.2-.2.1h0zm.1-1.1c-.1 0-.1 0-.1.1l-.1.9c0 .1 0 .1.1.1s.1 0 .1-.1l.1-.9c0 0-.1-.1-.1-.1h0z" fill="#fff"/>
377
282
  <path d="M0-6.9C-.1-7-.2-7-.1-7.1L.2-9c0-.1.1-.1.2-.1s.1.1.1.2L.1-7.1c0 .1-.1.2-.1.2h0z" fill="#f3f3f3"/>
378
283
  <path d="M0-6.9C-.1-7-.2-7-.2-7.1L.2-9c0-.1.1-.1.2-.1s.1 0 .1.1L.2-7.1c-.1.1-.1.2-.2.2h0zm.4-2.2c-.1 0-.1 0-.2.1l-.4 1.9c.1.1.1.1.2.1s.1 0 .2-.1L.5-9c0-.1 0-.1-.1-.1h0z" fill="#fff"/>
379
284
  <path d="M1.1-7.8C1-7.8 1-7.9 1-8l.2-.8c0-.1.1-.1.2-.1s.1.1.1.2l-.2.8c-.1.1-.1.1-.2.1h0z" fill="#f3f3f3"/>
380
285
  <path d="M1.1-7.8C1-7.8 1-7.9 1-8l.2-.8c0-.1.1-.1.2-.1s.1.1.1.2l-.2.8c0 .1-.1.1-.2.1h0zm.3-1.1c-.1 0-.1 0-.2.1L1-8c0 .1 0 .1.1.2.1 0 .1 0 .2-.1l.2-.8c0-.1 0-.2-.1-.2h0z" fill="#fff"/>
381
286
  <path d="M1.6-6.5c-.1 0-.1-.1-.1-.2l.7-1.8c0-.1.1-.1.2-.1s.1.1.1.2l-.8 1.9s-.1.1-.1 0h0z" fill="#f3f3f3"/>
382
287
  <path d="M1.6-6.5c-.1 0-.1-.1-.1-.2l.8-1.8c0-.1.1-.1.2-.1s.1.1.1.2l-.8 1.9c-.1 0-.2.1-.2 0h0zm.8-2c-.1 0-.1 0-.2.1l-.7 1.8c0 .1 0 .1.1.2.1 0 .1 0 .2-.1l.8-1.8c-.1-.1-.1-.2-.2-.2h0z" fill="#fff"/>
383
288
  <path d="M2.8-7.1c-.1 0-.1-.1-.1-.2l.5-.7c0-.1.1-.1.2-.1v.2l-.4.8s-.1.1-.2 0h0z" fill="#f3f3f3"/>
384
289
  <path d="M2.8-7.1c-.1 0-.1-.1-.1-.2l.5-.7c0-.1.1-.1.2-.1s.1.1.1.2l-.5.8s-.1.1-.2 0h0zm.5-1c-.1 0-.1 0-.2.1l-.3.8c0 .1 0 .1.1.2.1 0 .1 0 .2-.1l.4-.8-.2-.2h0z" fill="#fff"/>
385
290
  <path d="M3-5.7c-.1 0-.1-.1 0-.2l1.1-1.6c0-.1.1-.1.2 0 .1 0 .1.1 0 .2L3.2-5.7s-.1.1-.2 0h0z" fill="#f3f3f3"/>
386
291
  <path d="M3-5.7c-.1 0-.1-.1 0-.2l1.1-1.6c0-.1.1-.1.2 0 .1 0 .1.1 0 .2L3.2-5.7c0 .1-.1.1-.2 0h0zm1.2-1.8H4L3-5.9v.2h.2l1.1-1.6c0-.1 0-.2-.1-.2h0z" fill="#fff"/>
387
292
  <path d="M4.4-6c-.1 0-.1-.1 0-.2l.5-.7c0-.1.1-.1.2 0 .1 0 .1.1 0 .2l-.5.7h-.2 0z" fill="#f3f3f3"/>
388
293
  <path d="M4.4-6c-.1 0-.1-.1 0-.2l.5-.7c0-.1.1-.1.2 0 .1 0 .1.1 0 .2l-.5.7h-.2 0zm.7-.9h-.2l-.6.7v.2h.2l.5-.7c.1-.1.1-.2.1-.2h0z" fill="#fff"/>
389
294
  <path d="M4.3-4.6c-.1-.1-.1-.1 0-.2l1.4-1.4c.1-.1.1 0 .2 0s0 .2 0 .2L4.5-4.6h-.2 0z" fill="#f3f3f3"/>
390
295
  <path d="M4.3-4.6c-.1-.1-.1-.2 0-.2l1.4-1.4c.1-.1.2-.1.2 0v.2L4.5-4.6h-.2 0zm1.6-1.6h-.2L4.3-4.8v.2c0 .1.1 0 .2 0L5.9-6v-.2h0z" fill="#fff"/>
391
296
  <path d="M5.7-4.7v-.2l.7-.6h.2v.2l-.7.6c-.1.1-.2.1-.2 0h0z" fill="#f3f3f3"/>
392
297
  <path d="M5.7-4.7c-.1-.1 0-.2 0-.2l.7-.6c.1-.1.2 0 .2 0 .1.1 0 .2 0 .2l-.7.6c-.1.1-.2.1-.2 0h0zm.8-.7c0-.1-.1-.1-.2 0l-.6.5s-.1.1 0 .2c0 .1.1.1.2 0l.7-.6c0 0 0-.1-.1-.1h0z" fill="#fff"/>
393
298
  <path d="M5.3-3.3v-.2L7-4.6h.2v.2L5.5-3.3h-.2 0z" fill="#f3f3f3"/>
394
299
  <path d="M5.3-3.3v-.2L7-4.6h.2v.2L5.5-3.3h-.2 0zm1.9-1.3c0-.1-.1-.1-.2 0L5.4-3.5c-.1 0-.1.1 0 .2 0 .1.1.1.2 0l1.6-1.1c0 0 0-.1 0-.2h0z" fill="#fff"/>
395
300
  <path d="M6.7-3.2v-.2l.8-.4c.1 0 .1 0 .2.1v.2l-.8.4c-.1 0-.1 0-.2-.1h0z" fill="#f3f3f3"/>
396
301
  <path d="M6.7-3.1v-.2l.8-.4c.1 0 .2 0 .2.1v.2l-.8.3c-.1.1-.2 0-.2 0h0zm1-.6c0-.1-.1-.1-.2 0l-.7.4c-.1 0-.1.1 0 .2 0 .1.1.1.2 0l.8-.4c-.1-.1-.1-.1-.1-.2h0z" fill="#fff"/>
397
302
  <path d="M6.1-1.9c0-.1 0-.2.1-.2L8-2.8c.1 0 .2 0 .2.1s0 .2-.1.2l-1.8.7c-.1 0-.2 0-.2-.1h0z" fill="#f3f3f3"/>
398
303
  <path d="M6.1-1.9c0-.1 0-.2.1-.2L8-2.8c.1 0 .2 0 .2.1s0 .2-.1.2l-1.8.7c-.1 0-.2 0-.2-.1h0zm2-.9H8l-1.8.7c-.1.1-.1.1-.1.2s.1.1.2.1l1.8-.8c0 0 .1-.1 0-.2h0z" fill="#fff"/>
399
304
  <path d="M7.4-1.4c0-.1 0-.2.1-.2l.8-.3c.1 0 .1 0 .2.1 0 .1 0 .1-.1.2l-.8.2c-.1.1-.2 0-.2 0h0z" fill="#f3f3f3"/>
400
305
  <path d="M7.4-1.4c0-.1 0-.2.1-.2l.8-.3c.1 0 .2 0 .2.1s0 .2-.1.2l-.8.3c-.1 0-.2-.1-.2-.1h0zm1.1-.4c0-.1-.1-.1-.2-.1l-.8.3c-.1 0-.1.1-.1.2s.1.1.2.1l.8-.3c.1-.1.1-.1.1-.2h0z" fill="#fff"/>
401
306
  <path d="M6.6-.3c0-.1 0-.1.1-.2l1.9-.4c.1 0 .1 0 .2.1 0 .1 0 .2-.1.2l-2 .4c-.1 0-.1 0-.1-.1h0z" fill="#f3f3f3"/>
402
307
  <path d="M6.5-.3c0-.1 0-.2.1-.2l1.9-.4c.1 0 .2 0 .2.1s0 .2-.1.2l-1.9.4c-.1 0-.1 0-.2-.1h0zm2.2-.4c0-.1-.1-.1-.1-.1l-1.9.3c-.1 0-.1.1-.1.1 0 .1.1.1.1.1l1.9-.4c.1.1.1 0 .1 0h0z" fill="#fff"/>
403
308
  <path d="M7.8.4c0-.1 0-.1.1-.2l.9-.1c.1 0 .1 0 .1.1s0 .1-.1.2l-.9.1c-.1 0-.1 0-.1-.1h0z" fill="#f3f3f3"/>
404
309
  <path d="M7.8.4c0-.1 0-.2.1-.2l.9-.1c.1 0 .1 0 .2.1 0 .1 0 .2-.1.2l-1 .1c-.1 0-.1 0-.1-.1h0zM8.9.3c0-.1-.1-.1-.1-.1l-.9.1c-.1 0-.1.1-.1.1 0 .1.1.1.1.1l.9-.1.1-.1h0z" fill="#fff"/>
405
310
  <path d="M6.7 1.3c0-.1.1-.1.1-.1h2c.1 0 .1.1.1.1s0 .2-.1.2h-2c0 0-.1-.1-.1-.2h0z" fill="#f3f3f3"/>
406
311
  <path d="M6.7 1.3c0-.1.1-.2.1-.2h2c.1 0 .1.1.1.2s-.1.1-.1.1h-2c0 .1-.1 0-.1-.1h0zm2.2 0c0-.1-.1-.1-.1-.1h-2c-.1 0-.1.1-.1.1 0 .1.1.1.1.1h2c.1 0 .1 0 .1-.1h0z" fill="#fff"/>
407
312
  <path d="M7.8 2.3c0-.1.1-.1.1-.1l.9.1c.1 0 .1.1.1.2s-.1.1-.1.1l-.9-.2c-.1 0-.1-.1-.1-.1h0z" fill="#f3f3f3"/>
408
313
  <path d="M7.7 2.3c0-.1.1-.1.2-.1l.9.1c.1 0 .1.1.1.2s-.1.1-.1.1l-.9-.2c-.1 0-.2-.1-.2-.1h0zm1.2 0c0-.1 0-.1-.1-.1l-.9-.1c-.1 0-.1 0-.1.1s0 .1.1.1l.9.1c0 .1.1 0 .1-.1h0z" fill="#fff"/>
409
314
  <path d="M6.5 2.9c0-.1.1-.1.2-.1l1.9.4c.1 0 .1.1.1.2s-.1.1-.2.1l-1.9-.4s-.1-.1-.1-.2h0z" fill="#f3f3f3"/>
410
315
  <path d="M6.5 2.9c0-.1.1-.1.2-.1l1.9.4c.1 0 .1.1.1.2s-.1.1-.2.1l-1.9-.4s-.1-.1-.1-.2h0zm2.2.5c0-.1 0-.1-.1-.2l-1.9-.4c-.1 0-.1 0-.2.1 0 .1 0 .1.1.2l1.9.4c.1 0 .2-.1.2-.1h0z" fill="#fff"/>
411
316
  <path d="M7.4 4.1c0-.1.1-.2.2-.1l.8.2c.1 0 .1.1.1.2s-.1.1-.2.1l-.8-.3c-.1 0-.1-.1-.1-.1h0z" fill="#f3f3f3"/>
412
317
  <path d="M7.4 4.1c0-.1.1-.2.2-.1l.8.2c.1 0 .1.1.1.2s-.1.1-.2.1l-.8-.3c-.1 0-.1 0-.1-.1h0zm1.1.3c0-.1 0-.1-.1-.2L7.5 4s-.1 0-.1.1 0 .1.1.2l.8.2c.1 0 .2-.1.2-.1h0z" fill="#fff"/>
413
318
  <path d="M6.1 4.5c0-.1.1-.1.2-.1l1.8.8c.1 0 .1.1.1.2s-.1.1-.2.1l-1.9-.8s-.1-.1 0-.2h0z" fill="#f3f3f3"/>
414
319
  <path d="M6.1 4.5c0-.1.1-.1.2-.1l1.8.8c.1 0 .1.1.1.2s-.1.1-.2.1l-1.9-.8s-.1-.1 0-.2h0zm2 .9c0-.1 0-.1-.1-.2l-1.8-.8c-.1 0-.1 0-.2.1 0 .1 0 .1.1.2l1.8.8c.1 0 .2-.1.2-.1h0z" fill="#fff"/>
415
320
  <path d="M6.7 5.8c0-.1.1-.1.2-.1l.8.4c.1 0 .1.1.1.2s-.1.1-.2.1L6.7 6c0-.1-.1-.2 0-.2h0z" fill="#f3f3f3"/>
416
321
  <path d="M6.7 5.8c0-.1.1-.1.2-.1l.8.4c.1 0 .1.1.1.2s-.1.1-.2.1L6.7 6c0-.1-.1-.2 0-.2h0zm1 .5c0-.1 0-.1-.1-.2l-.8-.4c-.1 0-.1 0-.2.1 0 .1 0 .1.1.2l.8.4c.1 0 .2 0 .2-.1h0z" fill="#fff"/>
417
322
  <path d="M5.3 6c0-.1.1-.1.2 0l1.6 1c.1 0 .1.1 0 .2 0 .1-.1.1-.2 0L5.3 6.1s-.1-.1 0-.1h0z" fill="#f3f3f3"/>
418
323
  <path d="M5.3 5.9c0-.1.1-.1.2 0L7.1 7c.1 0 .1.1 0 .2 0 .1-.1.1-.2 0l-1.6-1c-.1-.1-.1-.2 0-.3h0zm1.8 1.3V7L5.5 5.9h-.2v.2L7 7.2c0 .1.1 0 .1 0h0z" fill="#fff"/>
419
324
  <path d="M5.6 7.3c0-.1.1-.1.2 0l.7.5c.1 0 .1.1 0 .2 0 .1-.1.1-.2 0l-.6-.5c-.1 0-.1-.1-.1-.2h0z" fill="#f3f3f3"/>
420
325
  <path d="M5.6 7.3c0-.1.1-.1.2 0l.7.5c.1 0 .1.1 0 .2 0 .1-.1.1-.2 0l-.6-.5c-.1 0-.1-.1-.1-.2h0zm.9.7v-.2l-.7-.5h-.2c-.1 0 0 .1 0 .2l.8.5c0 .1.1.1.1 0h0z" fill="#fff"/>
421
326
  <path d="M4.2 7.2c.1-.1.1-.1.2 0l1.4 1.4c.1.1 0 .1 0 .2-.1.1-.1.1-.2 0L4.2 7.4v-.2h0z" fill="#f3f3f3"/>
422
327
  <path d="M4.2 7.2c.1-.1.2-.1.2 0l1.4 1.4c.1.1.1.2 0 .2-.1.1-.1.1-.2 0L4.2 7.4v-.2h0zm1.6 1.6v-.2L4.4 7.2h-.2c-.1 0 0 .1 0 .2l1.4 1.4h.2 0z" fill="#fff"/>
423
328
  <path d="M4.3 8.6h.2l.6.7v.2h-.2l-.6-.7v-.2h0z" fill="#f3f3f3"/>
424
329
  <path d="M4.3 8.6c.1-.1.2 0 .2 0l.6.7c.1.1 0 .2 0 .2-.1.1-.2 0-.2 0l-.6-.7v-.2h0zm.8.9c.1 0 .1-.1 0-.2l-.6-.7s-.1-.1-.2 0c-.1 0-.1.1 0 .2l.6.7c0 0 .1 0 .2 0h0z" fill="#fff"/>
425
330
  <path d="M3 8.3h.2l1.1 1.6v.2h-.2L2.9 8.5c0-.1 0-.2.1-.2h0z" fill="#f3f3f3"/>
426
331
  <path d="M3 8.3h.2l1.1 1.6v.2h-.2L2.9 8.5c0-.1 0-.2.1-.2h0zm1.2 1.8c.1 0 .1-.1 0-.2l-1-1.6c0-.1-.1-.1-.2 0-.1 0-.1.1 0 .2l1 1.6h.2 0z" fill="#fff"/>
427
332
  <path d="M2.8 9.7H3l.4.8c0 .1 0 .2-.1.2h-.2l-.4-.9s0-.1.1-.1h0z" fill="#f3f3f3"/>
428
333
  <path d="M2.8 9.6H3l.4.8c0 .1 0 .2-.1.2h-.2l-.4-.8s0-.1.1-.2h0zm.5 1c.1 0 .1-.1 0-.2L3 9.7c0-.1-.1-.1-.2 0-.1 0-.1.1 0 .2l.4.8c0-.1.1 0 .1-.1h0z" fill="#fff"/>
429
334
  <path d="M1.5 9c.1 0 .2 0 .2.1l.8 1.8c0 .1 0 .1-.1.2-.1 0-.2 0-.2-.1l-.7-1.8c-.1-.1 0-.1 0-.2h0z" fill="#f3f3f3"/>
430
335
  <path d="M1.5 9c.1 0 .2 0 .2.1l.8 1.8c0 .1 0 .2-.1.2s-.2 0-.2-.1l-.7-1.8c-.1-.1 0-.1 0-.2h0zm.9 2.1c.1 0 .1-.1.1-.2l-.8-1.8c0-.1-.1-.1-.2-.1s-.1.1-.1.2l.8 1.8c.1.1.1.1.2.1h0z" fill="#fff"/>
431
336
  <path d="M1.1 10.4c.1 0 .2 0 .2.1l.3.8c0 .1 0 .1-.1.2-.1 0-.2 0-.2-.1l-.3-.9s0-.1.1-.1h0z" fill="#f3f3f3"/>
432
337
  <path d="M1.1 10.4c.1 0 .2 0 .2.1l.3.8c0 .1 0 .2-.1.2s-.2 0-.2-.1l-.3-.9s0-.1.1-.1h0zm.3 1c.1 0 .1-.1.1-.2l-.3-.8c0-.1-.1-.1-.2-.1v.2l.3.8c0 .1.1.2.1.1h0z" fill="#fff"/>
433
338
  <path d="M0 9.5c.1 0 .1 0 .2.1l.4 1.9c0 .1 0 .1-.1.2-.1 0-.2 0-.2-.1l-.4-1.9c-.1-.1 0-.2.1-.2h0z" fill="#f3f3f3"/>
434
339
  <path d="M0 9.5c.1 0 .2 0 .2.1l.4 1.9c0 .1 0 .2-.1.2s-.2 0-.2-.1l-.4-1.9c-.1-.1 0-.2.1-.2h0zm.4 2.2c.1 0 .1-.1.1-.2L.1 9.6 0 9.5c-.1 0-.1.1-.1.2l.4 1.9c0 .1 0 .1.1.1h0z" fill="#fff"/>
435
340
  <path d="M-.7 10.7c.1 0 .1 0 .2.1l.1.9c0 .1 0 .1-.1.1s-.1 0-.2-.1l-.1-.9c-.1 0 0-.1.1-.1h0z" fill="#f3f3f3"/>
436
341
  <path d="M-.7 10.7c.1 0 .2 0 .2.1l.1.9c0 .1 0 .1-.1.2-.1 0-.2 0-.2-.1l-.1-.9c-.1-.1 0-.2.1-.2h0zm.1 1.1c.1 0 .1-.1.1-.1l-.1-.9c0-.1-.1-.1-.1-.1-.1 0-.1.1-.1.1l.1.9c0 .1 0 .2.1.1h0z" fill="#fff"/>
437
342
  <path d="M-1.7 9.7c.1 0 .1.1.1.1v2c0 .1-.1.1-.1.1l-.1-.1v-2c0-.1 0-.1.1-.1h0z" fill="#f3f3f3"/>
438
343
  <path d="M-1.7 9.7c.1 0 .1.1.1.1v2c0 .1-.1.1-.1.1-.1 0-.2-.1-.2-.1v-2c0-.1.1-.1.2-.1h0zm0 2.2c.1 0 .1-.1.1-.1v-2c0-.1-.1-.1-.1-.1-.1 0-.1.1-.1.1v2s0 .1.1.1h0z" fill="#fff"/>
439
344
  <path d="M-2.6 10.7c.1 0 .1.1.1.1l-.1.9c0 .1-.1.1-.2.1s-.1-.1-.1-.1l.1-.9c0 0 .1-.1.2-.1h0z" fill="#f3f3f3"/>
440
345
  <path d="M-2.6 10.7c.1 0 .1.1.1.1l-.1.9c0 .1-.1.1-.2.1s-.1-.1-.1-.2l.1-.9c0 .1.1 0 .2 0h0zm-.1 1.2c.1 0 .1 0 .1-.1l.1-.9c0-.1 0-.1-.1-.1s-.1 0-.1.1l-.1.9c0 0 0 0 .1.1h0z" fill="#fff"/>
441
346
  <path d="M-3.3 9.5c.1 0 .1.1.1.2l-.4 1.9c0 .1-.1.1-.2.1s-.1-.1-.1-.2l.4-1.9s.1-.1.2-.1h0z" fill="#f3f3f3"/>
442
347
  <path d="M-3.3 9.5c.1 0 .1.1.1.2l-.4 1.9c0 .1-.1.1-.2.1s-.1-.1-.1-.2l.4-1.9c0-.1.1-.1.2-.1h0zm-.5 2.2c.1 0 .1 0 .1-.1l.4-1.9c0-.1 0-.1-.1-.2-.1 0-.1 0-.1.1l-.4 1.9c0 .1 0 .2.1.2h0z" fill="#fff"/>
443
348
  <path d="M-4.5 10.4c.1 0 .1.1.1.2l-.2.8c0 .1-.1.1-.2.1s-.1-.1-.1-.2l.2-.8c.1-.1.2-.2.2-.1h0z" fill="#f3f3f3"/>
444
349
  <path d="M-4.5 10.3c.1 0 .1.1.1.2l-.2.8c0 .1-.1.1-.2.1s-.1-.1-.1-.2l.2-.8c.1 0 .1-.1.2-.1h0zm-.3 1.1c.1 0 .1 0 .2-.1l.2-.8c0-.1 0-.1-.1-.2-.1 0-.1 0-.2.1l-.2.8c0 .2.1.2.1.2h0z" fill="#fff"/>
445
350
  <path d="M-4.9 9c.1 0 .1.1.1.2l-.8 1.8c0 .1-.1.1-.2.1s-.1-.1-.1-.2l.8-1.8c0-.1.1-.1.2-.1h0z" fill="#f3f3f3"/>
446
351
  <path d="M-4.9 9c.1 0 .1.1.1.2l-.8 1.8c0 .1-.1.1-.2.1s-.1-.1-.1-.2l.8-1.8c0-.1.1-.1.2-.1h0zm-.9 2.1c.1 0 .1 0 .2-.1l.8-1.8c0-.1 0-.1-.1-.2-.1 0-.2 0-.2.1l-.8 1.8c0 .1.1.2.1.2h0z" fill="#fff"/>
447
352
  <path d="M-6.2 9.6c.1 0 .1.1.1.2l-.4.8c0 .1-.1.1-.2.1s-.1-.1-.1-.2l.4-.8c.1-.1.1-.1.2-.1h0z" fill="#f3f3f3"/>
448
353
  <path d="M-6.2 9.6c.1 0 .1.1.1.2l-.4.8c0 .1-.1.1-.2.1s-.1-.1-.1-.2l.4-.8c0-.1.1-.1.2-.1h0zm-.5 1c.1 0 .1 0 .2-.1l.4-.8c0-.1 0-.1-.1-.2-.1 0-.1 0-.2.1l-.4.8c0 .1 0 .2.1.2h0z" fill="#fff"/>
449
354
  <path d="M-6.4 8.2c.1 0 .1.1 0 .2L-7.5 10c0 .1-.1.1-.2 0-.1 0-.1-.1 0-.2l1.1-1.6h.2 0z" fill="#f3f3f3"/>
450
355
  <path d="M-6.4 8.2c.1 0 .1.1 0 .2L-7.5 10c0 .1-.1.1-.2 0-.1 0-.1-.1 0-.2l1.1-1.6h.2 0zm-1.2 1.9h.2l1.1-1.6v-.2h-.2l-1.1 1.6c-.1.1-.1.1 0 .2h0z" fill="#fff"/>
451
356
  <path d="M-7.8 8.6c.1 0 .1.1 0 .2l-.5.7c0 .1-.1.1-.2 0-.1 0-.1-.1 0-.2l.5-.7c.1 0 .2-.1.2 0h0z" fill="#f3f3f3"/>
452
357
  <path d="M-7.7 8.6c.1 0 .1.1 0 .2l-.5.7c0 .1-.1.1-.2 0-.1 0-.1-.1 0-.2l.4-.7c.1-.1.2-.1.3 0h0zm-.7.9h.2l.5-.7v-.2h-.2l-.5.7c-.1.1-.1.1 0 .2h0z" fill="#fff"/>
453
358
  <path d="M-7.7 7.2c.1.1.1.1 0 .2L-9 8.8c-.1.1-.1 0-.2 0s-.1-.1 0-.2l1.4-1.4c0-.1.1-.1.1 0h0z" fill="#f3f3f3"/>
454
359
  <path d="M-7.7 7.2c.1.1.1.2 0 .2L-9 8.8c-.1.1-.1.1-.2 0s-.1-.1 0-.2l1.4-1.4c0-.1.1-.1.1 0h0zm-1.5 1.6h.2l1.4-1.4v-.2c0-.1-.1 0-.2 0l-1.4 1.4c-.1 0-.1.1 0 .2h0z" fill="#fff"/>
455
360
  <path d="M-9.1 7.3v.2l-.6.5h-.2c-.1 0 0-.1 0-.2l.7-.6s.1 0 .1.1h0z" fill="#f3f3f3"/>
456
361
  <path d="M-9.1 7.3c.1.1 0 .2 0 .2l-.6.5c-.1.1-.2 0-.2 0-.1-.1 0-.2 0-.2l.7-.6s.1 0 .1.1h0zm-.8.7c0 .1.1.1.2 0l.7-.6s.1-.1 0-.2c0-.1-.1-.1-.2 0l-.7.6c-.1.1-.1.1 0 .2h0z" fill="#fff"/>
457
362
  <path d="M-8.7 5.9v.2l-1.6 1.1h-.2V7l1.6-1.1c.1-.1.2 0 .2 0h0z" fill="#f3f3f3"/>
458
363
  <path d="M-8.7 5.9v.2l-1.6 1.1h-.2V7l1.6-1.1c.1-.1.2-.1.2 0h0zm-1.8 1.2c0 .1.1.1.2 0L-8.7 6c.1 0 .1-.1 0-.2 0-.1-.1-.1-.2 0L-10.5 7c-.1 0-.1.1 0 .1h0z" fill="#fff"/>
459
364
  <path d="M-10.1 5.7v.2l-.8.4c-.1 0-.1 0-.2-.1V6l.8-.4c.1 0 .2.1.2.1h0z" fill="#f3f3f3"/>
460
365
  <path d="M-10.1 5.7v.2l-.8.4c-.1 0-.2 0-.2-.1V6l.8-.4c.1 0 .2 0 .2.1h0zm-1 .6c0 .1.1.1.2 0l.8-.4c.1 0 .1-.1 0-.2 0-.1-.1-.1-.2 0l-.7.4c-.1 0-.1.1-.1.2h0z" fill="#fff"/>
461
366
  <path d="M-9.5 4.5c0 .1 0 .2-.1.2l-1.8.8c-.1 0-.1 0-.2-.1 0-.1 0-.2.1-.2l1.8-.8c.1 0 .2 0 .2.1h0z" fill="#f3f3f3"/>
462
367
  <path d="M-9.4 4.5c0 .1 0 .2-.1.2l-1.8.8c-.1 0-.2 0-.2-.1s0-.2.1-.2l1.8-.8c0-.1.1 0 .2.1h0zm-2.1.8c0 .1.1.1.2.1l1.8-.8c.1 0 .1-.1.1-.2s-.1-.1-.2-.1l-1.8.8c-.1.1-.1.1-.1.2h0z" fill="#fff"/>
463
368
  <path d="M-10.8 4c0 .1 0 .2-.1.2l-.8.3c-.1 0-.1 0-.2-.1 0-.1 0-.2.1-.2l.8-.3c.1 0 .2 0 .2.1h0z" fill="#f3f3f3"/>
464
369
  <path d="M-10.8 4c0 .1 0 .2-.1.2l-.8.3c-.1 0-.2 0-.2-.1s0-.2.1-.2l.8-.3c.1 0 .2 0 .2.1h0zm-1.1.3c0 .1.1.1.2.1l.8-.3c.1 0 .1-.1.1-.2s-.1-.1-.2-.1l-.8.3c-.1.1-.1.2-.1.2h0z" fill="#fff"/>
465
370
  <path d="M-9.9 2.9c0 .1-.1.1-.1.1l-2 .4c-.1 0-.1 0-.2-.1 0-.1 0-.2.1-.2l1.9-.4c.2.1.3.1.3.2h0z" fill="#f3f3f3"/>
466
371
  <path d="M-9.9 2.9c0 .1-.1.1-.1.2l-2 .3c-.1 0-.1 0-.2-.1 0-.1 0-.2.1-.2l1.9-.4c.2 0 .3.1.3.2h0zm-2.2.4c0 .1.1.1.1.1l2-.4c.1 0 .1-.1.1-.2s-.1-.1-.1-.1l-2 .5c-.1 0-.1 0-.1.1h0z" fill="#fff"/>
467
372
  <path d="M-11.1 2.2c0 .1 0 .1-.1.2l-.9.1c-.1 0-.1 0-.1-.1s0-.1.1-.2l.9-.1c0-.1.1 0 .1.1h0z" fill="#f3f3f3"/>
468
373
  <path d="M-11.1 2.2c0 .1 0 .2-.1.2l-.9.1c-.1 0-.1 0-.2-.1 0-.1 0-.2.1-.2l.9-.1c.1-.1.2 0 .2.1h0zm-1.2.1c0 .1.1.1.1.1l.9-.1c.1 0 .1-.1.1-.1 0-.1-.1-.1-.1-.1l-.9.1c0 0-.1 0-.1.1h0z" fill="#fff"/>
469
374
  <path d="M-10.1 1.3c0 .1-.1.1-.1.1h-2c-.1 0-.1-.1-.1-.1l.1-.1h2c.1-.1.1 0 .1.1h0z" fill="#f3f3f3"/>
470
375
  <path d="M-10.1 1.3c0 .1-.1.2-.1.2h-2c-.1 0-.1-.1-.1-.2s.1-.1.1-.1h2c.1-.1.1 0 .1.1h0zm-2.2-.1c0 .1.1.1.1.1h2c.1 0 .1-.1.1-.1 0-.1-.1-.1-.1-.1h-2c0 0-.1.1-.1.1h0z" fill="#fff"/>
471
376
  <path d="M-11.1.3c0 .1-.1.1-.1.1l-.9-.1c-.1 0-.1-.1-.1-.2s.1-.1.1-.1l.9.1c0 .1.1.1.1.2h0z" fill="#e2e2e2"/>
472
377
  <path d="M-11.1.3c0 .1-.1.1-.2.1l-.9-.1c-.1 0-.1-.1-.1-.2s.1-.1.2-.1l.9.1c0 .1.1.1.1.2h0zm-1.2-.1c0 .1 0 .1.1.1l.9.1c.1 0 .1 0 .1-.1s0-.1-.1-.1l-.9-.1c0 0-.1.1-.1.1h0z" fill="#fff"/>
473
378
  <path d="M-9.9-.4c0 .1-.1.1-.2.1L-12-.7c-.1 0-.1-.1-.1-.2s.1-.1.2-.1l1.9.4c0 .1.1.1.1.2h0z" fill="#f3f3f3"/>
474
379
  <path d="M-9.9-.4c0 .1-.1.1-.2.1L-12-.6c-.1 0-.1-.1-.1-.2s.1-.1.2-.1l1.9.4c.1 0 .1 0 .1.1h0zm-2.2-.4c0 .1 0 .1.1.1l1.9.4c.1 0 .1 0 .1-.1s0-.1-.1-.1L-12-.9s-.1 0-.1.1h0z" fill="#fff"/>
475
380
  <path d="M-10.8-1.5c0 .1-.1.1-.2.1l-.8-.2c-.1 0-.1-.1-.1-.2s.1-.1.2-.1l.8.2c.1 0 .2.1.1.2h0z" fill="#f3f3f3"/>
476
381
  <path d="M-10.8-1.5c0 .1-.1.1-.2.1l-.8-.2c-.1 0-.1-.1-.1-.2s.1-.1.2-.1l.8.2c.1 0 .2.1.1.2h0zm-1.1-.3c0 .1 0 .1.1.2l.8.2c.1 0 .1 0 .1-.1s0-.1-.1-.2l-.8-.2c0 0 0 0-.1.1h0z" fill="#fff"/>
477
382
  <path d="M-9.4-2c0 .1-.1.1-.2.1l-1.8-.8c-.1 0-.1-.1-.1-.2s.1-.1.2-.1l1.8.8c.1.1.1.2.1.2h0z" fill="#f3f3f3"/>
478
383
  <path d="M-9.4-1.9c0 .1-.1.1-.2.1l-1.8-.8c-.1 0-.1-.1-.1-.2s.1-.1.2-.1l1.8.8c.1 0 .1.1.1.2h0zm-2.1-.9c0 .1 0 .1.1.2l1.8.8c.1 0 .1 0 .2-.1 0-.1 0-.1-.1-.2l-1.8-.8c-.1 0-.2 0-.2.1h0z" fill="#fff"/>
479
384
  <path d="M-10.1-3.2c0 .1-.1.1-.2.1l-.7-.4c-.1 0-.1-.1-.1-.2s.1-.1.2-.1l.8.4c.1 0 .1.1 0 .2h0z" fill="#f3f3f3"/>
480
385
  <path d="M-10-3.2c0 .1-.1.1-.2.1l-.8-.4c-.1 0-.1-.1-.1-.2s.1-.1.2-.1l.8.4c.1 0 .1.1.1.2h0zm-1.1-.5c0 .1 0 .1.1.2l.8.4c.1 0 .1 0 .2-.1 0-.1 0-.1-.1-.2l-.8-.4c0 0-.1 0-.2.1h0z" fill="#fff"/>
481
386
  <path d="M-8.7-3.4c0 .1-.1.1-.2 0l-1.6-1.1c-.1 0-.1-.1 0-.2 0-.1.1-.1.2 0l1.6 1.1c.1.1.1.1 0 .2h0z" fill="#f3f3f3"/>
482
387
  <path d="M-8.7-3.4c0 .1-.1.1-.2 0l-1.6-1.1c-.1 0-.1-.1 0-.2 0-.1.1-.1.2 0l1.6 1.1c.1.1.1.1 0 .2h0zm-1.8-1.2v.2l1.6 1.1h.2v-.2l-1.6-1.1c-.1-.1-.2-.1-.2 0h0z" fill="#fff"/>
483
388
  <path d="M-9-4.8c0 .1-.1.1-.2 0l-.7-.5c-.1 0-.1-.1 0-.2 0-.1.1-.1.2 0l.7.6v.1h0z" fill="#f3f3f3"/>
484
389
  <path d="M-9-4.7c0 .1-.1.1-.2 0l-.7-.5c-.1 0-.1-.1 0-.2s.1-.1.2 0l.7.4v.3h0zm-.9-.8v.2l.7.5h.2c.1 0 0-.1 0-.2l-.7-.5h-.2 0z" fill="#fff"/>
485
390
  <path d="M-7.6-4.7c-.1.1-.1.1-.2 0L-9.2-6c-.1-.1 0-.1 0-.2.1-.1.1-.1.2 0l1.4 1.4v.1h0z" fill="#f3f3f3"/>
486
391
  <path d="M-7.6-4.7c-.1.1-.1.1-.2 0L-9.2-6c-.1-.1-.1-.2 0-.2.1-.1.1-.1.2 0l1.4 1.4v.1h0zm-1.6-1.5v.2l1.4 1.4h.2c.1 0 0-.1 0-.2L-9-6.2c-.1-.1-.1-.1-.2 0h0z" fill="#fff"/>
487
392
  <path d="M-7.7-6.1h-.2l-.6-.7V-7h.2l.6.7c.1.1 0 .2 0 .2h0z" fill="#f3f3f3"/>
488
393
  <path d="M-7.7-6.1c-.1.1-.1 0-.2 0l-.6-.7c-.1-.1 0-.2 0-.2h.2l.6.7c.1.1.1.2 0 .2h0zm-.7-.8c-.1 0-.1.1 0 .2l.6.7s.1.1.2 0c.1 0 .1-.1 0-.2l-.6-.7c-.1-.1-.2-.1-.2 0h0z" fill="#fff"/>
489
394
  <path d="M-6.4-5.7h-.2l-1.1-1.6v-.2h.2l1.1 1.6c.1.1.1.2 0 .2h0z" fill="#f3f3f3"/>
490
395
  <path d="M-6.4-5.7h-.2l-1.1-1.6v-.2h.2l1.1 1.6c.1.1.1.2 0 .2h0zm-1.2-1.8c-.1 0-.1.1 0 .2l1.1 1.6c0 .1.1.1.2 0 .1 0 .1-.1 0-.2l-1.1-1.6c-.1-.1-.1-.1-.2 0h0z" fill="#fff"/>
491
396
  <path d="M-6.2-7.1h-.2l-.4-.8c0-.1 0-.2.1-.2h.2l.4.8c0 .1 0 .2-.1.2h0z" fill="#f3f3f3"/>
492
397
  <path d="M-6.2-7.1h-.2l-.4-.8c0-.1 0-.2.1-.2h.2l.4.8c0 .1 0 .2-.1.2h0zm-.5-1c-.1 0-.1.1 0 .2l.4.8c0 .1.1.1.2 0 .1 0 .1-.1 0-.2l-.5-.7c0-.1-.1-.1-.1-.1h0z" fill="#fff"/>
493
398
  <path d="M-4.9-6.5c-.1 0-.2 0-.2-.1l-.8-1.8c0-.1 0-.1.1-.2.1 0 .2 0 .2.1l.8 1.8c0 .1 0 .2-.1.2h0z" fill="#f3f3f3"/>
494
399
  <path d="M-4.9-6.5c-.1 0-.2 0-.2-.1l-.8-1.8c0-.1 0-.2.1-.2s.2 0 .2.1l.8 1.8c0 .1 0 .2-.1.2h0zm-.9-2c-.1 0-.1.1-.1.2l.8 1.8h.2c.1 0 .1-.1.1-.2l-.8-1.8c0 0-.1 0-.2 0h0z" fill="#fff"/>
495
400
  <path d="M-4.5-7.8c-.1 0-.2 0-.2-.1l-.3-.8c0-.1 0-.2.1-.2s.1 0 .2.1l.3.8c.1.1 0 .2-.1.2h0z" fill="#f3f3f3"/>
496
401
  <path d="M-4.4-7.8c-.1 0-.2 0-.2-.1l-.3-.8c0-.1 0-.2.1-.2s.2 0 .2.1l.3.8c0 .1-.1.2-.1.2h0zm-.4-1.1c-.1 0-.1.1-.1.2l.3.8c0 .1.1.1.2.1s0-.1 0-.2l-.3-.8c0-.1 0-.1-.1-.1h0z" fill="#fff"/>
497
402
  <path d="M-3.3-6.9c-.1 0-.2 0-.2-.1l-.4-2c0-.1 0-.1.1-.2.1 0 .1 0 .2.1l.4 1.9c0 .2-.1.2-.1.3h0z" fill="#f3f3f3"/>
498
403
  <path d="M-3.3-6.9c-.1 0-.2 0-.2-.1l-.4-2c0-.1 0-.2.1-.2s.2 0 .2.1l.4 1.9c0 .2-.1.2-.1.3h0zm-.5-2.2c-.1 0-.1.1-.1.1l.4 1.9c0 .1.1.2.2.1 0 0 .1 0 .1-.1L-3.6-9c-.1-.1-.1-.1-.2-.1h0z" fill="#fff"/>
499
404
  <path d="M-2.6-8.2c-.1 0-.1 0-.2-.1l-.1-.9c0-.1 0-.1.1-.1s.1 0 .2.1l.1.9c0 .1-.1.1-.1.1h0z" fill="#f3f3f3"/>
500
405
  <path d="M-2.6-8.2c-.1 0-.2 0-.2-.1l-.1-.9c0-.1 0-.1.1-.2.1 0 .2 0 .2.1l.1.9c0 .2 0 .2-.1.2h0zm-.2-1.1c-.1 0-.1.1-.1.1l.1.9c0 .1.1.1.1.1.1 0 .1-.1.1-.1l-.1-.9c.1 0 0-.1-.1-.1h0z" fill="#fff"/>
501
406
  <linearGradient id="SafariC" gradientUnits="userSpaceOnUse" x1="-305.413" y1="513.124" x2="-305.435" y2="513.084" gradientTransform="matrix(229.4 0 0 -229.4 70061.3984 117709.6016)">
502
407
  <stop offset="0" stop-opacity="0"/>
503
408
  <stop offset="1"/>
504
409
  </linearGradient>
505
410
  <circle cx="-1.6" cy="1.3" r="11.1" fill="url(#SafariC)" fill-opacity=".2"/>
506
411
  </g>
507
412
  <path d="M15.8 3l-9 5.7h0 0 0l-5.6 9.2 8.2-6.6h0 0L15.8 3z" fill-opacity=".05"/>
508
413
  <path d="M15.6 2.4L6.7 8.7l2.6 2.6 6.3-8.9" fill="#cd151e"/>
509
414
  <path d="M6.7,8.7L8.1,10l7.5-7.6L6.7,8.7z" fill="#fa5153"/>
510
415
  <path d="M6.7 8.7l2.6 2.6-8.9 6.3 6.3-8.9z" fill="#acacac"/>
511
416
  <path d="M.5 17.6L8.1 10 6.7 8.7.5 17.6z" fill="#eee"/>
512
417
  </g>
513
- <symbol id="icon-sales-scope" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
514
418
  <path stroke="none" fill-rule="evenodd" d="M13.3694433,16.1 C13.6133508,15.869702 13.904315,15.6924874 14.2232434,15.5922219 L14.344105,15 L4.61961524,15 C4.41961524,15 4.21961524,14.9 4.11961524,14.7 L1.01961524,6.7 C0.919615242,6.3 1.21961524,6 1.51961524,6 L16.1808397,6 L17.1196152,1.4 C17.1196152,1.2 17.4196152,1 17.6196152,1 L20.0196152,1 C20.3196152,1 20.5196152,1.2 20.5196152,1.5 C20.5196152,1.8 20.3196152,2.1 20.0196152,2.1 L18.0196152,2.1 L15.2569156,15.5451383 C16.2530864,15.7536162 17.0196152,16.6618288 17.0196152,17.8 C17.0196152,19 16.0196152,20 14.8196152,20 C13.6196152,20 12.6196152,19 12.6196152,17.8 C12.6196152,17.56 12.6596152,17.324 12.7332152,17.1 L6.91792099,17.1 C6.98391867,17.319477 7.01961524,17.554384 7.01961524,17.8 C7.01961524,19 6.01961524,20 4.81961524,20 C3.61961524,20 2.61961524,19 2.61961524,17.8 C2.61961524,16.6 3.61961524,15.5 4.81961524,15.5 C5.38867799,15.5 5.91276401,15.7248836 6.30655805,16.1 L13.3694433,16.1 Z M14.5481867,14 L15.9767581,7 L2.31961524,7 L5.01961524,14 L14.5481867,14 Z M4.81961524,19 C5.51961524,19 6.01961524,18.4 6.01961524,17.8 C6.01961524,17.1 5.41961524,16.6 4.81961524,16.6 C4.21961524,16.6 3.61961524,17.2 3.61961524,17.8 C3.51961524,18.5 4.11961524,19 4.81961524,19 Z M14.8196152,19 C15.5196152,19 16.0196152,18.4 16.0196152,17.8 C16.0196152,17.1 15.4196152,16.6 14.8196152,16.6 C14.1196152,16.6 13.6196152,17.2 13.6196152,17.8 C13.5196152,18.5 14.1196152,19 14.8196152,19 Z"/>
515
- <symbol id="icon-save" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
516
419
  <path stroke="none" fill-rule="evenodd" d="M4,23 L4,20.5 C4,20.3 4.2,20 4.5,20 L19.5,20 C19.8,20 20,20.2 20,20.5 L20,23 L23,23 L23,1 L20,1 L20,5.5 C20,5.8 19.8,6 19.5,6 L4.5,6 C4.2,6 4,5.8 4,5.5 L4,1 L3.7,1 L1,3.7 L1,23 L4,23 Z M23.5,0 C23.8,0 24,0.3 24,0.5 L24,23.5 C24,23.8 23.8,24 23.5,24 L0.5,24 C0.2,24 0,23.8 0,23.5 L0,3.5 C0,3.4 0.1,3.2 0.1,3.1 L3.1,0.1 C3.2,0.1 3.4,0 3.5,0 L23.5,0 Z M19,1 L5,1 L5,5 L19,5 L19,1 Z M19,23 L19,21 L5,21 L5,23 L19,23 Z M16.5,11.5 C16.5,14 14.5,16 12,16 C9.5,16 7.5,14 7.5,11.5 C7.5,9 9.5,7 12,7 C14.5,7 16.5,9 16.5,11.5 Z M15.5,11.5 C15.5,9.6 13.9,8 12,8 C10.1,8 8.5,9.6 8.5,11.5 C8.5,13.4 10.1,15 12,15 C13.9,15 15.5,13.5 15.5,11.5 Z M14.5,19 C14.2,19 14,18.8 14,18.5 C14,18.2 14.2,18 14.5,18 L19.5,18 C19.8,18 20,18.2 20,18.5 C20,18.8 19.8,19 19.5,19 L14.5,19 Z M10,10.5 C10,10.2 10.2,10 10.5,10 C10.8,10 11,10.2 11,10.5 L11,12.5 C11,12.8 10.8,13 10.5,13 C10.2,13 10,12.8 10,12.5 L10,10.5 Z M13,11.5 C13,12.1 12.6,12.5 12,12.5 C11.4,12.5 11,12.1 11,11.5 C11,10.9 11.4,10.5 12,10.5 C12.6,10.5 13,11 13,11.5 Z"/>
517
- <symbol id="icon-schema" xmlns="http://www.w3.org/2000/svg">
518
- <symbol id="icon-search" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
519
420
  <path stroke="none" fill-rule="evenodd" d="M1,7.167 C1,3.767 3.766,1 7.166,1 C10.566,1 13.333,3.767 13.333,7.167 C13.333,10.567 10.566,13.334 7.166,13.334 C3.766,13.334 1,10.567 1,7.167 M20.021,19.314 L12.568,11.862 C13.664,10.603 14.333,8.963 14.333,7.167 C14.333,3.215 11.118,0 7.166,0 C3.215,0 0,3.215 0,7.167 C0,11.119 3.215,14.334 7.166,14.334 C8.963,14.334 10.603,13.665 11.861,12.569 L19.313,20.021 C19.411,20.119 19.539,20.167 19.667,20.167 C19.795,20.167 19.923,20.119 20.021,20.021 C20.216,19.826 20.216,19.509 20.021,19.314"/>
520
- <symbol id="icon-security-groups" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
521
421
  <path stroke="none" fill-rule="evenodd" d="M20.1217075,16.002 C21.42345,16.002 22.477487,17.0556729 22.477487,18.3577794 C22.477487,19.0347942 22.1918242,19.6452151 21.7344113,20.0749752 C23.020563,20.6779357 23.9109838,21.9857198 23.9109838,23.502 C23.9109838,23.7474599 23.7341086,23.9516084 23.5008594,23.9939443 L23.4109838,24.002 L16.8322457,24.002 C16.5561033,24.002 16.3322457,23.7781424 16.3322457,23.502 C16.3322457,21.9854312 17.222421,20.6776918 18.5092034,20.072326 C18.0515909,19.6452151 17.7659281,19.0347942 17.7659281,18.3577794 C17.7659281,17.0556729 18.8199651,16.002 20.1217075,16.002 Z M12.2005782,16.002 C13.5023206,16.002 14.5563576,17.0556729 14.5563576,18.3577794 C14.5563576,19.0347942 14.2706948,19.6452151 13.8132819,20.0749752 C15.0997639,20.6778165 15.9898544,21.9855034 15.9898544,23.502 C15.9898544,23.7474599 15.8129792,23.9516084 15.57973,23.9939443 L15.4898544,24.002 L8.91204422,24.002 C8.63590185,24.002 8.41204422,23.7781424 8.41204422,23.502 C8.41204422,21.9856232 9.30204793,20.6778824 10.5883934,20.0724398 C10.1304615,19.6452151 9.84479873,19.0347942 9.84479873,18.3577794 C9.84479873,17.0556729 10.8988357,16.002 12.2005782,16.002 Z M4.20336182,16.002 C5.5051043,16.002 6.55914125,17.0556729 6.55914125,18.3577794 C6.55914125,19.0347942 6.27347848,19.6452151 5.81606556,20.0749752 C7.10221734,20.6779357 7.99263807,21.9857198 7.99263807,23.502 C7.99263807,23.7474599 7.81576291,23.9516084 7.5825137,23.9939443 L7.49263807,24.002 L0.9139,24.002 C0.637757625,24.002 0.4139,23.7781424 0.4139,23.502 C0.4139,21.9854312 1.3040753,20.6776918 2.59085772,20.072326 C2.13324517,19.6452151 1.8475824,19.0347942 1.8475824,18.3577794 C1.8475824,17.0556729 2.90161935,16.002 4.20336182,16.002 Z M20.1216147,20.7135589 C18.8109912,20.7135589 17.7125962,21.6155012 17.4130024,22.832691 L17.377155,23.0005704 L22.866,23.001 C22.6500548,21.8105286 21.6788224,20.8839276 20.466366,20.734631 L20.2915725,20.7186461 L20.1216147,20.7135589 Z M12.2004854,20.7135589 C10.8905474,20.7135589 9.79234289,21.6155891 9.49279083,22.8327305 L9.45694827,23.0006024 L14.944,23.001 C14.7289924,21.8102776 13.758145,20.883885 12.5453502,20.7346255 L12.3705034,20.7186447 L12.2004854,20.7135589 Z M4.20326903,20.7135589 C2.89264554,20.7135589 1.79425045,21.6155012 1.49465669,22.832691 L1.45880933,23.0005704 L6.947,23.001 C6.73167934,21.8105286 5.76047539,20.8839276 4.54802023,20.734631 L4.37322675,20.7186461 L4.20326903,20.7135589 Z M20.1217075,17.002 C19.3721725,17.002 18.7659281,17.608035 18.7659281,18.3577794 C18.7659281,19.1063865 19.3728908,19.7135589 20.1217075,19.7135589 C20.8705242,19.7135589 21.477487,19.1063865 21.477487,18.3577794 C21.477487,17.608035 20.8712426,17.002 20.1217075,17.002 Z M12.2005782,17.002 C11.4510431,17.002 10.8447987,17.608035 10.8447987,18.3577794 C10.8447987,19.1063865 11.4517615,19.7135589 12.2005782,19.7135589 C12.9493948,19.7135589 13.5563576,19.1063865 13.5563576,18.3577794 C13.5563576,17.608035 12.9501132,17.002 12.2005782,17.002 Z M4.20336182,17.002 C3.45382678,17.002 2.8475824,17.608035 2.8475824,18.3577794 C2.8475824,19.1063865 3.45454513,19.7135589 4.20336182,19.7135589 C4.95217852,19.7135589 5.55914125,19.1063865 5.55914125,18.3577794 C5.55914125,17.608035 4.95289687,17.002 4.20336182,17.002 Z M12.003,0.378052174 C12.1601209,0.378052174 12.3081035,0.451908011 12.4025601,0.577466474 C12.7861817,1.08740392 13.3586574,1.37770435 13.995,1.37770435 C14.5320572,1.37770435 15.0620497,1.16092609 15.7051212,0.691305505 C16.0118987,0.467272785 16.4343268,0.654728054 16.4931084,1.01019355 L16.5,1.09509565 L16.5,7.27770435 L16.4834753,7.40518618 C16.3373978,7.95918554 15.8899868,8.73978695 14.9807405,9.50249423 C14.3238073,10.0535526 13.5020596,10.5100264 12.5007321,10.8442249 L12.4999,12.0000522 L19.5,12.0005 C19.7454599,12.0005 19.9496084,12.1773752 19.9919443,12.4106244 L20,12.5005 L20,14.4585 C20,14.7346424 19.7761424,14.9585 19.5,14.9585 C19.2545401,14.9585 19.0503916,14.7816248 19.0080557,14.5483756 L19,14.4585 L19,13 L12.4999,12.9990522 L12.5,14.479 C12.5,14.7551424 12.2761424,14.979 12,14.979 C11.7545401,14.979 11.5503916,14.8021248 11.5080557,14.5688756 L11.5,14.479 L11.4999,12.9990522 L5,13 L5,14.4585 C5,14.7039599 4.82312484,14.9081084 4.58987563,14.9504443 L4.5,14.9585 C4.25454011,14.9585 4.05039163,14.7816248 4.00805567,14.5483756 L4,14.4585 L4,12.5005 C4,12.2550401 4.17687516,12.0508916 4.41012437,12.0085557 L4.5,12.0005 L11.4999,12.0000522 L11.5002853,10.8445644 C10.498497,10.5103355 9.6764152,10.0537393 9.01925948,9.50249423 C8.1749594,8.79426604 7.72887433,8.07060873 7.55249774,7.52727962 L7.51652468,7.40518618 L7.5,7.27770435 L7.5,1.09509565 C7.5,0.686002167 7.96450298,0.450039498 8.29487882,0.691305505 C8.93743328,1.1605485 9.4685498,1.37770435 10.005,1.37770435 C10.6413426,1.37770435 11.2138183,1.08740392 11.5974399,0.577466474 C11.6918965,0.451908011 11.8398791,0.378052174 12.003,0.378052174 Z M11.9999,1.612 L11.8238345,1.76045291 C11.3100178,2.15774212 10.6788949,2.37770435 10.005,2.37770435 C9.58028593,2.37770435 9.17238026,2.28985778 8.75962844,2.11529539 L8.55274843,2.02079311 L8.4999,1.993 L8.4999,7.202 L8.51846631,7.25242645 C8.53546882,7.29539839 8.55802901,7.34692706 8.58680336,7.40597073 L8.63470756,7.50004227 L8.69242534,7.604605 C8.91129754,7.98647293 9.22803462,8.37238506 9.66192796,8.73634985 C10.2192628,9.20386164 10.9262617,9.59736509 11.8033552,9.89149775 L12.1402783,9.99708996 L11.9999,9.953 L12.1966448,9.89149775 C12.8544649,9.67089826 13.4166068,9.39440269 13.8916897,9.07271084 L14.1220161,8.9081481 L14.338072,8.73634985 C14.7719654,8.37238506 15.0887025,7.98647293 15.3075747,7.604605 C15.3703634,7.4950571 15.4176931,7.40007405 15.4517796,7.32317169 L15.4815337,7.25242645 L15.4999,7.202 L15.4999,1.992 L15.4471978,2.02095575 C15.115332,2.18369546 14.7889533,2.29099393 14.4566821,2.34236398 L14.206196,2.37039733 L13.995,2.37770435 C13.3211051,2.37770435 12.6899822,2.15774212 12.1761655,1.76045291 L12.0093401,1.62151399 L11.9999,1.612 Z M11.9999,2.70521739 C12.2453599,2.70521739 12.4495084,2.88209255 12.4918443,3.11534176 L12.4999,3.20521739 L12.499,4.75905217 L14.0194,4.75982609 C14.2955424,4.75982609 14.5194,4.98368371 14.5194,5.25982609 C14.5194,5.50528598 14.3425248,5.70943446 14.1092756,5.75177042 L14.0194,5.75982609 L12.499,5.75905217 L12.4999,7.34678261 C12.4999,7.62292498 12.2760424,7.84678261 11.9999,7.84678261 C11.7544401,7.84678261 11.5502916,7.66990745 11.5079557,7.43665824 L11.4999,7.34678261 L11.499,5.75905217 L10.0194,5.75982609 C9.74325763,5.75982609 9.5194,5.53596846 9.5194,5.25982609 C9.5194,5.0143662 9.69627516,4.81021772 9.92952437,4.76788176 L10.0194,4.75982609 L11.499,4.75905217 L11.4999,3.20521739 C11.4999,2.92907502 11.7237576,2.70521739 11.9999,2.70521739 Z"/>
522
- <symbol id="icon-segments" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
523
422
  <path stroke="none" fill-rule="evenodd" d="M12,7 C13.7,7 15,5.7 15,4 C15,2.3 13.7,1 12,1 C10.3,1 9,2.3 9,4 C9,5.7 10.3,7 12,7 Z M12,2 C13.1,2 14,2.9 14,4 C14,5.1 13.1,6 12,6 C10.9,6 10,5.1 10,4 C10,2.9 10.9,2 12,2 Z M19,7 C20.1,7 21,6.1 21,5 C21,3.9 20.1,3 19,3 C17.9,3 17,3.9 17,5 C17,6.1 17.9,7 19,7 Z M19,4 C19.6,4 20,4.4 20,5 C20,5.6 19.6,6 19,6 C18.4,6 18,5.6 18,5 C18,4.4 18.4,4 19,4 Z M5,7 C6.1,7 7,6.1 7,5 C7,3.9 6.1,3 5,3 C3.9,3 3,3.9 3,5 C3,6.1 3.9,7 5,7 Z M5,4 C5.6,4 6,4.4 6,5 C6,5.6 5.6,6 5,6 C4.4,6 4,5.6 4,5 C4,4.4 4.4,4 5,4 Z M17,18.2 C16.7,18.2 16.5,18.4 16.5,18.7 C16.5,19 16.7,19.2 17,19.2 C21.6,19.6 22.9,20.3 23.1,20.5 C22.7,21 18.8,22 12,22 C5.2,22 1.3,21 1,20.5 C1.1,20.3 2.5,19.5 7,19.2 C7.3,19.2 7.5,18.9 7.5,18.7 C7.5,18.4 7.2,18.2 7,18.2 C2.3,18.6 0,19.4 0,20.5 C0,22.9 10.8,23 12,23 C13.2,23 24,22.9 24,20.5 C24,19.4 21.7,18.6 17,18.2 Z M9.5,18 L14.5,18 C14.8,18 15,17.8 15,17.5 L15,11 C15,9.3 13.7,8 12,8 C10.3,8 9,9.3 9,11 L9,17.5 C9,17.8 9.2,18 9.5,18 Z M10,11 C10,9.9 10.9,9 12,9 C13.1,9 14,9.9 14,11 L14,17 L10,17 L10,11 Z M17.5,16 L20.5,16 C20.8,16 21,15.8 21,15.5 L21,10 C21,8.9 20.1,8 19,8 C17.9,8 17,8.9 17,10 L17,15.5 C17,15.8 17.2,16 17.5,16 Z M18,10 C18,9.4 18.4,9 19,9 C19.6,9 20,9.4 20,10 L20,15 L18,15 L18,10 Z M3.5,16 L6.5,16 C6.8,16 7,15.8 7,15.5 L7,10 C7,8.9 6.1,8 5,8 C3.9,8 3,8.9 3,10 L3,15.5 C3,15.8 3.2,16 3.5,16 Z M4,10 C4,9.4 4.4,9 5,9 C5.6,9 6,9.4 6,10 L6,15 L4,15 L4,10 Z"/>
524
- <symbol id="icon-shipment-status" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
525
423
  <path stroke="none" fill-rule="evenodd" d="M20.1249565,14.4368396 C20.1249565,11.296421 17.5783866,8.74959976 14.4377166,8.74959976 C11.2970467,8.74959976 8.7504768,11.296421 8.7504768,14.4368396 C8.7504768,17.5783845 11.296423,20.1240795 14.4377166,20.1240795 C17.5790103,20.1240795 20.1249565,17.5783845 20.1249565,14.4368396 Z M20.9999165,14.4368396 C20.9999165,18.0616308 18.062218,20.9990394 14.4377166,20.9990394 C10.8132153,20.9990394 7.87551683,18.0616308 7.87551683,14.4368396 C7.87551683,10.8132132 10.8138003,7.87463979 14.4377166,7.87463979 C18.0616329,7.87463979 20.9999165,10.8132132 20.9999165,14.4368396 Z M0.875837016,13.1243996 L5.68811689,13.1243996 C5.92973041,13.1243996 6.12559687,13.3202661 6.12559687,13.5618796 C6.12559687,13.8034932 5.92973041,13.9993596 5.68811689,13.9993596 L0.438357028,13.9993596 C0.196743502,13.9993596 0.000877039998,13.8034932 0.000877039998,13.5618796 L0.000877039998,3.93731989 C0.000877039998,3.69570637 0.196743502,3.4998399 0.438357028,3.4998399 L12.6877967,3.4998399 C12.9294102,3.4998399 13.1252767,3.69570637 13.1252767,3.93731989 L13.1252767,5.68723985 C13.1252767,5.92885337 12.9294102,6.12471983 12.6877967,6.12471983 C12.4461832,6.12471983 12.2503167,5.92885337 12.2503167,5.68723985 L12.2503167,4.37479988 L0.875837016,4.37479988 L0.875837016,13.1243996 Z M9.00674665,0.874959976 L4.11940708,0.874959976 L1.49452715,3.4998399 L11.6316266,3.4998399 L9.00674665,0.874959976 Z M12.6877967,4.37479988 L0.438357028,4.37479988 C0.0486039847,4.37479988 -0.146585058,3.90357185 0.129011962,3.62797483 L3.62885187,0.128134922 C3.71089528,0.0460915093 3.82217003,3.73034936e-14 3.93819693,3.73034936e-14 L9.18795679,3.73034936e-14 C9.3039837,3.73034936e-14 9.41525844,0.0460915093 9.49730186,0.128134922 L12.9971418,3.62797483 C13.2727388,3.90357185 13.0775497,4.37479988 12.6877967,4.37479988 Z M14.8751966,15.3117996 C14.8751966,15.5534131 14.6793302,15.7492796 14.4377166,15.7492796 C14.1961031,15.7492796 14.0002367,15.5534131 14.0002367,15.3117996 L14.0002367,10.9369997 C14.0002367,10.6953862 14.1961031,10.4995197 14.4377166,10.4995197 C14.6793302,10.4995197 14.8751966,10.6953862 14.8751966,10.9369997 L14.8751966,15.3117996 Z M14.4377166,16.6242395 C14.1962277,16.6242395 14.0002367,16.8202306 14.0002367,17.0617195 C14.0002367,17.3032085 14.1962277,17.4991995 14.4377166,17.4991995 C14.6792056,17.4991995 14.8751966,17.3032085 14.8751966,17.0617195 C14.8751966,16.8202306 14.6792056,16.6242395 14.4377166,16.6242395 M6.12559687,0.437479988 C6.12559687,0.195866462 6.32146334,3.73034936e-14 6.56307686,3.73034936e-14 C6.80469039,3.73034936e-14 7.00055685,0.195866462 7.00055685,0.437479988 L7.00055685,3.93731989 C7.00055685,4.17893342 6.80469039,4.37479988 6.56307686,4.37479988 C6.32146334,4.37479988 6.12559687,4.17893342 6.12559687,3.93731989 L6.12559687,0.437479988 Z"/>
526
- <symbol id="icon-stop" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
527
424
  <path stroke="none" fill-rule="evenodd" d="M19.99,10.495 C19.99,5.25149729 15.7382357,1 10.495,1 C5.25058867,1 1,5.2508556 1,10.495 C1,15.7391444 5.25058867,19.99 10.495,19.99 C15.7382357,19.99 19.99,15.7385027 19.99,10.495 Z M20.99,10.495 C20.99,16.2908015 16.2905064,20.99 10.495,20.99 C4.69828987,20.99 -1.08357767e-13,16.2914151 -1.08357767e-13,10.495 C-1.08357767e-13,4.69858491 4.69828987,-4.4408921e-14 10.495,-4.4408921e-14 C16.2905064,-4.4408921e-14 20.99,4.69919848 20.99,10.495 Z M13.6253774,10.5989473 L16.194556,13.1673993 C16.3898653,13.3626534 16.3898877,13.6792744 16.194606,13.8745561 L13.8561351,16.213027 C13.6608534,16.4083087 13.3442324,16.4082863 13.1489783,16.212977 L10.5805263,13.6437984 L8.01207431,16.212977 C7.81682026,16.4082863 7.5001992,16.4083087 7.30491753,16.213027 L4.96644661,13.8745561 C4.77116494,13.6792744 4.77118733,13.3626534 4.96649661,13.1673993 L7.5356752,10.5989473 L4.96649661,8.03049531 C4.77118733,7.83524126 4.77116494,7.5186202 4.96644661,7.32333853 L7.30491753,4.98486761 C7.5001992,4.78958594 7.81682026,4.78960833 8.01207431,4.98491761 L10.5805263,7.5540962 L13.1489783,4.98491761 C13.3442324,4.78960833 13.6608534,4.78958594 13.8561351,4.98486761 L16.194606,7.32333853 C16.3898877,7.5186202 16.3898653,7.83524126 16.194556,8.03049531 L13.6253774,10.5989473 Z M12.5275105,10.9525509 C12.3321816,10.7572773 12.3321816,10.4406177 12.5275105,10.2453441 L15.0967391,7.67684213 L13.4654749,6.045578 L10.8969729,8.6148066 C10.7016993,8.81013542 10.3850397,8.81013542 10.1897661,8.6148066 L7.62126413,6.045578 L5.99,7.67684213 L8.5592286,10.2453441 C8.75455742,10.4406177 8.75455742,10.7572773 8.5592286,10.9525509 L5.99,13.5210529 L7.62126413,15.1523171 L10.1897661,12.5830885 C10.3850397,12.3877596 10.7016993,12.3877596 10.8969729,12.5830885 L13.4654749,15.1523171 L15.0967391,13.5210529 L12.5275105,10.9525509 Z"/>
528
- <symbol id="icon-stores" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
529
425
  <path stroke="none" fill-rule="evenodd" d="M24,6.3 C23.9,6.3 23.9,6.3 24,6.3 L22,2.3 C21.9,2.1 21.7,2 21.5,2 L2.5,2 C2.3,2 2.1,2.1 2.1,2.3 L0.1,6.3 C0.1,6.3 0.1,6.3 0.1,6.3 C0,6.4 0,6.4 0,6.5 L0,7.5 C0,8.9 0.8,10.1 2,10.7 L2,22.6 C2,22.8 2.2,23 2.5,23 L21.5,23 C21.8,23 22,22.8 22,22.5 L22,10.7 C23.2,10.1 24,8.9 24,7.5 L24,6.5 C24,6.4 24,6.4 24,6.3 Z M21.2,3 L22.7,6 L18.9,6 L18.1,3 L21.2,3 Z M12.5,3 L17.1,3 L17.9,6 L12.5,6 L12.5,3 L12.5,3 Z M12.5,7 L18,7 L18,9.3 C17.3,10.3 16.1,11 15,11 C14,11 13.2,10.6 12.5,9.9 L12.5,7 Z M6.9,3 L11.5,3 L11.5,6 L6.1,6 L6.9,3 Z M6,7 L11.5,7 L11.5,9.9 C10.8,10.6 10,11 9,11 C7.9,11 6.7,10.3 6,9.3 L6,7 Z M2.8,3 L5.9,3 L5.1,6 L1.3,6 L2.8,3 Z M2.7,9.8 C1.7,9.5 1,8.6 1,7.5 L1,7 L5,7 L5,9.3 C4.5,9.8 4,10 3.5,10 C3.2,10 3,9.9 2.7,9.8 C2.7,9.9 2.7,9.8 2.7,9.8 Z M19,22 L15,22 L15,14 L19,14 L19,22 Z M21,22 L20,22 L20,13.5 C20,13.2 19.8,13 19.5,13 L14.5,13 C14.2,13 14,13.2 14,13.5 L14,22 L3,22 L3,10.9 C3.2,11 3.3,11 3.5,11 C4.2,11 4.8,10.7 5.4,10.2 C6.3,11.3 7.6,12 9,12 C10.1,12 11.2,11.6 12,10.8 C12.8,11.5 13.9,12 15,12 C16.4,12 17.7,11.3 18.6,10.2 C19.2,10.7 19.8,11 20.5,11 C20.7,11 20.8,11 21,10.9 L21,22 Z M23,7.5 C23,8.9 21.9,10 20.5,10 C20,10 19.5,9.8 19,9.3 L19,7 L23,7 L23,7.5 Z M17.5,19 C17.8,19 18,18.8 18,18.5 C18,18.2 17.8,18 17.5,18 C17.2,18 17,18.2 17,18.5 C17,18.8 17.2,19 17.5,19 Z M12.5,13 L4.5,13 C4.2,13 4,13.2 4,13.5 L4,19.5 C4,19.8 4.2,20 4.5,20 L12.5,20 C12.8,20 13,19.8 13,19.5 L13,13.5 C13,13.2 12.8,13 12.5,13 Z M12,19 L5,19 L5,14 L12,14 L12,19 Z"/>
530
- <symbol id="icon-synonyms" xmlns="http://www.w3.org/2000/svg">
531
- <symbol id="icon-tenant" xmlns="http://www.w3.org/2000/svg">
532
- <symbol id="icon-time-index" xmlns="http://www.w3.org/2000/svg">
533
- <symbol id="icon-tree-view" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
534
426
  <path stroke="none" fill-rule="evenodd" d="M1,5 L11,5 L11,3 L1,3 L1,5 Z M10.001,19 L20.001,19 L20.001,17 L10.001,17 L10.001,19 Z M10.001,12 L20.001,12 L20.001,10 L10.001,10 L10.001,12 Z M9.501,13 L20.501,13 C20.777,13 21.001,12.776 21.001,12.5 L21.001,9.5 C21.001,9.224 20.777,9 20.501,9 L9.501,9 C9.225,9 9.001,9.224 9.001,9.5 L9.001,10 L5.997,10 L5.997,6 L11.5,6 C11.776,6 12,5.776 12,5.5 L12,2.5 C12,2.224 11.776,2 11.5,2 L0.5,2 C0.224,2 0,2.224 0,2.5 L0,5.5 C0,5.776 0.224,6 0.5,6 L4.997,6 L4.997,17.477 C4.997,17.753 5.221,17.977 5.497,17.977 L9.001,17.977 L9.001,19.5 C9.001,19.776 9.225,20 9.501,20 L20.501,20 C20.777,20 21.001,19.776 21.001,19.5 L21.001,16.5 C21.001,16.224 20.777,16 20.501,16 L9.501,16 C9.225,16 9.001,16.224 9.001,16.5 L9.001,16.977 L5.997,16.977 L5.997,11 L9.001,11 L9.001,12.5 C9.001,12.776 9.225,13 9.501,13 L9.501,13 Z"/>
535
- <symbol id="icon-unlock" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
536
- <symbol id="icon-user-roles" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
537
427
  <path stroke="none" fill-rule="evenodd" d="M19.5031,13.3780522 C19.6602209,13.3780522 19.8082035,13.451908 19.9026601,13.5774665 C20.2862817,14.0874039 20.8587574,14.3777043 21.4951,14.3777043 C22.0321572,14.3777043 22.5621497,14.1609261 23.2052212,13.6913055 C23.535597,13.4500395 24.0001,13.6860022 24.0001,14.0950957 L24.0001,14.0950957 L24.0001,20.2777043 L23.9835753,20.4051862 C23.8374978,20.9591855 23.3900868,21.7397869 22.4808405,22.5024942 C21.7467126,23.1183062 20.8067606,23.6159986 19.6403783,23.9569274 C19.5487759,23.9837024 19.4514241,23.9837024 19.3598217,23.9569274 C18.1934394,23.6159986 17.2534874,23.1183062 16.5193595,22.5024942 C15.6101132,21.7397869 15.1627022,20.9591855 15.0166247,20.4051862 L15.0166247,20.4051862 L15.0001,20.2777043 L15.0001,14.0950957 C15.0001,13.6860022 15.464603,13.4500395 15.7949788,13.6913055 C16.4375333,14.1605485 16.9686498,14.3777043 17.5051,14.3777043 C18.1414426,14.3777043 18.7139183,14.0874039 19.0975399,13.5774665 C19.1919965,13.451908 19.3399791,13.3780522 19.5031,13.3780522 Z M19.5,14.612 L19.3239345,14.7604529 C18.8101178,15.1577421 18.1789949,15.3777043 17.5051,15.3777043 C17.0096002,15.3777043 16.5369786,15.2581354 16.0528484,15.0207931 L16.0528484,15.0207931 L16,14.993 L16,20.202 L16.0185663,20.2524264 C16.0440701,20.3168844 16.0820786,20.4005949 16.1348076,20.5000423 L16.1348076,20.5000423 L16.1925253,20.604605 C16.4113975,20.9864729 16.7281346,21.3723851 17.162028,21.7363499 C17.7890296,22.2623006 18.6054499,22.6945846 19.6403783,22.99709 L19.6403783,22.99709 L19.5,22.953 L19.6967448,22.8914978 C20.4642016,22.6341317 21.1014298,22.3006848 21.6221161,21.9081481 L21.6221161,21.9081481 L21.838172,21.7363499 C22.2720654,21.3723851 22.5888025,20.9864729 22.8076747,20.604605 C22.8913929,20.4585411 22.9476287,20.3383703 22.9816337,20.2524264 L22.9816337,20.2524264 L23,20.202 L23,14.992 L22.9472978,15.0209557 C22.5324656,15.2243804 22.1262069,15.3411781 21.706296,15.3703973 L21.706296,15.3703973 L21.4951,15.3777043 C20.7463279,15.3777043 20.0503607,15.106146 19.5094401,14.621514 L19.5094401,14.621514 L19.5,14.612 Z M19.5,15.7052174 C19.7454599,15.7052174 19.9496084,15.8820926 19.9919443,16.1153418 L20,16.2052174 L19.999664,17.759361 L21.5195,17.7598261 C21.7956424,17.7598261 22.0195,17.9836837 22.0195,18.2598261 C22.0195,18.505286 21.8426248,18.7094345 21.6093756,18.7517704 L21.5195,18.7598261 L19.999664,18.759361 L20,20.3467826 C20,20.622925 19.7761424,20.8467826 19.5,20.8467826 C19.2545401,20.8467826 19.0503916,20.6699074 19.0080557,20.4366582 L19,20.3467826 L18.999664,18.759361 L17.5195,18.7598261 C17.2433576,18.7598261 17.0195,18.5359685 17.0195,18.2598261 C17.0195,18.0143662 17.1963752,17.8102177 17.4296244,17.7678818 L17.5195,17.7598261 L18.999664,17.759361 L19,16.2052174 C19,15.929075 19.2238576,15.7052174 19.5,15.7052174 Z M13.9862583,1.96981303 L14.0281678,2.1762093 C14.1528349,2.91197976 14.0381057,3.65096383 13.7617956,4.46665502 L13.6360115,4.81558961 L13.609,4.885 L13.6618859,4.9344037 C14.2560656,5.56624941 14.2263566,7.04865663 13.572759,7.59544618 L13.489,7.657 L13.4775129,7.83712248 C13.4038188,8.69604279 13.1503611,9.39730571 12.7618562,9.94951059 L12.6412981,10.1107089 C12.4727074,10.3229279 12.3013737,10.4905446 12.139886,10.6190158 L11.999,10.722 L11.999,12.7 L12.4685843,12.8764299 L13.3946906,13.2065538 L14.1283598,13.460207 L13.8032402,14.4058799 L13.0604369,14.1490575 L12.2880214,13.8751328 L11.7967259,13.6930502 L11.3161794,13.5069759 C11.1525303,13.4423624 11.0369805,13.2976443 11.0073061,13.1283507 L10.9998,13.041913 L10.9998,10.4332174 C10.9998,10.2620446 11.0871044,10.1049426 11.2275545,10.0138118 L11.3020502,9.9739843 C11.4186366,9.92378119 11.6329833,9.77230954 11.8583019,9.48868239 C12.2562147,8.98779675 12.4998,8.27771371 12.4998,7.30278261 C12.4998,7.02664023 12.7236576,6.80278261 12.9998,6.80278261 L12.9983048,6.79493225 L13.0446516,6.61514691 C13.0658673,6.51794899 13.0863,6.38532124 13.0863,6.22278261 C13.0863,6.10087864 13.0748066,5.99579953 13.0601096,5.90987361 L13.0289,5.76424919 L12.9983048,5.65063297 C12.9975217,5.64542814 12.9979177,5.64278261 12.9998,5.64278261 C12.7236576,5.64278261 12.4998,5.41892498 12.4998,5.14278261 C12.4998,5.09771364 12.5233658,5.00205597 12.557638,4.8869217 L12.6366473,4.63990273 L12.788871,4.21129345 L12.8153727,4.14225527 L12.8936441,3.89737369 C13.0625747,3.326574 13.1224756,2.81692192 13.0422204,2.34326576 L13.0134497,2.20142314 C12.6716439,0.768735941 8.10999202,0.727802021 7.52705219,2.07862138 L7.45813808,2.28540173 C7.36528954,2.4987833 7.13292796,2.62407138 6.89740504,2.57479428 C6.46643115,2.48462411 6.28475826,2.54025499 6.2020687,2.67534124 C6.1057249,2.8327338 6.07915909,3.14641132 6.13613512,3.57236853 C6.15876036,3.7415166 6.1928592,3.92027213 6.23827631,4.11552233 L6.35697963,4.57756105 L6.44732721,4.90612207 L6.48275591,5.05392008 C6.49504169,5.11538868 6.4998,5.16266995 6.4998,5.21582609 C6.4998,5.49196846 6.27594237,5.71582609 5.9998,5.71582609 L5.99932681,5.7249767 L5.96045364,5.85771867 C5.93721493,5.95030606 5.91255,6.08617562 5.91255,6.25930435 C5.91255,6.43243307 5.93721493,6.56830264 5.96045364,6.66089002 L5.99932681,6.79363199 C6.00093259,6.79970103 6.00122621,6.80278261 5.9998,6.80278261 C6.27594237,6.80278261 6.4998,7.02664023 6.4998,7.30278261 C6.4998,8.27771371 6.74338534,8.98779675 7.14129809,9.48868239 C7.36661669,9.77230954 7.58096337,9.92378119 7.69754976,9.9739843 C7.85476623,10.0416831 7.96453015,10.184003 7.99268277,10.3490438 L7.9998,10.4332174 L7.9998,13.041913 C7.9998,13.2468324 7.87476301,13.4310077 7.68430594,13.5066254 L7.18821619,13.6980869 L5.9051075,14.1572455 L4.32750495,14.7069156 L3.83269728,14.889434 C3.7544249,14.9191801 3.67823564,14.9485984 3.6041075,14.9777027 L3.18389621,15.1486688 L2.81209623,15.3127529 C2.00022172,15.6880967 1.57508475,16.0125924 1.47633505,16.3237227 C1.3524308,16.713779 1.25136302,17.2292785 1.17343637,17.8361953 C1.12061254,18.2476035 1.08052044,18.6827253 1.05149067,19.1239548 L1.02192555,19.6535891 L1.013,19.846 L10.9998,19.8462609 L10.9998,20.8462609 L0.4998,20.8462609 C0.221762673,20.8462609 -0.00287200353,20.6194378 -0.000314408739,20.3414135 L0.0124547607,19.8579012 L0.0272977253,19.5173651 C0.0576097596,18.9020505 0.107433351,18.2863108 0.1815788,17.7088432 C0.266494196,17.0474959 0.378247439,16.4774948 0.523228222,16.0210886 C0.74878462,15.3104289 1.41838558,14.8066131 2.73664169,14.2487159 L3.20036533,14.0603893 L3.71382153,13.8659091 L4.69076079,13.5199898 L6.01515136,13.0601937 L6.57712723,12.8582495 L6.999,12.699 L6.999,10.722 L6.97878695,10.7081147 C6.82300904,10.5988751 6.65423792,10.4518544 6.48506254,10.2615955 L6.35830191,10.1107089 C5.90172808,9.53598172 5.60315061,8.78193482 5.5220871,7.83712248 L5.511,7.66 L5.42644551,7.60023877 C4.77239668,7.06608827 4.74266719,5.61794693 5.33725703,5.00070635 L5.416,4.927 L5.31864514,4.56430996 C5.23914154,4.25345753 5.18104725,3.97471855 5.14496271,3.70494774 C5.060237,3.0715318 5.1040992,2.55362601 5.34917157,2.15326223 C5.60826896,1.7299864 6.04267426,1.52326451 6.6096213,1.53626177 L6.684,1.54 L6.69412529,1.52141884 C7.88818769,-0.519198372 13.4280676,-0.369857688 13.9862583,1.96981303 Z"/>
538
- <symbol id="icon-user-security" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
539
428
  <path stroke="none" fill-rule="evenodd" d="M19.5,13 C21.3680466,13 22.895092,14.46444 22.9948194,16.307981 L23,16.5 L22.9998181,16.9999924 L23.5,17 C23.7454599,17 23.9496084,17.1768752 23.9919443,17.4101244 L24,17.5 L24,23.5 C24,23.7761424 23.7761424,24 23.5,24 L23.5,24 L15.5,24 C15.2238576,24 15,23.7761424 15,23.5 L15,23.5 L15,17.5 C15,17.2238576 15.2238576,17 15.5,17 L15.5,17 L15.9998181,16.9999924 L16,16.5 C16,14.5668576 17.5668576,13 19.5,13 Z M23,18 L16,18 L16,23 L23,23 L23,18 Z M19.5,19 C20.0521424,19 20.5,19.4478576 20.5,20 C20.5,20.3695857 20.2993366,20.6924465 20.001051,20.865541 L20,21.5 C20,21.7761424 19.7761424,22 19.5,22 C19.2545401,22 19.0503916,21.8231248 19.0080557,21.5898756 L19,21.5 L18.9993182,20.8657552 C18.700829,20.6927129 18.5,20.3697382 18.5,20 C18.5,19.4478576 18.9478576,19 19.5,19 Z M13.9851651,1.88001025 C14.0021934,1.94859086 14.0167779,2.01786472 14.028978,2.08780091 C14.1528819,2.79807503 14.0369984,3.50949464 13.7597261,4.2936411 L13.617,4.671 L13.6619859,4.712 C14.2561656,5.32625 14.2264566,6.767375 13.572859,7.2989375 L13.488,7.359 L13.4774231,7.51634687 C13.4031072,8.34565671 13.1475538,9.0232737 12.7562869,9.55642599 L12.6348809,9.71204496 C12.4657644,9.91611219 12.2942069,10.077112 12.1327089,10.2004124 L11.999,10.294 L11.999,12.152 L12.4608985,12.3160235 L14.1404641,12.8789755 L13.8253359,13.8280245 L12.6705169,13.4446639 L12.028922,13.2243346 L11.3239165,12.9685062 C11.1568323,12.9056778 11.0381252,12.7597194 11.0076188,12.5881517 L10.9999,12.5005 L10.9999,10.0005 C10.9999,9.82704179 11.0895207,9.66824417 11.2329013,9.57773322 L11.3089055,9.53841656 C11.4261493,9.48995581 11.640652,9.34457059 11.8649191,9.07395504 C12.2590784,8.59833616 12.4999,7.92564107 12.4999,7.0005 C12.4999,6.72435763 12.7237576,6.5005 12.9999,6.5005 L13.0390159,6.36082453 C13.062019,6.26959937 13.0864,6.13559937 13.0864,5.9645 C13.0864,5.79340063 13.062019,5.65940063 13.0390159,5.56817547 L13.0004516,5.43749576 C12.99884,5.43152814 12.998522,5.4285 12.9999,5.4285 C12.7237576,5.4285 12.4999,5.20464237 12.4999,4.9285 C12.4999,4.8368814 12.51183,4.77014427 12.5488573,4.66207386 L12.7166178,4.22879062 C12.7542348,4.13237461 12.7864463,4.04648155 12.8169302,3.96027077 C13.0420961,3.323485 13.1325574,2.76813454 13.0438549,2.259651 C13.035673,2.21274867 13.0259423,2.16652961 13.0146198,2.12092893 C12.677432,0.762197374 8.11309407,0.722234682 7.52725035,2.00104085 L7.4851802,2.12092893 C7.42077398,2.38046013 7.16356799,2.54337881 6.90140425,2.4907026 C6.465201,2.40305686 6.2775375,2.45806554 6.19690942,2.58437349 C6.1056463,2.72734176 6.07997066,3.01927974 6.1359992,3.41985405 C6.15845169,3.58037741 6.19229648,3.75028588 6.23740307,3.93612074 L6.30750625,4.2060162 L6.41920533,4.5972948 C6.48069132,4.81265527 6.4999,4.89294191 6.4999,5.0005 C6.4999,5.27664237 6.27604237,5.5005 5.9999,5.5005 L5.97463198,5.57362662 L5.9416595,5.70050271 C5.92566783,5.77894039 5.91265,5.87950231 5.91265,6.0005 C5.91265,6.12149769 5.92566783,6.22205961 5.9416595,6.30049729 L5.97463198,6.42737338 L5.9999,6.5005 C6.27604237,6.5005 6.4999,6.72435763 6.4999,7.0005 C6.4999,7.92564107 6.74072163,8.59833616 7.13488092,9.07395504 C7.32710981,9.30591123 7.51216496,9.44586146 7.63494762,9.51163099 L7.69089449,9.53841656 C7.85119882,9.60467569 7.96372018,9.74815914 7.99259763,9.91524088 L7.9999,10.0005 L7.9999,12.5005 C7.9999,12.7081587 7.87154555,12.8942026 7.67741478,12.9679275 L7.18177155,13.1509247 L6.63825365,13.3417888 L4.33719876,14.1113366 L4.08261874,14.1999594 L3.61115739,14.3714565 L3.18913881,14.5357528 L2.81557643,14.693405 C1.99969575,15.0539421 1.57148352,15.3647678 1.47453994,15.6577162 C1.35152016,16.0291163 1.2508948,16.5217696 1.17322191,17.1024971 C1.12065072,17.4955499 1.08068873,17.9113891 1.05169793,18.3331106 L1.015,19 L12.4999,19.0005 L12.4999,20.0005 L0.4999,20.0005 C0.221705668,20.0005 -0.00299268263,19.7734305 -0.000155291275,19.4952515 L0.0127093959,19.031264 L0.0276312331,18.7046532 C0.0580706245,18.1145378 0.107942832,17.5239824 0.182048325,16.9699267 C0.267280582,16.3326809 0.379460901,15.7834555 0.525216323,15.3434159 C0.766599649,14.613993 1.49987827,14.1148981 2.97767352,13.5408981 L3.46938882,13.356789 L4.10877281,13.132726 L6.02162975,12.4954451 L6.58406991,12.3020123 L6.999,12.153 L6.999,10.293 L6.98613303,10.2859029 C6.83044616,10.1811167 6.66157454,10.0399731 6.49201882,9.85710411 L6.36491908,9.71204496 C5.90516925,9.15728017 5.60412441,8.42858769 5.52237688,7.51634687 L5.512,7.363 C4.78254204,6.90676364 4.71918512,5.42856552 5.32107586,4.79414573 L5.411,4.709 L5.32004678,4.38525542 C5.24030764,4.08634061 5.18199039,3.81826313 5.14563986,3.55837612 C5.05958707,2.94314434 5.10402074,2.4379231 5.35400534,2.04630964 C5.6091228,1.6466553 6.027684,1.4489942 6.57362729,1.45265905 L6.69,1.457 L6.70099756,1.43891762 C7.90734338,-0.521764567 13.4256236,-0.374717129 13.9851651,1.88001025 Z M19.5,14 C18.1743767,14 17.0899501,15.0314016 17.005317,16.3356082 L17,16.5 L16.9998181,16.9999924 L21.9998181,16.9999924 L22,16.5 C22,15.1195135 20.8802288,14 19.5,14 Z"/>
540
- <symbol id="icon-view" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
541
429
  <path stroke="none" fill-rule="evenodd" d="M21.275,11.9 C20.675,11.2 19.875,10.5 19.075,9.9 C16.775,8.1 14.375,7 11.975,7 C9.575,7 7.175,8.1 4.875,9.9 C4.075,10.5 3.275,11.2 2.675,11.9 C2.475,12.1 2.275,12.3 2.175,12.4 C2.275,12.6 2.475,12.8 2.675,13 C3.275,13.7 4.075,14.4 4.875,15 C7.175,16.8 9.575,17.9 11.975,17.9 C14.375,17.9 16.775,16.8 19.075,15 C19.875,14.4 20.575,13.7 21.275,13 C21.475,12.8 21.675,12.6 21.775,12.4 C21.675,12.3 21.475,12.1 21.275,11.9 Z M22.875,12.7 C22.875,12.8 22.775,12.8 22.675,13 C22.475,13.2 22.275,13.5 21.975,13.7 C21.275,14.4 20.475,15.1 19.675,15.8 C17.175,17.7 14.575,18.9 11.975,18.9 C9.375,18.9 6.675,17.7 4.275,15.8 C3.375,15.1 2.575,14.4 1.975,13.7 C1.675,13.5 1.475,13.2 1.275,13 C1.175,12.9 1.075,12.8 1.075,12.7 C0.975,12.5 0.975,12.3 1.075,12.1 C1.075,12 1.175,12 1.275,11.8 C1.475,11.6 1.675,11.4 1.975,11.2 C2.575,10.5 3.375,9.7 4.275,9.1 C6.775,7.2 9.375,6 11.975,6 C14.575,6 17.275,7.2 19.675,9.1 C20.575,9.8 21.275,10.5 21.975,11.2 C22.175,11.4 22.375,11.7 22.575,11.9 C22.675,12 22.775,12.1 22.775,12.2 C22.975,12.3 22.975,12.6 22.875,12.7 Z M15.175,12.4 C15.175,10.7 13.775,9.2 11.975,9.2 C10.175,9.2 8.775,10.7 8.775,12.4 C8.775,14.1 10.175,15.6 11.975,15.6 C13.775,15.6 15.175,14.2 15.175,12.4 Z M16.175,12.4 C16.175,14.7 14.275,16.6 11.975,16.6 C9.675,16.6 7.775,14.7 7.775,12.4 C7.775,10.1 9.675,8.2 11.975,8.2 C14.275,8.2 16.175,10.1 16.175,12.4 Z M11.975,11.1 C11.675,11.1 11.475,10.9 11.475,10.6 C11.475,10.3 11.675,10.1 11.975,10.1 C13.275,10.1 14.275,11.1 14.275,12.4 C14.275,13.7 13.275,14.7 11.975,14.7 C10.675,14.7 9.675,13.7 9.675,12.4 C9.675,12.1 9.875,11.9 10.175,11.9 C10.475,11.9 10.675,12.1 10.675,12.4 C10.675,13.1 11.275,13.7 11.975,13.7 C12.675,13.7 13.275,13.1 13.275,12.4 C13.275,11.7 12.675,11.1 11.975,11.1 Z"/>
542
- <symbol id="icon-virtual-scope" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
543
430
  <path stroke="none" fill-rule="evenodd" d="M9.7,4 L23.5,4 C23.8,4 24,4.2 24,4.5 L24,21.5 C24,21.8 23.8,22 23.5,22 L0.5,22 C0.2,22 0,21.8 0,21.5 L0,2.5 C0,2.2 0.2,2 0.5,2 L7.5,2 C7.6,2 7.8,2.1 7.9,2.1 L9.7,4 Z M23,5 L9.5,5 C9.4,5 9.2,4.9 9.1,4.9 L7.3,3 L1,3 L1,21 L23,21 L23,5 Z"/>
544
- <symbol id="icon-warehouse" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
545
431
  <path stroke="none" fill-rule="evenodd" d="M23.2,5.5 L12.7,2 C12.6,2 12.5,2 12.4,2 L0.9,5.5 C0.6,5.6 0.5,5.8 0.5,6 L0.5,8.5 C0.5,8.8 0.7,9 1,9 L2.5,9 L2.5,22.5 C2.5,22.8 2.7,23 3,23 C3.3,23 3.5,22.8 3.5,22.5 L3.5,9 L20.5,9 L20.5,22.5 C20.5,22.8 20.7,23 21,23 C21.3,23 21.5,22.8 21.5,22.5 L21.5,9 L23,9 C23.3,9 23.5,8.8 23.5,8.5 L23.5,6 C23.5,5.8 23.4,5.6 23.2,5.5 Z M22.5,8 L21.2,8 L21,8 L3.2,8 C3.2,8 3.1,8 3.1,8 C3.1,8 3,8 3,8 L1.5,8 L1.5,6.4 L12.5,3 L22.5,6.3 L22.5,8 Z M19,16 C19.3,16 19.5,16.2 19.5,16.5 L19.5,22.5 C19.5,22.8 19.3,23 19,23 L12,23 L5,23 C4.7,23 4.5,22.8 4.5,22.5 L4.5,16.5 C4.5,16.2 4.7,16 5,16 L7,16 L7.5,16 L7.5,10.5 C7.5,10.2 7.7,10 8,10 L10,10 L13,10 L15,10 C15.3,10 15.5,10.2 15.5,10.5 L15.5,16 L17,16 L19,16 Z M14.5,17 L14.5,19 L16.5,19 L16.5,17 L15,17 L14.5,17 Z M12.5,11 L10.5,11 L10.5,13 L12.5,13 L12.5,11 Z M8.5,11 L8.5,16 L10,16 L12,16 L14,16 L14.5,16 L14.5,11 L13.5,11 L13.5,13.5 C13.5,13.8 13.3,14 13,14 L10,14 C9.7,14 9.5,13.8 9.5,13.5 L9.5,11 L8.5,11 Z M8,17 L7.5,17 L7.5,19 L9.5,19 L9.5,17 L8,17 Z M5.5,17 L5.5,22 L11.5,22 L11.5,17 L10.5,17 L10.5,19.5 C10.5,19.8 10.3,20 10,20 L7,20 C6.7,20 6.5,19.8 6.5,19.5 L6.5,17 L5.5,17 Z M18.5,22 L18.5,17 L17.5,17 L17.5,19.5 C17.5,19.8 17.3,20 17,20 L14,20 C13.7,20 13.5,19.8 13.5,19.5 L13.5,17 L12.5,17 L12.5,22 L18.5,22 Z"/>
546
- <symbol id="icon-warning" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
547
432
  <path stroke="none" fill-rule="evenodd" d="M10.4955926,18.3313774 C10.0128096,18.3313774 9.62220266,17.9407704 9.62220266,17.4589001 C9.62220266,16.9779424 10.0128096,16.5855102 10.4955926,16.5855102 C10.9765502,16.5855102 11.3680699,16.9779424 11.3680699,17.4589001 C11.3680699,17.9407704 10.9765502,18.3313774 10.4955926,18.3313774 L10.4955926,18.3313774 Z M10.039276,7.41993558 C10.039276,7.16804883 10.2437058,6.96361901 10.4955926,6.96361901 C10.7465667,6.96361901 10.9519091,7.16804883 10.9519091,7.41993558 L10.9519091,14.4034044 C10.9519091,14.6552911 10.7465667,14.8597209 10.4955926,14.8597209 C10.2437058,14.8597209 10.039276,14.6552911 10.039276,14.4034044 L10.039276,7.41993558 Z M20.9050862,20.2369554 L10.9035396,0.232036976 C10.748392,-0.0773456585 10.2418806,-0.0773456585 10.0876456,0.232036976 L0.048681033,20.309966 C-0.0225043518,20.4514242 -0.0152032867,20.6193487 0.0678463289,20.7535057 C0.150895945,20.8885754 0.29782988,20.9707124 0.456628046,20.9707124 L20.5345571,20.9707124 L20.5436834,20.9707124 C20.7946575,20.9707124 21,20.7662826 21,20.5143959 C21,20.409443 20.9644073,20.3136166 20.9050862,20.2369554 L20.9050862,20.2369554 Z"/>
548
- <symbol id="icon-wrench" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
549
433
  <path stroke="none" fill-rule="evenodd" d="M2.5,23.7579816 C1.9,23.7579816 1.2,23.5579816 0.7,23.0579816 C0.2,22.5579816 -1.11910481e-13,21.9579816 -1.11910481e-13,21.2579816 C-1.11910481e-13,20.5579816 0.3,19.9579816 0.7,19.4579816 L10.3,9.85798161 C9.1,7.25798161 9.7,4.15798161 11.8,2.05798161 C13.9,-0.0420183911 17.3,-0.642018391 20,0.757981609 C20.1,0.857981609 20.2,0.957981609 20.3,1.15798161 C20.3,1.35798161 20.3,1.45798161 20.2,1.55798161 L17.1,4.75798161 L17.1,6.85798161 L19.1,6.85798161 L22.3,3.65798161 C22.2,3.65798161 22.4,3.55798161 22.5,3.55798161 C22.7,3.55798161 22.8,3.65798161 22.9,3.85798161 C24.3,6.55798161 23.8,9.85798161 21.6,11.9579816 L21.6,11.9579816 C19.5,14.0579816 16.4,14.5579816 13.8,13.3579816 L4.2,22.9579816 C3.8,23.4579816 3.1,23.7579816 2.5,23.7579816 Z M16.7,0.957981609 C15.1,0.957981609 13.6,1.55798161 12.4,2.75798161 C10.5,4.65798161 10.1,7.45798161 11.3,9.75798161 C11.4,9.95798161 11.4,10.1579816 11.2,10.3579816 L1.4,20.1579816 C1.1,20.4579816 1,20.8579816 1,21.2579816 C1,21.6579816 1.2,22.0579816 1.4,22.3579816 C2,22.9579816 3,22.9579816 3.5,22.3579816 L13.3,12.5579816 C13.5,12.3579816 13.7,12.3579816 13.9,12.4579816 C16.2,13.6579816 19,13.1579816 20.9,11.3579816 L20.9,11.3579816 C22.6,9.65798161 23.1,7.15798161 22.3,5.05798161 L19.4,7.65798161 C19.3,7.75798161 19.2,7.75798161 19,7.75798161 L16.4,7.75798161 C16.1,7.75798161 15.9,7.55798161 15.9,7.25798161 L15.9,4.45798161 C15.9,4.35798161 16,4.15798161 16,4.15798161 L18.7,1.35798161 C18.1,1.05798161 17.4,0.957981609 16.7,0.957981609 Z"/>
550
- <symbol id="icon-youtube" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
551
434
  <g fill="none" fill-rule="evenodd" transform="translate(0 4)">
552
435
  <path stroke="none" fill="red" d="M23.52,2.48 C23.2,1.52 22.4,0.72 21.36,0.48 C19.52,0 12,0 12,0 C12,0 4.48,0 2.64,0.48 C1.6,0.72 0.8,1.52 0.48,2.48 C0,4.32 0,8 0,8 C0,8 0,11.68 0.48,13.52 C0.8,14.48 1.6,15.28 2.64,15.52 C4.48,16 12,16 12,16 C12,16 19.52,16 21.36,15.52 C22.4,15.28 23.2,14.48 23.52,13.52 C24,11.68 24,8 24,8 C24,8 24,4.32 23.52,2.48"/>
553
436
  <polygon fill="#FFF" points="9.6 12 16 8.4 9.6 4.8"/>
554
437
  </g>
438
+ <symbol id="icon-address-book" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
439
+ <path stroke="none" fill-rule="evenodd" d="M1.5,18 L1,18 C0.723857625,18 0.5,17.7761424 0.5,17.5 C0.5,17.2238576 0.723857625,17 1,17 L1.5,17 L1.5,16 L1,16 C0.723857625,16 0.5,15.7761424 0.5,15.5 C0.5,15.2238576 0.723857625,15 1,15 L1.5,15 L1.5,13 L1,13 C0.723857625,13 0.5,12.7761424 0.5,12.5 C0.5,12.2238576 0.723857625,12 1,12 L1.5,12 L1.5,10 L1,10 C0.723857625,10 0.5,9.77614237 0.5,9.5 C0.5,9.22385763 0.723857625,9 1,9 L1.5,9 L1.5,7 L1,7 C0.723857625,7 0.5,6.77614237 0.5,6.5 C0.5,6.22385763 0.723857625,6 1,6 L1.5,6 L1.5,2.23913083 C1.5,0.993342853 2.57888071,0 3.88888889,0 L19,0 C19.2761424,0 19.5,0.223857625 19.5,0.5 C19.5,0.776142375 19.2761424,1 19,1 L3.88888889,1 C3.11356373,1 2.5,1.56491802 2.5,2.23913043 C2.5,2.91334285 3.11356373,3.47826087 3.88888889,3.47826087 L19,3.47826087 C19.2761424,3.47826087 19.5,3.70211849 19.5,3.97826087 L19.5,20.5 C19.5,20.7761424 19.2761424,21 19,21 L3.88888889,21 C2.57888071,21 1.5,20.0066571 1.5,18.7608696 L1.5,18 Z M2.5,18 L2.5,18.7608696 C2.5,19.435082 3.11356373,20 3.88888889,20 L18.5,20 L18.5,4.47826087 L3.88888889,4.47826087 C3.37276835,4.47826087 2.89252396,4.32407185 2.5,4.06100338 L2.5,6 L3,6 C3.27614237,6 3.5,6.22385763 3.5,6.5 C3.5,6.77614237 3.27614237,7 3,7 L2.5,7 L2.5,9 L3,9 C3.27614237,9 3.5,9.22385763 3.5,9.5 C3.5,9.77614237 3.27614237,10 3,10 L2.5,10 L2.5,12 L3,12 C3.27614237,12 3.5,12.2238576 3.5,12.5 C3.5,12.7761424 3.27614237,13 3,13 L2.5,13 L2.5,15 L3,15 C3.27614237,15 3.5,15.2238576 3.5,15.5 C3.5,15.7761424 3.27614237,16 3,16 L2.5,16 L2.5,17 L3,17 C3.27614237,17 3.5,17.2238576 3.5,17.5 C3.5,17.7761424 3.27614237,18 3,18 L2.5,18 Z M4,2.5 C3.72385763,2.5 3.5,2.27614237 3.5,2 C3.5,1.72385763 3.72385763,1.5 4,1.5 L18,1.5 C18.2761424,1.5 18.5,1.72385763 18.5,2 C18.5,2.27614237 18.2761424,2.5 18,2.5 L4,2.5 Z M13,15.5 L14,15.5 L14,11.5 L8,11.5 L8,15.5 L9,15.5 L9,14.125 C9,13.1915 9.922,12.5 11,12.5 C12.078,12.5 13,13.1915 13,14.125 L13,15.5 Z M14.5,10.5 C14.7761424,10.5 15,10.7238576 15,11 L15,16 C15,16.2761424 14.7761424,16.5 14.5,16.5 L7.5,16.5 C7.22385763,16.5 7,16.2761424 7,16 L7,11 C7,10.7238576 7.22385763,10.5 7.5,10.5 L14.5,10.5 Z M12,15.5 L12,14.125 C12,13.8165 11.578,13.5 11,13.5 C10.422,13.5 10,13.8165 10,14.125 L10,15.5 L12,15.5 Z M10.6876525,6.6095656 C10.8702618,6.46347813 11.1297382,6.46347813 11.3123475,6.6095656 L16.3123475,10.6095656 C16.6814164,10.9048207 16.4726388,11.5 16,11.5 L6,11.5 C5.52736118,11.5 5.31858357,10.9048207 5.68765248,10.6095656 L10.6876525,6.6095656 Z M7.42539053,10.5 L14.5746095,10.5 L11,7.64031242 L7.42539053,10.5 Z"/>
440
+ </symbol>
441
+ <symbol id="icon-alert" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
442
+ <path stroke="none" fill-rule="evenodd" d="M18.7,15.2084392 C17.8,15.2084392 17.1,14.5084392 17.1,13.6084392 L17.1,9.80843918 C17.1,7.20843918 15.5,4.90843918 13.1,3.90843918 C12.8,2.80843918 11.8,2.00843918 10.6,2.00843918 C9.4,1.90843918 8.4,2.70843918 8.1,3.80843918 C5.7,4.80843918 4.1,7.10843918 4.1,9.70843918 L4.1,13.5084392 C4.1,14.4084392 3.4,15.1084392 2.5,15.1084392 C2.2,15.1084392 2,15.3084392 2,15.6084392 C2,15.9084392 2.2,16.1084392 2.5,16.1084392 L8.1,16.1084392 C8.3,17.3084392 9.4,18.2084392 10.7,18.2084392 C12,18.2084392 13,17.3084392 13.3,16.1084392 L18.9,16.1084392 C19.2,16.1084392 19.4,15.9084392 19.4,15.6084392 C19.4,15.3084392 19,15.2084392 18.7,15.2084392 Z M10.6,17.3084392 C9.9,17.3084392 9.3,16.8084392 9.1,16.2084392 L12.1,16.2084392 C11.9,16.8084392 11.3,17.3084392 10.6,17.3084392 Z M4.5,15.2084392 C4.8,14.8084392 5.1,14.2084392 5.1,13.6084392 L5.1,9.80843918 C5.1,7.60843918 6.5,5.50843918 8.7,4.70843918 C8.9,4.60843918 9,4.50843918 9,4.30843918 C9.1,3.50843918 9.8,2.90843918 10.6,2.90843918 C11.4,2.90843918 12.1,3.50843918 12.2,4.20843918 C12.2,4.40843918 12.4,4.50843918 12.5,4.60843918 C14.7,5.50843918 16.1,7.50843918 16.1,9.80843918 L16.1,13.6084392 C16.1,14.2084392 16.3,14.7084392 16.7,15.2084392 L4.5,15.2084392 Z"/>
443
+ </symbol>
444
+ <symbol id="icon-app-list" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
445
+ <path stroke="none" fill-rule="evenodd" d="M21,18 C22.7,18 24,19.3 24,21 C24,22.7 22.7,24 21,24 C19.3,24 18,22.7 18,21 C18,19.3 19.3,18 21,18 Z M3,0 C4.7,0 6,1.3 6,3 C6,4.7 4.7,6 3,6 C1.3,6 0,4.7 0,3 C0,1.3 1.3,0 3,0 Z M12,0 C13.7,0 15,1.3 15,3 C15,4.7 13.7,6 12,6 C10.3,6 9,4.7 9,3 C9,1.3 10.3,0 12,0 Z M21,0 C22.7,0 24,1.3 24,3 C24,4.7 22.7,6 21,6 C19.3,6 18,4.7 18,3 C18,1.3 19.3,0 21,0 Z M3,9 C4.7,9 6,10.3 6,12 C6,13.7 4.7,15 3,15 C1.3,15 0,13.7 0,12 C0,10.3 1.3,9 3,9 Z M12,9 C13.7,9 15,10.3 15,12 C15,13.7 13.7,15 12,15 C10.3,15 9,13.7 9,12 C9,10.3 10.3,9 12,9 Z M21,9 C22.7,9 24,10.3 24,12 C24,13.7 22.7,15 21,15 C19.3,15 18,13.7 18,12 C18,10.3 19.3,9 21,9 Z M3,18 C4.7,18 6,19.3 6,21 C6,22.7 4.7,24 3,24 C1.3,24 0,22.7 0,21 C0,19.3 1.3,18 3,18 Z M12,18 C13.7,18 15,19.3 15,21 C15,22.7 13.7,24 12,24 C10.3,24 9,22.7 9,21 C9,19.3 10.3,18 12,18 Z"/>
446
+ </symbol>
447
+ <symbol id="icon-arrow-large-left" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
448
+ <path stroke="none" fill-rule="evenodd" d="M8.79069767,17.6511628 C8.69302326,17.6511628 8.59534884,17.6511628 8.49767442,17.5534884 L0.195348837,10.7162791 C0.0976744186,10.6186047 0,10.5209302 0,10.3255814 C0,10.1302326 0.0976744186,10.0325581 0.195348837,9.93488372 L8.49767442,3.09767442 C8.59534884,3 8.79069767,3 8.98604651,3 C9.18139535,3.09767442 9.27906977,3.29302326 9.27906977,3.48837209 L9.27906977,6.90697674 L20.5116279,6.90697674 C20.8046512,6.90697674 21,7.10232558 21,7.39534884 L21,13.255814 C21,13.5488372 20.8046512,13.744186 20.5116279,13.744186 L9.27906977,13.744186 L9.27906977,17.1627907 C9.27906977,17.3581395 9.18139535,17.5534884 8.98604651,17.6511628 C8.88837209,17.6511628 8.88837209,17.6511628 8.79069767,17.6511628 Z M1.26976744,10.3255814 L8.30232558,16.0883721 L8.30232558,13.255814 C8.30232558,12.9627907 8.49767442,12.7674419 8.79069767,12.7674419 L20.0232558,12.7674419 L20.0232558,7.88372093 L8.79069767,7.88372093 C8.49767442,7.88372093 8.30232558,7.68837209 8.30232558,7.39534884 L8.30232558,4.5627907 L1.26976744,10.3255814 Z"/>
449
+ </symbol>
450
+ <symbol id="icon-arrow-more" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
451
+ <path fill="none" stroke-linecap="round" stroke-linejoin="round" d="M3,3 L10,10 L3,17 M11,3 L18,10 L11,17"/>
452
+ </symbol>
453
+ <symbol id="icon-arrow-redo" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
454
+ <path stroke="none" fill-rule="evenodd" d="M19.029584,12.2809247 C18.8628775,7.00658018 15.2326659,3.19258875 10.3067022,3.00670333 C5.40670221,2.80670333 1.20670221,6.70670333 1.00670221,11.7067033 C0.806702206,16.7067033 4.70670221,20.8067033 9.70670221,21.0067033 C10.0067022,21.0067033 10.2067022,21.2067033 10.2067022,21.5067033 C10.2067022,21.8067033 10.0067022,22.0067033 9.70670221,22.0067033 C4.10670221,21.8067033 -0.193297794,17.1067033 0.00670220616,11.6067033 C0.206702206,6.10670333 4.80670221,1.80670333 10.4067022,2.00670333 C15.6758018,2.18839642 19.7069373,6.24904408 20.0258834,11.7893978 L22.1067022,8.70670333 C22.3067022,8.50670333 22.6067022,8.40670333 22.8067022,8.60670333 C23.0067022,8.70670333 23.1067022,9.00670333 22.9067022,9.30670333 L19.9067022,13.8067033 C19.7067022,14.1067033 19.3067022,14.1067033 19.1067022,13.9067033 L15.6067022,9.90670333 C15.4067022,9.70670333 15.4067022,9.40670333 15.6067022,9.20670333 C15.8067022,9.00670333 16.1067022,9.00670333 16.3067022,9.20670333 L19.029584,12.2809247 Z"/>
455
+ </symbol>
456
+ <symbol id="icon-arrow-small-left" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
457
+ <path stroke="none" fill-rule="evenodd" d="M5.70710678,11 L10.8535534,16.1464466 C11.0488155,16.3417088 11.0488155,16.6582912 10.8535534,16.8535534 C10.6582912,17.0488155 10.3417088,17.0488155 10.1464466,16.8535534 L4.14644661,10.8535534 C3.95118446,10.6582912 3.95118446,10.3417088 4.14644661,10.1464466 L10.1464466,4.14644661 C10.3417088,3.95118446 10.6582912,3.95118446 10.8535534,4.14644661 C11.0488155,4.34170876 11.0488155,4.65829124 10.8535534,4.85355339 L5.70710678,10 L17.4996996,10 C17.775842,10 17.9996996,10.2238576 17.9996996,10.5 C17.9996996,10.7761424 17.775842,11 17.4996996,11 L5.70710678,11 Z"/>
458
+ </symbol>
459
+ <symbol id="icon-arrow-small-right" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
460
+ <path stroke="none" fill-rule="evenodd" d="M16.2928932,11 L4.5,11 C4.22385763,11 4,10.7761424 4,10.5 C4,10.2238576 4.22385763,10 4.5,10 L16.2928932,10 L11.1464466,4.85355339 C10.9511845,4.65829124 10.9511845,4.34170876 11.1464466,4.14644661 C11.3417088,3.95118446 11.6582912,3.95118446 11.8535534,4.14644661 L17.8535534,10.1464466 C18.0488155,10.3417088 18.0488155,10.6582912 17.8535534,10.8535534 L11.8535534,16.8535534 C11.6582912,17.0488155 11.3417088,17.0488155 11.1464466,16.8535534 C10.9511845,16.6582912 10.9511845,16.3417088 11.1464466,16.1464466 L16.2928932,11 Z"/>
461
+ </symbol>
462
+ <symbol id="icon-arrow-undo" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
463
+ <path stroke="none" fill-rule="evenodd" d="M3.01423325,11.8990153 C3.28597065,6.30267924 7.33544142,2.18959261 12.6392305,2.00670333 C18.2392305,1.80670333 22.8392305,6.10670333 23.0392305,11.6067033 C23.2392305,17.1067033 18.9392305,21.8067033 13.4392305,22.0067033 C13.1392305,22.0067033 12.9392305,21.8067033 12.9392305,21.5067033 C12.9392305,21.2067033 13.1392305,21.0067033 13.4392305,21.0067033 C18.4392305,20.8067033 22.2392305,16.6067033 22.1392305,11.7067033 C21.9392305,6.70670333 17.7392305,2.90670333 12.8392305,3.00670333 C7.8577734,3.19120174 4.23790285,6.94986482 4.02070459,12.1631035 L6.63923048,9.20670333 C6.83923048,9.00670333 7.13923048,9.00670333 7.33923048,9.20670333 C7.53923048,9.40670333 7.53923048,9.70670333 7.33923048,9.90670333 L3.83923048,13.9067033 C3.63923048,14.1067033 3.23923048,14.1067033 3.03923048,13.8067033 L0.0392304845,9.30670333 C-0.0607695155,9.00670333 0.0392304845,8.70670333 0.239230485,8.60670333 C0.439230485,8.50670333 0.739230485,8.50670333 0.939230485,8.70670333 L3.01423325,11.8990153 Z"/>
464
+ </symbol>
465
+ <symbol id="icon-calendar-date" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
466
+ <g fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
467
+ <polyline points="2.625 1.458 .292 1.458 .292 13.708 13.708 13.708 13.708 1.458 11.375 1.458"/>
468
+ <polygon points="4.375 2.625 2.625 2.625 2.625 .292 4.375 .292"/>
469
+ <polygon points="11.375 2.625 9.625 2.625 9.625 .292 11.375 .292"/>
470
+ <path d="M4.375 1.45833333L9.625 1.45833333M.291666667 4.375L13.7083333 4.375"/>
471
+ <polyline points="5.542 11.375 5.542 6.708 4.375 7.875"/>
472
+ <path d="M4.375,11.375 L6.70833333,11.375"/>
473
+ <polyline points="8.167 11.375 9.917 6.708 7 6.708 7 7.292"/>
474
+ <path d="M7.875,9.04166667 L9.625,9.04166667"/>
475
+ </g>
476
+ </symbol>
477
+ <symbol id="icon-calendar-generic" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
478
+ <path stroke="none" fill-rule="evenodd" d="M16,16 L17.5,16 C17.8,16 18,16.2 18,16.5 C18,16.8 17.8,17 17.5,17 L16,17 L16,18.5 C16,18.8 15.8,19 15.5,19 C15.2,19 15,18.8 15,18.5 L15,17 L11,17 L11,18.5 C11,18.8 10.8,19 10.5,19 C10.2,19 10,18.8 10,18.5 L10,17 L6,17 L6,18.5 C6,18.8 5.8,19 5.5,19 C5.2,19 5,18.8 5,18.5 L5,17 L3,17 C2.7,17 2.5,16.8 2.5,16.5 C2.5,16.2 2.7,16 3,16 L5,16 L5,14 L3,14 C2.7,14 2.5,13.8 2.5,13.5 C2.5,13.2 2.7,13 3,13 L5,13 L5,11 L3,11 C2.7,11 2.5,10.8 2.5,10.5 C2.5,10.2 2.7,10 3,10 L5,10 L5,8.5 C5,8.2 5.2,8 5.5,8 C5.8,8 6,8.2 6,8.5 L6,10 L10,10 L10,8.5 C10,8.2 10.2,8 10.5,8 C10.8,8 11,8.2 11,8.5 L11,10 L15,10 L15,8.5 C15,8.2 15.2,8 15.5,8 C15.8,8 16,8.2 16,8.5 L16,10 L17.5,10 C17.8,10 18,10.2 18,10.5 C18,10.8 17.8,11 17.5,11 L16,11 L16,13 L17.5,13 C17.8,13 18,13.2 18,13.5 C18,13.8 17.8,14 17.5,14 L16,14 L16,16 Z M15,16 L15,14 L11,14 L11,16 L15,16 Z M10,16 L10,14 L6,14 L6,16 L10,16 Z M6,13 L10,13 L10,11 L6,11 L6,13 Z M11,13 L15,13 L15,11 L11,11 L11,13 Z M2,6 L19,6 L19,3 L17,3 L17,4.5 C17,4.8 16.8,5 16.5,5 L13.5,5 C13.2,5 13,4.8 13,4.5 L13,3 L8,3 L8,4.5 C8,4.8 7.8,5 7.5,5 L4.5,5 C4.2,5 4,4.8 4,4.5 L4,3 L2,3 L2,6 Z M2,7 L2,20 L19,20 L19,7 L2,7 Z M8,2 L13,2 L13,1.5 C13,1.2 13.2,1 13.5,1 L16.5,1 C16.8,1 17,1.2 17,1.5 L17,2 L19.5,2 C19.8,2 20,2.2 20,2.5 L20,20.5 C20,20.8 19.8,21 19.5,21 L1.5,21 C1.2,21 1,20.8 1,20.5 L1,2.5 C1,2.2 1.2,2 1.5,2 L4,2 L4,1.5 C4,1.2 4.2,1 4.5,1 L7.5,1 C7.8,1 8,1.2 8,1.5 L8,2 Z M7,4 L7,2 L5,2 L5,4 L7,4 Z M16,2 L14,2 L14,4 L16,4 L16,2 Z"/>
479
+ </symbol>
480
+ <symbol id="icon-campaign" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
481
+ <path stroke="none" fill-rule="evenodd" d="M9,11 C10.1,11 11,10.1 11,9 C11,7.9 10.1,7 9,7 C7.9,7 7,7.9 7,9 C7,10.1 7.9,11 9,11 Z M9,8 C9.6,8 10,8.4 10,9 C10,9.6 9.6,10 9,10 C8.4,10 8,9.6 8,9 C8,8.4 8.4,8 9,8 Z M24,12 C24,11.1 23.5,10.3 22.8,9.9 C23.3,9.2 23.4,8.3 23.1,7.5 C22.7,6.6 22,6 21.1,5.9 C21.3,5.1 21.1,4.2 20.4,3.5 C19.8,2.9 18.9,2.6 18,2.8 C18,2 17.4,1.3 16.6,0.9 C15.8,0.6 14.8,0.7 14.2,1.2 C13.7,0.5 12.9,0 12,0 C11.1,0 10.3,0.5 9.9,1.2 C9.2,0.7 8.2,0.6 7.4,0.9 C6.6,1.3 6,2 5.9,2.9 C5.1,2.7 4.2,2.9 3.5,3.6 C2.9,4.2 2.7,5.1 2.9,5.9 C2,6 1.3,6.6 0.9,7.4 C0.6,8.2 0.7,9.2 1.2,9.9 C0.5,10.3 0,11.1 0,12 C0,12.9 0.5,13.7 1.2,14.1 C0.7,14.8 0.6,15.7 0.9,16.5 C1.3,17.4 2,18 2.9,18.1 C2.7,18.9 2.9,19.8 3.6,20.5 C4.2,21.1 5.1,21.4 6,21.2 C6,22 6.6,22.7 7.4,23.1 C8.2,23.4 9.2,23.3 9.8,22.8 C10.2,23.5 11,24 11.9,24 C12.8,24 13.6,23.5 14,22.8 C14.7,23.3 15.6,23.5 16.4,23.1 C17.2,22.8 17.8,22 17.9,21.2 C18.7,21.4 19.6,21.2 20.3,20.5 C20.9,19.9 21.2,19 21,18.1 C21.8,18 22.6,17.4 22.9,16.6 C23.2,15.8 23.1,14.8 22.6,14.2 C23.5,13.7 24,12.9 24,12 Z M21.8,13.5 C21.6,13.5 21.4,13.7 21.4,13.9 C21.4,14.1 21.4,14.3 21.6,14.4 C22.2,14.8 22.4,15.6 22.2,16.2 C22,16.8 21.2,17.2 20.5,17.1 C20.3,17.1 20.1,17.1 20,17.3 C19.9,17.5 19.9,17.7 20,17.9 C20.4,18.5 20.3,19.3 19.8,19.8 C19.3,20.3 18.5,20.4 17.9,20 C17.7,19.9 17.5,19.9 17.3,20 C17.1,20.1 17,20.3 17.1,20.5 C17.2,21.2 16.9,21.9 16.2,22.2 C15.5,22.5 14.8,22.2 14.4,21.6 C14.3,21.4 14.1,21.3 13.9,21.4 C13.7,21.4 13.5,21.6 13.5,21.8 C13.3,22.5 12.7,23 12,23 C11.3,23 10.7,22.5 10.5,21.8 C10.5,21.6 10.3,21.4 10.1,21.4 C10.1,21.4 10,21.4 10,21.4 C9.8,21.4 9.7,21.5 9.6,21.6 C9.2,22.2 8.4,22.4 7.8,22.2 C7.1,21.9 6.8,21.2 6.9,20.5 C6.9,20.3 6.9,20.1 6.7,20 C6.5,19.9 6.3,19.9 6.1,20 C5.5,20.4 4.7,20.3 4.2,19.8 C3.7,19.3 3.6,18.5 4,17.9 C4.1,17.7 4.1,17.5 4,17.3 C3.9,17.1 3.7,17 3.5,17.1 C2.8,17.3 2.1,16.9 1.8,16.2 C1.5,15.5 1.8,14.8 2.4,14.4 C2.6,14.3 2.7,14.1 2.6,13.9 C2.6,13.7 2.4,13.5 2.2,13.5 C1.5,13.3 1,12.7 1,12 C1,11.3 1.5,10.7 2.2,10.5 C2.4,10.5 2.6,10.3 2.6,10.1 C2.6,9.9 2.6,9.7 2.4,9.6 C1.8,9.2 1.6,8.5 1.8,7.8 C2.1,7.1 2.8,6.8 3.5,6.9 C3.7,6.9 3.9,6.9 4,6.7 C4.1,6.5 4.1,6.3 4,6.1 C3.6,5.5 3.7,4.7 4.2,4.2 C4.7,3.7 5.5,3.6 6.1,4 C6.3,4.1 6.5,4.1 6.7,4 C6.9,3.9 7,3.7 6.9,3.5 C6.8,2.8 7.1,2.1 7.8,1.8 C8.5,1.5 9.2,1.8 9.6,2.4 C9.7,2.6 9.9,2.7 10.1,2.6 C10.3,2.6 10.5,2.4 10.5,2.2 C10.7,1.5 11.3,1 12,1 C12.7,1 13.3,1.5 13.5,2.2 C13.5,2.4 13.7,2.6 13.9,2.6 C14.1,2.6 14.3,2.6 14.4,2.4 C14.8,1.8 15.6,1.6 16.2,1.8 C16.9,2.1 17.2,2.8 17.1,3.5 C17.1,3.7 17.1,3.9 17.3,4 C17.5,4.1 17.7,4.1 17.9,4 C18.5,3.6 19.3,3.7 19.8,4.2 C20.3,4.7 20.4,5.5 20,6.1 C19.9,6.3 19.9,6.5 20,6.7 C20.1,6.9 20.3,7 20.5,6.9 C21.2,6.7 21.9,7.1 22.2,7.8 C22.5,8.5 22.2,9.2 21.6,9.6 C21.4,9.7 21.3,9.9 21.4,10.1 C21.5,10.3 21.6,10.5 21.8,10.5 C22.5,10.6 23,11.2 23,12 C23,12.7 22.5,13.3 21.8,13.5 Z M16.4,7.6 C16.2,7.4 15.9,7.4 15.7,7.6 L7.7,15.6 C7.5,15.8 7.5,16.1 7.7,16.3 C7.8,16.4 7.9,16.4 8.1,16.4 C8.3,16.4 8.4,16.4 8.5,16.3 L16.5,8.3 C16.5,8.2 16.5,7.8 16.4,7.6 Z M15,13 C13.9,13 13,13.9 13,15 C13,16.1 13.9,17 15,17 C16.1,17 17,16.1 17,15 C17,13.9 16.1,13 15,13 Z M15,16 C14.4,16 14,15.6 14,15 C14,14.4 14.4,14 15,14 C15.6,14 16,14.4 16,15 C16,15.6 15.6,16 15,16 Z"/>
482
+ </symbol>
483
+ <symbol id="icon-caret-down" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8 8">
484
+ <polygon fill-rule="evenodd" points="0 2.04 3.98 6 8 2"/>
485
+ </symbol>
486
+ <symbol id="icon-caret-up" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8 8">
487
+ <polygon fill-rule="evenodd" points="0 2.04 3.98 6 8 2" transform="rotate(-180 4 4)"/>
488
+ </symbol>
489
+ <symbol id="icon-checkmark-filled" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
490
+ <path stroke="none" fill-rule="evenodd" d="M6.7826087,12.0516851 L16.7563411,2.14525178 C16.9513259,1.95158274 17.2660654,1.95158274 17.4610502,2.14525178 L20.3523545,5.01704665 C20.5492152,5.21257896 20.5492152,5.53101078 20.3523545,5.72654309 L7.1349632,18.8547482 C6.93997848,19.0484173 6.62523891,19.0484173 6.43025419,18.8547482 L0.647645492,13.1111585 C0.450784836,12.9156262 0.450784836,12.5971943 0.647645492,12.401662 L3.53894984,9.52986716 C3.73393456,9.33619812 4.04867413,9.33619812 4.24365886,9.52986716 L6.7826087,12.0516851 Z"/>
491
+ </symbol>
492
+ <symbol id="icon-checkmark-outlined" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
493
+ <path stroke="none" fill-rule="evenodd" d="M6.7826087,12.0516851 L16.7563411,2.14525178 C16.9513259,1.95158274 17.2660654,1.95158274 17.4610502,2.14525178 L20.3523545,5.01704665 C20.5492152,5.21257896 20.5492152,5.53101078 20.3523545,5.72654309 L7.1349632,18.8547482 C6.93997848,19.0484173 6.62523891,19.0484173 6.43025419,18.8547482 L0.647645492,13.1111585 C0.450784836,12.9156262 0.450784836,12.5971943 0.647645492,12.401662 L3.53894984,9.52986716 C3.73393456,9.33619812 4.04867413,9.33619812 4.24365886,9.52986716 L6.7826087,12.0516851 Z M7.1349632,13.1111585 C6.93997848,13.3048275 6.62523891,13.3048275 6.43025419,13.1111585 L3.89130435,10.5893406 L1.7095127,12.7564103 L6.7826087,17.7952748 L19.2904873,5.37179487 L17.1086957,3.20472517 L7.1349632,13.1111585 Z"/>
494
+ </symbol>
495
+ <symbol id="icon-chevron-down" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 7 7">
496
+ <polyline fill="none" stroke-linecap="round" stroke-linejoin="round" points="0 2 3.507 5 7 2"/>
497
+ </symbol>
498
+ <symbol id="icon-chevron-up" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 7 7">
499
+ <polyline fill="none" stroke-linecap="round" stroke-linejoin="round" points="0 2 3.507 5 7 2" transform="rotate(-180 3.5 3.5)"/>
500
+ </symbol>
501
+ <symbol id="icon-chrome" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs>
502
+ <linearGradient id="ChromeA" x1="11.94" y1="7.7" x2="11.94" y2="16.25" gradientUnits="userSpaceOnUse">
503
+ <stop offset="0" stop-color="#96c1e9"/>
504
+ <stop offset="1" stop-color="#146cb5"/>
505
+ </linearGradient>
506
+ </defs>
507
+ <path d="M12 0a12.23 12.23 0 0 1 10.75 6.77H11.37s-2.15-.07-4 2.54a5.29 5.29 0 0 0-.46 4.44L2.07 5.32A11.85 11.85 0 0 1 12 0z" fill="#e6322a"/>
508
+ <path d="M22.39 18a12.25 12.25 0 0 1-11.26 6l5.7-9.86s1.13-1.82-.21-4.71A5.31 5.31 0 0 0 13 6.75h9.73A11.88 11.88 0 0 1 22.39 18z" fill="#feda00"/>
509
+ <path d="M1.6 18a12.25 12.25 0 0 1 .47-12.69l5.69 9.86s1 1.9 4.19 2.18A5.34 5.34 0 0 0 16 15.53L11.16 24a11.86 11.86 0 0 1-9.56-6z" fill="#65b54c"/>
510
+ <path d="M11.13,24l1.6-6.68A5.39,5.39,0,0,0,16,15.56Z" fill="#60ac48"/>
511
+ <path d="M6.61 12.07a5.33 5.33 0 1 1 5.33 5.34 5.33 5.33 0 0 1-5.33-5.34z" fill="#fff"/>
512
+ <path d="M7.5,12.07a4.44,4.44,0,1,1,4.44,4.45A4.44,4.44,0,0,1,7.5,12.07Z" fill="url(#ChromeA)"/>
513
+ <path d="M22.73,6.75,16.14,8.68A5.36,5.36,0,0,0,13,6.75Z" fill="#f1cf00"/>
514
+ <path d="M6.8,13.51,2.07,5.32,7,10.16a4.78,4.78,0,0,0-.31,2.5Z" fill="#da3027"/>
515
+ </symbol>
516
+ <symbol id="icon-clock" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
517
+ <path fill="none" stroke-linecap="round" stroke-linejoin="round" d="M13.7083333,7 C13.7083333,10.7053333 10.7041667,13.7083333 7,13.7083333 C3.2935,13.7083333 0.291666667,10.7053333 0.291666667,7 C0.291666667,3.29466667 3.2935,0.291666667 7,0.291666667 C10.7041667,0.291666667 13.7083333,3.29466667 13.7083333,7 L13.7083333,7 Z M6.70833333,3.79166667 L6.70833333,7 L10.2083333,10.2083333"/>
518
+ </symbol>
519
+ <symbol id="icon-close" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
520
+ <g fill="none" fill-rule="evenodd">
521
+ <path stroke="none" fill="#CCC" d="M14.4,7.2 C14.4,11.2 11.2,14.4 7.2,14.4 C3.2,14.4 -1.82076576e-13,11.2 -1.82076576e-13,7.2 C-1.82076576e-13,3.2 3.2,-1.15463195e-14 7.2,-1.15463195e-14 C11.2,-1.04916076e-14 14.4,3.2 14.4,7.2 L14.4,7.2 Z"/>
522
+ <path stroke="none" fill="#FFF" d="M7.9,7.2 L10.3,4.8 C10.5,4.6 10.5,4.3 10.3,4.1 C10.1,3.9 9.8,3.9 9.6,4.1 L7.2,6.5 L4.8,4.1 C4.6,3.9 4.3,3.9 4.1,4.1 C3.9,4.3 3.9,4.6 4.1,4.8 L6.5,7.2 L4.1,9.6 C3.9,9.8 3.9,10.1 4.1,10.3 C4.2,10.4 4.3,10.4 4.5,10.4 C4.7,10.4 4.8,10.4 4.9,10.3 L7.3,7.9 L9.7,10.3 C9.8,10.4 9.9,10.4 10.1,10.4 C10.3,10.4 10.4,10.4 10.5,10.3 C10.7,10.1 10.7,9.8 10.5,9.6 L7.9,7.2 Z"/>
523
+ </g>
524
+ </symbol>
525
+ <symbol id="icon-close2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
526
+ <path stroke="none" fill-rule="evenodd" d="M7.9,7.2 L10.3,4.8 C10.5,4.6 10.5,4.3 10.3,4.1 C10.1,3.9 9.8,3.9 9.6,4.1 L7.2,6.5 L4.8,4.1 C4.6,3.9 4.3,3.9 4.1,4.1 C3.9,4.3 3.9,4.6 4.1,4.8 L6.5,7.2 L4.1,9.6 C3.9,9.8 3.9,10.1 4.1,10.3 C4.2,10.4 4.3,10.4 4.5,10.4 C4.7,10.4 4.8,10.4 4.9,10.3 L7.3,7.9 L9.7,10.3 C9.8,10.4 9.9,10.4 10.1,10.4 C10.3,10.4 10.4,10.4 10.5,10.3 C10.7,10.1 10.7,9.8 10.5,9.6 L7.9,7.2 Z"/>
527
+ </symbol>
528
+ <symbol id="icon-cogwheel" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
529
+ <path stroke="none" fill-rule="evenodd" d="M17.4339623,14.2641509 L19.1179245,15.9481132 C19.3160377,16.1462264 19.3160377,16.4433962 19.1179245,16.6415094 L16.6415094,19.1179245 C16.4433962,19.3160377 16.1462264,19.3160377 15.9481132,19.1179245 L14.2641509,17.4339623 C13.7688679,17.6320755 13.1745283,17.8301887 12.2830189,18.1273585 L12.2830189,20.504717 C12.2830189,20.8018868 12.0849057,21 11.7877358,21 L9.21226415,21 C8.91509434,21 8.71698113,20.8018868 8.71698113,20.504717 L8.71698113,18.1273585 C7.9245283,17.9292453 7.23113208,17.7311321 6.73584906,17.4339623 L5.05188679,19.1179245 C4.85377358,19.3160377 4.55660377,19.3160377 4.35849057,19.1179245 L1.88207547,16.6415094 C1.68396226,16.4433962 1.68396226,16.1462264 1.88207547,15.9481132 L3.56603774,14.2641509 C3.36792453,13.7688679 3.16981132,13.1745283 2.87264151,12.2830189 L0.495283019,12.2830189 C0.198113208,12.2830189 -1.81188398e-13,12.0849057 -1.81188398e-13,11.7877358 L-1.81188398e-13,9.21226415 C-1.81188398e-13,8.91509434 0.198113208,8.71698113 0.495283019,8.71698113 L2.87264151,8.71698113 C3.07075472,7.9245283 3.26886792,7.23113208 3.56603774,6.73584906 L1.88207547,5.05188679 C1.68396226,4.85377358 1.68396226,4.55660377 1.88207547,4.35849057 L4.35849057,1.88207547 C4.55660377,1.68396226 4.85377358,1.68396226 5.05188679,1.88207547 L6.73584906,3.56603774 C7.23113208,3.36792453 7.8254717,3.16981132 8.71698113,2.87264151 L8.71698113,0.495283019 C8.71698113,0.198113208 8.91509434,-1.0658141e-14 9.21226415,-1.0658141e-14 L11.7877358,-1.0658141e-14 C12.0849057,-1.0658141e-14 12.2830189,0.198113208 12.2830189,0.495283019 L12.2830189,2.97169811 C13.0754717,3.16981132 13.7688679,3.36792453 14.2641509,3.66509434 L15.9481132,1.88207547 C16.1462264,1.68396226 16.4433962,1.68396226 16.6415094,1.88207547 L19.1179245,4.35849057 C19.3160377,4.55660377 19.3160377,4.85377358 19.1179245,5.05188679 L17.4339623,6.73584906 C17.6320755,7.23113208 17.8301887,7.8254717 18.1273585,8.71698113 L20.504717,8.71698113 C20.8018868,8.71698113 21,8.91509434 21,9.21226415 L21,11.7877358 C21,12.0849057 20.8018868,12.2830189 20.504717,12.2830189 L18.1273585,12.2830189 C17.8301887,13.0754717 17.6320755,13.7688679 17.4339623,14.2641509 Z M16.4433962,14.6603774 C16.245283,14.4622642 16.245283,14.2641509 16.3443396,14.0660377 C16.6415094,13.5707547 16.8396226,12.7783019 17.1367925,11.6886792 C17.2358491,11.490566 17.4339623,11.2924528 17.6320755,11.2924528 L19.9103774,11.2924528 L19.9103774,9.70754717 L17.6320755,9.70754717 C17.4339623,9.70754717 17.2358491,9.50943396 17.1367925,9.31132075 C16.8396226,8.22169811 16.6415094,7.42924528 16.3443396,6.93396226 C16.245283,6.73584906 16.245283,6.43867925 16.4433962,6.33962264 L18.1273585,4.65566038 L16.3443396,2.87264151 L14.6603774,4.55660377 C14.4622642,4.75471698 14.2641509,4.75471698 14.0660377,4.65566038 C13.5707547,4.35849057 12.7783019,4.16037736 11.6886792,3.86320755 C11.490566,3.76415094 11.2924528,3.56603774 11.2924528,3.36792453 L11.2924528,0.990566038 L9.70754717,0.990566038 L9.70754717,3.26886792 C9.70754717,3.46698113 9.50943396,3.66509434 9.31132075,3.76415094 C8.22169811,4.06132075 7.42924528,4.35849057 6.93396226,4.65566038 C6.73584906,4.75471698 6.43867925,4.75471698 6.33962264,4.55660377 L4.65566038,2.97169811 L2.97169811,4.65566038 L4.65566038,6.33962264 C4.85377358,6.53773585 4.85377358,6.73584906 4.75471698,6.93396226 C4.35849057,7.42924528 4.06132075,8.22169811 3.86320755,9.31132075 C3.76415094,9.50943396 3.56603774,9.70754717 3.36792453,9.70754717 L0.990566038,9.70754717 L0.990566038,11.2924528 L3.26886792,11.2924528 C3.46698113,11.2924528 3.66509434,11.490566 3.76415094,11.6886792 C4.06132075,12.7783019 4.25943396,13.5707547 4.55660377,14.0660377 C4.65566038,14.2641509 4.65566038,14.5613208 4.45754717,14.6603774 L2.77358491,16.3443396 L4.55660377,18.1273585 L6.24056604,16.4433962 C6.43867925,16.245283 6.63679245,16.245283 6.83490566,16.3443396 C7.33018868,16.6415094 8.12264151,16.8396226 9.21226415,17.1367925 C9.41037736,17.2358491 9.60849057,17.4339623 9.60849057,17.6320755 L9.60849057,19.9103774 L11.1933962,19.9103774 L11.1933962,17.6320755 C11.1933962,17.4339623 11.3915094,17.2358491 11.5896226,17.1367925 C12.6792453,16.8396226 13.4716981,16.6415094 13.9669811,16.3443396 C14.1650943,16.245283 14.4622642,16.245283 14.5613208,16.4433962 L16.245283,18.1273585 L18.0283019,16.3443396 L16.4433962,14.6603774 Z M14.8584906,10.5 C14.8584906,12.9764151 12.8773585,14.8584906 10.5,14.8584906 C8.12264151,14.8584906 6.14150943,12.8773585 6.14150943,10.5 C6.14150943,8.02358491 8.12264151,6.14150943 10.5,6.14150943 C12.8773585,6.14150943 14.8584906,8.02358491 14.8584906,10.5 Z M13.8679245,10.5 C13.8679245,8.61792453 12.3820755,7.13207547 10.5,7.13207547 C8.61792453,7.13207547 7.13207547,8.61792453 7.13207547,10.5 C7.13207547,12.3820755 8.61792453,13.8679245 10.5,13.8679245 C12.3820755,13.8679245 13.8679245,12.3820755 13.8679245,10.5 Z"/>
530
+ </symbol>
531
+ <symbol id="icon-collapse" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19 17">
532
+ <path stroke="none" fill-rule="evenodd" d="M2.93835042,7.00281511 L6.34789802,10.8614725 L4.84915723,12.1857746 L-0.72,5.88304115 L4.86465339,-0.09 L6.32556592,1.27591895 L2.84100542,5.00281511 L18.9966556,5.00281511 L18.9966556,7.00281511 L2.93835042,7.00281511 Z M10.9966556,10.0028151 L18.9966556,10.0028151 L18.9966556,12.0028151 L10.9966556,12.0028151 L10.9966556,10.0028151 Z M10.9966556,15.0028151 L18.9966556,15.0028151 L18.9966556,17.0028151 L10.9966556,17.0028151 L10.9966556,15.0028151 Z"/>
533
+ </symbol>
534
+ <symbol id="icon-commerce-modeler" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
535
+ <path stroke="none" fill-rule="evenodd" d="M12.0351641,5.98720362e-09 C12.193041,5.98720362e-09 12.3502192,0.00300649278 12.5066423,0.00896795478 C12.5907129,-0.00590522248 12.6770243,-0.00115921039 12.7594404,0.021480022 C18.6977301,0.369964566 23.4916127,4.982633 23.9996213,10.9953778 L23.9837502,11.515968 C23.9738694,11.8400674 23.7082818,12.097681 23.3840313,12.097681 L7.51659383,12.097681 C7.59589669,13.6414154 7.91516751,15.2149771 8.4741556,16.7995866 L11.3999525,16.7999022 C11.7313219,16.7999022 11.99995,17.0685298 11.99995,17.3998987 C11.99995,17.7312676 11.7313219,17.9998952 11.3999525,17.9998952 L8.94256424,17.9997029 C9.66148625,19.6800729 10.6484205,21.3675037 11.9030706,23.0397856 C12.2127617,23.4525628 11.8914337,24.0378167 11.376929,23.9980786 L10.921559,23.9628773 C4.76770074,23.4252281 0,18.0740755 0,11.7555006 C0,11.6760213 0.000772642048,11.5967485 0.00231108987,11.5176888 C0.00209352529,11.5110475 0.00198389427,11.5043788 0.00198389427,11.4976845 C0.00198389427,11.4818558 0.00259683705,11.4661702 0.00380028218,11.4506503 C0.157693367,5.28767439 4.96769588,0.435221419 11.1805116,0.0276653644 C11.2354751,0.0166276028 11.2917474,0.0133150054 11.3475714,0.0177975563 C11.4002785,0.0150278359 11.4530838,0.0125774819 11.5059851,0.0104483851 C11.6724168,0.00343263261 11.8528248,5.98720362e-09 12.0351641,5.98720362e-09 Z M7.6456869,17.9992321 L3.09564558,17.9999587 C4.70882299,20.4096208 7.22601673,22.1466527 10.1524483,22.654075 C9.10303309,21.1111658 8.26717592,19.5538305 7.6456869,17.9992321 Z M6.31541769,12.097681 L1.20516144,12.097681 C1.25596345,13.7785819 1.67960743,15.3761256 2.39575725,16.7998766 L7.20831056,16.7993495 C6.68782629,15.2186611 6.38991008,13.6453947 6.31541769,12.097681 Z M15.6551838,5.99911321 L8.53019172,5.99959459 C7.89601938,7.57332498 7.55389241,9.21440944 7.50347499,10.897688 L16.7905812,10.897614 C16.7276443,9.21074682 16.3471368,7.57012209 15.6551838,5.99911321 Z M7.24260862,5.99957699 L2.90351691,5.99904942 C1.96845187,7.4224935 1.37662256,9.08956106 1.23370513,10.897688 L6.3025922,10.897688 C6.34806409,9.22088637 6.66102977,7.58027735 7.24260862,5.99957699 Z M21.0476143,5.9960629 L20.9999125,5.99996506 L20.9999125,5.99996506 L16.956462,5.99889238 C17.586003,7.5730412 17.933676,9.21310697 17.9913353,10.8971371 L22.7901906,10.897688 C22.6143634,9.08842875 21.9967228,7.42024845 21.0476143,5.9960629 Z M9.83537123,1.40840916 C7.43705764,1.87255577 5.34676564,3.08663319 3.82366471,4.79910428 L7.74141686,4.79922818 C8.28535102,3.62777703 8.98317428,2.49408149 9.83537123,1.40840916 Z M12.0351641,1.19999302 C11.8745353,1.19999302 11.7162407,1.20290216 11.5705404,1.20879767 C10.5462259,2.34777744 9.71524541,3.54909571 9.07741823,4.79922568 L15.0585164,4.7992411 C14.3622926,3.54606214 13.4591577,2.34338911 12.3524538,1.20397563 C12.2454747,1.20147685 12.1404931,1.19999302 12.0351641,1.19999302 Z M14.1531993,1.40445876 L14.2148167,1.47752033 C15.1024218,2.53858252 15.8371268,3.64878825 16.4155304,4.79897073 L20.1216814,4.79946384 C18.5871893,3.08193917 16.5069131,1.86560109 14.1531993,1.40445876 Z M16.7048904,13.7999196 C16.7048904,13.4685507 16.9735184,13.1999231 17.3048879,13.1999231 L19.916077,13.1999231 C20.2474464,13.1999231 20.5160745,13.4685507 20.5160745,13.7999196 L20.5160745,14.5040885 C20.7531119,14.6166784 20.9811438,14.748021 21.1934666,14.8952386 L21.7906837,14.5478147 C22.0779755,14.3806862 22.4463899,14.4789464 22.6122932,14.7669471 L23.9178878,17.0334001 C24.0828744,17.3198093 23.9851501,17.6857115 23.6993324,17.8517213 L23.0977333,18.2011446 C23.1102702,18.335191 23.1167036,18.4681156 23.1167036,18.6003729 C23.1167036,18.7331353 23.1104527,18.8658317 23.0981773,18.9987442 L23.7000101,19.3463801 C23.9866722,19.5119644 24.0850549,19.8784375 23.9198628,20.1653254 L22.6142682,22.4327408 C22.4484105,22.7207845 22.0799916,22.8191062 21.792667,22.6520054 L21.194396,22.3040662 C20.9818576,22.4519741 20.7535286,22.5836407 20.5160745,22.6962394 L20.5160745,23.3998637 C20.5160745,23.7312326 20.2474464,23.9998602 19.916077,23.9998602 L17.3048879,23.9998602 C16.9735184,23.9998602 16.7048904,23.7312326 16.7048904,23.3998637 L16.7048904,22.6974855 C16.4617962,22.583569 16.2286491,22.4508352 16.0135369,22.3023569 L15.4039462,22.65332 C15.1167175,22.8186878 14.7498133,22.7198476 14.5845215,22.4325754 L13.279887,20.1651601 C13.1148743,19.878373 13.2131712,19.5121325 13.4996076,19.3465114 L14.1012229,18.9986501 C14.0892236,18.8662047 14.0831413,18.7334713 14.0831413,18.6003729 C14.0831413,18.4679055 14.0894043,18.3349581 14.1016505,18.2014344 L13.4995526,17.8517213 C13.2136061,17.6856367 13.1159446,17.3195028 13.2811877,17.0330696 L14.5887022,14.7666166 C14.7543027,14.4795638 15.121263,14.3811258 15.4082977,14.5467582 L16.0147802,14.8967268 C16.2295713,14.7490445 16.4623117,14.61671 16.7048904,14.5028427 L16.7048904,13.7999196 Z M17.9048854,14.9009057 C17.9048854,15.1513616 17.7493134,15.3754693 17.5146637,15.4630356 C17.116889,15.6114768 16.7394271,15.8254993 16.4502715,16.0723201 C16.2570469,16.237255 15.9808915,16.2626224 15.7608523,16.1356496 L15.3282757,15.8860327 L14.6195591,17.114526 L15.0516884,17.3655172 C15.2703758,17.4925361 15.3859388,17.7430414 15.340627,17.9918479 C15.3026776,18.2002276 15.2831363,18.4028646 15.2831363,18.6003729 C15.2831363,18.8019924 15.3023965,19.0036131 15.3401919,19.2065357 C15.3867395,19.4564481 15.270744,19.7085693 15.0506734,19.8358168 L14.6185943,20.0856502 L15.3253219,21.3139214 L15.7613638,21.0628766 C15.9819256,20.9358913 16.2586042,20.9618723 16.45167,21.1276984 C16.7400219,21.3753666 17.1164682,21.5890276 17.5135729,21.7363419 C17.7487915,21.8236011 17.9048854,22.0479957 17.9048854,22.2988777 L17.9048854,22.7998672 L19.3160795,22.7998672 L19.3160795,22.2988777 C19.3160795,22.0481538 19.4719796,21.8238656 19.7069871,21.7364922 C20.0941438,21.5925513 20.4625601,21.3804367 20.7568149,21.1276984 C20.9506118,20.9612443 21.2285554,20.9357577 21.4493927,21.0641911 L21.8750408,21.3117373 L22.580955,20.0857819 L22.1484388,19.8359481 C21.9282291,19.7087487 21.8121278,19.4565427 21.858693,19.2065357 C21.8970864,19.0004026 21.9167086,18.7992274 21.9167086,18.6003729 C21.9167086,18.4055549 21.8968342,18.2036701 21.8582579,17.9918479 C21.8129462,17.7430414 21.9285091,17.4925361 22.1471965,17.3655172 L22.5796546,17.1143351 L21.8732532,15.8880542 L21.449456,16.1345931 C21.2291956,16.2627269 20.9520263,16.2377571 20.7582134,16.0723201 C20.463071,15.820389 20.0936305,15.6078981 19.7058949,15.4628838 C19.4714572,15.3752035 19.3160795,15.1512029 19.3160795,14.9009057 L19.3160795,14.3999161 L17.9048854,14.3999161 L17.9048854,14.9009057 Z M19.7999175,18.600388 C19.7999175,17.9372871 19.2628809,17.3998987 18.6009147,17.3998987 C17.9383655,17.3998987 17.3999275,17.9378697 17.3999275,18.600388 C17.3999275,19.2620161 17.9384681,19.7998847 18.6009147,19.7998847 C19.2627786,19.7998847 19.7999175,19.2625987 19.7999175,18.600388 Z M20.9999125,18.600388 C20.9999125,19.9252625 19.9255916,20.9998777 18.6009147,20.9998777 C17.2760639,20.9998777 16.1999325,19.9250892 16.1999325,18.600388 C16.1999325,17.2748991 17.2758591,16.1999057 18.6009147,16.1999057 C19.9257962,16.1999057 20.9999125,17.2747256 20.9999125,18.600388 Z"/>
536
+ </symbol>
537
+ <symbol id="icon-copy" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
538
+ <path stroke="none" fill-rule="evenodd" d="M8.2,16.5 C7.8,17.1 7.4,17.7 7.2,18.3 C7.1,18.7 7,18.9 7,19.1 C6.9,19.7 6,19.6 6,19 C6,18.9 6,18.8 6,18.6 C6,18.3 6.1,18 6.1,17.6 C6.2,16.6 6.5,15.5 6.9,14.6 C8.1,11.9 10.1,10.3 13.3,10.1 L13.3,9 C13.3,8.6 13.8,8.3 14.1,8.6 L17.8,11.5 C18.1,11.7 18.1,12.1 17.8,12.3 L14.1,15.2 C13.8,15.5 13.3,15.2 13.3,14.8 L13.3,13.8 C11,14 9.4,15 8.2,16.5 Z M13.8,12.9 C14.1,12.9 14.3,13.1 14.3,13.4 L14.3,13.8 L16.7,11.9 L14.3,10 L14.3,10.4 C14.3,10.7 14.1,10.9 13.8,10.9 C10.8,10.9 8.9,12.4 7.8,14.8 C7.7,15.1 7.6,15.3 7.5,15.6 C9,13.9 11,12.9 13.8,12.9 Z M20,17.9 C20,18.2 19.8,18.4 19.5,18.4 L14.9,18.4 L14.9,20.5 C14.9,20.8 14.7,21 14.4,21 L2.5,21 C2.2,21 2,20.8 2,20.5 L2,3.1 C2,2.8 2.2,2.6 2.5,2.6 L7.1,2.6 L7.1,0.5 C7.1,0.2 7.3,0 7.6,0 L15.3,0 C15.4,0 15.6,0.1 15.7,0.2 L20,4.5 C20,4.58067702 20,4.58067702 20,4.7 C20,4.8 20,4.8 20,4.9 C20,5.1 20,9.43333333 20,17.9 Z M19,5.3 L15.2,5.3 C14.9,5.3 14.7,5.1 14.7,4.8 L14.7,1 L8.1,1 L8.1,2.6 L10.1,2.6 C10.2,2.6 10.4,2.7 10.5,2.8 L14.7,7.1 C14.9,7.3 14.9,7.6 14.7,7.8 C14.7,7.9 14.5,8 14.4,8 L10.1,8 C9.9,8 9.6,7.7 9.6,7.5 L9.6,3.6 L3,3.6 L3,20 L13.9,20 L13.9,16.3 C13.9,16 14.1,15.8 14.4,15.8 C14.7,15.8 14.9,16 14.9,16.3 L14.9,17.4 L19,17.4 L19,5.3 Z M18.3,4.3 L15.7,1.7 L15.7,4.3 L18.3,4.3 Z M13.2,7 L10.6,4.3 L10.6,7 L13.2,7 Z"/>
539
+ </symbol>
540
+ <symbol id="icon-countries" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
541
+ <path stroke="none" fill-rule="evenodd" d="M12,0 C18.6268038,0 24,5.37351898 24,12 C24,18.6284651 18.6278197,24 12,24 C5.37151894,24 0,18.6288037 0,12 C0,5.3731803 5.37253487,0 12,0 Z M12,1.5 C6.20098985,1.5 1.5,6.2015546 1.5,12 C1.5,17.8003007 6.1999816,22.5 12,22.5 C17.7994,22.5 22.5,17.7999647 22.5,12 C22.5,9.70056598 21.7605385,7.57354347 20.5064629,5.84383271 C20.4001403,6.08797077 20.2786488,6.32776933 20.1420569,6.56045791 C19.6529769,7.39362115 19.0211263,8.04885391 18.2236069,8.4476136 C18.116852,8.50099106 17.9945243,8.51441924 17.8787323,8.48547125 C17.1213112,8.29611598 16.2730633,8.42550972 15.5194016,8.76808324 C15.4120694,8.8168706 15.311393,8.86834442 15.2212815,8.91939342 C15.3758397,9.13872547 15.5121533,9.44214137 15.6556647,9.82483828 C15.7425623,10.0565654 15.8224569,10.3023949 15.8940626,10.5479 C15.9099695,10.6024381 15.9242279,10.6526162 15.936746,10.6976591 C15.9817558,10.7139633 16.0390743,10.7226222 16.1111112,10.7226222 C16.244513,10.7226222 16.4026059,10.6910036 16.5641084,10.6371695 C16.6644473,10.6037232 16.7405545,10.5711058 16.7763933,10.5531864 C16.9688876,10.4569392 17.2013734,10.4946665 17.3535535,10.6468466 C17.9666352,11.2599283 17.8994637,12.0457282 17.3764132,12.891489 C17.1636814,13.2354716 16.8835363,13.5838209 16.5113544,13.9891078 C16.3452937,14.1699392 15.8094146,14.7272303 15.7254671,14.8186341 C15.6639039,14.8856654 15.6115692,14.9485816 15.5728636,14.9884083 L15.549,15.009 L15.562491,15.0154955 C15.5792749,15.0269977 15.6005688,15.0465093 15.6271072,15.0699255 C15.6610053,15.0996564 15.6610053,15.0996564 15.6981704,15.1319703 C15.9818673,15.3790049 16.108959,15.5200627 16.1927277,15.7685048 C16.3193079,16.1439179 16.1908807,16.5166262 15.8535535,16.8539534 C15.3710447,17.3364622 14.8857767,17.6546664 14.4857256,17.8424151 C14.3793634,19.0835073 13.6851801,19.874825 12.624295,20.2520286 C12.0707177,20.4488561 11.5836279,20.5004 11,20.5004 C10.2003237,20.5004 9,18.3398174 9,17.5004 C9,17.1849841 9.0789272,16.9745117 9.30278644,16.5267932 C9.45392721,16.2245117 9.5,16.1016508 9.5,16.0004 C9.5,15.9743641 9.44026873,15.8399686 9.32471563,15.666639 C9.26393424,15.5754669 9.19134806,15.4774756 9.10956563,15.3752475 C8.93553784,15.1577128 8.75951945,14.9670262 8.64644664,14.8539534 C8.55267845,14.7601852 8.5,14.6330082 8.5,14.5004 C8.5,13.9022524 8.37102724,13.6515053 8.12508139,13.5427714 C7.88430869,13.4363245 7.58378355,13.4253963 6.77158047,13.4718079 C6.407352,13.4926209 6.22195118,13.5004 6,13.5004 C5.10747905,13.5004 4.52026013,12.9784276 4.21933541,12.1759617 C4.05362035,11.7340549 4,11.3050921 4,11.0004 C4,10.8535339 4.01334161,10.6107166 4.05284729,10.3025723 C4.11856962,9.78993809 4.23709895,9.27631102 4.42363216,8.79132466 C4.88596035,7.58927139 5.69068108,6.75236184 6.90194195,6.51010966 C8.32402697,6.22569266 9.22046157,6.35375475 9.69355343,6.82684661 C9.82572604,6.95901922 9.90858006,7.09912092 9.95431923,7.23336003 C10.2579612,7.45628068 10.7245698,7.4977415 11.4178006,7.38220304 C11.6210844,7.3483224 11.8239522,7.30566327 12.128311,7.23542662 C12.5927136,7.12825681 12.8575252,7.06874448 13.0523402,7.03643643 C13.0564778,6.99705796 13.0606685,6.95577845 13.0648628,6.91278752 C13.0966406,6.58706407 13.1178156,6.26476938 13.1234982,5.96643347 C13.1312,5.56208628 13.1088274,5.2333999 13.0580415,5.02398035 C11.7972292,5.55691848 10.6326539,4.94336052 10.5021406,3.54661615 C10.4234547,2.69897983 11.0763806,2.05388562 12.2325347,1.50343117 C12.1557731,1.50085053 12.0779858,1.5 12,1.5 Z M14.3767331,1.77021949 L14.0700371,1.86405514 C13.826699,1.94118238 13.5879222,2.02375169 13.3581611,2.1114913 C12.1512717,2.57237019 11.4640138,3.08958335 11.4978314,3.45388206 C11.5655289,4.17837461 12.0561061,4.41332996 12.7763933,4.0531864 C13.350198,3.76628402 13.8149712,4.08317482 13.9953544,4.66297783 C14.098163,4.99343393 14.1337417,5.43816872 14.1233168,5.98547764 C14.1170827,6.31276673 14.0942623,6.66010745 14.0601374,7.00988748 C14.0359128,7.25818933 14.0115848,7.4548408 13.9949748,7.57111068 C13.9597856,7.81743505 13.7488253,8.0004 13.5,8.0004 C13.2851692,8.0004 13.1240283,8.03192757 12.3531706,8.20981782 C12.0303364,8.28431801 11.8104634,8.33055299 11.5821996,8.36859696 C10.5197136,8.54567794 9.73055924,8.43806598 9.14644665,7.85395339 C9.079013,7.78651974 9.03283018,7.70180772 9.01220839,7.61022306 L9,7.517 L8.99943457,7.53645564 C8.99813148,7.5443497 8.99482173,7.54232848 8.98644665,7.53395339 C8.79953851,7.34704525 8.2259731,7.26510734 7.09805809,7.49069034 C6.26789883,7.65672219 5.70712115,8.23993097 5.35697777,9.15030374 C5.20199415,9.55326117 5.10097693,9.99100244 5.04472896,10.4297366 C5.01105246,10.6924133 5,10.8935679 5,11.0004 C5,11.1957079 5.04012966,11.5167451 5.1556646,11.8248383 C5.32348988,12.2723724 5.58002097,12.5004 6,12.5004 C6.19703033,12.5004 6.36878108,12.4931937 6.71453068,12.4734366 C7.70836542,12.416646 8.08169799,12.4302217 8.52943256,12.6281675 C9.13143953,12.894318 9.45091915,13.4487607 9.49476544,14.2931922 C9.61228831,14.4188605 9.75088147,14.5761113 9.89043445,14.7505525 C9.98920758,14.8740189 10.0786584,14.9947775 10.1567659,15.1119388 C10.3745462,15.4386091 10.5,15.7208804 10.5,16.0004 C10.5,16.3158159 10.4210729,16.5262883 10.1972136,16.9740068 C10.0460729,17.2762883 10,17.3991492 10,17.5004 C10,17.6328627 10.2206944,18.1930868 10.4995787,18.6950785 C10.7529627,19.1511698 11.0463161,19.5004 11,19.5004 C11.4781006,19.5004 11.8698558,19.4589444 12.2892854,19.3098139 C13.0662009,19.0335773 13.5,18.490525 13.5,17.5004 C13.5,17.2851848 13.6377151,17.0941154 13.8418862,17.0260584 C13.9076499,17.0041371 14.043539,16.9458989 14.2259286,16.8445714 C14.5386534,16.6708354 14.8529204,16.4403729 15.1464467,16.1468466 C15.2055454,16.0877479 15.2255877,16.0689671 15.2349261,16.0706208 L15.238,16.073 L15.2267627,16.059556 C15.2011791,16.0316255 15.144532,15.9758651 15.0414748,15.886126 C15.0046753,15.8541351 15.0046753,15.8541351 14.9654856,15.8197634 C14.6506827,15.5419962 14.5,15.3400173 14.5,15.0004 C14.5,14.6159324 14.9394765,14.1374212 15.7748061,13.3127228 C16.108023,12.9498668 16.3526335,12.6457033 16.5259161,12.3655093 C16.7248574,12.0438257 16.8058936,11.8040803 16.7807227,11.6172758 C16.5580348,11.6834724 16.3334046,11.7226222 16.1111112,11.7226222 C15.7386284,11.7226222 15.4033591,11.6108658 15.1464467,11.3539534 C15.0823673,11.289874 15.0369079,11.209584 15.0149288,11.1216678 C15.0007821,11.0650809 14.9731269,10.9618348 14.9340626,10.8279 C14.8689495,10.6046551 14.7965003,10.3817346 14.7193355,10.1759617 C14.624559,9.92322447 14.5298008,9.71647928 14.4431884,9.57789947 C14.4013916,9.51102451 14.3908615,9.50089701 14.491742,9.50041858 C14.1468247,9.49876779 13.8313621,9.21930184 13.9418833,8.80735915 C13.9848531,8.64719901 14.079908,8.5277167 14.2212901,8.40121684 C14.424778,8.21914878 14.7420917,8.02294718 15.1055986,7.85771676 C15.9888589,7.4562348 16.9833891,7.28735232 17.9271957,7.47212035 C18.465705,7.1619117 18.9148756,6.67564683 19.2796635,6.05421928 C19.4847258,5.70488911 19.6521475,5.33177809 19.7847225,4.95477204 C18.3716748,3.39427524 16.4971374,2.26103504 14.3767331,1.77021949 Z"/>
542
+ </symbol>
543
+ <symbol id="icon-customers" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
544
+ <path stroke="none" fill-rule="evenodd" d="M24,21.6011958 C24,21.0017084 23.9,20.3023063 23.9,19.7028188 C23.8,18.8035875 23.7,18.0042709 23.5,17.504698 C23.1,16.2058084 21,15.106748 17,13.6080293 L17,12.708798 C17.1,12.6088834 17.3,12.4090543 17.4,12.1093105 C17.7,11.509823 17.9,10.810421 18,9.91118971 C19,9.51153138 19,7.81298348 18.2,7.21349599 C18.3,7.11358141 18.3,6.91375224 18.4,6.71392308 C18.6,6.11443558 18.8,5.61486267 18.8,5.01537518 C18.8,4.71563143 18.8,4.41588768 18.7,4.11614393 C18.3,2.6174252 15.9,1.41845021 14.3,2.51751062 C14.1,2.71733978 14,3.01708353 14.2,3.21691269 C14.4,3.41674186 14.7,3.51665644 14.9,3.31682728 C15.9,2.6174252 17.6,3.51665644 17.8,4.3159731 C17.8,4.51580226 17.9,4.71563143 17.8,4.91546059 C17.8,5.31511892 17.6,5.71477725 17.4,6.21435016 C17.4,6.11443558 17,7.21349599 17,7.31341057 C17,7.7130689 17.2,8.01281265 17.5,8.01281265 C17.8,8.01281265 17.8,9.01195847 17.5,9.01195847 C17.2,9.01195847 17,9.21178763 17,9.51153138 C17,10.5106772 16.8,11.2100793 16.6,11.7096522 C16.5,12.0093959 16.3,12.1093105 16.3,12.1093105 C16.2,12.2092251 16.1,12.4090543 16.1,12.5089689 L16.1,14.0076876 C16.1,14.2075168 16.2,14.4073459 16.4,14.5072605 C20.2,15.9060647 22.3,17.1050396 22.6,17.9043563 C22.7,18.3040146 22.9,19.0034167 22.9,19.9026479 C23,20.5021354 23,21.1016229 23,21.7011104 C23,21.801025 23,21.9009396 23,22.0008542 L21,22.0008542 C20.7,22.0008542 20.5,22.2006833 20.5,22.5004271 C20.5,22.8001708 20.7,23 21,23 L23.5,23 C23.8,23 24,22.8001708 24,22.5004271 C24,22.3005979 24,22.0008542 24,21.6011958 Z M18.9,19.7028188 C18.8,18.8035875 18.7,18.0042709 18.5,17.504698 C18.2,16.7053813 17.3,16.1058938 15.7,15.4064917 C15.1,15.106748 12.9,14.3074313 12,14.0076876 L12,12.1093105 C12.1,12.0093959 12.3,11.8095668 12.4,11.509823 C12.7,11.0102501 12.9,10.310848 13,9.4116168 C13.9,9.01195847 14,7.31341057 13.2,6.71392308 C13.2,6.71392308 13.2,6.71392308 13.2,6.61400849 C13.3,6.51409391 13.3,6.41417933 13.4,6.31426475 C13.7,5.61486267 13.9,4.91546059 13.8,4.3159731 C13.8,4.11614393 13.8,4.01622935 13.7,3.81640019 C13.1,1.51836479 7.5,1.41845021 6.3,3.41674186 C5.1,3.31682728 4.6,4.21605852 4.7,5.51494809 C4.7,5.81469183 4.8,6.11443558 4.9,6.41417933 C4.9,6.51409391 5,7.01366682 5,7.01366682 L5,9.01195847 C5,10.2109335 5.4,11.1101647 6.2,11.8095668 C6.5,12.0093959 6.7,12.2092251 7,12.3091397 L7,14.1076022 C6.7,14.2075168 6.4,14.3074313 6,14.5072605 C5.6,14.6071751 5.4,14.7070897 5.2,14.8070042 C2.1,15.9060647 0.9,16.6054667 0.5,17.6046126 C0.3,18.1041855 0.2,18.9035021 0.1,19.8027334 C0.1,20.4022209 0,21.0017084 0,21.6011958 C0,22.0008542 0,22.3005979 0,22.5004271 C0,22.8001708 0.2,23 0.5,23 L18.5,23 C18.8,23 19,22.8001708 19,22.5004271 C19,22.3005979 19,22.0008542 19,21.6011958 C19,21.0017084 18.9,20.4022209 18.9,19.7028188 Z M1,22.0008542 C1,21.9009396 1,21.801025 1,21.7011104 C1,21.1016229 1.1,20.4022209 1.1,19.9026479 C1.2,19.0034167 1.3,18.4039292 1.4,17.9043563 C1.6,17.3048688 2.8,16.7053813 5.4,15.8061501 C5.6,15.7062355 5.8,15.7062355 6.2,15.5064063 C6.8,15.3065772 7.2,15.106748 7.6,15.0068334 C7.9,14.9069188 8,14.7070897 8,14.5072605 L8,12.0093959 C8,11.8095668 7.9,11.6097376 7.6,11.509823 C7.5,11.4099084 7.1,11.3099939 6.8,11.0102501 C6.3,10.5106772 6,9.91118971 6,9.01195847 L6,7.01366682 C6,6.91375224 5.8,6.21435016 5.8,6.21435016 C5.8,5.91460642 5.7,5.61486267 5.7,5.41503351 C5.6,4.61571685 5.8,4.3159731 6.5,4.51580226 C6.8,4.51580226 7,4.3159731 7.1,4.11614393 C7.4,2.71733978 12.4,2.71733978 12.8,4.11614393 C12.8,4.21605852 12.8,4.3159731 12.8,4.41588768 C12.8,4.81554601 12.7,5.31511892 12.4,5.91460642 C12.4,6.014521 12.3,6.11443558 12.3,6.21435016 C12.3,6.31426475 12.2,6.31426475 12.2,6.51409391 C12,6.71392308 12,6.81383766 12,7.01366682 C12,7.31341057 12.2,7.51323973 12.5,7.51323973 C12.8,7.51323973 12.8,8.51238556 12.5,8.51238556 C12.2,8.51238556 12,8.71221472 12,9.01195847 C12,10.0111043 11.8,10.7105064 11.6,11.2100793 C11.5,11.509823 11.3,11.6097376 11.3,11.6097376 C11.1,11.6097376 11,11.8095668 11,12.0093959 L11,14.5072605 C11,14.7070897 11.1,14.9069188 11.3,15.0068334 C11.5,15.106748 14.5,16.2058084 15.3,16.5055521 C16.7,17.1050396 17.4,17.6046126 17.6,18.0042709 C17.7,18.4039292 17.9,19.1033313 17.9,20.0025625 C18,20.60205 18,21.2015375 18,21.801025 C18,21.9009396 18,22.0008542 18,22.1007688 L1,22.0008542 L1,22.0008542 Z"/>
545
+ </symbol>
546
+ <symbol id="icon-dashboard" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
547
+ <path stroke="none" fill-rule="evenodd" d="M5.3,12.7 L3.4,11.9 C3.1,11.8 2.9,11.9 2.7,12.2 C2.5,12.5 2.7,12.7 3,12.9 L4.8,13.7 C4.9,13.7 4.9,13.7 5,13.7 C5.2,13.7 5.4,13.6 5.5,13.4 C5.6,13.1 5.5,12.8 5.3,12.7 Z M12,9 C12.3,9 12.5,8.8 12.5,8.5 L12.5,6.5 C12.5,6.2 12.3,6 12,6 C11.7,6 11.5,6.2 11.5,6.5 L11.5,8.5 C11.5,8.8 11.7,9 12,9 Z M5.6,8.9 C5.4,8.7 5.1,8.7 4.9,8.9 C4.7,9.1 4.7,9.4 4.9,9.6 L6.3,11 C6.4,11.1 6.5,11.1 6.7,11.1 C6.9,11.1 7,11.1 7,11.1 C7.2,10.9 7.2,10.6 7,10.4 L5.6,8.9 Z M14.7,9.5 C14.8,9.5 14.8,9.5 14.9,9.5 C15.1,9.5 15.3,9.4 15.4,9.2 L16.2,7.4 C16.3,7.1 16.2,6.9 15.9,6.7 C15.6,6.6 15.4,6.7 15.2,7 L14.4,8.8 C14.3,9.1 14.4,9.4 14.7,9.5 Z M4.5,16 L2.5,16 C2.2,16 2,16.2 2,16.5 C2,16.8 2.2,17 2.5,17 L4.5,17 C4.8,17 5,16.8 5,16.5 C5,16.2 4.8,16 4.5,16 Z M18.5,13.3 C18.6,13.5 18.8,13.6 19,13.6 C19.1,13.6 19.1,13.6 19.2,13.6 L21,12.8 C21.3,12.7 21.4,12.4 21.3,12.1 C21.2,11.8 20.9,11.7 20.6,11.8 L18.8,12.6 C18.5,12.8 18.4,13.1 18.5,13.3 Z M12,4 C5.4,4 0,9.4 0,16 L0,20.5 C0,20.8 0.2,21 0.5,21 L23.5,21 C23.8,21 24,20.8 24,20.5 L24,16 C24,9.4 18.6,4 12,4 Z M23,20 L1,20 L1,16 C1,9.9 5.9,5 12,5 C18.1,5 23,9.9 23,16 L23,20 Z M18.4,9.6 C18.2,9.4 17.9,9.4 17.7,9.6 L13,14.3 C12.7,14.1 12.4,14 12,14 C10.9,14 10,14.9 10,16 C10,17.1 10.9,18 12,18 C13.1,18 14,17.1 14,16 C14,15.6 13.9,15.3 13.7,15 L18.3,10.4 C18.6,10.1 18.6,9.8 18.4,9.6 Z M12,17 C11.4,17 11,16.6 11,16 C11,15.4 11.4,15 12,15 C12.6,15 13,15.4 13,16 C13,16.6 12.6,17 12,17 Z M8.8,7 C8.7,6.8 8.4,6.7 8.2,6.8 C7.9,6.9 7.8,7.2 7.9,7.4 L8.7,9.2 C8.8,9.4 9,9.5 9.2,9.5 C9.3,9.5 9.3,9.5 9.4,9.5 C9.7,9.4 9.8,9.1 9.7,8.8 L8.8,7 Z M19,16.5 C19,16.8 19.2,17 19.5,17 L21.5,17 C21.8,17 22,16.8 22,16.5 C22,16.2 21.8,16 21.5,16 L19.5,16 C19.2,16 19,16.2 19,16.5 Z"/>
548
+ </symbol>
549
+ <symbol id="icon-delete" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
550
+ <path stroke="none" fill-rule="evenodd" d="M20.0375,2.625 L14.35,2.625 L14.35,0.4375 C14.35,0.175 14.175,0 13.9125,0 L6.9125,0 C6.65,0 6.475,0.175 6.475,0.4375 L6.475,2.625 L0.7875,2.625 C0.525,2.625 0.35,2.8 0.35,3.0625 C0.35,3.325 0.525,3.5 0.7875,3.5 L2.975,3.5 L2.975,20.5625 C2.975,20.825 3.15,21 3.4125,21 L17.4125,21 C17.675,21 17.85,20.825 17.85,20.5625 L17.85,3.5 L20.0375,3.5 C20.3,3.5 20.475,3.325 20.475,3.0625 C20.475,2.8 20.3,2.625 20.0375,2.625 Z M7.35,0.875 L13.475,0.875 L13.475,2.625 L7.35,2.625 L7.35,0.875 Z M16.975,20.125 L3.85,20.125 L3.85,3.5 L16.975,3.5 L16.975,20.125 Z M6.9125,16.625 C7.175,16.625 7.35,16.45 7.35,16.1875 L7.35,6.5625 C7.35,6.3 7.175,6.125 6.9125,6.125 C6.65,6.125 6.475,6.3 6.475,6.5625 L6.475,16.1875 C6.475,16.45 6.65,16.625 6.9125,16.625 Z M10.4125,16.625 C10.675,16.625 10.85,16.45 10.85,16.1875 L10.85,6.5625 C10.85,6.3 10.675,6.125 10.4125,6.125 C10.15,6.125 9.975,6.3 9.975,6.5625 L9.975,16.1875 C9.975,16.45 10.2375,16.625 10.4125,16.625 Z M13.9125,16.625 C14.175,16.625 14.35,16.45 14.35,16.1875 L14.35,6.5625 C14.35,6.3 14.175,6.125 13.9125,6.125 C13.65,6.125 13.475,6.3 13.475,6.5625 L13.475,16.1875 C13.475,16.45 13.65,16.625 13.9125,16.625 Z"/>
551
+ </symbol>
552
+ <symbol id="icon-dependent-scope" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
553
+ <path stroke="none" fill-rule="evenodd" d="M12.2436796,17.7662798 L6.13132041,17.7662798 C6.22425178,18.0182902 6.275,18.2907187 6.275,18.575 C6.275,19.8659656 5.2284656,20.9125 3.9375,20.9125 C2.6465344,20.9125 1.6,19.8659656 1.6,18.575 C1.6,17.2840344 2.6465344,16.2375 3.9375,16.2375 C4.49947362,16.2375 5.01512823,16.4358152 5.41829798,16.7662798 L12.956702,16.7662798 C13.2201635,16.5503293 13.5316595,16.3908106 13.8727261,16.3061874 L14.0068576,15.6532516 L3.81767011,15.6532516 C3.61149236,15.6532516 3.42645558,15.5266957 3.35169663,15.334549 L0.0708486772,6.90205791 C-0.0566813617,6.57427804 0.185106991,6.22076058 0.536822151,6.22076058 L15.944559,6.22076058 L16.9265071,1.44075863 C16.9742703,1.20825303 17.1789186,1.04137178 17.4162795,1.04137178 L19.9508282,1.04137178 C20.2269705,1.04137178 20.4508282,1.26522941 20.4508282,1.54137178 C20.4508282,1.81751416 20.2269705,2.04137178 19.9508282,2.04137178 L17.8240065,2.04137178 L14.898387,16.2829261 C15.9686274,16.4969424 16.775,17.441802 16.775,18.575 C16.775,19.8659656 15.7284656,20.9125 14.4375,20.9125 C13.1465344,20.9125 12.1,19.8659656 12.1,18.575 C12.1,18.2907187 12.1507482,18.0182902 12.2436796,17.7662798 Z M9.46345215,10.7801302 L10.6694546,9.55327421 C10.8630359,9.35634558 11.1796067,9.35363205 11.3765354,9.54721336 C11.573464,9.74079468 11.5761775,10.0573655 11.3825962,10.2542942 L9.2885563,12.3845432 C9.09262423,12.5838632 8.77134671,12.5838632 8.57541465,12.3845432 L6.48137473,10.2542942 C6.28779341,10.0573655 6.29050695,9.74079468 6.48743558,9.54721336 C6.68436421,9.35363205 7.00093507,9.35634558 7.19451638,9.55327421 L8.46345215,10.8441518 L8.46345215,7.22076058 L1.26786948,7.22076058 L4.15964523,14.6532516 L14.212286,14.6532516 L15.7391306,7.22076058 L9.46345215,7.22076058 L9.46345215,10.7801302 Z M3.9375,19.9125 C4.67618085,19.9125 5.275,19.3136809 5.275,18.575 C5.275,17.8363191 4.67618085,17.2375 3.9375,17.2375 C3.19881915,17.2375 2.6,17.8363191 2.6,18.575 C2.6,19.3136809 3.19881915,19.9125 3.9375,19.9125 Z M14.4375,19.9125 C15.1761809,19.9125 15.775,19.3136809 15.775,18.575 C15.775,17.8363191 15.1761809,17.2375 14.4375,17.2375 C13.6988191,17.2375 13.1,17.8363191 13.1,18.575 C13.1,19.3136809 13.6988191,19.9125 14.4375,19.9125 Z"/>
554
+ </symbol>
555
+ <symbol id="icon-dot-menu" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15">
556
+ <path stroke="none" fill-rule="evenodd" d="M2.5,9 C1.67157288,9 1,8.32842712 1,7.5 C1,6.67157288 1.67157288,6 2.5,6 C3.32842712,6 4,6.67157288 4,7.5 C4,8.32842712 3.32842712,9 2.5,9 Z M7.5,9 C6.67157288,9 6,8.32842712 6,7.5 C6,6.67157288 6.67157288,6 7.5,6 C8.32842712,6 9,6.67157288 9,7.5 C9,8.32842712 8.32842712,9 7.5,9 Z M12.5,9 C11.6715729,9 11,8.32842712 11,7.5 C11,6.67157288 11.6715729,6 12.5,6 C13.3284271,6 14,6.67157288 14,7.5 C14,8.32842712 13.3284271,9 12.5,9 Z"/>
557
+ </symbol>
558
+ <symbol id="icon-dropdown-chevron-down" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10">
559
+ <polyline fill="none" stroke-linecap="round" stroke-linejoin="round" points="9 3 5 7 1 3"/>
560
+ </symbol>
561
+ <symbol id="icon-dropdown-chevron-right" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10">
562
+ <polyline fill="none" stroke-linecap="round" stroke-linejoin="round" points="9 3 5 7 1 3" transform="rotate(-90 5 5)"/>
563
+ </symbol>
564
+ <symbol id="icon-dropdown-chevron-up" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10">
565
+ <polyline fill="none" stroke-linecap="round" stroke-linejoin="round" points="9 3 5 7 1 3" transform="rotate(-180 5 5)"/>
566
+ </symbol>
567
+ <symbol id="icon-edge" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24"><linearGradient id="EdgeA" gradientUnits="userSpaceOnUse" x1="5.528" y1="16.566" x2="22.24" y2="16.566">
568
+ <stop offset="0" stop-color="#0c59a4"/>
569
+ <stop offset="1" stop-color="#114a8b"/>
570
+ </linearGradient>
571
+ <use xlink:href="#EdgeH" fill="url(#EdgeA)"/>
572
+ <radialGradient id="EdgeB" cx="839.093" cy="-912.225" r="1.044" gradientTransform="matrix(8.563,0,0,8.1348,-7170.3892,7437.5156)" gradientUnits="userSpaceOnUse">
573
+ <stop offset=".72" stop-opacity="0"/>
574
+ <stop offset=".95" stop-opacity=".53"/>
575
+ <stop offset="1"/>
576
+ </radialGradient>
577
+ <use xlink:href="#EdgeH" opacity=".35" fill="url(#EdgeB)" enable-background="new"/>
578
+ <linearGradient id="EdgeC" gradientUnits="userSpaceOnUse" x1="14.346" y1="9.322" x2="3.905" y2="20.695">
579
+ <stop offset="0" stop-color="#1b9de2"/>
580
+ <stop offset=".16" stop-color="#1595df"/>
581
+ <stop offset=".67" stop-color="#0680d7"/>
582
+ <stop offset="1" stop-color="#0078d4"/>
583
+ </linearGradient>
584
+ <use xlink:href="#EdgeI" fill="url(#EdgeC)"/>
585
+ <radialGradient id="EdgeD" cx="597.16" cy="-1154.837" r="1.568" gradientTransform="matrix(1.2844,-8.4773,6.8504,1.0276,7150.6665,6267.6426)" gradientUnits="userSpaceOnUse">
586
+ <stop offset=".76" stop-opacity="0"/>
587
+ <stop offset=".95" stop-opacity=".5"/>
588
+ <stop offset="1"/>
589
+ </radialGradient>
590
+ <use xlink:href="#EdgeI" opacity=".41" fill="url(#EdgeD)" enable-background="new"/>
591
+ <radialGradient id="EdgeE" cx="1214.536" cy="-1357.069" r="2.216" gradientTransform="matrix(-0.3425 8.563 -18.2391 -0.685 -24333.3242 -11325.2383)" gradientUnits="userSpaceOnUse">
592
+ <stop offset="0" stop-color="#35c1f1"/>
593
+ <stop offset=".11" stop-color="#34c1ed"/>
594
+ <stop offset=".23" stop-color="#2fc2df"/>
595
+ <stop offset=".31" stop-color="#2bc3d2"/>
596
+ <stop offset=".67" stop-color="#36c752"/>
597
+ </radialGradient>
598
+ <use xlink:href="#EdgeJ" fill="url(#EdgeE)"/>
599
+ <radialGradient id="EdgeF" cx="1336.106" cy="-958.269" r="1.066" gradientTransform="matrix(2.3976,8.2205,-6.6791,1.9695,-9581.3789,-9088.8467)" gradientUnits="userSpaceOnUse">
600
+ <stop offset="0" stop-color="#66eb6e"/>
601
+ <stop offset="1" stop-color="#66eb6e" stop-opacity="0"/>
602
+ </radialGradient>
603
+ <use xlink:href="#EdgeJ" fill="url(#EdgeF)"/>
604
+ <defs>
605
+ <path id="EdgeH" d="M21.7 17.9c-.3.2-.6.3-1 .4-1.1.4-2.2.6-3.4.6-4.4 0-8.3-3.1-8.3-7 0-1.1.6-2 1.5-2.6-4 .2-5 4.3-5 6.8 0 6.9 6.4 7.6 7.8 7.6.7 0 1.9-.2 2.5-.4h.1c2.6-.9 4.8-2.6 6.2-4.9.1-.2.1-.4-.1-.5-.1-.1-.2-.1-.3 0h0z"/>
606
+ <path id="EdgeI" d="M9.9 22.6c-.8-.5-1.6-1.2-2.1-2-2.5-3.4-1.7-8.1 1.7-10.6.4-.3.7-.5 1.1-.7.2-.1.7-.3 1.4-.3.9 0 1.8.5 2.4 1.2.4.5.6 1.1.6 1.7 0 0 2.3-7.5-7.5-7.5-4.1.1-7.5 4-7.5 7.4 0 1.8.4 3.6 1.1 5.2 2.6 5.5 8.9 8.2 14.7 6.3-2 .7-4.1.4-5.9-.7h0z"/>
607
+ <path id="EdgeJ" d="M14.3 14c-.1.1-.3.2-.3.5 0 .2.2.5.4.7 1.3.9 3.9.8 3.9.8 1 0 2-.3 2.8-.8 1.8-1 2.8-2.9 2.9-5 0-2.1-.7-3.5-1.1-4.1C20.9 2.2 16.7 0 12 0 5.4 0 .1 5.3 0 11.8c0-3.4 3.4-6.2 7.5-6.2.3 0 2.2 0 3.9.9 1.5.8 2.3 1.8 2.9 2.7.6 1 .7 2.3.7 2.8 0 .6-.2 1.3-.7 2z"/>
608
+ </defs>
609
+ </symbol>
610
+ <symbol id="icon-edit" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
611
+ <path stroke="none" fill-rule="evenodd" d="M7.1625566,18.6855797 C7.15603101,18.6929152 7.14925216,18.7001046 7.14222006,18.7071367 C7.13517241,18.7141844 7.12796672,18.7209776 7.12061439,18.7275165 L6.93219739,18.9159094 C6.86637603,18.9817223 6.78349056,19.0278556 6.6928716,19.0491159 L1.30453827,20.3132825 C0.94325229,20.3980445 0.618780344,20.0735614 0.70355473,19.7122783 L1.9677214,14.3247783 C1.98898221,14.2341711 2.03510978,14.1512961 2.10091262,14.0854806 L2.28983159,13.8965253 C2.29634032,13.8892112 2.30310088,13.8820423 2.31011328,13.8750299 C2.31710236,13.8680409 2.32424687,13.8613019 2.33153568,13.8548132 L13.3308258,2.85340783 C13.3316485,2.85257785 13.3324746,2.85175003 13.3333042,2.8509244 L14.5030049,1.68100331 C14.5057501,1.67812614 14.5085362,1.67527366 14.5113633,1.67244661 C14.5141671,1.66964278 14.5169959,1.66687922 14.5198491,1.66415591 L15.1003396,1.08355381 C15.9472542,0.237722152 17.3194956,0.237722152 18.1654701,1.08369663 L19.9341131,2.85150651 C20.7790357,3.69751233 20.7790357,5.06857125 19.9338641,5.91590939 L19.3787968,6.47090545 C19.3685479,6.48335133 19.3576057,6.49541776 19.3459701,6.50705339 C19.3343188,6.51870463 19.3222356,6.52966064 19.309772,6.53992143 L18.192426,7.65712426 C18.1811998,7.67098158 18.169123,7.68437754 18.1561958,7.69724226 C18.1438449,7.70953346 18.1310128,7.72104603 18.1177605,7.73178011 L7.1625566,18.6855797 Z M3.37134428,14.2291542 L6.78807776,17.6458876 L17.0952838,7.34000334 L13.6851797,3.91333521 L3.37134428,14.2291542 Z M2.8158286,15.087852 L1.86136465,19.1554918 L5.92912393,18.2011474 L2.8158286,15.087852 Z M14.3922207,3.2061582 L17.8024379,6.63293993 L18.2836247,6.15181484 L14.8650489,2.73323905 L14.3922207,3.2061582 Z M15.5720877,2.02606428 L18.9907769,5.44475341 L19.2263275,5.20923293 C19.6816309,4.75276209 19.6816309,4.013821 19.2268633,3.55847004 L17.4584466,1.79088672 C17.0028377,1.33527785 16.2634124,1.33527785 15.8072541,1.79085273 L15.5720877,2.02606428 Z"/>
612
+ </symbol>
613
+ <symbol id="icon-email-template-variables" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
614
+ <path stroke="none" fill-rule="evenodd" d="M19.5,-1.77635684e-14 C19.7454599,-1.77635684e-14 19.9496084,0.176875161 19.9919443,0.410124368 L20,0.5 L20,8.486 L23.7832644,11.087979 C23.7972097,11.097609 23.8058014,11.1040972 23.8142024,11.1108849 L23.7832644,11.087979 C23.8084004,11.10526 23.8316617,11.1246284 23.8528803,11.1457645 C23.8610613,11.153801 23.8690127,11.1623063 23.8767019,11.1711364 C23.88643,11.1823769 23.895375,11.1935879 23.9038117,11.2051442 C23.907644,11.210372 23.9118918,11.2164499 23.9160251,11.2226499 L23.9302284,11.2452372 C23.9358576,11.2547444 23.9411698,11.2644345 23.9461563,11.2742908 L23.9160251,11.2226499 C23.9364892,11.2533459 23.9531111,11.2854818 23.9660044,11.3184902 C23.9715731,11.3330523 23.9766182,11.3480426 23.9809493,11.3632742 C23.9836803,11.3723913 23.9860519,11.3817503 23.9881446,11.3911447 C23.9889496,11.3953557 23.9897385,11.3991118 23.9904845,11.4028795 L23.9952213,11.4302067 C23.997805,11.4486346 23.9993452,11.4671338 23.9998595,11.485616 L24,11.5 L24,22 C24,23.0539541 23.183733,23.9181281 22.1492093,23.9945117 L22,24 L2,24 C0.946045915,24 0.0818719427,23.183733 0.00548826356,22.1492093 L0,22 L0,11.5 L0.000140515329,11.485616 C0.000701566161,11.4654536 0.00248349015,11.4452709 0.00550924594,11.4251827 L0,11.5 C0,11.4631331 0.0040640316,11.4267953 0.0118952731,11.3915509 C0.0248876585,11.3326414 0.0487343085,11.2755107 0.0839748528,11.2226499 C0.119393981,11.1695212 0.163221385,11.1253579 0.212515446,11.0907482 L0.216735589,11.087979 L4,8.486 L4,0.5 C4,0.254540111 4.17687516,0.0503916296 4.41012437,0.00805566941 L4.5,-1.77635684e-14 L19.5,-1.77635684e-14 Z M19,0.999 L5,0.999 L5,13.898 L6.7773501,15.0839749 C7.00711444,15.2371511 7.06920138,15.5475858 6.91602515,15.7773501 C6.7798685,15.9815851 6.51945827,16.0533342 6.30189943,15.9591765 L6.2226499,15.9160251 L1,12.435 L1,22 C1,22.5124392 1.38640848,22.9354505 1.88345779,22.9932662 L2,23 L22,23 C22.5124392,23 22.9354505,22.6135915 22.9932662,22.1165422 L23,22 L23,12.434 L17.7773501,15.9160251 C17.5475858,16.0692014 17.2371511,16.0071144 17.0839749,15.7773501 C16.9478182,15.5731151 16.981746,15.3051406 17.1523373,15.1405316 L17.2226499,15.0839749 L19,13.897 L19,0.999 Z M15.5,16 C15.5851518,16 15.6684021,16.0217352 15.7421072,16.0625244 L15.8123475,16.1095656 L20.8123475,20.1095656 C21.0279785,20.2820704 21.0629392,20.5967166 20.8904344,20.8123475 C20.7370968,21.0040195 20.47145,21.0529396 20.2628659,20.9402888 L20.1876525,20.8904344 L15.323,16.999 L8.676,16.999 L3.81234752,20.8904344 C3.62067555,21.043772 3.35076933,21.0331862 3.17200088,20.8774963 L3.1095656,20.8123475 C2.95622802,20.6206756 2.96681377,20.3507693 3.12250373,20.1720009 L3.18765248,20.1095656 L8.18765248,16.1095656 C8.25414487,16.0563717 8.3327303,16.021338 8.41576513,16.0071458 L8.5,16 L15.5,16 Z M4,9.7 L1.392,11.493 L4,13.232 L4,9.7 Z M20,9.701 L20,13.231 L22.606,11.493 L20,9.701 Z M8.6800999,3.50005062 C8.95621432,3.49612127 9.18323465,3.71677086 9.18716401,3.99288527 C9.19109336,4.26899969 8.97044377,4.49602002 8.69432935,4.49994861 L8.27760165,4.50320939 L8.12170464,4.5 C8.01285353,4.5 7.94971943,4.56351572 7.89789084,4.83893987 L7.86787507,5.03081051 L7.83892086,5.28066202 L7.80056356,5.67605708 C7.73066687,6.35697452 7.58854766,6.87546025 7.30989178,7.22371662 L7.291,7.244 L7.32189039,7.27971073 C7.57693935,7.59923171 7.71713427,8.06088152 7.79080012,8.65806224 L7.86162535,9.37852845 L7.88964652,9.59952351 L7.9196979,9.7658425 C7.96181028,9.95433147 8.01347907,10.0161037 8.09127436,10.0275039 L8.12170464,10.0295669 L8.68721463,10.0295669 C8.963357,10.0295669 9.18721568,10.2534245 9.18721568,10.5295669 C9.18721568,10.7750268 9.01033947,10.9791752 8.77709026,11.0215112 L8.68721463,11.0295669 L8.12170464,11.0295669 C7.26992965,11.0295669 7.0049015,10.5954388 6.87634653,9.55345445 L6.81566902,8.93828681 C6.73130722,8.07277802 6.58559205,7.78469978 6.10226147,7.75301292 L5.99999996,7.75 C5.37100721,7.75 5.33516174,6.85922791 5.89416513,6.75911772 L5.99999996,6.75 L6.09934198,6.74683276 C6.54201994,6.71682794 6.69714745,6.46746814 6.78736981,5.73775702 L6.8286845,5.33629004 C6.95063691,4.03441936 7.17655543,3.49994861 8.14861655,3.50072478 L8.33083767,3.50318339 L8.6800999,3.50005062 Z M15.565511,3.49999895 C16.417286,3.49999895 16.6823141,3.93412703 16.8108691,4.97611137 L16.8715466,5.591279 C16.9559084,6.45678779 17.1016236,6.74486604 17.5849542,6.77655289 L17.6872157,6.77956581 C18.3162084,6.77956581 18.3520539,7.6703379 17.7930505,7.77044809 L17.6872157,7.77956581 L17.5878737,7.78273306 C17.1451957,7.81273787 16.9900682,8.06209767 16.8998458,8.79180879 L16.8585311,9.19327577 C16.7365787,10.4951465 16.5106602,11.0296172 15.5385991,11.028841 L15.356378,11.0263824 L15.0071157,11.0295152 C14.7310013,11.0334445 14.503981,10.812795 14.5000516,10.5366805 C14.4961223,10.2605661 14.7167719,10.0335458 14.9928863,10.0296172 L15.409614,10.0263564 L15.565511,10.0295658 C15.6743621,10.0295658 15.7374962,9.96605009 15.7893248,9.69062595 L15.8193406,9.49875531 L15.8482948,9.2489038 L15.8866521,8.85350873 C15.9565488,8.17259129 16.098668,7.65410556 16.3773239,7.30584919 L16.3962156,7.28556581 L16.3653253,7.24985508 C16.1102763,6.9303341 15.9700814,6.46868429 15.8964155,5.87150357 L15.8255903,5.15103737 L15.7975691,4.93004231 L15.7675177,4.76372331 C15.7254054,4.57523434 15.6737366,4.51346207 15.5959413,4.50206192 L15.565511,4.49999895 L15.000001,4.49999895 C14.7238586,4.49999895 14.5,4.27614132 14.5,3.99999895 C14.5,3.75453906 14.6768762,3.55039058 14.9101254,3.50805461 L15.000001,3.49999895 L15.565511,3.49999895 Z M10.8102878,4.95603593 C11.4246541,4.95603593 11.7534657,5.33998872 12.2346852,6.35357101 L12.4139542,6.1317314 L12.6147457,5.8887544 L12.7903393,5.6839307 C13.1943275,5.2235863 13.4379772,5.00226706 13.7329264,4.96260665 L13.8334331,4.95603593 L14.6305403,4.95603593 C14.9066827,4.95603593 15.1305403,5.17989356 15.1305403,5.45603593 C15.1305403,5.70149582 14.9536652,5.9056443 14.720416,5.94798026 L14.6305403,5.95603593 L13.8772449,5.95672339 C13.9102844,5.95824653 13.912828,5.96272133 13.9012672,5.97414965 L13.885612,5.98804402 C13.8423061,6.02539126 13.7919447,6.07375081 13.7346333,6.13302979 L13.5419548,6.34353217 L13.2867349,6.64450272 L12.699,7.374 L12.7897302,7.56672362 C12.8148142,7.61849862 12.8392082,7.6679802 12.8629223,7.71521485 L12.9971306,7.97203125 L13.1155127,8.17715172 C13.2445838,8.38717046 13.3423438,8.49619758 13.4122956,8.52017282 L13.4405825,8.52528713 L14.1769959,8.52528713 C14.4531383,8.52528713 14.6769959,8.74914476 14.6769959,9.02528713 C14.6769959,9.27074702 14.5001208,9.47489551 14.2668716,9.51723147 L14.1769959,9.52528713 L13.4405825,9.52528713 C12.8881101,9.52528713 12.5563455,9.26098417 12.1585952,8.54016453 L11.998,8.232 L11.7555322,8.51516504 C11.1733903,9.174225 10.7826814,9.48028908 10.3810661,9.52064998 L10.2526165,9.52520826 L9.5532417,9.52022448 C9.27710836,9.51799094 9.05506871,9.29232999 9.05730225,9.01619665 C9.05953579,8.74006331 9.28519674,8.51802365 9.56133008,8.5202572 L10.2881,8.52528713 C10.2985865,8.52528713 10.3157481,8.51750179 10.3391078,8.50220981 L10.4273049,8.43409261 L10.6230709,8.25112493 L10.8864169,7.97622349 L11.2076856,7.61503189 L11.4492748,7.32908545 L11.533,7.225 L11.4347035,7.00590315 L11.2880156,6.69949578 L11.1581492,6.44822113 L11.0461624,6.25044874 L10.9531134,6.10454815 C10.8976285,6.02420937 10.8554742,5.97736482 10.8280614,5.96184055 L10.8102878,5.95603593 L9.94253248,5.95603593 C9.6663901,5.95603593 9.44253248,5.73217831 9.44253248,5.45603593 C9.44253248,5.21057604 9.61940764,5.00642756 9.85265685,4.9640916 L9.94253248,4.95603593 L10.8102878,4.95603593 Z"/>
615
+ </symbol>
616
+ <symbol id="icon-email-templates" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
617
+ <path stroke="none" fill-rule="evenodd" d="M19.1459,9.5 C19.4220424,9.5 19.6459,9.72385763 19.6459,10 L19.6459,10 L19.645,11.038 L19.8407928,11.1266902 C20.0957933,11.2503406 20.3413448,11.3920808 20.5715178,11.5493378 L20.5715178,11.5493378 L20.726,11.661 L21.6147616,11.1456466 C21.8274372,11.022111 22.0933517,11.0729888 22.2469507,11.2541356 L22.2469507,11.2541356 L22.2989622,11.3280857 L23.9309622,14.1560857 C24.0689861,14.3952595 23.9869878,14.7010387 23.7478139,14.8390624 L23.7478139,14.8390624 L22.855,15.354 L22.8729541,15.4950956 C22.8808804,15.5770503 22.8868669,15.658725 22.8908718,15.7401867 L22.8908718,15.7401867 L22.8969,15.984 C22.8969,16.1455461 22.888936,16.3073889 22.8733174,16.4708727 L22.8733174,16.4708727 L22.856,16.614 L23.749656,17.1298465 C23.9622748,17.2524423 24.0507867,17.5076038 23.970993,17.7308039 L23.970993,17.7308039 L23.9330948,17.8126844 L22.3030948,20.6406844 C22.1650133,20.8802515 21.8587016,20.962256 21.6193963,20.8237215 L21.6193963,20.8237215 L20.727,20.306 L20.5725295,20.4190165 C20.3428021,20.5761121 20.0975725,20.7179628 19.8426196,20.8421301 L19.8426196,20.8421301 L19.645,20.932 L19.6459,21.969 C19.6459,22.2144599 19.4690248,22.4186084 19.2357756,22.4609443 L19.2357756,22.4609443 L19.1459,22.469 L15.8809,22.469 C15.6047576,22.469 15.3809,22.2451424 15.3809,21.969 L15.3809,21.969 L15.38,20.932 L15.1754935,20.83951 C14.9166472,20.7144844 14.6684575,20.5724966 14.4378646,20.4161799 L14.4378646,20.4161799 L14.283,20.305 L13.3808287,20.8246294 C13.1682937,20.946637 12.9036222,20.8952574 12.7506475,20.7146243 L12.7506475,20.7146243 L12.6988378,20.6409143 L11.0668378,17.8129143 C10.9287783,17.5736788 11.0108581,17.2678186 11.250144,17.1298465 L11.250144,17.1298465 L12.142,16.614 L12.126492,16.4746955 L12.1088285,16.2291642 L12.1029,15.984 C12.1029,15.8217943 12.1109932,15.659005 12.1268459,15.4950956 L12.1268459,15.4950956 L12.143,15.354 L11.2519861,14.8390624 C11.0393074,14.7163287 10.9509221,14.4609607 11.0309706,14.2377366 L11.0309706,14.2377366 L11.0689704,14.1558561 L12.7029704,11.3278561 C12.8409887,11.0889849 13.1463986,11.0070374 13.3854567,11.1447317 L13.3854567,11.1447317 L14.284,11.662 L14.4389211,11.5521515 C14.6699965,11.3956542 14.9185525,11.2537536 15.1774352,11.1292506 L15.1774352,11.1292506 L15.38,11.037 L15.3809,10 C15.3809,9.75454011 15.5577752,9.55039163 15.7910244,9.50805567 L15.7910244,9.50805567 L15.8809,9.5 Z M18.645,10.5 L16.38,10.5 L16.3809,11.373 C16.3809,11.5521539 16.2853829,11.7151045 16.1347011,11.8038237 L16.1347011,11.8038237 L16.05495,11.8417287 C15.5314963,12.0360994 15.0350611,12.3167545 14.6516024,12.6442215 C14.4906918,12.7816362 14.2607034,12.8028813 14.0773433,12.6972683 L14.0773433,12.6972683 L13.318,12.26 L12.185,14.222 L12.9388139,14.6579376 C13.0961935,14.748759 13.1898199,14.9161858 13.1889203,15.0934106 L13.1889203,15.0934106 L13.1804508,15.1825302 C13.1292374,15.4575653 13.1029,15.7233945 13.1029,15.984 C13.1029,16.2478115 13.1287558,16.5132795 13.1795074,16.7867739 C13.2181769,16.9951595 13.1212638,17.2052853 12.937656,17.3111535 L12.937656,17.3111535 L12.182,17.746 L13.315,19.709 L14.0779713,19.2713706 C14.2350705,19.1811864 14.4262285,19.1840112 14.5788431,19.2730853 L14.5788431,19.2730853 L14.6516024,19.3247785 C15.034348,19.6516365 15.5304915,19.9325966 16.0564617,20.1298354 C16.2516136,20.2030174 16.3809,20.3895777 16.3809,20.598 L16.3809,20.598 L16.38,21.469 L18.645,21.469 L18.6459,20.598 C18.6459,20.4193523 18.7408859,20.2567665 18.8909192,20.1678738 L18.8909192,20.1678738 L18.9703383,20.1298354 C19.4839398,19.9372348 19.9699345,19.6580563 20.3601976,19.3247785 C20.5214134,19.1871031 20.7519277,19.1660637 20.9354037,19.2722785 L20.9354037,19.2722785 L21.686,19.707 L22.816,17.746 L22.062144,17.3111535 C21.9052187,17.2206705 21.8115798,17.0539961 21.8118749,16.8772908 L21.8118749,16.8772908 L21.8199921,16.7884085 C21.8708862,16.508971 21.8969,16.2441642 21.8969,15.984 C21.8969,15.7233945 21.8705626,15.4575653 21.8193492,15.1825302 C21.7805422,14.9741227 21.8773765,14.7638959 22.0609861,14.6579376 L22.0609861,14.6579376 L22.814,14.222 L21.683,12.262 L20.9360384,12.6963534 C20.7787074,12.7877413 20.5866147,12.785441 20.4332893,12.6961092 L20.4332893,12.6961092 L20.3601976,12.6442215 C19.9692342,12.3103456 19.4831687,12.0315934 18.97185,11.8417287 C18.7759094,11.7689713 18.6459,11.5820128 18.6459,11.373 L18.6459,11.373 L18.645,10.5 Z M17.4993,13.3084 C18.9771326,13.3084 20.1753,14.5069477 20.1753,15.9844 C20.1753,17.4633523 18.9776325,18.6614 17.4993,18.6614 C16.0209675,18.6614 14.8233,17.4633523 14.8233,15.9844 C14.8233,14.5069477 16.0214674,13.3084 17.4993,13.3084 Z M17.4993,14.3084 C16.5738232,14.3084 15.8233,15.0591615 15.8233,15.9844 C15.8233,16.9111385 16.5733234,17.6614 17.4993,17.6614 C18.4252766,17.6614 19.1753,16.9111385 19.1753,15.9844 C19.1753,15.0591615 18.4247768,14.3084 17.4993,14.3084 Z M19.974,2 C21.0304802,2 21.9160478,2.81758623 21.9943711,3.85097062 L22,4 L22,8.5 C22,8.77614237 21.7761424,9 21.5,9 C21.2545401,9 21.0503916,8.82312484 21.0080557,8.58987563 L21,8.5 L21,4 C21,3.88482227 20.979175,3.77365967 20.9410423,3.6699602 L11.2854433,11.3905177 C11.1289226,11.5156658 10.9159768,11.5335199 10.7433581,11.4440921 L10.6608572,11.3904382 L1.04372448,3.69767848 C1.02604247,3.75674208 1.01344955,3.8183 1.00645021,3.88183877 L1,4 L1,15 C1,15.5200168 1.37011495,15.936533 1.85914927,15.9933822 L1.974,16 L9.5,16 C9.77614237,16 10,16.2238576 10,16.5 C10,16.7454599 9.82312484,16.9496084 9.58987563,16.9919443 L9.5,17 L1.974,17 C0.921476626,17 0.07969209,16.1861995 0.00534085813,15.1495456 L3.55271368e-15,15 L3.55271368e-15,4 C3.55271368e-15,2.9427916 0.793683681,2.0815761 1.82509792,2.00546809 L1.974,2 L19.974,2 Z M19.974,3 L1.974,3 C1.91260989,3 1.8526945,3.00557204 1.79470021,3.01626178 L10.973,10.359 L20.1558268,3.01620825 C20.1323367,3.01198086 20.1085862,3.0085542 20.0846069,3.00595927 L19.974,3 Z"/>
618
+ </symbol>
619
+ <symbol id="icon-error-cross-filled" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 23">
620
+ <polygon fill-rule="evenodd" points="7 11.5 0 18.5 4.5 23 11.5 16 18.5 23 23 18.5 16 11.5 23 4.5 18.5 0 11.5 7 4.5 0 0 4.5"/>
621
+ </symbol>
622
+ <symbol id="icon-error-cross-outlined" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25 25">
623
+ <path stroke="none" fill-rule="evenodd" d="M0.146446609,4.64644661 L0.0885911588,4.7156945 C-0.0464048927,4.91056264 -0.0271197425,5.17998704 0.146446609,5.35355339 L6.793,12 L0.146446609,18.6464466 C-0.0488155365,18.8417088 -0.0488155365,19.1582912 0.146446609,19.3535534 L4.64644661,23.8535534 L4.7156945,23.9114088 C4.91056264,24.0464049 5.17998704,24.0271197 5.35355339,23.8535534 L12,17.207 L18.6464466,23.8535534 C18.8417088,24.0488155 19.1582912,24.0488155 19.3535534,23.8535534 L23.8535534,19.3535534 L23.9114088,19.2843055 C24.0464049,19.0894374 24.0271197,18.820013 23.8535534,18.6464466 L17.207,12 L23.8535534,5.35355339 C24.0488155,5.15829124 24.0488155,4.84170876 23.8535534,4.64644661 L19.3535534,0.146446609 L19.2843055,0.0885911588 C19.0894374,-0.0464048927 18.820013,-0.0271197425 18.6464466,0.146446609 L12,6.793 L5.35355339,0.146446609 C5.15829124,-0.0488155365 4.84170876,-0.0488155365 4.64644661,0.146446609 L0.146446609,4.64644661 Z M19,1.207 L22.793,5 L16.1464466,11.6464466 L16.0885912,11.7156945 C15.9535951,11.9105626 15.9728803,12.179987 16.1464466,12.3535534 L22.793,19 L19,22.793 L12.3535534,16.1464466 L12.2843055,16.0885912 C12.0894374,15.9535951 11.820013,15.9728803 11.6464466,16.1464466 L5,22.793 L1.207,19 L7.85355339,12.3535534 L7.91140884,12.2843055 C8.04640489,12.0894374 8.02711974,11.820013 7.85355339,11.6464466 L1.207,5 L5,1.207 L11.6464466,7.85355339 C11.8417088,8.04881554 12.1582912,8.04881554 12.3535534,7.85355339 L19,1.207 Z" transform="translate(.5 .5)"/>
624
+ </symbol>
625
+ <symbol id="icon-expand" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19 17">
626
+ <path stroke="none" fill-rule="evenodd" d="M16.6417907,5 L13.2506296,1.16215105 L14.7493704,-0.162151049 L20.3185276,6.14058239 L14.7338742,12.1136235 L13.2729617,10.7477046 L16.7769776,7 L0,7 L0,5 L16.6417907,5 Z M0,15 L8,15 L8,17 L0,17 L0,15 Z M0,10 L8,10 L8,12 L0,12 L0,10 Z"/>
627
+ </symbol>
628
+ <symbol id="icon-export" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
629
+ <path stroke="none" fill-rule="evenodd" d="M8.9,4.9 L12,1.7 L12,12.5 C12,12.8 12.2,13 12.5,13 C12.8,13 13,12.8 13,12.5 L13,1.7 L16.1,4.8 C16.2,5 16.4,5 16.5,5 C16.6,5 16.8,5 16.9,4.9 C17.1,4.7 17.1,4.4 16.9,4.2 L12.9,0.2 C12.9,0.2 12.8,0.1 12.7,0.1 C12.6,0 12.4,0 12.3,0 C12.2,0 12.2,0.1 12.1,0.1 L8.1,4.1 C8,4.3 8,4.7 8.1,4.9 C8.2,5.1 8.7,5 8.9,4.9 Z M16,21 L20,21 C20.3,21 20.5,20.8 20.5,20.5 C20.5,20.2 20.3,20 20,20 L16,20 C15.7,20 15.5,20.2 15.5,20.5 C15.5,20.8 15.7,21 16,21 Z M24,17.5 C24,17.4 24,17.4 24,17.5 C24,17.4 23.9,17.3 23.9,17.3 L23.9,17.3 L18.9,11.3 C18.8,11.2 18.7,11.1 18.5,11.1 L17.5,11.1 C17.2,11.1 17,11.3 17,11.6 C17,11.9 17.2,12.1 17.5,12.1 L18.3,12.1 L22.5,17.1 L1.6,17.1 L5.8,12.1 L7,12.1 C7.3,12.1 7.5,11.9 7.5,11.6 C7.5,11.3 7.3,11 7,11 L5.5,11 C5.4,11 5.2,11.1 5.1,11.2 L0.1,17.2 L0.1,17.2 C0.1,17.3 0,17.3 0,17.4 C0,17.4 0,17.4 0,17.5 L0,17.5 L0,21.5 C3.60822483e-16,22.9 1.1,24 2.5,24 L21.5,24 C22.9,24 24,22.9 24,21.5 L24,17.5 L24,17.5 Z M23,21.5 C23,22.3 22.3,23 21.5,23 L2.5,23 C1.7,23 1,22.3 1,21.5 L1,18 L23,18 L23,21.5 Z"/>
630
+ </symbol>
631
+ <symbol id="icon-filter" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
632
+ <path stroke="none" fill-rule="evenodd" d="M3.6,3.9 L10.3,10.6 C10.4,10.8 10.4,10.9 10.4,11 L10.4,16.9 L11.4,16 L11.4,11 C11.4,10.9 11.4,10.8 11.5,10.7 L18.2,4 L3.6,4 L3.6,3.9 Z M10,18.5 C9.9,18.5 9.9,18.5 9.8,18.5 C9.6,18.4 9.5,18.3 9.5,18.1 L9.5,11.2 L2.1,3.8 C2,3.7 2,3.5 2,3.3 C2.1,3.1 2.3,3 2.5,3 L19.3,3 C19.5,3 19.7,3.1 19.7,3.3 C19.8,3.5 19.7,3.7 19.6,3.8 L12.3,11.2 L12.3,16.2 C12.3,16.3 12.3,16.4 12.2,16.5 L10.3,18.4 C10.2,18.5 10.1,18.5 10,18.5 L10,18.5 Z"/>
633
+ </symbol>
634
+ <symbol id="icon-firefox" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 77.42 79.97"><defs>
635
+ <linearGradient id="FirefoxA" x1="69.49" x2="5.147" y1="12.386" y2="74.466" xlink:href="#FirefoxO">
636
+ <stop stop-color="#fff44f" offset=".048"/>
637
+ <stop stop-color="#ffe847" offset=".111"/>
638
+ <stop stop-color="#ffc830" offset=".225"/>
639
+ <stop stop-color="#ff980e" offset=".368"/>
640
+ <stop stop-color="#ff8b16" offset=".401"/>
641
+ <stop stop-color="#ff672a" offset=".462"/>
642
+ <stop stop-color="#ff3647" offset=".534"/>
643
+ <stop stop-color="#e31587" offset=".705"/>
644
+ </linearGradient>
645
+ <radialGradient id="FirefoxB" cx="-7907" cy="-8515" r="80.8" gradientTransform="translate(7974 8524)" xlink:href="#FirefoxO">
646
+ <stop stop-color="#ffbd4f" offset=".129"/>
647
+ <stop stop-color="#ffac31" offset=".186"/>
648
+ <stop stop-color="#ff9d17" offset=".247"/>
649
+ <stop stop-color="#ff980e" offset=".283"/>
650
+ <stop stop-color="#ff563b" offset=".403"/>
651
+ <stop stop-color="#ff3750" offset=".467"/>
652
+ <stop stop-color="#f5156c" offset=".71"/>
653
+ <stop stop-color="#eb0878" offset=".782"/>
654
+ <stop stop-color="#e50080" offset=".86"/>
655
+ </radialGradient>
656
+ <radialGradient id="FirefoxC" cx="-7937" cy="-8482" r="80.8" gradientTransform="translate(0 0) translate(7974 8524)" xlink:href="#FirefoxO">
657
+ <stop stop-color="#960e18" offset=".3"/>
658
+ <stop stop-color="#b11927" stop-opacity=".74" offset=".351"/>
659
+ <stop stop-color="#db293d" stop-opacity=".343" offset=".435"/>
660
+ <stop stop-color="#f5334b" stop-opacity=".094" offset=".497"/>
661
+ <stop stop-color="#ff3750" stop-opacity="0" offset=".53"/>
662
+ </radialGradient>
663
+ <radialGradient id="FirefoxD" cx="-7927" cy="-8533" r="58.53" gradientTransform="translate(7974 8524)" xlink:href="#FirefoxO">
664
+ <stop stop-color="#fff44f" offset=".132"/>
665
+ <stop stop-color="#ffdc3e" offset=".252"/>
666
+ <stop stop-color="#ff9d12" offset=".506"/>
667
+ <stop stop-color="#ff980e" offset=".526"/>
668
+ </radialGradient>
669
+ <radialGradient id="FirefoxE" cx="-7946" cy="-8461" r="38.47" gradientTransform="translate(7974 8524)" xlink:href="#FirefoxO">
670
+ <stop stop-color="#3a8ee6" offset=".353"/>
671
+ <stop stop-color="#5c79f0" offset=".472"/>
672
+ <stop stop-color="#9059ff" offset=".669"/>
673
+ <stop stop-color="#c139e6" offset="1"/>
674
+ </radialGradient>
675
+ <radialGradient id="FirefoxF" cx="-7936" cy="-8492" r="20.4" gradientTransform="matrix(0.972,-0.235,0.275,1.138,10090,7834)" xlink:href="#FirefoxO">
676
+ <stop stop-color="#9059ff" stop-opacity="0" offset=".206"/>
677
+ <stop stop-color="#8c4ff3" stop-opacity=".064" offset=".278"/>
678
+ <stop stop-color="#7716a8" stop-opacity=".45" offset=".747"/>
679
+ <stop stop-color="#6e008b" stop-opacity=".6" offset=".975"/>
680
+ </radialGradient>
681
+ <radialGradient id="FirefoxG" cx="-7938" cy="-8518" r="27.68" gradientTransform="translate(7974 8524)" xlink:href="#FirefoxO">
682
+ <stop stop-color="#ffe226" offset="0"/>
683
+ <stop stop-color="#ffdb27" offset=".121"/>
684
+ <stop stop-color="#ffc82a" offset=".295"/>
685
+ <stop stop-color="#ffa930" offset=".502"/>
686
+ <stop stop-color="#ff7e37" offset=".732"/>
687
+ <stop stop-color="#ff7139" offset=".792"/>
688
+ </radialGradient>
689
+ <radialGradient id="FirefoxH" cx="-7916" cy="-8536" r="118.1" gradientTransform="translate(7974 8524)" xlink:href="#FirefoxO">
690
+ <stop stop-color="#fff44f" offset=".113"/>
691
+ <stop stop-color="#ff980e" offset=".456"/>
692
+ <stop stop-color="#ff5634" offset=".622"/>
693
+ <stop stop-color="#ff3647" offset=".716"/>
694
+ <stop stop-color="#e31587" offset=".904"/>
695
+ </radialGradient>
696
+ <radialGradient id="FirefoxI" cx="-7927" cy="-8523" r="86.5" gradientTransform="matrix(.105 .995 -.653 .069 -4685 8470)" xlink:href="#FirefoxO">
697
+ <stop stop-color="#fff44f" offset="0"/>
698
+ <stop stop-color="#ffe847" offset=".06"/>
699
+ <stop stop-color="#ffc830" offset=".168"/>
700
+ <stop stop-color="#ff980e" offset=".304"/>
701
+ <stop stop-color="#ff8b16" offset=".356"/>
702
+ <stop stop-color="#ff672a" offset=".455"/>
703
+ <stop stop-color="#ff3647" offset=".57"/>
704
+ <stop stop-color="#e31587" offset=".737"/>
705
+ </radialGradient>
706
+ <radialGradient id="FirefoxJ" cx="-7938" cy="-8508" r="73.72" gradientTransform="translate(7974 8524)" xlink:href="#FirefoxO">
707
+ <stop stop-color="#fff44f" offset=".137"/>
708
+ <stop stop-color="#ff980e" offset=".48"/>
709
+ <stop stop-color="#ff5634" offset=".592"/>
710
+ <stop stop-color="#ff3647" offset=".655"/>
711
+ <stop stop-color="#e31587" offset=".904"/>
712
+ </radialGradient>
713
+ <radialGradient id="FirefoxK" cx="-7919" cy="-8504" r="80.69" gradientTransform="translate(7974 8524)" xlink:href="#FirefoxO">
714
+ <stop stop-color="#fff44f" offset=".094"/>
715
+ <stop stop-color="#ffe141" offset=".231"/>
716
+ <stop stop-color="#ffaf1e" offset=".509"/>
717
+ <stop stop-color="#ff980e" offset=".626"/>
718
+ </radialGradient>
719
+ <linearGradient id="FirefoxL" x1="68.71" x2="13.97" y1="12.056" y2="66.806" xlink:href="#FirefoxO">
720
+ <stop stop-color="#fff44f" stop-opacity=".8" offset=".167"/>
721
+ <stop stop-color="#fff44f" stop-opacity=".634" offset=".266"/>
722
+ <stop stop-color="#fff44f" stop-opacity=".217" offset=".489"/>
723
+ <stop stop-color="#fff44f" stop-opacity="0" offset=".6"/>
724
+ </linearGradient>
725
+ <path id="FirefoxM" d="M74.62 26.83c-1.684-4.052-5.1-8.427-7.775-9.81a40.27 40.27 0 0 1 3.925 11.76v.037l.007.041a35.1 35.1 0 0 1-1.206 26.16c-4.442 9.531-15.19 19.3-32.02 18.82-18.18-.515-34.2-14.01-37.19-31.68-.545-2.787 0-4.2.274-6.465a28.88 28.88 0 0 0-.623 5.348v.2a38.76 38.76 0 0 0 76.95 6.554l.176-1.5a39.86 39.86 0 0 0-2.514-19.47z"/>
726
+ <path id="FirefoxN" d="M38.82 33.79c-.064.964-3.47 4.289-4.661 4.289-11.02 0-12.81 6.667-12.81 6.667.488 5.614 4.4 10.24 9.129 12.68a13.44 13.44 0 0 0 .654.312q.569.252 1.138.466a17.24 17.24 0 0 0 5.043.973c19.32.906 23.06-23.1 9.119-30.07a13.38 13.38 0 0 1 9.345 2.269 19.56 19.56 0 0 0-16.98-9.917c-.46 0-.91.038-1.362.069a19.39 19.39 0 0 0-10.67 4.111c.591.5 1.258 1.168 2.663 2.553 2.63 2.591 9.375 5.275 9.39 5.59z"/>
727
+ <linearGradient id="FirefoxO" gradientUnits="userSpaceOnUse"/>
728
+ </defs>
729
+ <path d="M74.62 26.83c-1.684-4.052-5.1-8.427-7.775-9.81a40.27 40.27 0 0 1 3.925 11.76l.007.065c-4.382-10.92-11.81-15.33-17.88-24.92l-.913-1.484a12.24 12.24 0 0 1-.427-.8 7.053 7.053 0 0 1-.578-1.535.1.1 0 0 0-.088-.1.138.138 0 0 0-.073 0c-.005 0-.013.009-.019.011s-.019.011-.028.015l.015-.026c-9.735 5.7-13.04 16.25-13.34 21.53a19.39 19.39 0 0 0-10.67 4.111 11.59 11.59 0 0 0-1-.758 17.97 17.97 0 0 1-.109-9.473 28.7 28.7 0 0 0-9.329 7.21h-.018c-1.536-1.947-1.428-8.367-1.34-9.708a6.928 6.928 0 0 0-1.294.687 28.22 28.22 0 0 0-3.788 3.245 33.84 33.84 0 0 0-3.623 4.347v.006-.007a32.73 32.73 0 0 0-5.2 11.74l-.052.256a61.89 61.89 0 0 0-.381 2.42c0 .029-.006.056-.009.085a36.94 36.94 0 0 0-.629 5.343v.2a38.76 38.76 0 0 0 76.95 6.554l.176-1.5a39.86 39.86 0 0 0-2.514-19.47zM29.95 57.17c.181.087.351.181.537.264l.027.017q-.282-.135-.564-.281zm40.828-28.314v-.037l.007.041z"
730
+ fill="url(#FirefoxA)"/>
731
+ <use xlink:href="#FirefoxM" fill="url(#FirefoxB)"/>
732
+ <use xlink:href="#FirefoxM" fill="url(#FirefoxC)"/>
733
+ <path d="M55.78 31.38l.241.177a21.1 21.1 0 0 0-3.6-4.695C40.371 14.812 49.264.742 50.763.022L50.778 0c-9.735 5.7-13.04 16.25-13.34 21.53.452-.031.9-.069 1.362-.069a19.56 19.56 0 0 1 16.98 9.917z" fill="url(#FirefoxD)"/>
734
+ <use xlink:href="#FirefoxN" fill="url(#FirefoxE)"/>
735
+ <use xlink:href="#FirefoxN" fill="url(#FirefoxF)"/>
736
+ <path d="M24.96 24.36l.8.531a17.97 17.97 0 0 1-.109-9.473 28.7 28.7 0 0 0-9.329 7.21c.189-.005 5.811-.106 8.638 1.732z" fill="url(#FirefoxG)"/>
737
+ <path d="M.354 42.16c2.991 17.67 19.01 31.17 37.19 31.68 16.83.476 27.58-9.294 32.02-18.82a35.1 35.1 0 0 0 1.206-26.16v-.037c0-.029-.006-.046 0-.037l.007.065c1.375 8.977-3.191 17.67-10.33 23.56l-.022.05c-13.91 11.33-27.22 6.834-29.91 5q-.282-.135-.564-.281c-8.109-3.876-11.46-11.26-10.74-17.6a9.953 9.953 0 0 1-9.181-5.775 14.62 14.62 0 0 1 14.25-.572 19.3 19.3 0 0 0 14.55.572c-.015-.315-6.76-3-9.39-5.59-1.405-1.385-2.072-2.052-2.663-2.553a11.59 11.59 0 0 0-1-.758l-.8-.531c-2.827-1.838-8.449-1.737-8.635-1.732h-.018c-1.536-1.947-1.428-8.367-1.34-9.708a6.928 6.928 0 0 0-1.294.687 28.22 28.22 0 0 0-3.788 3.245 33.84 33.84 0 0 0-3.638 4.337v.006-.007a32.73 32.73 0 0 0-5.2 11.74c-.019.079-1.396 6.099-.717 9.221z"
738
+ fill="url(#FirefoxH)"/>
739
+ <path d="M52.42 26.86a21.1 21.1 0 0 1 3.6 4.7l.581.476c8.787 8.1 4.183 19.55 3.84 20.36 7.138-5.881 11.7-14.58 10.33-23.56-4.384-10.93-11.82-15.34-17.88-24.93l-.913-1.484a12.24 12.24 0 0 1-.427-.8 7.053 7.053 0 0 1-.578-1.535.1.1 0 0 0-.088-.1.138.138 0 0 0-.073 0c-.005 0-.013.009-.019.011s-.019.011-.028.015c-1.499.711-10.39 14.79 1.66 26.83z" fill="url(#FirefoxI)"/>
740
+ <path d="M56.6 32.04c-.169-.155-.368-.315-.581-.476l-.241-.177a13.38 13.38 0 0 0-9.345-2.269c13.94 6.97 10.2 30.97-9.119 30.07a17.24 17.24 0 0 1-5.043-.973q-.569-.213-1.138-.466a14.44 14.44 0 0 1-.654-.312l.027.017c2.694 1.839 16 6.332 29.91-5l.022-.05c.347-.81 4.951-12.26-3.84-20.36z" fill="url(#FirefoxJ)"/>
741
+ <path d="M21.35 44.74s1.789-6.667 12.81-6.667c1.191 0 4.6-3.325 4.661-4.289a19.3 19.3 0 0 1-14.55-.572 14.62 14.62 0 0 0-14.25.572 9.953 9.953 0 0 0 9.181 5.775c-.718 6.337 2.632 13.72 10.74 17.6.181.087.351.181.537.264-4.733-2.445-8.641-7.069-9.129-12.68z" fill="url(#FirefoxK)"/>
742
+ <path d="M74.62 26.83c-1.684-4.052-5.1-8.427-7.775-9.81a40.27 40.27 0 0 1 3.925 11.76l.007.065c-4.382-10.92-11.81-15.33-17.88-24.92l-.913-1.484a12.24 12.24 0 0 1-.427-.8 7.053 7.053 0 0 1-.578-1.535.1.1 0 0 0-.088-.1.138.138 0 0 0-.073 0c-.005 0-.013.009-.019.011s-.019.011-.028.015l.015-.026c-9.735 5.7-13.04 16.25-13.34 21.53.452-.031.9-.069 1.362-.069a19.56 19.56 0 0 1 16.98 9.917 13.38 13.38 0 0 0-9.345-2.269c13.94 6.97 10.2 30.97-9.119 30.07a17.24 17.24 0 0 1-5.043-.973q-.569-.213-1.138-.466a14.44 14.44 0 0 1-.654-.312l.027.017q-.282-.135-.564-.281c.181.087.351.181.537.264-4.733-2.446-8.641-7.07-9.129-12.68 0 0 1.789-6.667 12.81-6.667 1.191 0 4.6-3.325 4.661-4.289-.015-.315-6.76-3-9.39-5.59-1.405-1.385-2.072-2.052-2.663-2.553a11.59 11.59 0 0 0-1-.758 17.97 17.97 0 0 1-.109-9.473 28.7 28.7 0 0 0-9.329 7.21h-.018c-1.536-1.947-1.428-8.367-1.34-9.708a6.928 6.928 0 0 0-1.294.687A28.22 28.22 0 0 0 9.9 16.858a33.84 33.84 0 0 0-3.623 4.347v.006-.007a32.73 32.73 0 0 0-5.2 11.74l-.052.256a66.11 66.11 0 0 0-.447 2.445h0a45.09 45.09 0 0 0-.572 5.403v.2a38.76 38.76 0 0 0 76.95 6.554l.176-1.5a39.86 39.86 0 0 0-2.514-19.47zm-3.845 1.991l.007.041z"
743
+ fill="url(#FirefoxL)"/>
744
+ </symbol>
745
+ <symbol id="icon-global-scope" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
746
+ <path stroke="none" fill-rule="evenodd" d="M7.45793675,11 L16.5066971,11 C16.4580648,9.28926535 16.107877,7.61384675 15.4572754,6 L8.51530754,6 C7.86640352,7.60810427 7.51394659,9.28362995 7.45793675,11 Z M7.45869662,12 C7.51430985,13.6421015 7.83665011,15.3163289 8.4257174,17 L15.4771375,17 C16.094563,15.3210132 16.4354928,13.6467125 16.5009227,12 L7.45869662,12 Z M22.9557034,11 C22.7921619,9.16367563 22.1822813,7.46086299 21.2344997,6 L16.4976168,6 C17.093396,7.61532602 17.4096505,9.2899701 17.4463803,11 L22.9557034,11 Z M23,12 L17.4361571,12 C17.3675519,13.6455754 17.0439403,15.3191933 16.4653226,17 L21.8107597,17 C22.5717164,15.5019593 23,13.8034225 23,12 Z M1.02247668,11 L6.51979753,11 C6.57165159,9.28939328 6.89697753,7.61472164 7.49673592,6 L2.64864324,6 C1.71899323,7.46402916 1.14052851,9.16820834 1.02247668,11 Z M1.00383096,12.0000001 C1.04982226,13.799065 1.50821143,15.4988928 2.28697715,17.000001 L7.4219431,17 C6.87306545,15.3187642 6.57230793,13.6451374 6.52050576,12 L1.00382766,12 Z M8.96140752,5 L15.0117386,5 C14.3326755,3.61060706 13.4235542,2.27259398 12.2851406,1.00357717 C12.1903963,1.0011971 12.0953447,1 12,1 C11.8816527,1 11.7983206,1 11.7085641,1 C10.5608643,2.26395735 9.64514412,3.60342336 8.96140752,5 Z M20.5022197,5 C18.8259563,2.96304571 16.4280814,1.54513742 13.6898222,1.12750217 C14.688793,2.36296012 15.4887174,3.65858761 16.0895925,5 L20.5022197,5 Z M3.36819143,5 L7.90679757,5 C8.51429422,3.64827118 9.32059683,2.34355754 10.326297,1.10065006 C7.5009127,1.49199741 5.04826956,2.92909394 3.36819143,5 Z M8.80656728,18 C9.49320909,19.6672397 10.4405145,21.339324 11.6484836,22.9943395 C11.7651918,22.9981036 11.8823728,23 12,23 C12.0259446,23 12.0518674,22.9999114 12.0777683,22.9997344 C13.3528583,21.3481228 14.3522273,19.6739914 15.0768606,18 L8.80656728,18 Z M21.2344997,18 L16.0912614,18 C15.4279506,19.642277 14.5217779,21.2874646 13.3727432,22.9161811 C16.6751617,22.5096699 19.5125252,20.6541649 21.2344997,18 Z M2.87207031,18 C4.55337442,20.5648423 7.23236984,22.39118 10.3489489,22.8734914 C9.26050118,21.2583281 8.40306247,19.6275413 7.77738752,18 L2.87207031,18 Z M24,12 C24,18.7 18.6,24 12,24 C5.4,24 0,18.4 0,11.7 C0,5.3 5,0.2 11.5,0 C11.7,0 11.8,0 12,0 C18.7,0 24,5.3 24,12 Z"/>
747
+ </symbol>
748
+ <symbol id="icon-grid-view" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
749
+ <path stroke="none" fill-rule="evenodd" d="M18.5,17.5 L18.5,15.5 L16.5,15.5 L16.5,17.5 L18.5,17.5 Z M19,18.5 L16,18.5 C15.7,18.5 15.5,18.3 15.5,18 L15.5,15 C15.5,14.7 15.7,14.5 16,14.5 L19,14.5 C19.3,14.5 19.5,14.7 19.5,15 L19.5,18 C19.5,18.3 19.3,18.5 19,18.5 Z M4.5,5.5 L4.5,3.5 L2.5,3.5 L2.5,5.5 L4.5,5.5 Z M5,6.5 L2,6.5 C1.7,6.5 1.5,6.3 1.5,6 L1.5,3 C1.5,2.7 1.7,2.5 2,2.5 L5,2.5 C5.3,2.5 5.5,2.7 5.5,3 L5.5,6 C5.5,6.3 5.3,6.5 5,6.5 Z M4.5,11.5 L4.5,9.5 L2.5,9.5 L2.5,11.5 L4.5,11.5 Z M5,12.5 L2,12.5 C1.7,12.5 1.5,12.3 1.5,12 L1.5,9 C1.5,8.7 1.7,8.5 2,8.5 L5,8.5 C5.3,8.5 5.5,8.7 5.5,9 L5.5,12 C5.5,12.3 5.3,12.5 5,12.5 Z M4.5,17.5 L4.5,15.5 L2.5,15.5 L2.5,17.5 L4.5,17.5 Z M5,18.5 L2,18.5 C1.7,18.5 1.5,18.3 1.5,18 L1.5,15 C1.5,14.7 1.7,14.5 2,14.5 L5,14.5 C5.3,14.5 5.5,14.7 5.5,15 L5.5,18 C5.5,18.3 5.3,18.5 5,18.5 Z M11.5,5.5 L11.5,3.5 L9.5,3.5 L9.5,5.5 L11.5,5.5 Z M12,6.5 L9,6.5 C8.7,6.5 8.5,6.3 8.5,6 L8.5,3 C8.5,2.7 8.7,2.5 9,2.5 L12,2.5 C12.3,2.5 12.5,2.7 12.5,3 L12.5,6 C12.5,6.3 12.3,6.5 12,6.5 Z M11.5,11.5 L11.5,9.5 L9.5,9.5 L9.5,11.5 L11.5,11.5 Z M12,12.5 L9,12.5 C8.7,12.5 8.5,12.3 8.5,12 L8.5,9 C8.5,8.7 8.7,8.5 9,8.5 L12,8.5 C12.3,8.5 12.5,8.7 12.5,9 L12.5,12 C12.5,12.3 12.3,12.5 12,12.5 Z M11.5,17.5 L11.5,15.5 L9.5,15.5 L9.5,17.5 L11.5,17.5 Z M12,18.5 L9,18.5 C8.7,18.5 8.5,18.3 8.5,18 L8.5,15 C8.5,14.7 8.7,14.5 9,14.5 L12,14.5 C12.3,14.5 12.5,14.7 12.5,15 L12.5,18 C12.5,18.3 12.3,18.5 12,18.5 Z M18.5,5.5 L18.5,3.5 L16.5,3.5 L16.5,5.5 L18.5,5.5 Z M19,6.5 L16,6.5 C15.7,6.5 15.5,6.3 15.5,6 L15.5,3 C15.5,2.7 15.7,2.5 16,2.5 L19,2.5 C19.3,2.5 19.5,2.7 19.5,3 L19.5,6 C19.5,6.3 19.3,6.5 19,6.5 Z M18.5,11.5 L18.5,9.5 L16.5,9.5 L16.5,11.5 L18.5,11.5 Z M19,12.5 L16,12.5 C15.7,12.5 15.5,12.3 15.5,12 L15.5,9 C15.5,8.7 15.7,8.5 16,8.5 L19,8.5 C19.3,8.5 19.5,8.7 19.5,9 L19.5,12 C19.5,12.3 19.3,12.5 19,12.5 Z"/>
750
+ </symbol>
751
+ <symbol id="icon-hide" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
752
+ <path fill="#333" fill-rule="evenodd" d="M19.1124576,7.99508187 C19.274287,7.77132789 19.5868642,7.72112814 19.8106181,7.88295759 C20.0216019,8.03555104 20.2302145,8.19250179 20.4363636,8.35346554 C21.367999,9.08089762 22.2129121,9.85942668 22.9567728,10.6383637 C23.0871893,10.7749299 23.2098645,10.9067227 23.3245662,11.0329511 L23.770342,11.541957 L23.8915413,11.6896455 C24.0356128,11.8715323 24.0356203,12.1286366 23.8915593,12.3105318 L23.7120419,12.5272329 L23.6447456,12.6058087 C23.4478713,12.8342536 23.2182022,13.0880997 22.9575938,13.3610246 C22.2143749,14.1393688 21.3701824,14.9173051 20.4393301,15.644184 C17.7581326,17.7378629 14.9081955,19.0001 11.9996,19.0001 C10.949806,19.0001 9.89858165,18.8327644 8.85168118,18.5133339 C8.58755987,18.4327452 8.43877732,18.1533025 8.51936606,17.8891812 C8.5999548,17.6250599 8.87939751,17.4762773 9.14351882,17.5568661 C10.0987601,17.8483294 11.0522027,18.0001 11.9996,18.0001 C14.6490045,18.0001 17.3025674,16.8248371 19.8238699,14.856016 C20.7138926,14.1610199 21.5228876,13.4155187 22.2343562,12.6704254 L22.5842248,12.29506 L22.845,11.999 L22.7413564,11.8803057 C22.6402396,11.7661224 22.5311815,11.6459877 22.414432,11.5206988 L22.2335702,11.3289997 C21.521459,10.5833093 20.7117419,9.8372109 19.820934,9.14165736 C19.6243281,8.98814509 19.4255054,8.83855979 19.2245819,8.69324241 C19.0008279,8.53141297 18.9506281,8.21883585 19.1124576,7.99508187 Z M11.9998,5.0002 C12.8739327,5.0002 13.7509817,5.11671997 14.6276117,5.34077181 C14.895154,5.40915111 15.0566075,5.68146937 14.9882282,5.94901167 C14.9198489,6.21655397 14.6475306,6.37800749 14.3799883,6.30962819 C13.5821401,6.10571164 12.7879511,6.0002 11.9998,6.0002 C9.35083458,6.0002 6.69735512,7.17546602 4.17589366,9.14429292 C3.28581154,9.83929367 2.47673061,10.5848001 1.76516129,11.3298989 L1.58443686,11.5214458 L1.25775824,11.8807668 L1.153,12 L1.41566931,12.295517 L1.76590094,12.6711398 C2.47810874,13.4167439 3.2879515,14.1627565 4.17891753,14.8582309 C4.37090306,15.0080918 4.56500745,15.1542135 4.76112272,15.2962781 C4.98475494,15.4582757 5.03471961,15.7708905 4.87272194,15.9945227 C4.71072428,16.2181549 4.39810949,16.2681196 4.17447728,16.1061219 C3.96855449,15.9569529 3.76489987,15.8036418 3.56359925,15.6465096 C2.63179756,14.9191595 1.78675034,14.1407173 1.04278511,13.3618666 C0.847132571,13.1570397 0.668901439,12.9629517 0.508875241,12.7822717 L0.107891812,12.3106963 C-0.0362224624,12.1287954 -0.0362314836,11.8716422 0.107870028,11.6897312 L0.354722203,11.3944602 C0.453174682,11.2802389 0.559826322,11.1596673 0.674444991,11.0335357 L1.04196996,10.6392511 C1.78528345,9.8609124 2.62955408,9.08298133 3.56045634,8.35610708 C6.24180738,6.26243398 9.09164042,5.0002 11.9998,5.0002 Z M12,7.5 C12.2761424,7.5 12.5,7.72385763 12.5,8 C12.5,8.27614237 12.2761424,8.5 12,8.5 C10.0667776,8.5 8.5,10.0665071 8.5,12 C8.5,12.2761424 8.27614237,12.5 8,12.5 C7.72385763,12.5 7.5,12.2761424 7.5,12 C7.5,9.51418366 9.51453153,7.5 12,7.5 Z M16,11.5 C16.2761424,11.5 16.5,11.7238576 16.5,12 C16.5,14.4858163 14.4854685,16.5 12,16.5 C11.7238576,16.5 11.5,16.2761424 11.5,16 C11.5,15.7238576 11.7238576,15.5 12,15.5 C13.9332224,15.5 15.5,13.9334929 15.5,12 C15.5,11.7238576 15.7238576,11.5 16,11.5 Z M21.3964466,1.89644661 C21.5917088,1.70118446 21.9082912,1.70118446 22.1035534,1.89644661 C22.2771197,2.07001296 22.2964049,2.33943736 22.1614088,2.5343055 L22.1035534,2.60355339 L2.60355339,22.1035534 C2.40829124,22.2988155 2.09170876,22.2988155 1.89644661,22.1035534 C1.72288026,21.929987 1.70359511,21.6605626 1.83859116,21.4656945 L1.89644661,21.3964466 L21.3964466,1.89644661 Z"/>
753
+ </symbol>
754
+ <symbol id="icon-html-templates" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
755
+ <path stroke="none" d="M19,11.9997 C19.2761424,11.9997 19.5,12.2235576 19.5,12.4997 L19.5,12.4997 L19.499,13.427 L19.6566047,13.4993986 C19.8927357,13.6141055 20.1201337,13.7455983 20.333298,13.8914866 L20.333298,13.8914866 L20.454,13.979 L21.2488074,13.518378 C21.4614547,13.3948233 21.7273591,13.4456535 21.8809858,13.6267593 L21.8809858,13.6267593 L21.9330095,13.7006945 L23.4330095,16.2986945 C23.5710492,16.5377793 23.4891945,16.8434968 23.2501586,16.9816211 L23.2501586,16.9816211 L22.452,17.442 L22.4770891,17.7000633 L22.487,17.9997 C22.487,18.1009077 22.4837801,18.2019589 22.4774041,18.3030612 L22.4774041,18.3030612 L22.453,18.557 L23.2507352,19.0175345 C23.4634351,19.1401635 23.5519352,19.395446 23.4720275,19.6186882 L23.4720275,19.6186882 L23.4340817,19.7005805 L21.9350817,22.2985805 C21.7969257,22.5380263 21.4906825,22.6199209 21.2514505,22.481395 L21.2514505,22.481395 L20.455,22.02 L20.3344481,22.1085643 C20.1215026,22.2544443 19.8941477,22.3858782 19.6577156,22.5006509 L19.6577156,22.5006509 L19.499,22.572 L19.5,23.4997 C19.5,23.7451599 19.3231248,23.9493084 19.0898756,23.9916443 L19.0898756,23.9916443 L19,23.9997 L16,23.9997 C15.7238576,23.9997 15.5,23.7758424 15.5,23.4997 L15.5,23.4997 L15.499,22.573 L15.3337173,22.4981037 C15.0934298,22.3824996 14.8631184,22.250938 14.6492717,22.1058155 L14.6492717,22.1058155 L14.529,22.019 L13.7218347,22.4823834 C13.5093376,22.604308 13.2447593,22.5529424 13.0917988,22.3723845 L13.0917988,22.3723845 L13.0399905,22.2987055 L11.5399905,19.7007055 C11.4018553,19.4614554 11.4839285,19.1555203 11.7232648,19.0175345 L11.7232648,19.0175345 L12.521,18.557 L12.496601,18.299951 L12.487,17.9997 C12.487,17.8523742 12.494511,17.7040106 12.5091349,17.5530613 L12.5091349,17.5530613 L12.522,17.443 L11.7246695,16.9815217 C11.5122149,16.8586446 11.4240411,16.603368 11.5041288,16.3802746 L11.5041288,16.3802746 L11.5421348,16.2984446 L13.0441348,13.7004446 C13.1822478,13.4615515 13.4877822,13.3797106 13.7268155,13.5175808 L13.7268155,13.5175808 L14.529,13.98 L14.6503936,13.8942641 C14.8644713,13.7491306 15.0948649,13.6174886 15.3348619,13.5019407 L15.3348619,13.5019407 L15.499,13.426 L15.5,12.4997 C15.5,12.2542401 15.6768752,12.0500916 15.9101244,12.0077557 L15.9101244,12.0077557 L16,11.9997 Z M18.499,12.999 L16.499,12.999 L16.5,13.7617 C16.5,13.9407606 16.4045809,14.1036441 16.2540185,14.1923955 L16.2540185,14.1923955 L16.1743286,14.2303252 C15.6966614,14.4080174 15.2437535,14.6641912 14.8960185,14.9616512 C14.735023,15.0993703 14.5047086,15.1206727 14.3211845,15.0148192 L14.3211845,15.0148192 L13.659,14.632 L12.657,16.365 L13.3163305,16.7468783 C13.4727338,16.837337 13.566111,17.0035437 13.5660253,17.1798189 L13.5660253,17.1798189 L13.5580529,17.2684915 C13.511165,17.5283285 13.487,17.7686607 13.487,17.9997 C13.487,18.2373819 13.5103696,18.4787947 13.5561109,18.7332306 C13.5934315,18.9408265 13.4964651,19.1495152 13.3137352,19.2548655 L13.3137352,19.2548655 L12.656,19.633 L13.657,21.367 L14.3221653,20.9850166 C14.4795575,20.8947096 14.6710764,20.8977544 14.8237717,20.9872694 L14.8237717,20.9872694 L14.8965463,21.0392008 C15.242943,21.3363508 15.6947614,21.5916758 16.1743286,21.7700748 C16.370124,21.8429107 16.5,22.0297959 16.5,22.2387 L16.5,22.2387 L16.499,22.999 L18.499,22.999 L18.5,22.2387 C18.5,22.0596394 18.5954191,21.8967559 18.7459815,21.8080045 L18.7459815,21.8080045 L18.8256714,21.7700748 C19.2929259,21.5962562 19.7345932,21.3427534 20.0884537,21.0392008 C20.2496875,20.9008895 20.480715,20.8795567 20.6645495,20.986005 L20.6645495,20.986005 L21.318,21.365 L22.317,19.633 L21.6602648,19.2548655 C21.5031454,19.1642806 21.4094794,18.9973313 21.4099758,18.8204234 L21.4099758,18.8204234 L21.4182131,18.731447 C21.463795,18.4830721 21.487,18.2410768 21.487,17.9997 C21.487,17.7651226 21.4629345,17.5235841 21.4162734,17.2702812 C21.3779518,17.0622495 21.4746881,16.852612 21.6578414,16.7467789 L21.6578414,16.7467789 L22.316,16.365 L21.317,14.635 L20.6651926,15.014022 C20.5077428,15.1055052 20.3154767,15.1031439 20.1620923,15.0136362 L20.1620923,15.0136362 L20.0889815,14.9616512 C19.7336822,14.6577206 19.2911159,14.4034705 18.8256714,14.2303252 C18.629876,14.1574893 18.5,13.9706041 18.5,13.7617 L18.5,13.7617 L18.499,12.999 Z M11.5,0 C11.5289644,0 11.5576698,0.00251316923 11.5858244,0.00741874956 L11.5,0 C11.53718,0 11.5734121,0.00405810679 11.6082776,0.0117555499 C11.627752,0.0161752938 11.6470999,0.0217060499 11.6660321,0.0283713194 C11.6767797,0.032003496 11.6875823,0.0362330462 11.6981944,0.04081971 C11.7122274,0.0470222758 11.7258544,0.0536592396 11.7391668,0.06090986 C11.7513627,0.0674500504 11.7634712,0.0747354237 11.7752322,0.0825044328 C11.7813925,0.0866293699 11.7874946,0.090849458 11.7935072,0.0952091774 L11.805052,0.103808328 C11.8176175,0.113497606 11.8297092,0.123771313 11.8412864,0.134588748 L11.8535534,0.146446609 L16.8535534,5.14644661 L16.8654113,5.15871357 C16.8762287,5.17029076 16.8865024,5.18238246 16.8961917,5.19494796 L16.8535534,5.14644661 C16.8776939,5.17058707 16.8991102,5.19694105 16.9176052,5.22503102 C16.9252646,5.23652877 16.9325499,5.24863729 16.9393234,5.26106504 C16.9465411,5.27453926 16.9531837,5.28820982 16.9591906,5.30215157 C16.963767,5.31241775 16.9679965,5.32322028 16.9718538,5.33419807 C16.9779762,5.35206799 16.9831476,5.36993766 16.9873149,5.38808049 C16.9890356,5.39509078 16.9905746,5.40257807 16.9919443,5.41012437 L16.9939073,5.42216869 L16.9939073,5.42216869 L17,5.50109091 L16.9879988,11.0010909 L15.9880012,10.9989091 L15.999,6 L11.5,6 C11.2545401,6 11.0503916,5.82312484 11.0080557,5.58987563 L11,5.5 L11,1 L1,1 L1,21 L11,21 L11,22 L0.5,22 C0.254540111,22 0.0503916296,21.8231248 0.00805566941,21.5898756 L0,21.5 L0,0.5 C0,0.254540111 0.176875161,0.0503916296 0.410124368,0.00805566941 L0.5,0 L11.5,0 Z M17.4863,15.5 C18.8674424,15.5 19.9863,16.6188576 19.9863,18 C19.9863,19.3804491 18.8671357,20.5 17.4863,20.5 C16.1061576,20.5 14.9863,19.3801424 14.9863,18 C14.9863,16.6191643 16.1058509,15.5 17.4863,15.5 Z M17.4863,16.5 C16.6580583,16.5 15.9863,17.1715263 15.9863,18 C15.9863,18.8278576 16.6584424,19.5 17.4863,19.5 C18.3147737,19.5 18.9863,18.8282417 18.9863,18 C18.9863,17.1711424 18.3151576,16.5 17.4863,16.5 Z M6.11135339,8.41104661 C6.28491974,8.58461296 6.30420489,8.85403736 6.16920884,9.0489055 L6.11135339,9.11815339 L3.695,11.534 L6.11128956,13.9499828 C6.28488724,14.1235178 6.30422103,14.3929387 6.16926016,14.5878312 L6.11141721,14.6570896 C5.9378822,14.8306872 5.66846129,14.850021 5.47356878,14.7150602 L5.40431044,14.6572172 L2.63431044,11.8882172 C2.4606906,11.71466 2.44137692,11.4451978 2.5763848,11.2503036 L2.63424661,11.1810466 L5.40424661,8.41104661 C5.59950876,8.21578446 5.91609124,8.21578446 6.11135339,8.41104661 Z M9.5030055,8.35319116 L9.57225339,8.41104661 L12.3422534,11.1810466 C12.5158419,11.3546351 12.5351069,11.6241009 12.4000639,11.8189707 L12.3421896,11.8882172 L9.57218956,14.6572172 C9.37689216,14.8524441 9.06030968,14.8523869 8.86508279,14.6570896 C8.69154777,14.4834919 8.67231126,14.214064 8.80734249,14.0192202 L8.86521044,13.9499828 L11.281,11.534 L8.86514661,9.11815339 C8.69158026,8.94458704 8.67229511,8.67516264 8.80729116,8.4802945 L8.86514661,8.41104661 C9.03871296,8.23748026 9.30813736,8.21819511 9.5030055,8.35319116 Z M12,1.707 L12,5 L15.293,5 L12,1.707 Z"/>
756
+ </symbol>
757
+ <symbol id="icon-import-export" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
758
+ <path stroke="none" fill-rule="evenodd" d="M11.8063167,4.9 L14.9063167,1.7 L14.9063167,12.5 C14.9063167,12.8 15.1063167,13 15.4063167,13 C15.7063167,13 15.9063167,12.8 15.9063167,12.5 L15.9063167,1.7 L19.0063167,4.8 C19.2063167,5 19.5063167,5 19.7063167,4.8 C19.9063167,4.6 19.9063167,4.3 19.7063167,4.1 L15.7063167,0.1 C15.7063167,0.1 15.6063167,0 15.5063167,0 C15.5063167,3.60822483e-16 15.3063167,3.60822483e-16 15.2063167,3.60822483e-16 C15.1063167,3.60822483e-16 15.1063167,0.1 15.0063167,0.1 C15.0063167,0.1 15.0063167,0.1 15.0063167,0.1 L11.0063167,4.1 C10.8063167,4.3 10.8063167,4.6 11.0063167,4.8 C11.2063167,5 11.6063167,5 11.8063167,4.9 Z M9.00631668,12.9 C9.00631668,12.9 9.00631668,12.9 9.00631668,12.9 C9.10631668,12.9 9.10631668,13 9.20631668,13 C9.30631668,13 9.30631668,13 9.40631668,13 C9.40631668,13 9.40631668,13 9.40631668,13 C9.50631668,13 9.50631668,13 9.60631668,13 C9.70631668,13 9.70631668,12.9 9.80631668,12.9 C9.80631668,12.9 9.80631668,12.9 9.80631668,12.9 L13.8063167,8.9 C14.0063167,8.7 14.0063167,8.4 13.8063167,8.2 C13.6063167,8 13.3063167,8 13.1063167,8.2 L9.90631668,11.3 L9.90631668,0.5 C9.90631668,0.2 9.70631668,0 9.40631668,0 C9.10631668,0 8.90631668,0.2 8.90631668,0.5 L8.90631668,11.3 L5.80631668,8.1 C5.60631668,8 5.20631668,8 5.00631668,8.1 C4.90631668,8.3 4.90631668,8.7 5.00631668,8.9 L9.00631668,12.9 Z M15.9063167,21 L19.9063167,21 C20.2063167,21 20.4063167,20.8 20.4063167,20.5 C20.4063167,20.2 20.2063167,20 19.9063167,20 L15.9063167,20 C15.6063167,20 15.4063167,20.2 15.4063167,20.5 C15.4063167,20.8 15.6063167,21 15.9063167,21 Z M23.9063167,17.5 C23.9063167,17.4 23.9063167,17.4 23.9063167,17.5 C23.9063167,17.4 23.8063167,17.3 23.8063167,17.2 C23.8063167,17.2 23.8063167,17.2 23.8063167,17.2 L18.8063167,11.2 C18.2063167,11.1 18.0063167,11.4 18.2063167,12 L22.4063167,17 L1.50631668,17 L5.70631668,12 C6.00631668,11.2 5.80631668,11 5.10631668,11.2 L0.10631668,17.2 C0.10631668,17.2 0.10631668,17.2 0.10631668,17.2 C0.10631668,17.3 0.00631667954,17.3 0.00631667954,17.4 C0.00631667954,17.4 0.00631667954,17.4 0.00631667954,17.5 C0.00631667954,17.5 0.00631667954,17.5 0.00631667954,17.5 L0.00631667954,21.5 C-0.0936833205,22.9 1.00631668,24 2.40631668,24 L21.4063167,24 C22.8063167,24 23.9063167,22.9 23.9063167,21.5 L23.9063167,17.5 C23.9063167,17.5 23.9063167,17.5 23.9063167,17.5 Z M22.9063167,21.5 C22.9063167,22.3 22.2063167,23 21.4063167,23 L2.40631668,23 C1.60631668,23 0.90631668,22.3 0.90631668,21.5 L0.90631668,18 L22.9063167,18 L22.9063167,21.5 Z"/>
759
+ </symbol>
760
+ <symbol id="icon-import" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
761
+ <path stroke="none" fill-rule="evenodd" d="M16.175,8.1 L13.075,11.3 L13.075,0.5 C13.075,0.2 12.875,0 12.575,0 C12.275,0 12.075,0.2 12.075,0.5 L12.075,11.3 L8.975,8.2 C8.875,8 8.675,8 8.575,8 C8.475,8 8.275,8 8.175,8.1 C7.975,8.3 7.975,8.6 8.175,8.8 L12.175,12.8 C12.175,12.8 12.275,12.9 12.375,12.9 C12.475,13 12.675,13 12.775,13 C12.875,13 12.875,12.9 12.975,12.9 L16.975,8.9 C17.075,8.7 17.075,8.3 16.975,8.1 C16.875,7.9 16.375,8 16.175,8.1 Z M16,21 L20,21 C20.3,21 20.5,20.8 20.5,20.5 C20.5,20.2 20.3,20 20,20 L16,20 C15.7,20 15.5,20.2 15.5,20.5 C15.5,20.8 15.7,21 16,21 Z M23.9,17.3 L18.9,11.3 C18.8,11.2 18.7,11.1 18.5,11.1 L17.5,11.1 C17.2,11.1 17,11.3 17,11.6 C17,11.9 17.2,12.1 17.5,12.1 L18.3,12.1 L22.5,17.1 L1.6,17.1 L5.8,12.1 L7,12.1 C7.3,12.1 7.5,11.9 7.5,11.6 C7.5,11.3 7.3,11 7,11 L5.5,11 C5.4,11 5.2,11.1 5.1,11.2 L0.1,17.2 C0.1,17.3 0,17.3 0,17.4 C0,17.4 0,17.4 0,17.5 L0,21.5 C3.60822483e-16,22.9 1.1,24 2.5,24 L21.5,24 C22.9,24 24,22.9 24,21.5 L24,17.5 C24,17.4 23.9,17.3 23.9,17.3 Z M23,21.5 C23,22.3 22.3,23 21.5,23 L2.5,23 C1.7,23 1,22.3 1,21.5 L1,18 L23,18 L23,21.5 Z"/>
762
+ </symbol>
763
+ <symbol id="icon-info" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
764
+ <path stroke="none" fill-rule="evenodd" d="M9.6,16 L9.6,9 L8.3,9 L8.3,8 L10.1,8 C10.4,8 10.6,8.2 10.6,8.5 L10.6,16 L12.8,16 L12.8,17 L7.4,17 L7.4,16 L9.6,16 Z M9.7,4 C10.2,4 10.6,4.4 10.6,4.9 C10.6,5.4 10.2,5.8 9.7,5.8 C9.2,5.8 8.8,5.4 8.8,4.9 C8.7,4.5 9.1,4 9.7,4 Z M19.4,10.3 C19.4,5.2 15.3,1.1 10.2,1.1 C5.1,1.1 1,5.2 1,10.3 C1,15.4 5.1,19.5 10.2,19.5 C15.2,19.6 19.4,15.4 19.4,10.3 Z M20.4,10.3 C20.4,16 15.8,20.5 10.2,20.5 C4.5,20.5 -1.81188398e-13,15.9 -1.81188398e-13,10.3 C-1.81188398e-13,4.7 4.4,0 10.1,0 C15.8,0 20.4,4.6 20.4,10.3 Z"/>
765
+ </symbol>
766
+ <symbol id="icon-languages" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
767
+ <path stroke="none" fill-rule="evenodd" d="M2.32298137,1.30434783 C1.7604056,1.30434783 1.30434783,1.7604056 1.30434783,2.32298137 L1.30434783,21.6770186 C1.30434783,22.2395944 1.7604056,22.6956522 2.32298137,22.6956522 L21.6770186,22.6956522 C22.2395944,22.6956522 22.6956522,22.2395944 22.6956522,21.6770186 L22.6956522,2.32298137 C22.6956522,1.7604056 22.2395944,1.30434783 21.6770186,1.30434783 L2.32298137,1.30434783 Z M2.08695652,0 L21.9130435,0 C23.0656377,0 24,0.934362261 24,2.08695652 L24,21.9130435 C24,23.0656377 23.0656377,24 21.9130435,24 L2.08695652,24 C0.934362261,24 0,23.0656377 0,21.9130435 L0,2.08695652 C0,0.934362261 0.934362261,0 2.08695652,0 Z M8.34782609,2.86956522 C8.78004893,2.86956522 9.13043478,3.21995107 9.13043478,3.65217391 L9.13030435,5.47756522 L12.5217391,5.47826087 C12.953962,5.47826087 13.3043478,5.82864672 13.3043478,6.26086957 C13.3043478,6.69309241 12.953962,7.04347826 12.5217391,7.04347826 L11.0127673,7.04271688 C10.6379048,8.1191625 10.0168214,9.21007333 9.25218398,10.173134 C10.3291046,11.0458702 11.2887861,11.4689941 12.6794903,11.7551943 C13.1028413,11.8423179 13.3754075,12.2561393 13.2882839,12.6794903 C13.2011603,13.1028413 12.7873389,13.3754075 12.3639879,13.2882839 C10.7025276,12.9463634 9.50199038,12.4052337 8.19610286,11.3333997 C6.95846368,12.5095592 5.51873924,13.3043478 4.17391304,13.3043478 C3.7416902,13.3043478 3.39130435,12.953962 3.39130435,12.5217391 C3.39130435,12.0895163 3.7416902,11.7391304 4.17391304,11.7391304 C5.94491738,11.7391304 8.30784918,9.39159528 9.33166979,7.04292098 L4.17391304,7.04347826 C3.7416902,7.04347826 3.39130435,6.69309241 3.39130435,6.26086957 C3.39130435,5.82864672 3.7416902,5.47826087 4.17391304,5.47826087 L7.56430435,5.47756522 L7.56521739,3.65217391 C7.56521739,3.21995107 7.91560324,2.86956522 8.34782609,2.86956522 Z M16.6956522,10.6956522 C18.2753052,10.6956522 19.5652174,11.7854522 19.5652174,13.461854 L19.5652174,19.826087 C19.5652174,20.2583098 19.2148315,20.6086957 18.7826087,20.6086957 C18.3503858,20.6086957 18,20.2583098 18,19.826087 L17.999087,17.9996522 L15.391087,17.9996522 L15.3913043,19.826087 C15.3913043,20.2583098 15.0409185,20.6086957 14.6086957,20.6086957 C14.1764728,20.6086957 13.826087,20.2583098 13.826087,19.826087 L13.826087,13.461854 C13.826087,11.7854522 15.1159992,10.6956522 16.6956522,10.6956522 Z M16.6956522,12.2608696 C15.9274791,12.2608696 15.3913043,12.7138642 15.3913043,13.461854 L15.391087,16.4346522 L17.999087,16.4346522 L18,13.461854 C18,12.7138642 17.4638252,12.2608696 16.6956522,12.2608696 Z"/>
768
+ </symbol>
769
+ <symbol id="icon-list-view" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
770
+ <path stroke="none" fill-rule="evenodd" d="M4,18 L4,16 L2,16 L2,18 L4,18 Z M4.5,19 L1.5,19 C1.2,19 1,18.7 1,18.5 L1,15.5 C1,15.2 1.2,15 1.5,15 L4.5,15 C4.8,15 5,15.2 5,15.5 L5,18.5 C5,18.7 4.8,19 4.5,19 Z M7.5,4 L18.5,4 C19.2,4 19.2,5 18.5,5 L7.5,5 C6.8,5 6.8,4 7.5,4 Z M4,6 L4,4 L2,4 L2,6 L4,6 Z M4.5,7 L1.5,7 C1.2,7 1,6.7 1,6.5 L1,3.5 C1,3.2 1.2,3 1.5,3 L4.5,3 C4.8,3 5,3.2 5,3.5 L5,6.5 C5,6.7 4.8,7 4.5,7 Z M7.5,10 L18.5,10 C19.2,10 19.2,11 18.5,11 L7.5,11 C6.8,11 6.8,10 7.5,10 Z M4,12 L4,10 L2,10 L2,12 L4,12 Z M4.5,13 L1.5,13 C1.2,13 1,12.7 1,12.5 L1,9.5 C1,9.2 1.2,9 1.5,9 L4.5,9 C4.8,9 5,9.2 5,9.5 L5,12.5 C5,12.7 4.8,13 4.5,13 Z M7.5,16 L18.5,16 C19.2,16 19.2,17 18.5,17 L7.5,17 C6.8,17 6.8,16 7.5,16 Z"/>
771
+ </symbol>
772
+ <symbol id="icon-lock" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
773
+ <path stroke="none" fill-rule="evenodd" d="M12,0 C15.3141424,0 18,2.68585763 18,6 L18,6 L18,11 L20.5,11 C20.7454599,11 20.9496084,11.1768752 20.9919443,11.4101244 L21,11.5 L21,23.5 C21,23.7761424 20.7761424,24 20.5,24 L20.5,24 L3.5,24 C3.22385763,24 3,23.7761424 3,23.5 L3,23.5 L3,11.5 C3,11.2238576 3.22385763,11 3.5,11 L3.5,11 L6,11 L6,6 C6,2.76117904 8.56516051,0.122408965 11.7750335,0.00413781501 Z M20,12 L4,12 L4,23 L20,23 L20,12 Z M12,15 C12.5523336,15 13,15.4470481 13,16 C13,16.3687862 12.7995319,16.6916367 12.5015919,16.8649998 L12.5,19.5 C12.5,19.7761424 12.2761424,20 12,20 C11.7545401,20 11.5503916,19.8231248 11.5080557,19.5898756 L11.5,19.5 L11.4994027,16.8655778 C11.2009143,16.6923549 11,16.3691964 11,16 C11,15.4470481 11.4476664,15 12,15 Z M12,1 C9.23814237,1 7,3.23814237 7,6 L7,6 L7,11 L17,11 L17,6 C17,3.31082284 14.8781046,1.11815965 12.2169221,1.00461864 L12.2169221,1.00461864 Z"/>
774
+ </symbol>
775
+ <symbol id="icon-logout" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
776
+ <path stroke="none" fill-rule="evenodd" d="M15.4666667,0 C15.7284905,0 15.9462489,0.184565385 15.9914073,0.427955862 L16,0.52173913 L16,4.89440994 C16,5.1825585 15.7612185,5.41614907 15.4666667,5.41614907 C15.2048428,5.41614907 14.9870844,5.23158368 14.941926,4.98819321 L14.9333333,4.89440994 L14.9333333,1.04295652 L1.06666667,1.04295652 L1.06666667,22.956 L14.9333333,22.956 L14.9333333,20.2206211 C14.9333333,19.9644891 15.1220002,19.7514646 15.3707993,19.7072879 L15.4666667,19.698882 C15.7284905,19.698882 15.9462489,19.8834474 15.9914073,20.1268378 L16,20.2206211 L16,23.4782609 C16,23.7343929 15.8113332,23.9474174 15.562534,23.9915941 L15.4666667,24 L0.533333333,24 C0.271509452,24 0.0537510716,23.8154346 0.00859271404,23.5720441 L0,23.4782609 L0,0.52173913 C0,0.265607073 0.188666838,0.0525825701 0.437465992,0.00840591591 L0.533333333,0 L15.4666667,0 Z M18.8035555,6.11113193 L18.8699731,6.17730595 L23.8699701,12.1356358 C23.9447152,12.224707 23.987236,12.3340227 23.9975325,12.4461271 C23.9989527,12.4634134 24,12.4815905 24,12.5 L23.9974814,12.5544268 C23.990112,12.6338364 23.9665709,12.711832 23.9268582,12.7822079 L23.8699701,12.8643642 L18.8699731,18.822694 C18.6842197,19.0440501 18.3679957,19.0603633 18.163667,18.8591305 C17.9820415,18.6802569 17.949963,18.3897047 18.0755373,18.1718804 L18.1300334,18.0939656 L22.405,13 L4.52631579,13 C4.23563961,13 4,12.7761424 4,12.5 C4,12.2545401 4.18618438,12.0503916 4.43170986,12.0080557 L4.52631579,12 L22.406,12 L18.1300334,6.90603439 C17.9649193,6.70927343 17.9584712,6.41673378 18.1025833,6.2128219 L18.163667,6.14086953 C18.3452925,5.96199593 18.6153291,5.95501048 18.8035555,6.11113193 Z"/>
777
+ </symbol>
778
+ <symbol id="icon-logs" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
779
+ <path stroke="none" fill-rule="evenodd" d="M11.5280248,0.00210971502 C11.5456255,0.00071029323 11.56339,6.66133815e-15 11.5812682,6.66133815e-15 C11.7563047,6.66133815e-15 11.8972991,0.0680838923 11.9843897,0.184389741 L16.8368829,5.03688287 C16.8538014,5.05137898 16.869545,5.06712258 16.8840411,5.08404113 L16.9,5.1 C16.9,5.10127305 16.9000162,5.1025623 16.9000482,5.10386735 C16.9634448,5.18724679 16.9988704,5.29579378 16.9988704,5.42205359 C16.9988704,5.43755484 16.9983364,5.4527891 16.9972823,5.46774258 C16.9990305,5.47933731 17,5.49015343 17,5.5 L17,10 L16,10 L16,5.92205359 L11.51331,5.92205359 C11.21331,5.92205359 11.01331,5.72205359 11.01331,5.42205359 L11.01331,1 L1,1 L1,21 L11,21 L11,22 L0.5,22 C0.2,22 0,21.8 0,21.5 L0,0.5 C0,0.2 0.2,0 0.5,0 L11.5,0 C11.5086384,0 11.5180229,0.000746211971 11.5280248,0.00210971502 Z M15.2103247,4.91032471 L12.0812682,1.78126823 L12.0812682,4.88184273 L15.2103247,4.91032471 Z M3.5,7 C3.2,7 3,6.8 3,6.5 C3,6.2 3.2,6 3.5,6 L8,6 C8.3,6 8.5,6.2 8.5,6.5 C8.5,6.8 8.3,7 8,7 L3.5,7 Z M3.5,10 C3.2,10 3,9.8 3,9.5 C3,9.2 3.2,9 3.5,9 L11.5,9 C11.8,9 12,9.2 12,9.5 C12,9.8 11.8,10 11.5,10 L3.5,10 Z M3.5,13 C3.2,13 3,12.8 3,12.5 C3,12.2 3.2,12 3.5,12 L9.5,12 C9.8,12 10,12.2 10,12.5 C10,12.8 9.8,13 9.5,13 L3.5,13 Z M3.5,16 C3.2,16 3,15.8 3,15.5 C3,15.2 3.2,15 3.5,15 L8.5,15 C8.8,15 9,15.2 9,15.5 C9,15.8 8.8,16 8.5,16 L3.5,16 Z M24,17.5 C24,21.1 21.1,24 17.5,24 C13.9,24 11,21.1 11,17.5 C11,13.9 13.9,11 17.5,11 C21.1,11 24,13.9 24,17.5 Z M23,17.5 C23,14.5 20.5,12 17.5,12 C14.5,12 12,14.5 12,17.5 C12,20.5 14.5,23 17.5,23 C20.5,23 23,20.5 23,17.5 Z M18,17 L19.5,17 C19.8,17 20,17.2 20,17.5 C20,17.8 19.8,18 19.5,18 L17.5,18 C17.2,18 17,17.8 17,17.5 L17,14 C17,13.7 17.2,13.5 17.5,13.5 C17.8,13.5 18,13.7 18,14 L18,17 Z"/>
780
+ </symbol>
781
+ <symbol id="icon-notes-empty" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
782
+ <path stroke="none" fill-rule="evenodd" d="M20.647423,12.1464702 C20.8426814,11.9511858 21.159282,11.9511753 21.3545534,12.1464466 L21.3545534,12.1464466 L23.8545534,14.6464466 C24.0498063,14.8416996 24.0498169,15.1582639 23.854577,15.3535298 L23.854577,15.3535298 L16.3535534,22.8555534 L16.3535534,22.8555534 C16.3210097,22.8880971 16.285096,22.9152168 16.2469356,22.9369126 C16.2129068,22.9561538 16.1759475,22.9717371 16.1373606,22.982762 L16.2132588,22.9543902 C16.1996901,22.9607858 16.1858931,22.9665371 16.1719139,22.971644 L16.1373606,22.982762 L12.6373606,23.982762 C12.2601846,24.0905265 11.9114735,23.7418154 12.019238,23.3646394 L12.019238,23.3646394 L13.019238,19.8646394 C13.0225865,19.8529199 13.0263554,19.8413506 13.0305326,19.829952 C13.0354629,19.8161069 13.0412142,19.8023099 13.0476098,19.7887412 C13.0533177,19.7769701 13.0592152,19.7656276 13.0655371,19.7545288 C13.0867832,19.716904 13.1139029,19.6809903 13.1464466,19.6484466 Z M13.746,20.955 L13.227,22.774 L15.045,22.254 L13.746,20.955 Z M11.5,1.77635684e-14 C11.5289644,1.77635684e-14 11.5576698,0.00251316923 11.5858244,0.00741874956 L11.5,1.77635684e-14 C11.53718,1.77635684e-14 11.5734121,0.00405810679 11.6082776,0.0117555499 C11.627752,0.0161752938 11.6470999,0.0217060499 11.6660321,0.0283713194 C11.6767797,0.032003496 11.6875823,0.0362330462 11.6981944,0.04081971 C11.7122274,0.0470222758 11.7258544,0.0536592396 11.7391668,0.06090986 C11.7513627,0.0674500504 11.7634712,0.0747354237 11.7752322,0.0825044328 C11.7813925,0.0866293699 11.7874946,0.090849458 11.7935072,0.0952091774 L11.805052,0.103808328 C11.8176175,0.113497606 11.8297092,0.123771313 11.8412864,0.134588748 L11.8535534,0.146446609 L16.8535534,5.14644661 L16.8654113,5.15871357 C16.8762287,5.17029076 16.8865024,5.18238246 16.8961917,5.19494796 L16.8535534,5.14644661 C16.8776252,5.17051844 16.8989891,5.19679203 16.917449,5.22479402 C16.9252646,5.23652877 16.9325499,5.24863729 16.9393234,5.26106504 C16.9463408,5.27414565 16.9529777,5.28777256 16.9589828,5.30166987 C16.963767,5.31241775 16.9679965,5.32322028 16.9718538,5.33419807 C16.978294,5.35290006 16.9838247,5.37224798 16.9881784,5.39190902 C16.9895896,5.39781538 16.9908237,5.40395012 16.9919443,5.41012437 C16.992995,5.41655007 16.9933917,5.41892848 16.9937713,5.42131063 L17,5.5 L17,13 L16,13 L16,6 L11.5,6 C11.2545401,6 11.0503916,5.82312484 11.0080557,5.58987563 L11,5.5 L11,1 L1,1 L1,21 L9.5,21 L9.5,22 L0.5,22 C0.254540111,22 0.0503916296,21.8231248 0.00805566941,21.5898756 L2.30926389e-14,21.5 L2.30926389e-14,0.5 C2.30926389e-14,0.254540111 0.176875161,0.0503916296 0.410124368,0.00805566941 L0.5,1.77635684e-14 L11.5,1.77635684e-14 Z M19,15.206 L14.206,20.001 L15.999,21.794 L20.794,17 L19,15.206 Z M21.001,13.207 L19.707,14.499 L21.501,16.293 L22.794,15 L21.001,13.207 Z M12,1.707 L12,5 L15.294,5 L12,1.707 Z"/>
783
+ </symbol>
784
+ <symbol id="icon-notes-filled" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
785
+ <path stroke="none" fill-rule="evenodd" d="M20.6464466,11.6464466 C20.8417088,11.4511845 21.1582912,11.4511845 21.3535534,11.6464466 L21.3535534,11.6464466 L23.8535534,14.1464466 C24.0488155,14.3417088 24.0488155,14.6582912 23.8535534,14.8535534 L23.8535534,14.8535534 L16.3515534,22.3555534 L16.3515534,22.3555534 C16.3190097,22.3880971 16.283096,22.4152168 16.2449356,22.4369126 C16.2108971,22.4561579 16.1739424,22.4717386 16.1353606,22.482762 L16.2112588,22.4543902 C16.1976901,22.4607858 16.1838931,22.4665371 16.1699139,22.471644 L16.1353606,22.482762 L12.6353606,23.482762 C12.2581846,23.5905265 11.9094735,23.2418154 12.017238,22.8646394 L12.017238,22.8646394 L13.017238,19.3646394 C13.0205869,19.3529184 13.0243564,19.3413475 13.0285343,19.3299475 C13.0334629,19.3161069 13.0392142,19.3023099 13.0456098,19.2887412 C13.0513233,19.276959 13.0572218,19.2656152 13.0635449,19.2545151 C13.0847832,19.216904 13.1119029,19.1809903 13.1444466,19.1484466 Z M13.744,20.455 L13.225,22.274 L15.044,21.755 L13.744,20.455 Z M16.9939428,5.42239391 L17,5.50137719 L16.9819981,12.0363772 L15.9820019,12.0336228 L15.998,6 L11.5,6 C11.2545401,6 11.0503916,5.82312484 11.0080557,5.58987563 L11,5.5 L11,1 L1,1 L1,21 L11,21 L11,22 L0.5,22 C0.254540111,22 0.0503916296,21.8231248 0.00805566941,21.5898756 L-1.42108547e-14,21.5 L-1.42108547e-14,0.5 C-1.42108547e-14,0.254540111 0.176875161,0.0503916296 0.410124368,0.00805566941 L0.5,1.77635684e-14 L11.5,1.77635684e-14 C11.5289644,1.77635684e-14 11.5576698,0.00251316923 11.5858244,0.00741874956 L11.5,1.77635684e-14 C11.53718,1.77635684e-14 11.5734121,0.00405810679 11.6082776,0.0117555499 C11.627752,0.0161752938 11.6470999,0.0217060499 11.6660321,0.0283713194 C11.6767797,0.032003496 11.6875823,0.0362330462 11.6981944,0.04081971 C11.7122274,0.0470222758 11.7258544,0.0536592396 11.7391668,0.06090986 C11.7513627,0.0674500504 11.7634712,0.0747354237 11.7752322,0.0825044328 C11.7813925,0.0866293699 11.7874946,0.090849458 11.7935072,0.0952091774 L11.805052,0.103808328 C11.8176175,0.113497606 11.8297092,0.123771313 11.8412864,0.134588748 L11.8535534,0.146446609 L16.8535534,5.14644661 L16.8654113,5.15871357 C16.8762287,5.17029076 16.8865024,5.18238246 16.8961917,5.19494796 L16.8535534,5.14644661 C16.8777119,5.17060508 16.8991419,5.19698016 16.9176461,5.22509324 C16.9252646,5.23652877 16.9325499,5.24863729 16.9393234,5.26106504 C16.9460119,5.27357186 16.9521693,5.28613455 16.9577891,5.29892993 C16.9633616,5.31127723 16.9683748,5.32406798 16.9728642,5.33710256 C16.9780698,5.35260169 16.9827131,5.36859599 16.9865529,5.3848132 C16.9886127,5.39304989 16.9903879,5.40154903 16.9919443,5.41012437 L16.9939428,5.42239391 L16.9939428,5.42239391 Z M19,14.707 L14.205,19.502 L15.998,21.295 L20.793,16.5 L19,14.707 Z M8.4814,15 C8.75754237,15 8.9814,15.2238576 8.9814,15.5 C8.9814,15.7454599 8.80452484,15.9496084 8.57127563,15.9919443 L8.4814,16 L3.4814,16 C3.20525763,16 2.9814,15.7761424 2.9814,15.5 C2.9814,15.2545401 3.15827516,15.0503916 3.39152437,15.0080557 L3.4814,15 L8.4814,15 Z M21,12.707 L19.707,14 L21.5,15.793 L22.793,14.5 L21,12.707 Z M9.4814,12 C9.75754237,12 9.9814,12.2238576 9.9814,12.5 C9.9814,12.7454599 9.80452484,12.9496084 9.57127563,12.9919443 L9.4814,13 L3.4814,13 C3.20525763,13 2.9814,12.7761424 2.9814,12.5 C2.9814,12.2545401 3.15827516,12.0503916 3.39152437,12.0080557 L3.4814,12 L9.4814,12 Z M11.4814,9 C11.7575424,9 11.9814,9.22385763 11.9814,9.5 C11.9814,9.74545989 11.8045248,9.94960837 11.5712756,9.99194433 L11.4814,10 L3.4814,10 C3.20525763,10 2.9814,9.77614237 2.9814,9.5 C2.9814,9.25454011 3.15827516,9.05039163 3.39152437,9.00805567 L3.4814,9 L11.4814,9 Z M7.9814,6 C8.25754237,6 8.4814,6.22385763 8.4814,6.5 C8.4814,6.74545989 8.30452484,6.94960837 8.07127563,6.99194433 L7.9814,7 L3.4814,7 C3.20525763,7 2.9814,6.77614237 2.9814,6.5 C2.9814,6.25454011 3.15827516,6.05039163 3.39152437,6.00805567 L3.4814,6 L7.9814,6 Z M15.293,5 L12,1.707 L12,5 L15.293,5 Z"/>
786
+ </symbol>
787
+ <symbol id="icon-open-in-new-tab" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
788
+ <path fill="#333" d="M6.5,2.98 C6.77614237,2.98 7,3.20385763 7,3.48 C7,3.72545989 6.82312484,3.92960837 6.58987563,3.97194433 L6.5,3.98 L1,3.98 L1,14.98 L12,14.98 L12,9.52 C12,9.27454011 12.1768752,9.07039163 12.4101244,9.02805567 L12.5,9.02 C12.7454599,9.02 12.9496084,9.19687516 12.9919443,9.43012437 L13,9.52 L13,15.48 C13,15.7254599 12.8231248,15.9296084 12.5898756,15.9719443 L12.5,15.98 L0.5,15.98 C0.254540111,15.98 0.0503916296,15.8031248 0.00805566941,15.5698756 L0,15.48 L0,3.48 C0,3.23454011 0.176875161,3.03039163 0.410124368,2.98805567 L0.5,2.98 L6.5,2.98 Z M9.41012437,0.00805566941 L9.5,0 L15.5115408,0.000132376874 C15.5324012,0.0006109983 15.5532373,0.00238749635 15.5739178,0.00546187104 L15.5,0 L15.5534276,0.00282096186 L15.6281458,0.0166082551 L15.6910366,0.0377922373 L15.7670103,0.0771880058 L15.8221372,0.117583716 L15.8535534,0.146446609 L15.891039,0.188337752 L15.9332526,0.250234852 L15.9623894,0.3094049 L15.9833892,0.371860863 L15.997912,0.454213822 L16,0.5 L16,6.5 C16,6.77614237 15.7761424,7 15.5,7 C15.2545401,7 15.0503916,6.82312484 15.0080557,6.58987563 L15,6.5 L15,1.706 L3.85355339,12.8535534 C3.65829124,13.0488155 3.34170876,13.0488155 3.14644661,12.8535534 C2.97288026,12.679987 2.95359511,12.4105626 3.08859116,12.2156945 L3.14644661,12.1464466 L14.292,1 L9.5,1 C9.25454011,1 9.05039163,0.823124839 9.00805567,0.589875632 L9,0.5 C9,0.254540111 9.17687516,0.0503916296 9.41012437,0.00805566941 Z"/>
789
+ </symbol>
790
+ <symbol id="icon-opera" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs>
791
+ <linearGradient id="OperaA" x1="12" y1=".26" x2="12" y2="24.09" gradientUnits="userSpaceOnUse">
792
+ <stop offset=".46" stop-color="#e52d37"/>
793
+ <stop offset="1" stop-color="#981917"/>
794
+ </linearGradient>
795
+ <linearGradient id="OperaB" x1="15.95" y1="22.29" x2="15.95" y2="1.71" gradientUnits="userSpaceOnUse">
796
+ <stop offset="0" stop-color="#e94d50"/>
797
+ <stop offset="1" stop-color="#941914"/>
798
+ </linearGradient>
799
+ </defs>
800
+ <path d="M19.28 2.46A12 12 0 1 0 24 12a12 12 0 0 0-4.72-9.54zm-11 16.09A10.86 10.86 0 0 1 7.9 5.92h0a5.25 5.25 0 0 1 4.17-2.33c3.33 0 6 3.78 6 8.44s-2.71 8.45-6 8.45a5.09 5.09 0 0 1-3.83-1.92z" fill="url(#OperaA)"/>
801
+ <path d="M24,12a12,12,0,0,1-4.72,9.54,9.15,9.15,0,0,1-3.61.75,9.34,9.34,0,0,1-7.42-3.74,5.09,5.09,0,0,0,3.83,1.92c3.33,0,6-3.78,6-8.45s-2.71-8.44-6-8.44A5.25,5.25,0,0,0,7.91,5.91a9.41,9.41,0,0,1,7.76-4.2,9.15,9.15,0,0,1,3.61.75A12,12,0,0,1,24,12Z" fill="url(#OperaB)"/>
802
+ </symbol>
803
+ <symbol id="icon-orckestra-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 260 260">
804
+ <path stroke="none" d="M1.11,125.62C1.11,74.94,40.22,39,93.72,39S186,74.94,186,125.62s-38.79,86.66-92.29,86.66S1.11,176.3,1.11,125.62Zm135.47,0c0-29.1-18.46-46.62-42.86-46.62S50.54,96.52,50.54,125.62s18.77,46.62,43.18,46.62S136.58,154.72,136.58,125.62Z" />
805
+ <circle id="ac06531b-599d-4b05-a30e-b1c94e55ddff" data-name="fullLogo" cx="227.6" cy="181.13" r="31.29" fill="#000000" opacity="0.33"/>
806
+ <circle id="af2ef0cf-5c47-4a93-b3be-f4e8ec48b016" data-name="fullLogo" cx="227.6" cy="181.13" r="31.29" fill="#e00600"/>
807
+ </symbol>
808
+ <symbol id="icon-orders-settings" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
809
+ <path stroke="none" d="M12.1212737,0.0149273899 L12.1993631,0.0414649719 L23.6993631,5.04146497 C23.7267178,5.05378722 23.7458342,5.06406299 23.7642168,5.07551155 L23.6993631,5.04146497 C23.7308114,5.05513816 23.7601438,5.07165577 23.78719,5.09058546 C23.8752368,5.15228138 23.9440986,5.24234048 23.9776191,5.35045242 C23.9802724,5.36045426 23.9832498,5.37111525 23.9858736,5.38187225 C23.9952103,5.41944845 24,5.45894924 24,5.5 L23.9953562,5.43148585 C23.9967469,5.44147074 23.9978376,5.45151191 23.998623,5.46159578 L24,5.5 L24,18.5 C24,18.6960717 23.8853986,18.8740482 23.7069015,18.9551832 L23.7069015,18.9551832 L12.7069015,23.9551832 C12.6983028,23.9590917 12.6896739,23.9627354 12.6810221,23.9661191 C12.6644847,23.9727264 12.6477069,23.9782939 12.6306305,23.982966 C12.620519,23.9856515 12.6101188,23.9881575 12.5997187,23.9903149 C12.572237,23.9960541 12.5437253,23.9994522 12.5148271,24.0003058 C12.5014662,24.0007477 12.488556,24.0006156 12.4757251,23.9999825 C12.4670436,23.999429 12.4607455,23.9989604 12.4544383,23.998368 C12.4364185,23.9967958 12.4185026,23.9941212 12.4008462,23.9904983 L12.3904992,23.9880981 L12.3904992,23.9880981 L12.3744849,23.9843374 C12.3533008,23.9787756 12.3325557,23.9718389 12.3123792,23.9636106 L12.3076923,23.9615385 L8.11432939,22.2143039 C7.85942874,22.1080953 7.73889002,21.8153584 7.84509862,21.5604578 C7.93950627,21.3338794 8.1812943,21.2134636 8.41288432,21.2640954 L8.49894478,21.291227 L12,22.75 L12,10.833 L1,6.25 L1,18.166 L1.66956979,18.4456541 C1.89614815,18.5400617 2.01656399,18.7818498 1.96593211,19.0134398 L1.93880056,19.0995002 C1.84439291,19.3260786 1.60260489,19.4464944 1.37101486,19.3958626 L1.28495441,19.368731 L0.307692308,18.9615385 C0.147986477,18.8949944 0.0360024157,18.7517347 0.0072662723,18.5850485 L0,18.5 L0,5.5 L0.000261662773,5.48059656 C0.000995508743,5.46203925 0.00276487427,5.44359664 0.00553689598,5.42535217 L0,5.5 C0,5.45998969 0.00456440138,5.4214232 0.0131339416,5.38467337 C0.0169397718,5.36998047 0.0211530399,5.35526567 0.0260244955,5.34077917 C0.0315748534,5.32261012 0.0387562627,5.30467967 0.0468964169,5.287344 C0.0491575156,5.28372548 0.051376597,5.27915382 0.053665113,5.27461569 C0.0628828278,5.25536515 0.0731857541,5.2378939 0.0844589219,5.22118267 C0.0896903619,5.2139764 0.0953028029,5.20607213 0.101150512,5.19832596 C0.114371261,5.1805673 0.128643394,5.16419047 0.143874622,5.14882541 C0.146734857,5.14594128 0.149900432,5.14280918 0.153111875,5.13971631 C0.200589899,5.09587346 0.246688688,5.0654823 0.296626138,5.04311459 L0.300636944,5.04146497 L11.8006369,0.0414649719 C11.9023643,-0.00276433146 12.0151307,-0.0116101921 12.1212737,0.0149273899 Z M3.97267123,15.0674776 C4.99377958,14.0472295 6.49125771,13.7663134 7.79554839,14.3190245 C8.12583688,14.4589887 8.20563603,14.8909416 7.94715575,15.1396753 L7.94715575,15.1396753 L6.60445396,16.431939 L6.60445396,17.425939 L7.59945396,17.425939 L8.89175427,16.0840962 C9.11989856,15.8471313 9.50199604,15.8946635 9.67172912,16.1588147 L9.67172912,16.1588147 L9.71247951,16.2361756 C10.2637941,17.540178 9.98468461,19.0093693 8.96326123,20.0299316 C8.04649024,20.9482486 6.71990797,21.2687813 5.5110051,20.9206164 L5.5110051,20.9206164 L5.43745396,20.895939 L2.83943318,23.4947737 C2.78560777,23.5472916 2.70868751,23.6111734 2.61009303,23.677149 L2.61009303,23.677149 L2.50432643,23.7434792 C1.90095763,24.0980698 1.20669408,24.1124825 0.593239927,23.5478093 L0.593239927,23.5478093 L0.534281025,23.4913673 L0.371442461,23.3092933 C-0.0880238492,22.7287303 -0.0530937435,22.0865148 0.280581463,21.5245821 C0.369628975,21.3746198 0.460405096,21.2622765 0.532845501,21.1888084 L0.532845501,21.1888084 L3.11945396,18.593939 L3.09509424,18.5190572 C2.76429265,17.3749038 3.02480991,16.1295108 3.82573255,15.2237099 L3.82573255,15.2237099 Z M6.50756303,15.0417845 C5.9022234,15.023285 5.30214145,15.2291843 4.82046621,15.6440275 L4.82046621,15.6440275 L4.67962899,15.7747333 C3.95513926,16.4992231 3.76002654,17.5874199 4.15767782,18.5288513 C4.23675546,18.716066 4.1946478,18.9325193 4.05115362,19.076436 L4.05115362,19.076436 L1.24298032,21.8928684 L1.17219893,21.9847138 L1.14041764,22.0351521 C0.9885,22.2909922 0.983930789,22.5088263 1.20978842,22.7516687 L1.20978842,22.7516687 L1.25514704,22.7976512 L1.35159492,22.878993 C1.5660328,23.0353152 1.76744252,23.0166323 1.99765898,22.8813376 L1.99765898,22.8813376 L2.08955554,22.8211801 C2.11340753,22.8037557 2.12980084,22.7900519 2.13669993,22.7833468 L2.13669993,22.7833468 L4.95438617,19.9656606 C5.09835629,19.8216905 5.31524648,19.7793979 5.50275955,19.8587304 C6.43792725,20.2543782 7.52764107,20.0525662 8.25600574,19.3229738 C8.7594648,18.8199389 9.0097268,18.1735652 8.98910375,17.5162583 L8.98910375,17.5162583 L8.98345396,17.429939 L8.1720744,18.273412 C8.09667101,18.3517306 7.99836307,18.4027964 7.89247687,18.4200899 L7.89247687,18.4200899 L7.81188076,18.4266259 L6.10396414,18.4266259 C5.82782176,18.4266259 5.60396414,18.2027683 5.60396414,17.9266259 L5.60396414,17.9266259 L5.60396414,16.2194617 C5.60396414,16.0835213 5.65931519,15.9534408 5.75726863,15.8591809 L5.75726863,15.8591809 L6.60045396,15.047939 Z M23,6.276 L13,10.821 L13,22.723 L23,18.177 L23,6.276 Z M3.64605009,9.5215423 L3.7236068,9.5527864 L9.7236068,12.5527864 C9.86476681,12.6233664 9.96259986,12.75536 9.99128976,12.9069957 L10,13 L10,14.5410822 C10,14.8172245 9.77614237,15.0410822 9.5,15.0410822 C9.25454011,15.0410822 9.05039163,14.864207 9.00805567,14.6309578 L9,14.5410822 L9,13.309 L4,10.809 L4,13.9778457 C4,14.2233056 3.82312484,14.4274541 3.58987563,14.46979 L3.5,14.4778457 C3.25454011,14.4778457 3.05039163,14.3009705 3.00805567,14.0677213 L3,13.9778457 L3,10 C3,9.65690061 3.3332929,9.424522 3.64605009,9.5215423 Z M7.175,3.143 L1.776,5.49 L12.491,9.954 L17.098,7.86 L7.175,3.143 Z M12,1.045 L8.392,2.614 L18.289,7.319 L22.269,5.51 L12,1.045 Z"/>
810
+ </symbol>
811
+ <symbol id="icon-orders" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
812
+ <path stroke="none" fill-rule="evenodd" d="M3.3,15.38 L8.8,17.78 C9.1,17.972 9.5,17.684 9.5,17.3 L9.5,12.5 C9.5,12.308 9.4,12.116 9.2,12.02 L3.7,9.62 C3.4,9.524 3,9.716 3,10.1 L3,14.9 C3,15.092 3.1,15.284 3.3,15.38 Z M4,10.868 L8.5,12.788 L8.5,16.532 L4,14.612 L4,10.868 Z M24,5.78 C24,5.684 24,5.684 23.9,5.588 C23.9,5.588 23.9,5.588 23.9,5.492 L23.8,5.396 C23.8,5.396 23.8,5.396 23.7,5.396 L23.7,5.396 L12.2,0.5 C12.1,0.5 11.9,0.5 11.8,0.5 L0.3,5.3 L0.3,5.3 C0.3,5.3 0.3,5.3 0.2,5.3 L0.1,5.396 C0.1,5.396 0.1,5.396 0.1,5.492 C0,5.588 0,5.684 0,5.78 L0,5.78 L0,18.26 C0,18.452 0.1,18.644 0.3,18.74 L11.8,23.54 C11.8,23.54 11.8,23.54 11.9,23.54 L12,23.54 L12.1,23.54 C12.1,23.54 12.1,23.54 12.2,23.54 L23.7,18.74 C23.9,18.644 24,18.452 24,18.26 L24,5.78 L24,5.78 Z M12,1.46 L22.2,5.78 L17.6,7.7 L8.3,2.996 L12,1.46 Z M11.5,22.292 L1,17.972 L1,6.548 L11.5,10.964 L11.5,22.292 Z M12,10.1 L1.8,5.78 L7.2,3.476 L16.5,8.18 L12,10.1 Z M23,17.972 L12.5,22.388 L12.5,10.868 L23,6.548 L23,17.972 Z"/>
813
+ </symbol>
814
+ <symbol id="icon-organization" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
815
+ <path stroke="none" fill-rule="evenodd" d="M20.1217075,16.002 C21.42345,16.002 22.477487,17.0556729 22.477487,18.3577794 C22.477487,19.0347942 22.1918242,19.6452151 21.7344113,20.0749752 C23.020563,20.6779357 23.9109838,21.9857198 23.9109838,23.502 C23.9109838,23.7474599 23.7341086,23.9516084 23.5008594,23.9939443 L23.4109838,24.002 L16.8322457,24.002 C16.5561033,24.002 16.3322457,23.7781424 16.3322457,23.502 C16.3322457,21.9854312 17.222421,20.6776918 18.5092034,20.072326 C18.0515909,19.6452151 17.7659281,19.0347942 17.7659281,18.3577794 C17.7659281,17.0556729 18.8199651,16.002 20.1217075,16.002 Z M12.2005782,16.002 C13.5023206,16.002 14.5563576,17.0556729 14.5563576,18.3577794 C14.5563576,19.0347942 14.2706948,19.6452151 13.8132819,20.0749752 C15.0997639,20.6778165 15.9898544,21.9855034 15.9898544,23.502 C15.9898544,23.7474599 15.8129792,23.9516084 15.57973,23.9939443 L15.4898544,24.002 L8.91204422,24.002 C8.63590185,24.002 8.41204422,23.7781424 8.41204422,23.502 C8.41204422,21.9856232 9.30204793,20.6778824 10.5883934,20.0724398 C10.1304615,19.6452151 9.84479873,19.0347942 9.84479873,18.3577794 C9.84479873,17.0556729 10.8988357,16.002 12.2005782,16.002 Z M4.20336182,16.002 C5.5051043,16.002 6.55914125,17.0556729 6.55914125,18.3577794 C6.55914125,19.0347942 6.27347848,19.6452151 5.81606556,20.0749752 C7.10221734,20.6779357 7.99263807,21.9857198 7.99263807,23.502 C7.99263807,23.7474599 7.81576291,23.9516084 7.5825137,23.9939443 L7.49263807,24.002 L0.9139,24.002 C0.637757625,24.002 0.4139,23.7781424 0.4139,23.502 C0.4139,21.9854312 1.3040753,20.6776918 2.59085772,20.072326 C2.13324517,19.6452151 1.8475824,19.0347942 1.8475824,18.3577794 C1.8475824,17.0556729 2.90161935,16.002 4.20336182,16.002 Z M20.1216147,20.7135589 C18.8109912,20.7135589 17.7125962,21.6155012 17.4130024,22.832691 L17.377155,23.0005704 L22.866,23.001 C22.6500548,21.8105286 21.6788224,20.8839276 20.466366,20.734631 L20.2915725,20.7186461 L20.1216147,20.7135589 Z M12.2004854,20.7135589 C10.8905474,20.7135589 9.79234289,21.6155891 9.49279083,22.8327305 L9.45694827,23.0006024 L14.944,23.001 C14.7289924,21.8102776 13.758145,20.883885 12.5453502,20.7346255 L12.3705034,20.7186447 L12.2004854,20.7135589 Z M4.20326903,20.7135589 C2.89264554,20.7135589 1.79425045,21.6155012 1.49465669,22.832691 L1.45880933,23.0005704 L6.947,23.001 C6.73167934,21.8105286 5.76047539,20.8839276 4.54802023,20.734631 L4.37322675,20.7186461 L4.20326903,20.7135589 Z M20.1217075,17.002 C19.3721725,17.002 18.7659281,17.608035 18.7659281,18.3577794 C18.7659281,19.1063865 19.3728908,19.7135589 20.1217075,19.7135589 C20.8705242,19.7135589 21.477487,19.1063865 21.477487,18.3577794 C21.477487,17.608035 20.8712426,17.002 20.1217075,17.002 Z M12.2005782,17.002 C11.4510431,17.002 10.8447987,17.608035 10.8447987,18.3577794 C10.8447987,19.1063865 11.4517615,19.7135589 12.2005782,19.7135589 C12.9493948,19.7135589 13.5563576,19.1063865 13.5563576,18.3577794 C13.5563576,17.608035 12.9501132,17.002 12.2005782,17.002 Z M4.20336182,17.002 C3.45382678,17.002 2.8475824,17.608035 2.8475824,18.3577794 C2.8475824,19.1063865 3.45454513,19.7135589 4.20336182,19.7135589 C4.95217852,19.7135589 5.55914125,19.1063865 5.55914125,18.3577794 C5.55914125,17.608035 4.95289687,17.002 4.20336182,17.002 Z M12.0004,0.0161 C13.8086775,0.0161 15.2744,1.48109259 15.2744,3.2891 C15.2744,4.38384431 14.7364726,5.35294917 13.9104124,5.94690569 C15.6895477,6.69194519 16.9385,8.45040078 16.9385,10.5 C16.9385,10.7454599 16.7616248,10.9496084 16.5283756,10.9919443 L16.4385,11 L12.4999,10.9991 L12.4999,12.0001 L19.5,12.0005 C19.7454599,12.0005 19.9496084,12.1773752 19.9919443,12.4106244 L20,12.5005 L20,14.4585 C20,14.7346424 19.7761424,14.9585 19.5,14.9585 C19.2545401,14.9585 19.0503916,14.7816248 19.0080557,14.5483756 L19,14.4585 L19,13 L12.4999,12.9991 L12.5,14.479 C12.5,14.7551424 12.2761424,14.979 12,14.979 C11.7545401,14.979 11.5503916,14.8021248 11.5080557,14.5688756 L11.5,14.479 L11.4999,12.9991 L5,13 L5,14.4585 C5,14.7039599 4.82312484,14.9081084 4.58987563,14.9504443 L4.5,14.9585 C4.25454011,14.9585 4.05039163,14.7816248 4.00805567,14.5483756 L4,14.4585 L4,12.5005 C4,12.2550401 4.17687516,12.0508916 4.41012437,12.0085557 L4.5,12.0005 L11.4999,12.0001 L11.4999,10.9991 L7.5625,11 C7.28635763,11 7.0625,10.7761424 7.0625,10.5 C7.0625,8.45112272 8.31137354,6.69256791 10.0894006,5.94538471 C9.26363744,5.35291144 8.7264,4.38403621 8.7264,3.2891 C8.7264,1.48045763 10.1907576,0.0161 12.0004,0.0161 Z M11.9995,6.562 C10.0973315,6.562 8.50969225,7.91270882 8.14250382,9.70666815 L8.10787356,9.90053285 L8.094,9.999 L15.906,9.999 L15.8931335,9.9003856 C15.6242693,8.14073201 14.1905402,6.76387797 12.402375,6.5823364 L12.2022726,6.56712538 L11.9995,6.562 Z M12.0004,1.0161 C10.7430424,1.0161 9.7264,2.03274237 9.7264,3.2891 C9.7264,4.54458419 10.7431691,5.5611 12.0004,5.5611 C13.2563774,5.5611 14.2744,4.54383784 14.2744,3.2891 C14.2744,2.03348888 13.2565042,1.0161 12.0004,1.0161 Z"/>
816
+ </symbol>
817
+ <symbol id="icon-override" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
818
+ <path stroke="none" fill-rule="evenodd" d="M6.503,10.2225031 C6.89137624,10.2225031 7.2756878,10.2536456 7.6532791,10.3152009 C7.92582367,10.3596314 8.11074667,10.6165904 8.06631618,10.889135 C8.02188569,11.1616796 7.76492663,11.3466026 7.49238206,11.3021721 C7.1679652,11.2492853 6.83746097,11.2225031 6.503,11.2225031 L6.448,11.222 L6.39097758,11.287336 C5.85230001,11.9036106 5.4117484,12.5506713 5.06949611,13.2220125 L7.42931415,13.2229031 C7.70545652,13.2229031 7.92931415,13.4467607 7.92931415,13.7229031 C7.92931415,13.968363 7.75243899,14.1725114 7.51918978,14.2148474 L7.42931415,14.2229031 L4.63833259,14.2224451 C4.35147348,15.0305632 4.19820281,15.8673349 4.17879488,16.7224667 L7.49997333,16.7225031 C7.77611571,16.7224883 8,16.946334 8,17.2224764 C8,17.4679363 7.82314882,17.6720942 7.58990187,17.7144426 L7.50002667,17.7225031 L4.21636241,17.7222966 C4.29621882,18.5455394 4.49664168,19.3817228 4.81786516,20.2220586 L8.22643916,20.2238599 C8.31909602,20.0041015 8.40689485,19.7815743 8.49029711,19.5557665 C8.64093361,19.1479251 8.76737534,18.703763 8.86933649,18.2232594 L8.94121279,17.8560674 L9.92541627,18.0331083 C9.80324714,18.7122692 9.6377468,19.3353264 9.42835703,19.9022396 L9.305,20.222 L11.6877598,20.2232896 C12.2042248,19.3344301 12.5,18.3011291 12.5,17.1985031 C12.5,17.0003817 12.4905388,16.8036989 12.4717486,16.6088727 C12.4452387,16.3340057 12.6465718,16.0896915 12.9214388,16.0631816 C13.1963057,16.0366717 13.4406199,16.2380049 13.4671298,16.5128719 C13.4889977,16.7396084 13.5,16.9683285 13.5,17.1985031 C13.5,21.0783137 10.358474,24.2225031 6.482,24.2225031 C6.39194736,24.2225031 6.30228814,24.2207331 6.2130532,24.217226 C6.20041025,24.2175786 6.18729335,24.216866 6.17422894,24.2156425 C2.51930371,24.0509564 -0.414135313,20.9724371 -0.498148944,17.2458315 C-0.499819486,17.2385697 -0.499999999,17.2307708 -0.499999999,17.2229297 L-0.498940846,17.2058269 C-0.499645982,17.1644632 -0.5,17.1230209 -0.5,17.0815031 C-0.5,15.749412 -0.129045415,14.5169403 0.518716931,13.475003 C0.522155747,13.4690971 0.525832275,13.4629691 0.529634488,13.4569282 C1.70465655,11.5807383 3.77889537,10.326682 6.19951449,10.2289649 L6.503,10.2225031 Z M7.76113411,21.2232309 L5.25659827,21.2223402 C5.58721644,21.8901351 5.99383402,22.5583515 6.47656774,23.222609 C6.47931695,23.2225026 6.48065843,23.2225031 6.482,23.2225031 L6.526,23.221 L6.68623933,23.001297 C7.09678361,22.4167735 7.45153237,21.8280221 7.76113411,21.2232309 Z M4.15266931,21.2229536 L2.08057544,21.2226972 C2.88964059,22.1278255 3.95753936,22.7869703 5.1603927,23.0696367 C4.76500914,22.4563993 4.42943503,21.8400892 4.15266931,21.2229536 Z M10.9601902,21.2232436 L8.87541176,21.2229816 C8.57855263,21.8524279 8.23939179,22.4636449 7.84832502,23.0669077 C9.0694356,22.7833469 10.1493041,22.1267139 10.9601902,21.2232436 Z M3.21276567,17.7225067 L0.532952712,17.7230763 C0.626180281,18.6264365 0.913792957,19.4750307 1.35193908,20.2226652 L3.75552438,20.2222995 C3.46605257,19.3844491 3.28507467,18.5484007 3.21276567,17.7225067 Z M24.0007887,-0.5 C24.2769311,-0.5 24.5007887,-0.276142375 24.5007887,0 C24.5007887,0.245459889 24.3239136,0.44960837 24.0906644,0.491944331 L24.0007887,0.5 L21.991,0.5 L19.2978655,13.1379894 C20.0053673,13.4461238 20.5,14.1515496 20.5,14.9725031 C20.5,16.0770726 19.6045695,16.9725031 18.5,16.9725031 C17.3954305,16.9725031 16.5,16.0770726 16.5,14.9725031 C16.5,14.7964175 16.5227559,14.6256468 16.5654872,14.4629714 L11.9345128,14.4629714 C11.9772441,14.6256468 12,14.7964175 12,14.9725031 C12,16.0770726 11.1045695,16.9725031 10,16.9725031 C8.8954305,16.9725031 8,16.0770726 8,14.9725031 C8,13.8679336 8.8954305,12.9725031 10,12.9725031 C10.502077,12.9725031 10.9609436,13.1575094 11.3121469,13.4630693 L17.1878531,13.4630693 C17.493833,13.1968554 17.8815343,13.0221474 18.308334,12.9815682 L18.46976,12.222 L10.4497184,12.2225031 C10.2775113,12.2225031 10.1196399,12.1341539 10.0287826,11.9923776 L9.9891823,11.9171989 L7.11875325,5.12744705 C6.9910034,4.82526582 7.18370403,4.49334605 7.4923825,4.44012457 L7.57928939,4.43275123 L20.13076,4.432 L21.0979195,-0.104239929 C21.1409651,-0.306176844 21.3024171,-0.457727962 21.5001891,-0.492460477 L21.5869328,-0.5 L24.0007887,-0.5 Z M3.58326342,14.2223295 L1.2387917,14.2223453 C0.821279473,14.9660324 0.564433194,15.812968 0.510606603,16.7218318 L3.17843,16.7227967 C3.19501518,15.8714157 3.32989347,15.0347677 3.58326342,14.2223295 Z M10,13.9725031 C9.44771525,13.9725031 9,14.4202183 9,14.9725031 C9,15.5247878 9.44771525,15.9725031 10,15.9725031 C10.5522847,15.9725031 11,15.5247878 11,14.9725031 C11,14.7863535 10.9491373,14.6120836 10.8605512,14.4628327 L10.7741341,14.4636951 C10.5150375,14.4636951 10.3019701,14.2666212 10.2766527,14.0141945 C10.1903797,13.9862558 10.0967959,13.9725031 10,13.9725031 Z M19.0731138,14.1529225 L19.035413,14.227135 C18.9611233,14.3469364 18.8383882,14.4313466 18.6971226,14.4561556 L18.6103788,14.4636951 L17.6394488,14.4628327 C17.5508627,14.6120836 17.5,14.7863535 17.5,14.9725031 C17.5,15.5247878 17.9477153,15.9725031 18.5,15.9725031 C19.0522847,15.9725031 19.5,15.5247878 19.5,14.9725031 C19.5,14.6334197 19.3312326,14.3337541 19.0731138,14.1529225 Z M5.02427042,11.3956589 L4.90242773,11.425614 C3.73197445,11.73026 2.7133475,12.3630466 1.95155363,13.2215298 L3.96060627,13.2225435 C4.24024923,12.5942211 4.59477074,11.9836744 5.02427042,11.3956589 Z M14.03176,5.432 L8.332,5.432 L10.781,11.222 L18.68276,11.222 L19.91676,5.432 L15.03176,5.432 L15.00476,7.771 L16.1444057,6.61369231 C16.3379871,6.41676368 16.6545579,6.41405015 16.8514865,6.60763147 C17.0265342,6.77970375 17.048128,7.04895295 16.9148072,7.24497103 L16.8575474,7.31471227 L14.8632237,9.34352087 C14.6890618,9.52069422 14.4158616,9.54038015 14.2196912,9.40257865 L14.150082,9.34352087 L12.1557583,7.31471227 C11.962177,7.11778364 11.9648905,6.80121278 12.1618191,6.60763147 C12.3368668,6.43555918 12.6064466,6.41858407 12.8001505,6.55524544 L12.8688999,6.61369231 L14.00476,7.769 L14.03176,5.432 Z M5.57682951,4.22250301 C5.85297189,4.22250301 6.07682951,4.44636064 6.07682951,4.72250301 C6.07682951,4.99864539 5.85297189,5.22250301 5.57682951,5.22250301 C2.94157893,5.22250301 2.21943677,5.96006705 2.18946756,8.49279139 L2.189,8.619 L3.07081216,7.85264724 C3.25601247,7.69155284 3.52612567,7.69102386 3.71114887,7.83922624 L3.77621194,7.90175079 C3.93730634,8.0869511 3.93783532,8.3570643 3.78963294,8.5420875 L3.72710839,8.60715057 L2.02016036,10.0926782 C1.97452436,10.1325024 1.92158339,10.1641761 1.86360186,10.1854214 C1.85438261,10.1881561 1.84473872,10.191368 1.83502574,10.1942775 C1.81541209,10.2007973 1.79495149,10.2055622 1.77405144,10.2090314 C1.77039256,10.2090525 1.76741594,10.2095183 1.76443625,10.2099572 C1.74160544,10.2138982 1.71754459,10.2157294 1.69306766,10.2158031 L1.68283275,10.2152389 C1.67442818,10.215097 1.66602718,10.2147441 1.65763826,10.2141805 L1.69306766,10.2158031 C1.62855605,10.215996 1.56686135,10.203963 1.51017772,10.1818851 C1.50394016,10.1790416 1.49710222,10.1762227 1.49031708,10.1732461 C1.46824905,10.1638982 1.44761892,10.1529727 1.42790356,10.140713 C1.42709734,10.1399026 1.4261258,10.1392956 1.4251559,10.138685 L1.41656725,10.1334504 C1.39580542,10.1197521 1.37612415,10.1045469 1.35767965,10.0879898 L1.35057664,10.0812678 L-0.24496513,8.59585654 C-0.447077954,8.40769433 -0.45838716,8.09131391 -0.270224948,7.88920108 C-0.102969649,7.70954524 0.165593869,7.68064781 0.365160067,7.80859647 L0.436430514,7.86394127 L1.189,8.565 L1.18988743,8.47821096 C1.23463714,5.41638548 2.3653535,4.22250301 5.57682951,4.22250301 Z"/>
819
+ </symbol>
820
+ <symbol id="icon-pause" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
821
+ <path stroke="none" fill-rule="evenodd" d="M8.69177777,7.08424444 L7.08424444,7.08424444 L7.08424444,13.9068444 L8.69177777,13.9068444 L8.69177777,7.08424444 Z M9.19177777,14.9068444 L6.58424444,14.9068444 C6.30810206,14.9068444 6.08424444,14.6829868 6.08424444,14.4068444 L6.08424444,6.58424444 C6.08424444,6.30810206 6.30810206,6.08424444 6.58424444,6.08424444 L9.19177777,6.08424444 C9.46792014,6.08424444 9.69177777,6.30810206 9.69177777,6.58424444 L9.69177777,14.4068444 C9.69177777,14.6829868 9.46792014,14.9068444 9.19177777,14.9068444 Z M19.9910889,10.4955444 C19.9910889,5.25097648 15.739857,1 10.4955444,1 C5.25066957,1 1,5.25066957 1,10.4955444 C1,15.7404193 5.25066957,19.9910889 10.4955444,19.9910889 C15.739857,19.9910889 19.9910889,15.7401124 19.9910889,10.4955444 Z M20.9910889,10.4955444 C20.9910889,16.2924106 16.2921283,20.9910889 10.4955444,20.9910889 C4.69838482,20.9910889 5.5067062e-14,16.292704 5.5067062e-14,10.4955444 C5.5067062e-14,4.69838482 4.69838482,5.5067062e-14 10.4955444,5.5067062e-14 C16.2921283,5.5067062e-14 20.9910889,4.69867828 20.9910889,10.4955444 Z M11.7993111,14.9068444 C11.5231687,14.9068444 11.2993111,14.6829868 11.2993111,14.4068444 L11.2993111,6.58424444 C11.2993111,6.30810206 11.5231687,6.08424444 11.7993111,6.08424444 L14.4068444,6.08424444 C14.6829868,6.08424444 14.9068444,6.30810206 14.9068444,6.58424444 L14.9068444,14.4068444 C14.9068444,14.6829868 14.6829868,14.9068444 14.4068444,14.9068444 L11.7993111,14.9068444 Z M13.9068444,13.9068444 L13.9068444,7.08424444 L12.2993111,7.08424444 L12.2993111,13.9068444 L13.9068444,13.9068444 Z"/>
822
+ </symbol>
823
+ <symbol id="icon-plus" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
824
+ <path stroke="none" fill-rule="evenodd" d="M15.5,10 L11.1,10 L11.1,5.5 C11.1,5.2 10.9,5 10.6,5 C10.3,5 10.1,5.2 10.1,5.5 L10.1,10 L5.5,10 C5.2,10 5,10.3 5,10.5 C5,10.7 5.2,11 5.5,11 L10.1,11 L10.1,15.5 C10.1,15.8 10.3,16 10.6,16 C10.9,16 11.1,15.8 11.1,15.5 L11.1,11 L15.5,11 C15.8,11 16,10.8 16,10.5 C16,10.2 15.8,10 15.5,10 Z"/>
825
+ </symbol>
826
+ <symbol id="icon-popout" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
827
+ <path stroke="none" fill-rule="evenodd" d="M8.5,21 L1.5,21 C1.22385763,21 1,21.2238576 1,21.5 L1,23.5 C1,23.7761424 1.22385763,24 1.5,24 L8.5,24 C8.77614237,24 9,23.7761424 9,23.5 L9,21.5 C9,21.2238576 8.77614237,21 8.5,21 Z M8,22 L8,23 L2,23 L2,22 L8,22 Z M16.5,9 L16.5113359,9.00012778 C16.5327448,9.00061037 16.5541285,9.00245997 16.5753447,9.00567644 L16.5,9 C16.5353751,9 16.5698922,9.00367368 16.6031905,9.01066034 C16.6196997,9.01414306 16.6368356,9.0186662 16.6537388,9.02411164 C16.6666596,9.02826323 16.6789671,9.03279825 16.6910366,9.03779224 C16.7047846,9.04345908 16.7185886,9.04989874 16.7321351,9.05700224 C16.7440467,9.06329334 16.7556825,9.07001934 16.7670103,9.07718801 C16.7791878,9.08484665 16.7909554,9.09302185 16.8024313,9.10175969 C16.8157542,9.11192025 16.8288187,9.1229392 16.8412864,9.13458875 C16.8456325,9.13865079 16.8497698,9.14265635 16.853854,9.14674744 L16.864439,9.15767597 C16.8778391,9.17193624 16.8904117,9.18698315 16.9020802,9.20274003 L16.853854,9.14674744 C16.8792393,9.17217596 16.9013169,9.19965567 16.9200875,9.22865205 C16.9295284,9.2433324 16.9381565,9.25831383 16.9460061,9.27375753 C16.95142,9.28436229 16.956412,9.29514769 16.9609993,9.30606275 C16.9669546,9.3201926 16.9723394,9.33483565 16.9770412,9.3497814 C16.9817943,9.36505877 16.9857581,9.38018271 16.9890034,9.39542882 C16.9899978,9.39986139 16.9910104,9.40497916 16.9919443,9.41012437 L16.9948943,9.42851678 C16.9973763,9.44579526 16.9989534,9.46317858 16.9996256,9.48059018 L17,9.5 L17,13.458 C17,13.7341424 16.7761424,13.958 16.5,13.958 C16.2545401,13.958 16.0503916,13.7811248 16.0080557,13.5478756 L16,13.458 L16,10.705 L7.43925256,19.251854 C7.24382441,19.44695 6.92724203,19.4466807 6.73214603,19.2512526 C6.55872737,19.0775386 6.53967137,18.8080979 6.67483312,18.6133447 L6.73274744,18.544146 L15.291,10 L12,10 C11.7545401,10 11.5503916,9.82312484 11.5080557,9.58987563 L11.5,9.5 C11.5,9.25454011 11.6768752,9.05039163 11.9101244,9.00805567 L12,9 L16.5,9 Z M21.4997,0 C22.8255967,0 23.9097717,1.03113919 23.9943843,2.3355767 L23.9997,2.5 L23.999898,4.48979673 C23.9999659,4.49318964 24,4.49659083 24,4.5 L23.999,4.51 L23.9997,13.5 C23.9997,14.8245657 22.9679958,15.9099653 21.6640555,15.9946779 L21.4997,16 L13.9687,16 C13.6925576,16 13.4687,15.7761424 13.4687,15.5 C13.4687,15.2545401 13.6455752,15.0503916 13.8788244,15.0080557 L13.9687,15 L21.4997,15 C22.2790788,15 22.9201113,14.404402 22.9928301,13.6443347 L22.9997,13.5 L22.999,5 L3.999,5 L3.9997,13.5 C3.9997,14.2785803 4.59543256,14.9203174 5.35538901,14.9931218 L5.4997,15 L6.9697,15 C7.24584237,15 7.4697,15.2238576 7.4697,15.5 C7.4697,15.7454599 7.29282484,15.9496084 7.05957563,15.9919443 L6.9697,16 L5.4997,16 C4.17505759,16 3.08972861,14.9673002 3.00502172,13.664236 L2.9997,13.5 L2.9997,2.5 C2.9997,1.17439769 4.03147806,0.0899518156 5.33535337,0.00531710894 L5.4997,0 L21.4997,0 Z M21.4997,1 L5.4997,1 C4.7201784,1 4.07927185,1.59484686 4.00656839,2.35553272 L3.9997,2.5 L3.999,4 L22.999,4 L22.9997,2.5 C22.9997,1.71989871 22.4051933,1.07950365 21.6442273,1.00686237 L21.4997,1 Z M10.5,2 C10.776,2 11,2.224 11,2.5 C11,2.776 10.776,3 10.5,3 C10.224,3 10,2.776 10,2.5 C10,2.224 10.224,2 10.5,2 Z M8.5,2 C8.776,2 9,2.224 9,2.5 C9,2.776 8.776,3 8.5,3 C8.225,3 8,2.776 8,2.5 C8,2.224 8.225,2 8.5,2 Z M6.5,2 C6.777,2 7,2.224 7,2.5 C7,2.776 6.777,3 6.5,3 C6.225,3 6,2.776 6,2.5 C6,2.224 6.225,2 6.5,2 Z"/>
828
+ </symbol>
829
+ <symbol id="icon-price-settings" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
830
+ <path stroke="none" d="M8.992,-0.0004 C9.0981248,-0.0004 9.20076975,0.033338409 9.2855961,0.0948736113 L9.34565083,0.146144074 L23.8536508,14.6621441 C24.0271427,14.8357317 24.0463778,15.1051117 23.9113845,15.2999407 L23.8535326,15.3691742 L15.3685326,23.8531742 C15.1949674,24.0267189 14.9255633,24.0459986 14.730704,23.9110154 L14.6614588,23.8531656 L10.7080128,19.8999921 C10.5127439,19.7047367 10.512733,19.3881542 10.7079884,19.1928853 C10.8815488,19.019313 11.1509725,19.0000186 11.3458453,19.1350079 L11.4150952,19.1928609 L15.015,22.7926 L22.793,15.0146 L8.785,0.9996 L0.999,0.9996 L1.007,8.7906 L4.76795564,12.6928301 C4.93829838,12.8695613 4.95262194,13.139295 4.81406251,13.3316457 L4.75494246,13.3998172 C4.57821128,13.5701599 4.3084776,13.5844835 4.11612685,13.445924 L4.04795543,13.386804 L0.147999895,9.34058692 C0.0807228705,9.27078678 0.0356800464,9.18348003 0.0173120885,9.08965784 L0.00800022177,8.99407092 L-4.85545115e-09,0.50007092 C-4.85545115e-09,0.254447653 0.176678476,0.0500541584 0.410067366,0.00766576788 L0.499999995,-0.0004 L8.992,-0.0004 Z M3.97267123,15.0674776 C4.99377958,14.0472295 6.49125771,13.7663134 7.79554839,14.3190245 C8.12583688,14.4589887 8.20563603,14.8909416 7.94715575,15.1396753 L7.94715575,15.1396753 L6.60445396,16.431939 L6.60445396,17.425939 L7.59945396,17.425939 L8.89175427,16.0840962 C9.11989856,15.8471313 9.50199604,15.8946635 9.67172912,16.1588147 L9.67172912,16.1588147 L9.71247951,16.2361756 C10.2637941,17.540178 9.98468461,19.0093693 8.96326123,20.0299316 C8.04649024,20.9482486 6.71990797,21.2687813 5.5110051,20.9206164 L5.5110051,20.9206164 L5.43745396,20.895939 L2.83943318,23.4947737 C2.78560777,23.5472916 2.70868751,23.6111734 2.61009303,23.677149 L2.61009303,23.677149 L2.50432643,23.7434792 C1.90095763,24.0980698 1.20669408,24.1124825 0.593239927,23.5478093 L0.593239927,23.5478093 L0.534281025,23.4913673 L0.371442461,23.3092933 C-0.0880238492,22.7287303 -0.0530937435,22.0865148 0.280581463,21.5245821 C0.369628975,21.3746198 0.460405096,21.2622765 0.532845501,21.1888084 L0.532845501,21.1888084 L3.11945396,18.593939 L3.09509424,18.5190572 C2.76429265,17.3749038 3.02480991,16.1295108 3.82573255,15.2237099 L3.82573255,15.2237099 Z M6.50756303,15.0417845 C5.9022234,15.023285 5.30214145,15.2291843 4.82046621,15.6440275 L4.82046621,15.6440275 L4.67962899,15.7747333 C3.95513926,16.4992231 3.76002654,17.5874199 4.15767782,18.5288513 C4.23675546,18.716066 4.1946478,18.9325193 4.05115362,19.076436 L4.05115362,19.076436 L1.24298032,21.8928684 L1.17219893,21.9847138 L1.14041764,22.0351521 C0.9885,22.2909922 0.983930789,22.5088263 1.20978842,22.7516687 L1.20978842,22.7516687 L1.25514704,22.7976512 L1.35159492,22.878993 C1.5660328,23.0353152 1.76744252,23.0166323 1.99765898,22.8813376 L1.99765898,22.8813376 L2.08955554,22.8211801 C2.11340753,22.8037557 2.12980084,22.7900519 2.13669993,22.7833468 L2.13669993,22.7833468 L4.95438617,19.9656606 C5.09835629,19.8216905 5.31524648,19.7793979 5.50275955,19.8587304 C6.43792725,20.2543782 7.52764107,20.0525662 8.25600574,19.3229738 C8.7594648,18.8199389 9.0097268,18.1735652 8.98910375,17.5162583 L8.98910375,17.5162583 L8.98345396,17.429939 L8.1720744,18.273412 C8.09667101,18.3517306 7.99836307,18.4027964 7.89247687,18.4200899 L7.89247687,18.4200899 L7.81188076,18.4266259 L6.10396414,18.4266259 C5.82782176,18.4266259 5.60396414,18.2027683 5.60396414,17.9266259 L5.60396414,17.9266259 L5.60396414,16.2194617 C5.60396414,16.0835213 5.65931519,15.9534408 5.75726863,15.8591809 L5.75726863,15.8591809 L6.60045396,15.047939 Z M11.5164659,10.7775468 L11.9170387,11.1767152 C12.6180409,10.6777547 13.6194728,10.7775468 14.320475,11.4760915 L14.320475,11.4760915 L13.6194728,12.1746362 C13.2189,11.7754678 12.6180409,11.7754678 12.2174682,12.1746362 C11.8168955,12.5738046 11.8168955,13.1725572 12.2174682,13.5717256 C12.6180409,13.970894 13.2189,13.970894 13.6194728,13.5717256 C14.4206182,12.7733888 15.6223364,12.7733888 16.4234819,13.5717256 C17.1244841,14.1704782 17.2246273,15.1683992 16.7239114,15.966736 L16.7239114,15.966736 L17.024341,16.2661123 L16.3233387,16.964657 L15.922766,16.5654886 C15.2217637,17.0644491 14.2203319,16.964657 13.5193296,16.2661123 L13.5193296,16.2661123 L14.2203319,15.5675676 C14.6209046,15.966736 15.2217637,15.966736 15.6223364,15.5675676 C16.0229091,15.1683992 16.0229091,14.5696466 15.6223364,14.1704782 C15.2217637,13.7713098 14.6209046,13.7713098 14.2203319,14.1704782 C13.4191864,14.968815 12.2174682,14.968815 11.4163228,14.1704782 C10.8154637,13.5717256 10.7153205,12.5738046 11.2160364,11.8752599 L11.2160364,11.8752599 L10.8154637,11.4760915 L11.5164659,10.7775468 Z M5.5,3 C6.88014237,3 8,4.11985763 8,5.5 C8,6.88014237 6.88014237,8 5.5,8 C4.11985763,8 3,6.88014237 3,5.5 C3,4.11985763 4.11985763,3 5.5,3 Z M5.5,4 C4.67214237,4 4,4.67214237 4,5.5 C4,6.32785763 4.67214237,7 5.5,7 C6.32785763,7 7,6.32785763 7,5.5 C7,4.67214237 6.32785763,4 5.5,4 Z"/>
831
+ </symbol>
832
+ <symbol id="icon-price" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
833
+ <path stroke="none" fill-rule="evenodd" d="M11.4163228,14.1704782 C12.2174682,14.968815 13.4191864,14.968815 14.2203319,14.1704782 C14.6209046,13.7713098 15.2217637,13.7713098 15.6223364,14.1704782 C16.0229091,14.5696466 16.0229091,15.1683992 15.6223364,15.5675676 C15.2217637,15.966736 14.6209046,15.966736 14.2203319,15.5675676 L13.5193296,16.2661123 C14.2203319,16.964657 15.2217637,17.0644491 15.922766,16.5654886 L16.3233387,16.964657 L17.024341,16.2661123 L16.7239114,15.966736 C17.2246273,15.1683992 17.1244841,14.1704782 16.4234819,13.5717256 C15.6223364,12.7733888 14.4206182,12.7733888 13.6194728,13.5717256 C13.2189,13.970894 12.6180409,13.970894 12.2174682,13.5717256 C11.8168955,13.1725572 11.8168955,12.5738046 12.2174682,12.1746362 C12.6180409,11.7754678 13.2189,11.7754678 13.6194728,12.1746362 L14.320475,11.4760915 C13.6194728,10.7775468 12.6180409,10.6777547 11.9170387,11.1767152 L11.5164659,10.7775468 L10.8154637,11.4760915 L11.2160364,11.8752599 C10.7153205,12.5738046 10.8154637,13.5717256 11.4163228,14.1704782 Z M23.9342205,14.6694387 L9.31331594,0.1995842 C9.31331594,0.0997920998 9.11302957,0 9.01288639,0 L0.500715911,0 C0.200286364,0 0,0.1995842 0,0.498960499 L0,8.98128898 C0,9.08108108 0.100143182,9.28066528 0.100143182,9.38045738 L14.6209046,23.8503119 C14.821191,24.049896 15.1216205,24.049896 15.3219069,23.8503119 L23.8340773,15.3679834 C24.0343637,15.1683992 24.0343637,14.8690229 23.9342205,14.6694387 Z M15.0214773,22.7525988 L1.00143182,8.78170478 L1.00143182,0.997920998 L8.81260003,0.997920998 L22.8326455,14.968815 L15.0214773,22.7525988 Z M5.50787502,2.99376299 C4.10587047,2.99376299 3.00429546,4.09147609 3.00429546,5.48856549 C3.00429546,6.88565489 4.10587047,7.98336798 5.50787502,7.98336798 C6.90987957,7.98336798 8.01145457,6.88565489 8.01145457,5.48856549 C8.01145457,4.09147609 6.90987957,2.99376299 5.50787502,2.99376299 Z M5.50787502,6.98544699 C4.70672956,6.98544699 4.00572728,6.28690229 4.00572728,5.48856549 C4.00572728,4.69022869 4.70672956,3.99168399 5.50787502,3.99168399 C6.30902047,3.99168399 7.01002275,4.69022869 7.01002275,5.48856549 C7.01002275,6.28690229 6.30902047,6.98544699 5.50787502,6.98544699 Z"/>
834
+ </symbol>
835
+ <symbol id="icon-print" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
836
+ <path stroke="none" fill-rule="evenodd" d="M16.2329243,5.42208459 C16.1932042,5.43223993 16.1515804,5.4376389 16.1086957,5.4376389 L13.5,5.4376389 C13.2238576,5.4376389 13,5.21378128 13,4.9376389 L13,2 L5.34782609,2 L5.34782609,4.92857143 C5.34782609,5.2047138 5.12396846,5.42857143 4.84782609,5.42857143 C4.57168371,5.42857143 4.34782609,5.2047138 4.34782609,4.92857143 L4.34782609,1.5 C4.34782609,1.22385763 4.57168371,1 4.84782609,1 L13.5434783,1 C13.6748405,1 13.8009261,1.05169579 13.894479,1.14391227 L16.5031747,3.71534085 C16.598503,3.80930737 16.6521739,3.93757342 16.6521739,4.07142857 L16.6521739,4.92857143 C16.6521739,5.17722237 16.47067,5.3834808 16.2329243,5.42208459 Z M15.6521739,4.4376389 L15.6521739,4.28064562 L14,2.65207419 L14,4.4376389 L15.6521739,4.4376389 Z M4.34782609,15.7142857 L2.23913043,15.7142857 C1.0080639,15.7142857 0,14.7206227 0,13.5 L0,8.35714286 C0,7.13652013 1.0080639,6.14285714 2.23913043,6.14285714 L18.7608696,6.14285714 C19.9925438,6.14285714 21,7.13626367 21,8.35714286 L21,13.5 C21,14.7208792 19.9925438,15.7142857 18.7608696,15.7142857 L16.6521739,15.7142857 L16.6521739,19.5 C16.6521739,19.7761424 16.4283163,20 16.1521739,20 L4.84782609,20 C4.57168371,20 4.34782609,19.7761424 4.34782609,19.5 L4.34782609,15.7142857 Z M4.34782609,14.7142857 L4.34782609,12.6428571 C4.34782609,12.3667148 4.57168371,12.1428571 4.84782609,12.1428571 L16.1521739,12.1428571 C16.4283163,12.1428571 16.6521739,12.3667148 16.6521739,12.6428571 L16.6521739,14.7142857 L18.7608696,14.7142857 C19.4433782,14.7142857 20,14.1654264 20,13.5 L20,8.35714286 C20,7.69171643 19.4433782,7.14285714 18.7608696,7.14285714 L2.23913043,7.14285714 C1.55715349,7.14285714 1,7.6920513 1,8.35714286 L1,13.5 C1,14.1650916 1.55715349,14.7142857 2.23913043,14.7142857 L4.34782609,14.7142857 Z M15.6521739,13.1428571 L5.34782609,13.1428571 L5.34782609,19 L15.6521739,19 L15.6521739,13.1428571 Z M3.47826087,9.21428571 C3.47826087,9.0180513 3.31502042,8.85714286 3.10869565,8.85714286 C2.90286393,8.85714286 2.73913043,9.01842584 2.73913043,9.21428571 C2.73913043,9.40966299 2.90324045,9.57142857 3.10869565,9.57142857 C3.31464405,9.57142857 3.47826087,9.41003768 3.47826087,9.21428571 Z M4.47826087,9.21428571 C4.47826087,9.96541182 3.86388585,10.5714286 3.10869565,10.5714286 C2.35415086,10.5714286 1.73913043,9.96519415 1.73913043,9.21428571 C1.73913043,8.46273754 2.35392643,7.85714286 3.10869565,7.85714286 C3.86411001,7.85714286 4.47826087,8.46252013 4.47826087,9.21428571 Z M6.58695652,14.8571429 C6.31081415,14.8571429 6.08695652,14.6332852 6.08695652,14.3571429 C6.08695652,14.0810005 6.31081415,13.8571429 6.58695652,13.8571429 L14.4130435,13.8571429 C14.6891859,13.8571429 14.9130435,14.0810005 14.9130435,14.3571429 C14.9130435,14.6332852 14.6891859,14.8571429 14.4130435,14.8571429 L6.58695652,14.8571429 Z M6.58695652,16.5714286 C6.31081415,16.5714286 6.08695652,16.3475709 6.08695652,16.0714286 C6.08695652,15.7952862 6.31081415,15.5714286 6.58695652,15.5714286 L14.4130435,15.5714286 C14.6891859,15.5714286 14.9130435,15.7952862 14.9130435,16.0714286 C14.9130435,16.3475709 14.6891859,16.5714286 14.4130435,16.5714286 L6.58695652,16.5714286 Z M6.58695652,18.2857143 C6.31081415,18.2857143 6.08695652,18.0618567 6.08695652,17.7857143 C6.08695652,17.5095719 6.31081415,17.2857143 6.58695652,17.2857143 L14.4130435,17.2857143 C14.6891859,17.2857143 14.9130435,17.5095719 14.9130435,17.7857143 C14.9130435,18.0618567 14.6891859,18.2857143 14.4130435,18.2857143 L6.58695652,18.2857143 Z"/>
837
+ </symbol>
838
+ <symbol id="icon-profiles-settings" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
839
+ <path stroke="none" fill-rule="evenodd" d="M3.97267123,15.0674776 C4.99377958,14.0472295 6.49125771,13.7663134 7.79554839,14.3190245 C8.12583688,14.4589887 8.20563603,14.8909416 7.94715575,15.1396753 L7.94715575,15.1396753 L6.60445396,16.431939 L6.60445396,17.425939 L7.59945396,17.425939 L8.89175427,16.0840962 C9.11989856,15.8471313 9.50199604,15.8946635 9.67172912,16.1588147 L9.67172912,16.1588147 L9.71247951,16.2361756 C10.2637941,17.540178 9.98468461,19.0093693 8.96326123,20.0299316 C8.04649024,20.9482486 6.71990797,21.2687813 5.5110051,20.9206164 L5.5110051,20.9206164 L5.43745396,20.895939 L2.83943318,23.4947737 C2.78560777,23.5472916 2.70868751,23.6111734 2.61009303,23.677149 L2.61009303,23.677149 L2.50432643,23.7434792 C1.90095763,24.0980698 1.20669408,24.1124825 0.593239927,23.5478093 L0.593239927,23.5478093 L0.534281025,23.4913673 L0.371442461,23.3092933 C-0.0880238492,22.7287303 -0.0530937435,22.0865148 0.280581463,21.5245821 C0.369628975,21.3746198 0.460405096,21.2622765 0.532845501,21.1888084 L0.532845501,21.1888084 L3.11945396,18.593939 L3.09509424,18.5190572 C2.76429265,17.3749038 3.02480991,16.1295108 3.82573255,15.2237099 L3.82573255,15.2237099 Z M6.50756303,15.0417845 C5.9022234,15.023285 5.30214145,15.2291843 4.82046621,15.6440275 L4.82046621,15.6440275 L4.67962899,15.7747333 C3.95513926,16.4992231 3.76002654,17.5874199 4.15767782,18.5288513 C4.23675546,18.716066 4.1946478,18.9325193 4.05115362,19.076436 L4.05115362,19.076436 L1.24298032,21.8928684 L1.17219893,21.9847138 L1.14041764,22.0351521 C0.9885,22.2909922 0.983930789,22.5088263 1.20978842,22.7516687 L1.20978842,22.7516687 L1.25514704,22.7976512 L1.35159492,22.878993 C1.5660328,23.0353152 1.76744252,23.0166323 1.99765898,22.8813376 L1.99765898,22.8813376 L2.08955554,22.8211801 C2.11340753,22.8037557 2.12980084,22.7900519 2.13669993,22.7833468 L2.13669993,22.7833468 L4.95438617,19.9656606 C5.09835629,19.8216905 5.31524648,19.7793979 5.50275955,19.8587304 C6.43792725,20.2543782 7.52764107,20.0525662 8.25600574,19.3229738 C8.7594648,18.8199389 9.0097268,18.1735652 8.98910375,17.5162583 L8.98910375,17.5162583 L8.98345396,17.429939 L8.1720744,18.273412 C8.09667101,18.3517306 7.99836307,18.4027964 7.89247687,18.4200899 L7.89247687,18.4200899 L7.81188076,18.4266259 L6.10396414,18.4266259 C5.82782176,18.4266259 5.60396414,18.2027683 5.60396414,17.9266259 L5.60396414,17.9266259 L5.60396414,16.2194617 C5.60396414,16.0835213 5.65931519,15.9534408 5.75726863,15.8591809 L5.75726863,15.8591809 L6.60045396,15.047939 Z M5.5,2.5 C5.63260824,2.5 5.7597852,2.55267842 5.85355339,2.64644661 L7.70710678,4.5 L18.5,4.5 C18.7761424,4.5 19,4.72385763 19,5 L19,6.5 L20.5,6.5 C20.7761424,6.5 21,6.72385763 21,7 L21,8.5 L22.0263158,8.5 C22.5229956,8.5 22.9368243,8.8686502 22.9934086,9.34885799 L23,9.46153846 L23,20.5384615 C23,21.0343108 22.6216485,21.4383788 22.1393386,21.4935729 L22.0263158,21.5 L9.48656223,21.5 C9.21041986,21.5 8.98656223,21.2761424 8.98656223,21 C8.98656223,20.7545401 9.16343739,20.5503916 9.3966866,20.5080557 L9.48656223,20.5 L22,20.5 L22,9.5 L5,9.5 L5,13.4215562 C5,13.6670161 4.82312484,13.8711646 4.58987563,13.9135006 L4.5,13.9215562 C4.25454011,13.9215562 4.05039163,13.7446811 4.00805567,13.5114319 L4,13.4215562 L4,9.46153846 C4,8.96568923 4.37835152,8.56162122 4.86066141,8.50642707 L4.97368421,8.5 L20,8.5 L20,7.5 L3,7.5 L3,15.1127543 L3,15.1127543 C3,15.3888966 2.77614237,15.6127543 2.5,15.6127543 C2.22385763,15.6127543 2,15.3888966 2,15.1127543 L2,7 C2,6.72385763 2.22385763,6.5 2.5,6.5 L18,6.5 L18,5.5 L7.5,5.5 C7.36739176,5.5 7.2402148,5.44732158 7.14644661,5.35355339 L5.29289322,3.5 L1,3.5 L1,17 C1,17.2761424 0.776142375,17.5 0.5,17.5 C0.223857625,17.5 0,17.2761424 0,17 L0,3 C0,2.72385763 0.223857625,2.5 0.5,2.5 L5.5,2.5 Z M19,13 C19.2761424,13 19.5,13.2238576 19.5,13.5 L19.5008006,14.0856324 C20.0828087,14.2918151 20.5,14.8473823 20.5,15.5 C20.5,15.7761424 20.2761424,16 20,16 C19.7238576,16 19.5,15.7761424 19.5,15.5 C19.5,15.2241175 19.2759132,15 19.0003596,15 C18.7241424,15 18.5,15.2240618 18.5,15.5 C18.5,15.7759382 18.7241424,16 19.0003596,16 C19.8282287,16 20.5,16.6718634 20.5,17.5 C20.5,18.1530325 20.0829284,18.7083607 19.5008767,18.9144235 L19.5,19.428 C19.5,19.7041424 19.2761424,19.928 19,19.928 C18.7238576,19.928 18.5,19.7041424 18.5,19.428 L18.4995411,18.9144412 C17.9171751,18.7084164 17.5,18.1531639 17.5,17.5 C17.5,17.2238576 17.7238576,17 18,17 C18.2761424,17 18.5,17.2238576 18.5,17.5 C18.5,17.7763532 18.7238384,18 19.0003596,18 C19.2762172,18 19.5,17.7762976 19.5,17.5 C19.5,17.2241175 19.2759132,17 19.0003596,17 C18.1719381,17 17.5,16.3283034 17.5,15.5 C17.5,14.8472508 17.9172949,14.2917594 18.4996172,14.0856147 L18.5,13.5 C18.5,13.2238576 18.7238576,13 19,13 Z M10.9645845,16.2409717 C11.3760634,16.7998291 11.6112043,17.5183702 11.6112043,18.4680562 C11.6112043,18.8764545 11.361155,18.9940319 11.028002,19.0289785 C10.9012419,19.0422752 10.7392066,19.0395405 10.5309822,19.0233482 C10.255671,19.0019389 10.0498428,18.7613994 10.0712521,18.4860882 C10.0902826,18.2413672 10.2824529,18.0515463 10.5182824,18.0274215 L10.5872107,18.026 L10.5869875,18.009277 C10.5390972,17.5817394 10.4218159,17.2445675 10.2498102,16.9675288 L10.1593149,16.8338805 C9.99558763,16.6115115 10.0431262,16.2985186 10.2654953,16.1347913 C10.4878643,15.9710641 10.8008572,16.0186027 10.9645845,16.2409717 Z M8.88631613,13 C9.78552337,13 10.7804393,13.8329586 10.6987027,15.0649728 C10.6804226,15.3405094 10.442237,15.549057 10.1667003,15.5307769 C9.89116369,15.5124967 9.68261609,15.2743111 9.70089625,14.9987745 C9.7402144,14.4061322 9.25511537,14 8.88631613,14 C8.75947996,14 8.65418944,14.0226183 8.5687964,14.058635 L8.51005432,14.0867077 L8.43901013,14.1341679 C8.23137319,14.2485551 7.96532743,14.2018531 7.81039599,14.0114671 C7.65546454,13.8210812 7.66379797,13.551096 7.81863856,13.3705091 L7.89690006,13.2967989 L7.97894275,13.2405633 C8.03757105,13.2041377 8.10465917,13.1690882 8.18017376,13.137238 C8.38503129,13.0508341 8.62166946,13 8.88631613,13 Z M16.0571052,10 C16.2429531,10 16.4134668,10.1030795 16.499834,10.2676399 L17.5495062,12.2676399 C17.7242411,12.6005724 17.4827778,13 17.1067773,13 L16.606,13 L16.6067773,14.5 C16.6067773,14.7761424 16.3829197,15 16.1067773,15 L12.1067773,15 C11.830635,15 11.6067773,14.7761424 11.6067773,14.5 L11.606,13 L11.1067773,13 C10.7644947,13 10.5234085,12.6638236 10.6331952,12.3396257 L11.310477,10.3396257 C11.3792255,10.1366125 11.5697213,10 11.7840592,10 L16.0571052,10 Z M15.606,13 L12.606,13 L12.6067773,14 L15.6067773,14 L15.606,13 Z M15.7548435,11 L12.1426302,11 L11.8039893,12 L16.2796795,12 L15.7548435,11 Z"/>
840
+ </symbol>
841
+ <symbol id="icon-profiles" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
842
+ <path stroke="none" fill-rule="evenodd" d="M5.5,2.5 C5.63260824,2.5 5.7597852,2.55267842 5.85355339,2.64644661 L7.70710678,4.5 L18.5,4.5 C18.7761424,4.5 19,4.72385763 19,5 L19,6.5 L20.5,6.5 C20.7761424,6.5 21,6.72385763 21,7 L21,8.5 L22.5,8.5 C22.7761424,8.5 23,8.72385763 23,9 L23,21 C23,21.2761424 22.7761424,21.5 22.5,21.5 L4.5,21.5 C4.22385763,21.5 4,21.2761424 4,21 L4,9 C4,8.72385763 4.22385763,8.5 4.5,8.5 L20,8.5 L20,7.5 L3,7.5 L3,19 C3,19.2761424 2.77614237,19.5 2.5,19.5 C2.22385763,19.5 2,19.2761424 2,19 L2,7 C2,6.72385763 2.22385763,6.5 2.5,6.5 L18,6.5 L18,5.5 L7.5,5.5 C7.36739176,5.5 7.2402148,5.44732158 7.14644661,5.35355339 L5.29289322,3.5 L1,3.5 L1,17 C1,17.2761424 0.776142375,17.5 0.5,17.5 C0.223857625,17.5 0,17.2761424 0,17 L0,3 C0,2.72385763 0.223857625,2.5 0.5,2.5 L5.5,2.5 Z M22,9.5 L5,9.5 L5,20.5 L22,20.5 L22,9.5 Z M19,13 C19.2761424,13 19.5,13.2238576 19.5,13.5 L19.5008006,14.0856324 C20.0828087,14.2918151 20.5,14.8473823 20.5,15.5 C20.5,15.7761424 20.2761424,16 20,16 C19.7238576,16 19.5,15.7761424 19.5,15.5 C19.5,15.2241175 19.2759132,15 19.0003596,15 C18.7241424,15 18.5,15.2240618 18.5,15.5 C18.5,15.7759382 18.7241424,16 19.0003596,16 C19.8282287,16 20.5,16.6718634 20.5,17.5 C20.5,18.1530325 20.0829284,18.7083607 19.5008767,18.9144235 L19.5,19.428 C19.5,19.7041424 19.2761424,19.928 19,19.928 C18.7238576,19.928 18.5,19.7041424 18.5,19.428 L18.4995411,18.9144412 C17.9171751,18.7084164 17.5,18.1531639 17.5,17.5 C17.5,17.2238576 17.7238576,17 18,17 C18.2761424,17 18.5,17.2238576 18.5,17.5 C18.5,17.7763532 18.7238384,18 19.0003596,18 C19.2762172,18 19.5,17.7762976 19.5,17.5 C19.5,17.2241175 19.2759132,17 19.0003596,17 C18.1719381,17 17.5,16.3283034 17.5,15.5 C17.5,14.8472508 17.9172949,14.2917594 18.4996172,14.0856147 L18.5,13.5 C18.5,13.2238576 18.7238576,13 19,13 Z M8.84792695,13 C10.2327154,13 11.0460318,14.3974353 10.5470889,15.7245427 C11.2553306,16.3911071 11.5898161,17.4837885 11.5824265,18.9664919 C11.5810551,19.2416582 11.3576024,19.464 11.0824327,19.464 L7.00012251,19.464 C6.72489432,19.464 6.50141719,19.2415672 6.500128,18.966342 C6.49321028,17.4894972 6.76675669,16.4167902 7.36371293,15.7691852 C6.770013,14.5211223 7.46367561,13 8.84792695,13 Z M8.84792695,14 C8.20788792,14 7.88549943,14.8825462 8.40518443,15.5661165 C8.57816751,15.7936507 8.52555016,16.1196352 8.28976406,16.2811898 C7.84143498,16.5883732 7.56544491,17.3080914 7.51025339,18.464 L10.5697471,18.464 C10.504068,17.3495297 10.1870836,16.6364687 9.65158455,16.287692 C9.42675736,16.1412594 9.35758532,15.8434771 9.49484486,15.6129352 C9.96546376,14.822481 9.56180352,14 8.84792695,14 Z M16.0571052,10 C16.2429531,10 16.4134668,10.1030795 16.499834,10.2676399 L17.5495062,12.2676399 C17.7242411,12.6005724 17.4827778,13 17.1067773,13 L16.606,13 L16.6067773,14.5 C16.6067773,14.7761424 16.3829197,15 16.1067773,15 L12.1067773,15 C11.830635,15 11.6067773,14.7761424 11.6067773,14.5 L11.606,13 L11.1067773,13 C10.7644947,13 10.5234085,12.6638236 10.6331952,12.3396257 L11.310477,10.3396257 C11.3792255,10.1366125 11.5697213,10 11.7840592,10 L16.0571052,10 Z M15.606,13 L12.606,13 L12.6067773,14 L15.6067773,14 L15.606,13 Z M15.7548435,11 L12.1426302,11 L11.8039893,12 L16.2796795,12 L15.7548435,11 Z"/>
843
+ </symbol>
844
+ <symbol id="icon-providers" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
845
+ <path stroke="none" fill-rule="evenodd" d="M23.5000824,14 C23.7762248,14 24.0000824,14.2238576 24.0000824,14.5 L24.0000824,22.5 C24.0000824,22.7761424 23.7762248,23 23.5000824,23 L19.5000824,23 C19.22394,23 19.0000824,22.7761424 19.0000824,22.5 L19.0031699,21.8221629 C17.5813879,22.3083444 14.6221835,23.328146 13.9320367,23.5339624 C12.4596922,23.9730467 11.4961266,24.0946166 10.4829725,23.931218 C9.52206126,23.776245 8.56516192,23.3845929 6.82482557,22.4832618 C6.30260954,22.2128028 3.91319663,20.9435918 4.09746695,21.0410006 C2.76520995,20.3367441 1.58745425,19.7281399 0.276490258,19.0727116 C-0.0287777105,18.9200901 -0.0947979579,18.5132445 0.146543493,18.2719228 C1.31339546,17.1051665 2.33334894,16.7730911 3.651012,17.1488964 L7.02058882,18.2151826 C7.11433244,17.5712397 7.52948279,17 8.26603985,17 L11.8405079,17 C11.8353399,17 12.0802605,16.8261527 12.362668,16.6281726 L12.6089533,16.4560571 C12.8545018,16.2850154 13.0829638,16.1276704 13.1604559,16.078303 C14.2446063,15.3876303 15.2856328,15 16.4362526,15 L19,15 L19.0000824,14.5 C19.0000824,14.2238576 19.22394,14 19.5000824,14 L23.5000824,14 Z M19,16 L16.4362526,16 C15.5063618,16 14.6355862,16.3242367 13.6977515,16.921697 C13.5306551,17.028148 13.3663484,17.1397141 13.1743028,17.2754734 C13.1025206,17.326217 12.7987468,17.5439226 12.7234873,17.5967481 C12.3053008,17.8902781 12.1055042,18 11.8405079,18 L8.26603985,18 C7.91142992,18 7.91142992,19 8.26603985,19 L13.8830611,19 L13.8830611,20 L8.26603985,20 C7.74457201,20 7.3842048,19.7136741 7.1849382,19.3179356 L3.36302144,18.1064201 C2.61873194,17.8942675 2.05096987,17.9882988 1.37999788,18.508091 C2.23240161,18.9386883 3.04693716,19.3590469 3.90849538,19.8111949 L4.557,20.153 L4.56689969,20.1581295 C4.74103798,20.2509522 6.80767262,21.3482224 7.28471423,21.5952852 C8.93559149,22.4502849 9.81639953,22.8107934 10.6421923,22.9439749 C11.4819875,23.0794146 12.3054676,22.9755188 13.6462531,22.5756682 C14.3717003,22.3593245 17.7596269,21.1888202 19.0033334,20.7654307 L19,16 Z M23.0000824,15 L20.0000824,15 L20.0000824,22 L23.0000824,22 L23.0000824,15 Z M11.4980824,-1.0658141e-14 C11.7742248,-1.0658141e-14 11.9980824,0.223857625 11.9980824,0.5 L11.9980824,1.90837701 C12.5242367,2.15583347 12.9798599,2.41475981 13.3604912,2.70712174 L14.4994855,2.02246316 C14.7391144,1.87842028 15.050294,1.95886452 15.1900919,2.2009945 L16.6900919,4.7989945 C16.8281968,5.03819215 16.7461929,5.34405821 16.506952,5.48208799 L15.3131028,6.17087768 C15.3997953,6.7279505 15.3987504,7.27599223 15.313436,7.82885547 L16.5070769,8.51798412 C16.7462293,8.65605475 16.8281686,8.96185665 16.6900919,9.2010055 L15.1900919,11.7990055 C15.050234,12.0412394 14.7388667,12.1216305 14.4992232,11.9773791 L13.3619067,11.2927808 C12.9811625,11.5847055 12.5264288,11.8430631 11.9980824,12.0921636 L11.9980824,13.5 C11.9980824,13.7761424 11.7742248,14 11.4980824,14 L8.4980824,14 C8.22194003,14 7.9980824,13.7761424 7.9980824,13.5 L7.9980824,12.1578876 C7.40423527,11.9794768 6.98160257,11.7230192 6.50956015,11.3080163 C6.5033566,11.3025623 6.49736501,11.2972862 6.4915097,11.2921197 L5.24183263,11.9861182 C5.00321157,12.1186346 4.70240944,12.035298 4.56600071,11.7988805 L3.06700071,9.20088047 C2.92893685,8.96159434 3.01109331,8.65568804 3.25046243,8.51776811 L4.44655494,7.82860237 C4.36093676,7.27169169 4.36347923,6.72382296 4.44964412,6.17014859 L3.26308457,5.48143507 C3.02396357,5.34264232 2.9428761,5.0361299 3.08208443,4.79725061 L4.59608443,2.19925061 C4.73389389,1.96277176 5.03622616,1.88104617 5.27440986,2.01588762 L6.49435717,2.7065288 C6.49878232,2.70261626 6.50327734,2.69864807 6.50786921,2.69459982 C6.97948673,2.27881668 7.40272241,2.02185356 7.9980824,1.84308362 L7.9980824,0.5 C7.9980824,0.223857625 8.22194003,-1.0658141e-14 8.4980824,-1.0658141e-14 L11.4980824,-1.0658141e-14 Z M10.9980824,1 L8.9980824,1 L8.9980824,2.23 C8.9980824,2.46438898 8.83526251,2.66731884 8.60644426,2.71811649 C7.96642461,2.86020085 7.61728711,3.04965573 7.16917783,3.44471375 C7.09855304,3.50697734 7.05120155,3.55018453 6.90182028,3.68777255 C6.7421084,3.83487559 6.50571035,3.86208453 6.31675494,3.75511238 L5.21145972,3.12937847 L4.19826789,4.86799959 L5.25708023,5.48256493 C5.44514073,5.59172069 5.54109352,5.80990561 5.49443677,6.0222847 C5.34950871,6.68198972 5.34510613,7.31574137 5.49129655,7.97707898 C5.53840866,8.19020519 5.44182649,8.40926217 5.25270237,8.51823189 L4.18319488,9.13446175 L5.18634528,10.8730773 L6.31933217,10.2438818 C6.50752324,10.1393713 6.7414807,10.1670403 6.90010119,10.3125664 C7.0568799,10.4564028 7.09905541,10.4947653 7.16983432,10.5569916 C7.61900807,10.9518892 7.96783607,11.1411125 8.60644426,11.2828835 C8.83526251,11.3336812 8.9980824,11.536611 8.9980824,11.771 L8.9980824,13 L10.9980824,13 L10.9980824,11.771 C10.9980824,11.5733383 11.1145275,11.3942298 11.2951828,11.3140189 C12.009185,10.9970019 12.5832152,10.67255 12.9777515,10.3119365 C13.1411444,10.1625924 13.3832884,10.1384607 13.5729416,10.2526209 L14.5786792,10.8580164 L15.574061,9.13401503 L14.5070879,8.51801588 C14.3184257,8.40909491 14.2219988,8.19055927 14.2687138,7.97778026 C14.4130177,7.32049926 14.4154415,6.6861243 14.2680193,6.02360212 C14.220577,5.8103943 14.3170206,5.59106622 14.5062128,5.48191201 L15.574061,4.86586002 L14.5785233,3.14171371 L13.5706793,3.74753684 C13.3807574,3.86170041 13.1383485,3.83723905 12.9750636,3.68743357 C12.5820639,3.32687664 12.0053246,3.00086455 11.2959471,2.68731971 C11.1148806,2.60728834 10.9980824,2.42796484 10.9980824,2.23 L10.9980824,1 Z M9.8781824,4.5002 C11.2590181,4.5002 12.3781824,5.61975085 12.3781824,7.0002 C12.3781824,8.38064915 11.2590181,9.5002 9.8781824,9.5002 C8.49942666,9.5002 7.3781824,8.37972955 7.3781824,7.0002 C7.3781824,5.62067045 8.49942666,4.5002 9.8781824,4.5002 Z M9.8781824,5.5002 C9.05155692,5.5002 8.3781824,6.17310981 8.3781824,7.0002 C8.3781824,7.82729019 9.05155692,8.5002 9.8781824,8.5002 C10.7066561,8.5002 11.3781824,7.8284417 11.3781824,7.0002 C11.3781824,6.1719583 10.7066561,5.5002 9.8781824,5.5002 Z"/>
846
+ </symbol>
847
+ <symbol id="icon-query" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
848
+ <path fill="none" stroke-linecap="round" stroke-linejoin="round" d="M20.5,10.5 C20.5,16.022 16.023,20.5 10.5,20.5 C4.977,20.5 0.5,16.022 0.5,10.5 C0.5,4.978 4.977,0.5 10.5,0.5 C16.023,0.5 20.5,4.978 20.5,10.5 L20.5,10.5 Z M17.5723,17.5732 L23.5003,23.5002 M15.3789,15.0488 L16.8789,12.4508 L15.3789,11.5858 C15.5339,10.8798 15.5449,10.1698 15.3779,9.4148 L16.8789,8.5488 L15.3789,5.9508 L13.9349,6.8188 C13.4019,6.3318 12.6189,5.9508 12.1189,5.7298 L12.1189,3.9998 L9.1189,3.9998 L9.1189,5.7298 C8.1189,5.9528 7.7169,6.3318 7.1849,6.8198 L5.6499,5.9508 L4.1359,8.5488 L5.6279,9.4148 C5.4729,10.1158 5.4569,10.8248 5.6239,11.5858 L4.1209,12.4508 L5.6209,15.0488 L7.1839,14.1808 C7.7169,14.6698 8.1189,15.0488 9.1189,15.2708 L9.1189,16.9998 L12.1189,16.9998 L12.1189,15.2708 C12.6189,15.0488 13.4019,14.6698 13.9369,14.1808 L15.3789,15.0488 L15.3789,15.0488 Z M12.5,10.5 C12.5,11.604 11.605,12.5 10.5,12.5 C9.396,12.5 8.5,11.604 8.5,10.5 C8.5,9.396 9.396,8.5 10.5,8.5 C11.605,8.5 12.5,9.396 12.5,10.5 L12.5,10.5 Z"/>
849
+ </symbol>
850
+ <symbol id="icon-read-only-checkmark" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
851
+ <path stroke="none" fill-rule="evenodd" d="M12.7577233,2.44495169 C13.22202,1.75886124 14.154593,1.57906185 14.8406835,2.04335851 C15.4864157,2.4803436 15.6836686,3.33213405 15.3175533,4.0028307 L15.2422767,4.12631864 L8.47499604,14.1263186 C7.97231866,14.8691242 6.94483105,15.0001993 6.27297558,14.4386442 L6.16444353,14.3386246 L0.931724148,9.02994085 C0.350174153,8.43994839 0.357018125,7.49022558 0.947010587,6.90867559 C1.50012852,6.36347247 2.3694157,6.33541248 2.95509841,6.82017349 L3.06827585,6.92396203 L7.015,10.929 L12.7577233,2.44495169 Z"/>
852
+ </symbol>
853
+ <symbol id="icon-read-only-not-selected" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
854
+ <path stroke="none" fill-rule="evenodd" d="M14.0606602,1.93933983 C14.609835,2.48851461 14.6441584,3.35757702 14.1636304,3.94673776 L14.0606602,4.06066017 L10.121,8 L14.0606602,11.9393398 C14.6464466,12.5251263 14.6464466,13.4748737 14.0606602,14.0606602 C13.5114854,14.609835 12.642423,14.6441584 12.0532622,14.1636304 L11.9393398,14.0606602 L8,10.121 L4.06066017,14.0606602 C3.47487373,14.6464466 2.52512627,14.6464466 1.93933983,14.0606602 C1.39016504,13.5114854 1.35584162,12.642423 1.83636956,12.0532622 L1.93933983,11.9393398 L5.879,8 L1.93933983,4.06066017 C1.35355339,3.47487373 1.35355339,2.52512627 1.93933983,1.93933983 C2.48851461,1.39016504 3.35757702,1.35584162 3.94673776,1.83636956 L4.06066017,1.93933983 L8,5.879 L11.9393398,1.93933983 C12.5251263,1.35355339 13.4748737,1.35355339 14.0606602,1.93933983 Z"/>
855
+ </symbol>
856
+ <symbol id="icon-recurring" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
857
+ <path stroke="none" fill-rule="evenodd" d="M15.8931177,2.7903044 C19.6380589,4.37172259 22.0134956,8.0321794 22.0051997,12.0292901 C22.0046033,12.3054319 21.7802804,12.5288232 21.5041386,12.5282485 C21.2279968,12.5276739 21.0046055,12.303351 21.0051801,12.0272092 C21.012667,8.4293437 18.8747509,5.13489714 15.504109,3.7115385 C10.9247365,1.7778667 5.64571616,3.92236184 3.71121278,8.50135935 C1.777896,13.0799807 3.9230944,18.3602429 8.50185083,20.2946444 C13.0777259,22.2257747 18.3115136,20.1919864 20.3730825,15.4489689 L16.7233158,17.133859 C16.5005181,17.2368724 16.2409877,17.1620033 16.1046715,16.9680564 L16.0596411,16.8898593 C15.9566277,16.6670616 16.0314967,16.4075312 16.2254437,16.2712151 L16.3036407,16.2261846 L21.1279964,13.995581 C21.3969321,13.8712351 21.7060896,14.0072936 21.8056274,14.2723204 L21.8307003,14.3652589 L22.7410218,19.6964234 C22.7875016,19.968626 22.6045172,20.2269691 22.3323147,20.273449 C22.0903568,20.3147645 21.8593497,20.1747748 21.7783576,19.9519794 L21.7552891,19.8647419 L21.1299823,16.1996774 C18.7473624,21.1956855 13.0761553,23.3105171 8.11285812,21.2158852 C3.02530309,19.06653 0.641826259,13.1997614 2.790009,8.1122789 C4.93943513,3.02455613 10.8049731,0.64180007 15.8931177,2.7903044 Z M15.851812,6.68247889 C16.0493516,6.82817951 16.1086549,7.09170284 16.0042732,7.30454546 L15.9574076,7.38165667 L11.9494076,12.8156665 C11.8740052,12.9178963 11.7633426,12.9866121 11.6407949,13.0100092 L11.5470209,13.0188754 L6.74026891,13.0188754 C6.46412654,13.0188754 6.24026891,12.7950178 6.24026891,12.5188754 C6.24026891,12.2734155 6.41714407,12.069267 6.65039328,12.0269311 L6.74026891,12.0188754 L11.2941246,12.0180156 L15.1526342,6.78807446 C15.3165474,6.56584243 15.62958,6.51856568 15.851812,6.68247889 Z"/>
858
+ </symbol>
859
+ <symbol id="icon-refresh" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
860
+ <path stroke="none" d="M21.0674281,9.99502847 L21.1291615,10.0703587 L23.9151615,14.2213587 C24.0690508,14.4506461 24.0079286,14.7612722 23.7786413,14.9151615 C23.5748303,15.051952 23.3067517,15.0188569 23.1416135,14.8487778 L23.0848385,14.7786413 L21.3060028,12.1283907 C21.1630915,16.0599657 18.2510373,19.6645065 14.2829347,20.6012635 C11.2338897,21.3227538 8.07845713,20.4068006 5.88590813,18.246895 C5.68918705,18.0531028 5.68681275,17.7365292 5.88060498,17.5398081 C6.07439721,17.343087 6.39097079,17.3407127 6.58769187,17.534505 C8.53768219,19.4554632 11.3421163,20.2695291 14.0529218,19.6280759 C17.74289,18.7569786 20.4130924,15.2782825 20.3082409,11.615215 L17.8916923,14.5065936 C17.7343066,14.6949557 17.4676779,14.738206 17.2615408,14.6211376 L17.1874064,14.5696923 C16.9990443,14.4123066 16.955794,14.1456779 17.0728624,13.9395408 L17.1243077,13.8654064 L20.2643707,10.1040304 C20.2894026,10.0675064 20.3192574,10.0342846 20.3532272,10.0054033 L20.3303077,10.0284064 C20.5226456,9.79821285 20.8653948,9.7921831 21.0674281,9.99502847 Z M18.9551321,5.88083829 C19.1381381,6.08763145 19.1188549,6.40362611 18.9120617,6.58663213 C18.7052686,6.76963815 18.3892739,6.75035486 18.2062679,6.54356171 C16.2666461,4.35182773 13.2719521,3.37132883 10.3716412,4.05780921 C6.24562714,5.03240841 3.4340336,9.07876399 4.0042612,13.2205763 L6.53505851,10.1916653 C6.69241531,10.0032791 6.95903731,9.95998781 7.1651924,10.0770246 L7.23933466,10.1284585 C7.42772095,10.2858153 7.47101219,10.5524373 7.35397541,10.7585924 L7.30254149,10.8327347 L4.09754149,14.6697347 C3.90524041,14.899956 3.56249544,14.9060403 3.36043019,14.7032297 L3.29868481,14.6279102 L0.511684807,10.4769102 C0.357757413,10.2476484 0.418828008,9.9370122 0.648089799,9.78308481 C0.851878057,9.64626046 1.11996215,9.67931106 1.28512862,9.84936271 L1.34191519,9.9194898 L2.9314093,12.2881031 C2.86332126,8.02782206 5.87252976,4.09301859 10.141536,3.08464348 C13.4038693,2.31247524 16.773619,3.41577191 18.9551321,5.88083829 Z"/>
861
+ </symbol>
862
+ <symbol id="icon-reorder" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
863
+ <path stroke="none" fill-rule="evenodd" d="M13.5218727,11.95 C13.5218727,11.15 12.8218727,10.45 12.0218727,10.45 C11.2218727,10.45 10.5218727,11.15 10.5218727,11.95 C10.5218727,12.75 11.2218727,13.45 12.0218727,13.45 C12.8218727,13.45 13.5218727,12.75 13.5218727,11.95 Z M14.5218727,11.95 C14.5218727,13.35 13.4218727,14.45 12.0218727,14.45 C10.6218727,14.45 9.52187272,13.35 9.52187272,11.95 C9.52187272,10.55 10.6218727,9.45 12.0218727,9.45 C13.4218727,9.45 14.5218727,10.55 14.5218727,11.95 Z M12.0218727,1.15 L7.62187272,5.95 L16.3218727,5.95 L12.0218727,1.15 Z M17.5218727,6.95 L6.52187272,6.95 C6.12187272,6.95 5.82187272,6.45 6.12187272,6.15 L11.6218727,0.15 C11.8218727,-0.05 12.1218727,-0.05 12.3218727,0.15 L17.8218727,6.15 C18.2218727,6.45 17.9218727,6.95 17.5218727,6.95 Z M12.0218727,22.75 L16.4218727,17.95 L7.62187272,17.95 L12.0218727,22.75 Z M6.52187272,16.95 L17.5218727,16.95 C17.9218727,16.95 18.2218727,17.45 17.9218727,17.75 L12.4218727,23.75 C12.2218727,23.95 11.9218727,23.95 11.7218727,23.75 L6.22187272,17.75 C5.82187272,17.45 6.12187272,16.95 6.52187272,16.95 Z"/>
864
+ </symbol>
865
+ <symbol id="icon-report-problem-triangle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 23">
866
+ <path fill="none" stroke-linecap="round" stroke-linejoin="round" d="M22.5,22.5 L0.5,22.5 L11.5,0.5 L22.5,22.5 L22.5,22.5 Z M12,19 C12,19.276 11.776,19.5 11.5,19.5 C11.224,19.5 11,19.276 11,19 C11,18.724 11.224,18.5 11.5,18.5 C11.776,18.5 12,18.724 12,19 L12,19 Z M11.5,15.8052 L11.5,8.1532"/>
867
+ </symbol>
868
+ <symbol id="icon-reports" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
869
+ <path stroke="none" fill-rule="evenodd" d="M20.5,24 L3.5,24 C3.2,24 3,23.8 3,23.5 L3,0.5 C3,0.2 3.2,0 3.5,0 L14.5,0 C14.5,0 14.5,0 14.5,0 C14.6,0 14.8,0.1 14.9,0.1 L20.9,6.1 C20.9,6.2 21,6.4 21,6.5 C21,6.5 21,6.5 21,6.5 L21,23.5 C21,23.8 20.8,24 20.5,24 Z M4,23 L20,23 L20,7 L14.5,7 C14.2,7 14,6.8 14,6.5 L14,1 L4,1 L4,23 Z M15,6 L19.3,6 L15,1.7 L15,6 Z M14.5,20 C12.6,20 11,18.4 11,16.5 C11,14.6 12.6,13 14.5,13 C16.4,13 18,14.6 18,16.5 C18,18.4 16.4,20 14.5,20 Z M13,18.5 C13.4,18.8 13.9,19 14.5,19 C15.9,19 17,17.9 17,16.5 C17,15.3 16.1,14.3 15,14 L15,16.5 C15,16.6 14.9,16.8 14.8,16.9 L13,18.5 Z M14,14 C12.9,14.2 12,15.2 12,16.5 C12,17 12.1,17.4 12.3,17.8 L14,16.3 L14,14 Z M9,20 L7,20 C6.7,20 6.5,19.8 6.5,19.5 C6.5,19.2 6.7,19 7,19 L9,19 C9.3,19 9.5,19.2 9.5,19.5 C9.5,19.8 9.3,20 9,20 Z M9,17 L7,17 C6.7,17 6.5,16.8 6.5,16.5 C6.5,16.2 6.7,16 7,16 L9,16 C9.3,16 9.5,16.2 9.5,16.5 C9.5,16.8 9.3,17 9,17 Z M9,14 L7,14 C6.7,14 6.5,13.8 6.5,13.5 C6.5,13.2 6.7,13 7,13 L9,13 C9.3,13 9.5,13.2 9.5,13.5 C9.5,13.8 9.3,14 9,14 Z M16,11 L7,11 C6.7,11 6.5,10.8 6.5,10.5 C6.5,10.2 6.7,10 7,10 L16,10 C16.3,10 16.5,10.2 16.5,10.5 C16.5,10.8 16.3,11 16,11 Z M12,8 L7,8 C6.7,8 6.5,7.8 6.5,7.5 C6.5,7.2 6.7,7 7,7 L12,7 C12.3,7 12.5,7.2 12.5,7.5 C12.5,7.8 12.3,8 12,8 Z"/>
870
+ </symbol>
871
+ <symbol id="icon-reset-override" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
872
+ <g fill="none" fill-rule="evenodd">
873
+ <path stroke="none" fill="#333" d="M6.503 10.2225031C10.3833626 10.2225031 13.5 13.3235489 13.5 17.1985031 13.5 21.0783137 10.358474 24.2225031 6.482 24.2225031 2.631322 24.2225031-.5 20.9861907-.5 17.0815031-.5 13.3379417 2.42969784 10.3811472 6.19951449 10.2289649L6.19951449 10.2289649zM7.74832804 21.222801L5.25706401 21.2232808C5.57496815 21.8652573 5.96310863 22.5076213 6.42158918 23.1464813L6.477 23.2225031C6.49737651 23.2225031 6.51273953 23.2224454 6.52808887 23.2223302L6.38525308 23.4157323C6.93117138 22.6881095 7.38547838 21.9552065 7.74832804 21.222801zM4.1525829 21.2227609L2.08146 21.2236866C2.89064463 22.1285583 3.95857352 22.787441 5.16139938 23.0698731 4.76564232 22.4575738 4.42964319 21.8405808 4.1525829 21.2227609zM10.9597775 21.2237034L8.85262429 21.2228895C8.5760728 21.8392305 8.24084036 22.454742 7.84699659 23.0661005 9.06863742 22.7837541 10.1487158 22.1271837 10.9597775 21.2237034zM3.2127836 17.7227114L.532952712 17.7230763C.626180281 18.6264365.913792957 19.4750307 1.35193908 20.2226652L3.75569616 20.2227967C3.46614809 19.3848491 3.28511888 18.5487022 3.2127836 17.7227114zM8.7894424 17.7225001L4.21645935 17.7232954C4.2964127 18.5465426 4.49693078 19.3827266 4.81824778 20.2230595L8.18728029 20.2227452C8.50881677 19.3822599 8.7094594 18.5459146 8.7894424 17.7225001zM12.4774934 17.7232769L9.79303486 17.7228825C9.72060038 18.5489407 9.53941924 19.3851432 9.24966644 20.2231338L11.6877598 20.2232896C12.1214076 19.4769623 12.3994679 18.6288028 12.4774934 17.7232769zM3.58321778 14.2224758L1.2387917 14.2223453C.821126524 14.9663049.564245033 15.8135885.510547529 16.7228307L3.17842828 16.7228848C3.19500488 15.8715245 3.32986854 15.0348962 3.58321778 14.2224758zM8.36773191 14.2226922L4.63816558 14.2229156C4.35141399 15.030888 4.19819904 15.8675008 4.17879488 16.7224667L8.82712738 16.722857C8.80781846 15.8676967 8.65459524 15.0308781 8.36773191 14.2226922zM11.7135657 14.222166L9.4229113 14.222961C9.67615118 15.0351804 9.81094108 15.8715749 9.82747924 16.7226783L12.4816072 16.7227756C12.4111256 15.8154979 12.1405961 14.9675834 11.7135657 14.222166zM5.02432038 11.3955906L4.90242773 11.425614C3.73152043 11.7303782 2.71255728 12.3635375 1.95066725 13.2225289L3.96058484 13.2225916C4.24024196 12.594228 4.59478725 11.9836421 5.02432038 11.3955906zM6.503 11.2225031C6.48455364 11.2225031 6.46615286 11.2225845 6.44778547 11.2227478L6.58807105 11.0679763C5.95859598 11.7497839 5.45215369 12.4711741 5.06898764 13.22301L7.9369101 13.2228972C7.59458607 12.5512633 7.15386559 11.9039058 6.6149221 11.2873344L6.557 11.2235031zM7.98796147 11.4044187L8.09823625 11.5584472C8.47588042 12.0963255 8.79165612 12.6524215 9.04563796 13.2231721L10.9936412 13.2225363C10.2113253 12.3446267 9.1714054 11.7009218 7.98796147 11.4044187zM18.0149362 18.2241328L17.9795 18.222503C18.0768069 18.222212 18.1677049 18.2497369 18.2446641 18.2975931 18.2455008 18.2984255 18.2464605 18.2990251 18.2474186 18.2996283L18.2560004 18.3048557C18.2767622 18.3185539 18.2964435 18.3337592 18.314888 18.3503162L18.3219978 18.3570454 19.9175396 19.8424567C20.1196524 20.0306189 20.1309616 20.3469993 19.9427994 20.5491122 19.7755441 20.728768 19.5069806 20.7576654 19.3074144 20.6297168L19.2361439 20.574372 18.4827382 19.8715007 18.4826802 19.9600951C18.4379305 23.0219206 17.3072142 24.2158031 14.0957382 24.2158031 13.8195958 24.2158031 13.5957382 23.9919454 13.5957382 23.7158031 13.5957382 23.4396607 13.8195958 23.2158031 14.0957382 23.2158031 16.7309887 23.2158031 17.4531309 22.478239 17.4831001 19.9455147L17.4827382 19.8185007 16.6017623 20.585666C16.416562 20.7467604 16.1464488 20.7472894 15.9614256 20.599087L15.8963625 20.5365625C15.7352681 20.3513622 15.7347391 20.0812489 15.8829415 19.8962257L15.9454661 19.8311627 17.6461292 18.3511994C17.7344003 18.2715358 17.8512377 18.2228889 17.9795 18.222503L17.9897417 18.2230743C17.9981463 18.2232162 18.0065473 18.2235691 18.0149362 18.2241328z"/>
874
+ <path stroke="none" fill="#333" d="M24.0007887,-0.5 C24.2769311,-0.5 24.5007887,-0.276142375 24.5007887,0 C24.5007887,0.245459889 24.3239136,0.44960837 24.0906644,0.491944331 L24.0007887,0.5 L21.991,0.5 L19.2978655,13.1379894 C20.0053673,13.4461238 20.5,14.1515496 20.5,14.9725031 C20.5,16.0770726 19.6045695,16.9725031 18.5,16.9725031 C17.3954305,16.9725031 16.5,16.0770726 16.5,14.9725031 C16.5,14.7964175 16.5227559,14.6256468 16.5654872,14.4629714 L14.0957382,14.4636951 C13.8195958,14.4636951 13.5957382,14.2398375 13.5957382,13.9636951 C13.5957382,13.7182352 13.7726133,13.5140867 14.0058625,13.4717508 L14.0957382,13.4636951 L17.1878531,13.4630693 C17.493833,13.1968554 17.8815343,13.0221474 18.308334,12.9815682 L18.46976,12.222 L12.3820053,12.2225031 C12.1058629,12.2225031 11.8820053,11.9986454 11.8820053,11.7225031 C11.8820053,11.4770432 12.0588804,11.2728947 12.2921296,11.2305587 L12.3820053,11.2225031 L18.68276,11.222 L19.91676,5.432 L15.03176,5.432 L15.00476,7.771 L16.1444057,6.61369231 C16.3379871,6.41676368 16.6545579,6.41405015 16.8514865,6.60763147 C17.0265342,6.77970375 17.048128,7.04895295 16.9148072,7.24497103 L16.8575474,7.31471227 L14.8632237,9.34352087 C14.6890618,9.52069422 14.4158616,9.54038015 14.2196912,9.40257865 L14.150082,9.34352087 L12.1557583,7.31471227 C11.962177,7.11778364 11.9648905,6.80121278 12.1618191,6.60763147 C12.3368668,6.43555918 12.6064466,6.41858407 12.8001505,6.55524544 L12.8688999,6.61369231 L14.00476,7.769 L14.03176,5.432 L8.332,5.432 L10.1184292,9.65481276 C10.2140092,9.88089906 10.1305881,10.1378083 9.93223404,10.267628 L9.8525889,10.3100447 C9.6265026,10.4056248 9.36959338,10.3222037 9.23977361,10.1238495 L9.19735693,10.0442044 L7.11875325,5.12744705 C6.9910034,4.82526582 7.18370403,4.49334605 7.4923825,4.44012457 L7.57928939,4.43275123 L20.13076,4.432 L21.0979195,-0.104239929 C21.1409651,-0.306176844 21.3024171,-0.457727962 21.5001891,-0.492460477 L21.5869328,-0.5 L24.0007887,-0.5 Z M19.0731138,14.1529225 L19.035413,14.227135 C18.9611233,14.3469364 18.8383882,14.4313466 18.6971226,14.4561556 L18.6103788,14.4636951 L17.6394488,14.4628327 C17.5508627,14.6120836 17.5,14.7863535 17.5,14.9725031 C17.5,15.5247878 17.9477153,15.9725031 18.5,15.9725031 C19.0522847,15.9725031 19.5,15.5247878 19.5,14.9725031 C19.5,14.6334197 19.3312326,14.3337541 19.0731138,14.1529225 Z"/>
875
+ </g>
876
+ </symbol>
877
+ <symbol id="icon-safari" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g transform="translate(4 2)">
878
+ <linearGradient id="SafariA" gradientUnits="userSpaceOnUse" x1="7.998" y1="21.994" x2="7.998" y2="-2.012">
879
+ <stop offset=".25" stop-color="#dbdbda"/>
880
+ <stop offset="1" stop-color="#fff"/>
881
+ </linearGradient>
882
+ <circle cx="8" cy="10" r="12" fill="url(#SafariA)"/>
883
+ <radialGradient id="SafariB" cx="-295.722" cy="521.844" r=".059" gradientTransform="matrix(229.4 0 0 -229.4 67848.1016 119718.5)" gradientUnits="userSpaceOnUse">
884
+ <stop offset="0" stop-color="#2abce1"/>
885
+ <stop offset=".114" stop-color="#2abbe1"/>
886
+ <stop offset="1" stop-color="#3375f8"/>
887
+ </radialGradient>
888
+ <circle cx="8" cy="10" r="11.1" fill="url(#SafariB)"/>
889
+ <g transform="translate(9.688 8.719)">
890
+ <path d="M-1.7-7.1c-.1 0-.1-.1-.1-.1v-2c0-.1.1-.1.1-.1l.1.1v2c.1 0 0 .1-.1.1h0z" fill="#f3f3f3"/>
891
+ <path d="M-1.7-7.1c-.1 0-.1-.1-.1-.1v-2c0-.1.1-.1.1-.1.1 0 .2.1.2.1v2c0 0-.1.1-.2.1h0zm0-2.2c-.1 0-.1.1-.1.1v2c0 .1.1.1.1.1.1 0 .1-.1.1-.1v-2c.1-.1 0-.1-.1-.1h0z" fill="#fff"/>
892
+ <path d="M-.7-8.2c-.1 0-.1-.1-.1-.1l.1-.9c0-.1.1-.1.2-.1s.1.1.1.1l-.1.9c-.1.1-.2.1-.2.1h0z" fill="#f3f3f3"/>
893
+ <path d="M-.7-8.2c-.1 0-.1-.1-.1-.1l.1-.9c0-.1.1-.1.2-.1s.1.1.1.1l-.1.9c-.1.1-.1.2-.2.1h0zm.1-1.1c-.1 0-.1 0-.1.1l-.1.9c0 .1 0 .1.1.1s.1 0 .1-.1l.1-.9c0 0-.1-.1-.1-.1h0z" fill="#fff"/>
894
+ <path d="M0-6.9C-.1-7-.2-7-.1-7.1L.2-9c0-.1.1-.1.2-.1s.1.1.1.2L.1-7.1c0 .1-.1.2-.1.2h0z" fill="#f3f3f3"/>
895
+ <path d="M0-6.9C-.1-7-.2-7-.2-7.1L.2-9c0-.1.1-.1.2-.1s.1 0 .1.1L.2-7.1c-.1.1-.1.2-.2.2h0zm.4-2.2c-.1 0-.1 0-.2.1l-.4 1.9c.1.1.1.1.2.1s.1 0 .2-.1L.5-9c0-.1 0-.1-.1-.1h0z" fill="#fff"/>
896
+ <path d="M1.1-7.8C1-7.8 1-7.9 1-8l.2-.8c0-.1.1-.1.2-.1s.1.1.1.2l-.2.8c-.1.1-.1.1-.2.1h0z" fill="#f3f3f3"/>
897
+ <path d="M1.1-7.8C1-7.8 1-7.9 1-8l.2-.8c0-.1.1-.1.2-.1s.1.1.1.2l-.2.8c0 .1-.1.1-.2.1h0zm.3-1.1c-.1 0-.1 0-.2.1L1-8c0 .1 0 .1.1.2.1 0 .1 0 .2-.1l.2-.8c0-.1 0-.2-.1-.2h0z" fill="#fff"/>
898
+ <path d="M1.6-6.5c-.1 0-.1-.1-.1-.2l.7-1.8c0-.1.1-.1.2-.1s.1.1.1.2l-.8 1.9s-.1.1-.1 0h0z" fill="#f3f3f3"/>
899
+ <path d="M1.6-6.5c-.1 0-.1-.1-.1-.2l.8-1.8c0-.1.1-.1.2-.1s.1.1.1.2l-.8 1.9c-.1 0-.2.1-.2 0h0zm.8-2c-.1 0-.1 0-.2.1l-.7 1.8c0 .1 0 .1.1.2.1 0 .1 0 .2-.1l.8-1.8c-.1-.1-.1-.2-.2-.2h0z" fill="#fff"/>
900
+ <path d="M2.8-7.1c-.1 0-.1-.1-.1-.2l.5-.7c0-.1.1-.1.2-.1v.2l-.4.8s-.1.1-.2 0h0z" fill="#f3f3f3"/>
901
+ <path d="M2.8-7.1c-.1 0-.1-.1-.1-.2l.5-.7c0-.1.1-.1.2-.1s.1.1.1.2l-.5.8s-.1.1-.2 0h0zm.5-1c-.1 0-.1 0-.2.1l-.3.8c0 .1 0 .1.1.2.1 0 .1 0 .2-.1l.4-.8-.2-.2h0z" fill="#fff"/>
902
+ <path d="M3-5.7c-.1 0-.1-.1 0-.2l1.1-1.6c0-.1.1-.1.2 0 .1 0 .1.1 0 .2L3.2-5.7s-.1.1-.2 0h0z" fill="#f3f3f3"/>
903
+ <path d="M3-5.7c-.1 0-.1-.1 0-.2l1.1-1.6c0-.1.1-.1.2 0 .1 0 .1.1 0 .2L3.2-5.7c0 .1-.1.1-.2 0h0zm1.2-1.8H4L3-5.9v.2h.2l1.1-1.6c0-.1 0-.2-.1-.2h0z" fill="#fff"/>
904
+ <path d="M4.4-6c-.1 0-.1-.1 0-.2l.5-.7c0-.1.1-.1.2 0 .1 0 .1.1 0 .2l-.5.7h-.2 0z" fill="#f3f3f3"/>
905
+ <path d="M4.4-6c-.1 0-.1-.1 0-.2l.5-.7c0-.1.1-.1.2 0 .1 0 .1.1 0 .2l-.5.7h-.2 0zm.7-.9h-.2l-.6.7v.2h.2l.5-.7c.1-.1.1-.2.1-.2h0z" fill="#fff"/>
906
+ <path d="M4.3-4.6c-.1-.1-.1-.1 0-.2l1.4-1.4c.1-.1.1 0 .2 0s0 .2 0 .2L4.5-4.6h-.2 0z" fill="#f3f3f3"/>
907
+ <path d="M4.3-4.6c-.1-.1-.1-.2 0-.2l1.4-1.4c.1-.1.2-.1.2 0v.2L4.5-4.6h-.2 0zm1.6-1.6h-.2L4.3-4.8v.2c0 .1.1 0 .2 0L5.9-6v-.2h0z" fill="#fff"/>
908
+ <path d="M5.7-4.7v-.2l.7-.6h.2v.2l-.7.6c-.1.1-.2.1-.2 0h0z" fill="#f3f3f3"/>
909
+ <path d="M5.7-4.7c-.1-.1 0-.2 0-.2l.7-.6c.1-.1.2 0 .2 0 .1.1 0 .2 0 .2l-.7.6c-.1.1-.2.1-.2 0h0zm.8-.7c0-.1-.1-.1-.2 0l-.6.5s-.1.1 0 .2c0 .1.1.1.2 0l.7-.6c0 0 0-.1-.1-.1h0z" fill="#fff"/>
910
+ <path d="M5.3-3.3v-.2L7-4.6h.2v.2L5.5-3.3h-.2 0z" fill="#f3f3f3"/>
911
+ <path d="M5.3-3.3v-.2L7-4.6h.2v.2L5.5-3.3h-.2 0zm1.9-1.3c0-.1-.1-.1-.2 0L5.4-3.5c-.1 0-.1.1 0 .2 0 .1.1.1.2 0l1.6-1.1c0 0 0-.1 0-.2h0z" fill="#fff"/>
912
+ <path d="M6.7-3.2v-.2l.8-.4c.1 0 .1 0 .2.1v.2l-.8.4c-.1 0-.1 0-.2-.1h0z" fill="#f3f3f3"/>
913
+ <path d="M6.7-3.1v-.2l.8-.4c.1 0 .2 0 .2.1v.2l-.8.3c-.1.1-.2 0-.2 0h0zm1-.6c0-.1-.1-.1-.2 0l-.7.4c-.1 0-.1.1 0 .2 0 .1.1.1.2 0l.8-.4c-.1-.1-.1-.1-.1-.2h0z" fill="#fff"/>
914
+ <path d="M6.1-1.9c0-.1 0-.2.1-.2L8-2.8c.1 0 .2 0 .2.1s0 .2-.1.2l-1.8.7c-.1 0-.2 0-.2-.1h0z" fill="#f3f3f3"/>
915
+ <path d="M6.1-1.9c0-.1 0-.2.1-.2L8-2.8c.1 0 .2 0 .2.1s0 .2-.1.2l-1.8.7c-.1 0-.2 0-.2-.1h0zm2-.9H8l-1.8.7c-.1.1-.1.1-.1.2s.1.1.2.1l1.8-.8c0 0 .1-.1 0-.2h0z" fill="#fff"/>
916
+ <path d="M7.4-1.4c0-.1 0-.2.1-.2l.8-.3c.1 0 .1 0 .2.1 0 .1 0 .1-.1.2l-.8.2c-.1.1-.2 0-.2 0h0z" fill="#f3f3f3"/>
917
+ <path d="M7.4-1.4c0-.1 0-.2.1-.2l.8-.3c.1 0 .2 0 .2.1s0 .2-.1.2l-.8.3c-.1 0-.2-.1-.2-.1h0zm1.1-.4c0-.1-.1-.1-.2-.1l-.8.3c-.1 0-.1.1-.1.2s.1.1.2.1l.8-.3c.1-.1.1-.1.1-.2h0z" fill="#fff"/>
918
+ <path d="M6.6-.3c0-.1 0-.1.1-.2l1.9-.4c.1 0 .1 0 .2.1 0 .1 0 .2-.1.2l-2 .4c-.1 0-.1 0-.1-.1h0z" fill="#f3f3f3"/>
919
+ <path d="M6.5-.3c0-.1 0-.2.1-.2l1.9-.4c.1 0 .2 0 .2.1s0 .2-.1.2l-1.9.4c-.1 0-.1 0-.2-.1h0zm2.2-.4c0-.1-.1-.1-.1-.1l-1.9.3c-.1 0-.1.1-.1.1 0 .1.1.1.1.1l1.9-.4c.1.1.1 0 .1 0h0z" fill="#fff"/>
920
+ <path d="M7.8.4c0-.1 0-.1.1-.2l.9-.1c.1 0 .1 0 .1.1s0 .1-.1.2l-.9.1c-.1 0-.1 0-.1-.1h0z" fill="#f3f3f3"/>
921
+ <path d="M7.8.4c0-.1 0-.2.1-.2l.9-.1c.1 0 .1 0 .2.1 0 .1 0 .2-.1.2l-1 .1c-.1 0-.1 0-.1-.1h0zM8.9.3c0-.1-.1-.1-.1-.1l-.9.1c-.1 0-.1.1-.1.1 0 .1.1.1.1.1l.9-.1.1-.1h0z" fill="#fff"/>
922
+ <path d="M6.7 1.3c0-.1.1-.1.1-.1h2c.1 0 .1.1.1.1s0 .2-.1.2h-2c0 0-.1-.1-.1-.2h0z" fill="#f3f3f3"/>
923
+ <path d="M6.7 1.3c0-.1.1-.2.1-.2h2c.1 0 .1.1.1.2s-.1.1-.1.1h-2c0 .1-.1 0-.1-.1h0zm2.2 0c0-.1-.1-.1-.1-.1h-2c-.1 0-.1.1-.1.1 0 .1.1.1.1.1h2c.1 0 .1 0 .1-.1h0z" fill="#fff"/>
924
+ <path d="M7.8 2.3c0-.1.1-.1.1-.1l.9.1c.1 0 .1.1.1.2s-.1.1-.1.1l-.9-.2c-.1 0-.1-.1-.1-.1h0z" fill="#f3f3f3"/>
925
+ <path d="M7.7 2.3c0-.1.1-.1.2-.1l.9.1c.1 0 .1.1.1.2s-.1.1-.1.1l-.9-.2c-.1 0-.2-.1-.2-.1h0zm1.2 0c0-.1 0-.1-.1-.1l-.9-.1c-.1 0-.1 0-.1.1s0 .1.1.1l.9.1c0 .1.1 0 .1-.1h0z" fill="#fff"/>
926
+ <path d="M6.5 2.9c0-.1.1-.1.2-.1l1.9.4c.1 0 .1.1.1.2s-.1.1-.2.1l-1.9-.4s-.1-.1-.1-.2h0z" fill="#f3f3f3"/>
927
+ <path d="M6.5 2.9c0-.1.1-.1.2-.1l1.9.4c.1 0 .1.1.1.2s-.1.1-.2.1l-1.9-.4s-.1-.1-.1-.2h0zm2.2.5c0-.1 0-.1-.1-.2l-1.9-.4c-.1 0-.1 0-.2.1 0 .1 0 .1.1.2l1.9.4c.1 0 .2-.1.2-.1h0z" fill="#fff"/>
928
+ <path d="M7.4 4.1c0-.1.1-.2.2-.1l.8.2c.1 0 .1.1.1.2s-.1.1-.2.1l-.8-.3c-.1 0-.1-.1-.1-.1h0z" fill="#f3f3f3"/>
929
+ <path d="M7.4 4.1c0-.1.1-.2.2-.1l.8.2c.1 0 .1.1.1.2s-.1.1-.2.1l-.8-.3c-.1 0-.1 0-.1-.1h0zm1.1.3c0-.1 0-.1-.1-.2L7.5 4s-.1 0-.1.1 0 .1.1.2l.8.2c.1 0 .2-.1.2-.1h0z" fill="#fff"/>
930
+ <path d="M6.1 4.5c0-.1.1-.1.2-.1l1.8.8c.1 0 .1.1.1.2s-.1.1-.2.1l-1.9-.8s-.1-.1 0-.2h0z" fill="#f3f3f3"/>
931
+ <path d="M6.1 4.5c0-.1.1-.1.2-.1l1.8.8c.1 0 .1.1.1.2s-.1.1-.2.1l-1.9-.8s-.1-.1 0-.2h0zm2 .9c0-.1 0-.1-.1-.2l-1.8-.8c-.1 0-.1 0-.2.1 0 .1 0 .1.1.2l1.8.8c.1 0 .2-.1.2-.1h0z" fill="#fff"/>
932
+ <path d="M6.7 5.8c0-.1.1-.1.2-.1l.8.4c.1 0 .1.1.1.2s-.1.1-.2.1L6.7 6c0-.1-.1-.2 0-.2h0z" fill="#f3f3f3"/>
933
+ <path d="M6.7 5.8c0-.1.1-.1.2-.1l.8.4c.1 0 .1.1.1.2s-.1.1-.2.1L6.7 6c0-.1-.1-.2 0-.2h0zm1 .5c0-.1 0-.1-.1-.2l-.8-.4c-.1 0-.1 0-.2.1 0 .1 0 .1.1.2l.8.4c.1 0 .2 0 .2-.1h0z" fill="#fff"/>
934
+ <path d="M5.3 6c0-.1.1-.1.2 0l1.6 1c.1 0 .1.1 0 .2 0 .1-.1.1-.2 0L5.3 6.1s-.1-.1 0-.1h0z" fill="#f3f3f3"/>
935
+ <path d="M5.3 5.9c0-.1.1-.1.2 0L7.1 7c.1 0 .1.1 0 .2 0 .1-.1.1-.2 0l-1.6-1c-.1-.1-.1-.2 0-.3h0zm1.8 1.3V7L5.5 5.9h-.2v.2L7 7.2c0 .1.1 0 .1 0h0z" fill="#fff"/>
936
+ <path d="M5.6 7.3c0-.1.1-.1.2 0l.7.5c.1 0 .1.1 0 .2 0 .1-.1.1-.2 0l-.6-.5c-.1 0-.1-.1-.1-.2h0z" fill="#f3f3f3"/>
937
+ <path d="M5.6 7.3c0-.1.1-.1.2 0l.7.5c.1 0 .1.1 0 .2 0 .1-.1.1-.2 0l-.6-.5c-.1 0-.1-.1-.1-.2h0zm.9.7v-.2l-.7-.5h-.2c-.1 0 0 .1 0 .2l.8.5c0 .1.1.1.1 0h0z" fill="#fff"/>
938
+ <path d="M4.2 7.2c.1-.1.1-.1.2 0l1.4 1.4c.1.1 0 .1 0 .2-.1.1-.1.1-.2 0L4.2 7.4v-.2h0z" fill="#f3f3f3"/>
939
+ <path d="M4.2 7.2c.1-.1.2-.1.2 0l1.4 1.4c.1.1.1.2 0 .2-.1.1-.1.1-.2 0L4.2 7.4v-.2h0zm1.6 1.6v-.2L4.4 7.2h-.2c-.1 0 0 .1 0 .2l1.4 1.4h.2 0z" fill="#fff"/>
940
+ <path d="M4.3 8.6h.2l.6.7v.2h-.2l-.6-.7v-.2h0z" fill="#f3f3f3"/>
941
+ <path d="M4.3 8.6c.1-.1.2 0 .2 0l.6.7c.1.1 0 .2 0 .2-.1.1-.2 0-.2 0l-.6-.7v-.2h0zm.8.9c.1 0 .1-.1 0-.2l-.6-.7s-.1-.1-.2 0c-.1 0-.1.1 0 .2l.6.7c0 0 .1 0 .2 0h0z" fill="#fff"/>
942
+ <path d="M3 8.3h.2l1.1 1.6v.2h-.2L2.9 8.5c0-.1 0-.2.1-.2h0z" fill="#f3f3f3"/>
943
+ <path d="M3 8.3h.2l1.1 1.6v.2h-.2L2.9 8.5c0-.1 0-.2.1-.2h0zm1.2 1.8c.1 0 .1-.1 0-.2l-1-1.6c0-.1-.1-.1-.2 0-.1 0-.1.1 0 .2l1 1.6h.2 0z" fill="#fff"/>
944
+ <path d="M2.8 9.7H3l.4.8c0 .1 0 .2-.1.2h-.2l-.4-.9s0-.1.1-.1h0z" fill="#f3f3f3"/>
945
+ <path d="M2.8 9.6H3l.4.8c0 .1 0 .2-.1.2h-.2l-.4-.8s0-.1.1-.2h0zm.5 1c.1 0 .1-.1 0-.2L3 9.7c0-.1-.1-.1-.2 0-.1 0-.1.1 0 .2l.4.8c0-.1.1 0 .1-.1h0z" fill="#fff"/>
946
+ <path d="M1.5 9c.1 0 .2 0 .2.1l.8 1.8c0 .1 0 .1-.1.2-.1 0-.2 0-.2-.1l-.7-1.8c-.1-.1 0-.1 0-.2h0z" fill="#f3f3f3"/>
947
+ <path d="M1.5 9c.1 0 .2 0 .2.1l.8 1.8c0 .1 0 .2-.1.2s-.2 0-.2-.1l-.7-1.8c-.1-.1 0-.1 0-.2h0zm.9 2.1c.1 0 .1-.1.1-.2l-.8-1.8c0-.1-.1-.1-.2-.1s-.1.1-.1.2l.8 1.8c.1.1.1.1.2.1h0z" fill="#fff"/>
948
+ <path d="M1.1 10.4c.1 0 .2 0 .2.1l.3.8c0 .1 0 .1-.1.2-.1 0-.2 0-.2-.1l-.3-.9s0-.1.1-.1h0z" fill="#f3f3f3"/>
949
+ <path d="M1.1 10.4c.1 0 .2 0 .2.1l.3.8c0 .1 0 .2-.1.2s-.2 0-.2-.1l-.3-.9s0-.1.1-.1h0zm.3 1c.1 0 .1-.1.1-.2l-.3-.8c0-.1-.1-.1-.2-.1v.2l.3.8c0 .1.1.2.1.1h0z" fill="#fff"/>
950
+ <path d="M0 9.5c.1 0 .1 0 .2.1l.4 1.9c0 .1 0 .1-.1.2-.1 0-.2 0-.2-.1l-.4-1.9c-.1-.1 0-.2.1-.2h0z" fill="#f3f3f3"/>
951
+ <path d="M0 9.5c.1 0 .2 0 .2.1l.4 1.9c0 .1 0 .2-.1.2s-.2 0-.2-.1l-.4-1.9c-.1-.1 0-.2.1-.2h0zm.4 2.2c.1 0 .1-.1.1-.2L.1 9.6 0 9.5c-.1 0-.1.1-.1.2l.4 1.9c0 .1 0 .1.1.1h0z" fill="#fff"/>
952
+ <path d="M-.7 10.7c.1 0 .1 0 .2.1l.1.9c0 .1 0 .1-.1.1s-.1 0-.2-.1l-.1-.9c-.1 0 0-.1.1-.1h0z" fill="#f3f3f3"/>
953
+ <path d="M-.7 10.7c.1 0 .2 0 .2.1l.1.9c0 .1 0 .1-.1.2-.1 0-.2 0-.2-.1l-.1-.9c-.1-.1 0-.2.1-.2h0zm.1 1.1c.1 0 .1-.1.1-.1l-.1-.9c0-.1-.1-.1-.1-.1-.1 0-.1.1-.1.1l.1.9c0 .1 0 .2.1.1h0z" fill="#fff"/>
954
+ <path d="M-1.7 9.7c.1 0 .1.1.1.1v2c0 .1-.1.1-.1.1l-.1-.1v-2c0-.1 0-.1.1-.1h0z" fill="#f3f3f3"/>
955
+ <path d="M-1.7 9.7c.1 0 .1.1.1.1v2c0 .1-.1.1-.1.1-.1 0-.2-.1-.2-.1v-2c0-.1.1-.1.2-.1h0zm0 2.2c.1 0 .1-.1.1-.1v-2c0-.1-.1-.1-.1-.1-.1 0-.1.1-.1.1v2s0 .1.1.1h0z" fill="#fff"/>
956
+ <path d="M-2.6 10.7c.1 0 .1.1.1.1l-.1.9c0 .1-.1.1-.2.1s-.1-.1-.1-.1l.1-.9c0 0 .1-.1.2-.1h0z" fill="#f3f3f3"/>
957
+ <path d="M-2.6 10.7c.1 0 .1.1.1.1l-.1.9c0 .1-.1.1-.2.1s-.1-.1-.1-.2l.1-.9c0 .1.1 0 .2 0h0zm-.1 1.2c.1 0 .1 0 .1-.1l.1-.9c0-.1 0-.1-.1-.1s-.1 0-.1.1l-.1.9c0 0 0 0 .1.1h0z" fill="#fff"/>
958
+ <path d="M-3.3 9.5c.1 0 .1.1.1.2l-.4 1.9c0 .1-.1.1-.2.1s-.1-.1-.1-.2l.4-1.9s.1-.1.2-.1h0z" fill="#f3f3f3"/>
959
+ <path d="M-3.3 9.5c.1 0 .1.1.1.2l-.4 1.9c0 .1-.1.1-.2.1s-.1-.1-.1-.2l.4-1.9c0-.1.1-.1.2-.1h0zm-.5 2.2c.1 0 .1 0 .1-.1l.4-1.9c0-.1 0-.1-.1-.2-.1 0-.1 0-.1.1l-.4 1.9c0 .1 0 .2.1.2h0z" fill="#fff"/>
960
+ <path d="M-4.5 10.4c.1 0 .1.1.1.2l-.2.8c0 .1-.1.1-.2.1s-.1-.1-.1-.2l.2-.8c.1-.1.2-.2.2-.1h0z" fill="#f3f3f3"/>
961
+ <path d="M-4.5 10.3c.1 0 .1.1.1.2l-.2.8c0 .1-.1.1-.2.1s-.1-.1-.1-.2l.2-.8c.1 0 .1-.1.2-.1h0zm-.3 1.1c.1 0 .1 0 .2-.1l.2-.8c0-.1 0-.1-.1-.2-.1 0-.1 0-.2.1l-.2.8c0 .2.1.2.1.2h0z" fill="#fff"/>
962
+ <path d="M-4.9 9c.1 0 .1.1.1.2l-.8 1.8c0 .1-.1.1-.2.1s-.1-.1-.1-.2l.8-1.8c0-.1.1-.1.2-.1h0z" fill="#f3f3f3"/>
963
+ <path d="M-4.9 9c.1 0 .1.1.1.2l-.8 1.8c0 .1-.1.1-.2.1s-.1-.1-.1-.2l.8-1.8c0-.1.1-.1.2-.1h0zm-.9 2.1c.1 0 .1 0 .2-.1l.8-1.8c0-.1 0-.1-.1-.2-.1 0-.2 0-.2.1l-.8 1.8c0 .1.1.2.1.2h0z" fill="#fff"/>
964
+ <path d="M-6.2 9.6c.1 0 .1.1.1.2l-.4.8c0 .1-.1.1-.2.1s-.1-.1-.1-.2l.4-.8c.1-.1.1-.1.2-.1h0z" fill="#f3f3f3"/>
965
+ <path d="M-6.2 9.6c.1 0 .1.1.1.2l-.4.8c0 .1-.1.1-.2.1s-.1-.1-.1-.2l.4-.8c0-.1.1-.1.2-.1h0zm-.5 1c.1 0 .1 0 .2-.1l.4-.8c0-.1 0-.1-.1-.2-.1 0-.1 0-.2.1l-.4.8c0 .1 0 .2.1.2h0z" fill="#fff"/>
966
+ <path d="M-6.4 8.2c.1 0 .1.1 0 .2L-7.5 10c0 .1-.1.1-.2 0-.1 0-.1-.1 0-.2l1.1-1.6h.2 0z" fill="#f3f3f3"/>
967
+ <path d="M-6.4 8.2c.1 0 .1.1 0 .2L-7.5 10c0 .1-.1.1-.2 0-.1 0-.1-.1 0-.2l1.1-1.6h.2 0zm-1.2 1.9h.2l1.1-1.6v-.2h-.2l-1.1 1.6c-.1.1-.1.1 0 .2h0z" fill="#fff"/>
968
+ <path d="M-7.8 8.6c.1 0 .1.1 0 .2l-.5.7c0 .1-.1.1-.2 0-.1 0-.1-.1 0-.2l.5-.7c.1 0 .2-.1.2 0h0z" fill="#f3f3f3"/>
969
+ <path d="M-7.7 8.6c.1 0 .1.1 0 .2l-.5.7c0 .1-.1.1-.2 0-.1 0-.1-.1 0-.2l.4-.7c.1-.1.2-.1.3 0h0zm-.7.9h.2l.5-.7v-.2h-.2l-.5.7c-.1.1-.1.1 0 .2h0z" fill="#fff"/>
970
+ <path d="M-7.7 7.2c.1.1.1.1 0 .2L-9 8.8c-.1.1-.1 0-.2 0s-.1-.1 0-.2l1.4-1.4c0-.1.1-.1.1 0h0z" fill="#f3f3f3"/>
971
+ <path d="M-7.7 7.2c.1.1.1.2 0 .2L-9 8.8c-.1.1-.1.1-.2 0s-.1-.1 0-.2l1.4-1.4c0-.1.1-.1.1 0h0zm-1.5 1.6h.2l1.4-1.4v-.2c0-.1-.1 0-.2 0l-1.4 1.4c-.1 0-.1.1 0 .2h0z" fill="#fff"/>
972
+ <path d="M-9.1 7.3v.2l-.6.5h-.2c-.1 0 0-.1 0-.2l.7-.6s.1 0 .1.1h0z" fill="#f3f3f3"/>
973
+ <path d="M-9.1 7.3c.1.1 0 .2 0 .2l-.6.5c-.1.1-.2 0-.2 0-.1-.1 0-.2 0-.2l.7-.6s.1 0 .1.1h0zm-.8.7c0 .1.1.1.2 0l.7-.6s.1-.1 0-.2c0-.1-.1-.1-.2 0l-.7.6c-.1.1-.1.1 0 .2h0z" fill="#fff"/>
974
+ <path d="M-8.7 5.9v.2l-1.6 1.1h-.2V7l1.6-1.1c.1-.1.2 0 .2 0h0z" fill="#f3f3f3"/>
975
+ <path d="M-8.7 5.9v.2l-1.6 1.1h-.2V7l1.6-1.1c.1-.1.2-.1.2 0h0zm-1.8 1.2c0 .1.1.1.2 0L-8.7 6c.1 0 .1-.1 0-.2 0-.1-.1-.1-.2 0L-10.5 7c-.1 0-.1.1 0 .1h0z" fill="#fff"/>
976
+ <path d="M-10.1 5.7v.2l-.8.4c-.1 0-.1 0-.2-.1V6l.8-.4c.1 0 .2.1.2.1h0z" fill="#f3f3f3"/>
977
+ <path d="M-10.1 5.7v.2l-.8.4c-.1 0-.2 0-.2-.1V6l.8-.4c.1 0 .2 0 .2.1h0zm-1 .6c0 .1.1.1.2 0l.8-.4c.1 0 .1-.1 0-.2 0-.1-.1-.1-.2 0l-.7.4c-.1 0-.1.1-.1.2h0z" fill="#fff"/>
978
+ <path d="M-9.5 4.5c0 .1 0 .2-.1.2l-1.8.8c-.1 0-.1 0-.2-.1 0-.1 0-.2.1-.2l1.8-.8c.1 0 .2 0 .2.1h0z" fill="#f3f3f3"/>
979
+ <path d="M-9.4 4.5c0 .1 0 .2-.1.2l-1.8.8c-.1 0-.2 0-.2-.1s0-.2.1-.2l1.8-.8c0-.1.1 0 .2.1h0zm-2.1.8c0 .1.1.1.2.1l1.8-.8c.1 0 .1-.1.1-.2s-.1-.1-.2-.1l-1.8.8c-.1.1-.1.1-.1.2h0z" fill="#fff"/>
980
+ <path d="M-10.8 4c0 .1 0 .2-.1.2l-.8.3c-.1 0-.1 0-.2-.1 0-.1 0-.2.1-.2l.8-.3c.1 0 .2 0 .2.1h0z" fill="#f3f3f3"/>
981
+ <path d="M-10.8 4c0 .1 0 .2-.1.2l-.8.3c-.1 0-.2 0-.2-.1s0-.2.1-.2l.8-.3c.1 0 .2 0 .2.1h0zm-1.1.3c0 .1.1.1.2.1l.8-.3c.1 0 .1-.1.1-.2s-.1-.1-.2-.1l-.8.3c-.1.1-.1.2-.1.2h0z" fill="#fff"/>
982
+ <path d="M-9.9 2.9c0 .1-.1.1-.1.1l-2 .4c-.1 0-.1 0-.2-.1 0-.1 0-.2.1-.2l1.9-.4c.2.1.3.1.3.2h0z" fill="#f3f3f3"/>
983
+ <path d="M-9.9 2.9c0 .1-.1.1-.1.2l-2 .3c-.1 0-.1 0-.2-.1 0-.1 0-.2.1-.2l1.9-.4c.2 0 .3.1.3.2h0zm-2.2.4c0 .1.1.1.1.1l2-.4c.1 0 .1-.1.1-.2s-.1-.1-.1-.1l-2 .5c-.1 0-.1 0-.1.1h0z" fill="#fff"/>
984
+ <path d="M-11.1 2.2c0 .1 0 .1-.1.2l-.9.1c-.1 0-.1 0-.1-.1s0-.1.1-.2l.9-.1c0-.1.1 0 .1.1h0z" fill="#f3f3f3"/>
985
+ <path d="M-11.1 2.2c0 .1 0 .2-.1.2l-.9.1c-.1 0-.1 0-.2-.1 0-.1 0-.2.1-.2l.9-.1c.1-.1.2 0 .2.1h0zm-1.2.1c0 .1.1.1.1.1l.9-.1c.1 0 .1-.1.1-.1 0-.1-.1-.1-.1-.1l-.9.1c0 0-.1 0-.1.1h0z" fill="#fff"/>
986
+ <path d="M-10.1 1.3c0 .1-.1.1-.1.1h-2c-.1 0-.1-.1-.1-.1l.1-.1h2c.1-.1.1 0 .1.1h0z" fill="#f3f3f3"/>
987
+ <path d="M-10.1 1.3c0 .1-.1.2-.1.2h-2c-.1 0-.1-.1-.1-.2s.1-.1.1-.1h2c.1-.1.1 0 .1.1h0zm-2.2-.1c0 .1.1.1.1.1h2c.1 0 .1-.1.1-.1 0-.1-.1-.1-.1-.1h-2c0 0-.1.1-.1.1h0z" fill="#fff"/>
988
+ <path d="M-11.1.3c0 .1-.1.1-.1.1l-.9-.1c-.1 0-.1-.1-.1-.2s.1-.1.1-.1l.9.1c0 .1.1.1.1.2h0z" fill="#e2e2e2"/>
989
+ <path d="M-11.1.3c0 .1-.1.1-.2.1l-.9-.1c-.1 0-.1-.1-.1-.2s.1-.1.2-.1l.9.1c0 .1.1.1.1.2h0zm-1.2-.1c0 .1 0 .1.1.1l.9.1c.1 0 .1 0 .1-.1s0-.1-.1-.1l-.9-.1c0 0-.1.1-.1.1h0z" fill="#fff"/>
990
+ <path d="M-9.9-.4c0 .1-.1.1-.2.1L-12-.7c-.1 0-.1-.1-.1-.2s.1-.1.2-.1l1.9.4c0 .1.1.1.1.2h0z" fill="#f3f3f3"/>
991
+ <path d="M-9.9-.4c0 .1-.1.1-.2.1L-12-.6c-.1 0-.1-.1-.1-.2s.1-.1.2-.1l1.9.4c.1 0 .1 0 .1.1h0zm-2.2-.4c0 .1 0 .1.1.1l1.9.4c.1 0 .1 0 .1-.1s0-.1-.1-.1L-12-.9s-.1 0-.1.1h0z" fill="#fff"/>
992
+ <path d="M-10.8-1.5c0 .1-.1.1-.2.1l-.8-.2c-.1 0-.1-.1-.1-.2s.1-.1.2-.1l.8.2c.1 0 .2.1.1.2h0z" fill="#f3f3f3"/>
993
+ <path d="M-10.8-1.5c0 .1-.1.1-.2.1l-.8-.2c-.1 0-.1-.1-.1-.2s.1-.1.2-.1l.8.2c.1 0 .2.1.1.2h0zm-1.1-.3c0 .1 0 .1.1.2l.8.2c.1 0 .1 0 .1-.1s0-.1-.1-.2l-.8-.2c0 0 0 0-.1.1h0z" fill="#fff"/>
994
+ <path d="M-9.4-2c0 .1-.1.1-.2.1l-1.8-.8c-.1 0-.1-.1-.1-.2s.1-.1.2-.1l1.8.8c.1.1.1.2.1.2h0z" fill="#f3f3f3"/>
995
+ <path d="M-9.4-1.9c0 .1-.1.1-.2.1l-1.8-.8c-.1 0-.1-.1-.1-.2s.1-.1.2-.1l1.8.8c.1 0 .1.1.1.2h0zm-2.1-.9c0 .1 0 .1.1.2l1.8.8c.1 0 .1 0 .2-.1 0-.1 0-.1-.1-.2l-1.8-.8c-.1 0-.2 0-.2.1h0z" fill="#fff"/>
996
+ <path d="M-10.1-3.2c0 .1-.1.1-.2.1l-.7-.4c-.1 0-.1-.1-.1-.2s.1-.1.2-.1l.8.4c.1 0 .1.1 0 .2h0z" fill="#f3f3f3"/>
997
+ <path d="M-10-3.2c0 .1-.1.1-.2.1l-.8-.4c-.1 0-.1-.1-.1-.2s.1-.1.2-.1l.8.4c.1 0 .1.1.1.2h0zm-1.1-.5c0 .1 0 .1.1.2l.8.4c.1 0 .1 0 .2-.1 0-.1 0-.1-.1-.2l-.8-.4c0 0-.1 0-.2.1h0z" fill="#fff"/>
998
+ <path d="M-8.7-3.4c0 .1-.1.1-.2 0l-1.6-1.1c-.1 0-.1-.1 0-.2 0-.1.1-.1.2 0l1.6 1.1c.1.1.1.1 0 .2h0z" fill="#f3f3f3"/>
999
+ <path d="M-8.7-3.4c0 .1-.1.1-.2 0l-1.6-1.1c-.1 0-.1-.1 0-.2 0-.1.1-.1.2 0l1.6 1.1c.1.1.1.1 0 .2h0zm-1.8-1.2v.2l1.6 1.1h.2v-.2l-1.6-1.1c-.1-.1-.2-.1-.2 0h0z" fill="#fff"/>
1000
+ <path d="M-9-4.8c0 .1-.1.1-.2 0l-.7-.5c-.1 0-.1-.1 0-.2 0-.1.1-.1.2 0l.7.6v.1h0z" fill="#f3f3f3"/>
1001
+ <path d="M-9-4.7c0 .1-.1.1-.2 0l-.7-.5c-.1 0-.1-.1 0-.2s.1-.1.2 0l.7.4v.3h0zm-.9-.8v.2l.7.5h.2c.1 0 0-.1 0-.2l-.7-.5h-.2 0z" fill="#fff"/>
1002
+ <path d="M-7.6-4.7c-.1.1-.1.1-.2 0L-9.2-6c-.1-.1 0-.1 0-.2.1-.1.1-.1.2 0l1.4 1.4v.1h0z" fill="#f3f3f3"/>
1003
+ <path d="M-7.6-4.7c-.1.1-.1.1-.2 0L-9.2-6c-.1-.1-.1-.2 0-.2.1-.1.1-.1.2 0l1.4 1.4v.1h0zm-1.6-1.5v.2l1.4 1.4h.2c.1 0 0-.1 0-.2L-9-6.2c-.1-.1-.1-.1-.2 0h0z" fill="#fff"/>
1004
+ <path d="M-7.7-6.1h-.2l-.6-.7V-7h.2l.6.7c.1.1 0 .2 0 .2h0z" fill="#f3f3f3"/>
1005
+ <path d="M-7.7-6.1c-.1.1-.1 0-.2 0l-.6-.7c-.1-.1 0-.2 0-.2h.2l.6.7c.1.1.1.2 0 .2h0zm-.7-.8c-.1 0-.1.1 0 .2l.6.7s.1.1.2 0c.1 0 .1-.1 0-.2l-.6-.7c-.1-.1-.2-.1-.2 0h0z" fill="#fff"/>
1006
+ <path d="M-6.4-5.7h-.2l-1.1-1.6v-.2h.2l1.1 1.6c.1.1.1.2 0 .2h0z" fill="#f3f3f3"/>
1007
+ <path d="M-6.4-5.7h-.2l-1.1-1.6v-.2h.2l1.1 1.6c.1.1.1.2 0 .2h0zm-1.2-1.8c-.1 0-.1.1 0 .2l1.1 1.6c0 .1.1.1.2 0 .1 0 .1-.1 0-.2l-1.1-1.6c-.1-.1-.1-.1-.2 0h0z" fill="#fff"/>
1008
+ <path d="M-6.2-7.1h-.2l-.4-.8c0-.1 0-.2.1-.2h.2l.4.8c0 .1 0 .2-.1.2h0z" fill="#f3f3f3"/>
1009
+ <path d="M-6.2-7.1h-.2l-.4-.8c0-.1 0-.2.1-.2h.2l.4.8c0 .1 0 .2-.1.2h0zm-.5-1c-.1 0-.1.1 0 .2l.4.8c0 .1.1.1.2 0 .1 0 .1-.1 0-.2l-.5-.7c0-.1-.1-.1-.1-.1h0z" fill="#fff"/>
1010
+ <path d="M-4.9-6.5c-.1 0-.2 0-.2-.1l-.8-1.8c0-.1 0-.1.1-.2.1 0 .2 0 .2.1l.8 1.8c0 .1 0 .2-.1.2h0z" fill="#f3f3f3"/>
1011
+ <path d="M-4.9-6.5c-.1 0-.2 0-.2-.1l-.8-1.8c0-.1 0-.2.1-.2s.2 0 .2.1l.8 1.8c0 .1 0 .2-.1.2h0zm-.9-2c-.1 0-.1.1-.1.2l.8 1.8h.2c.1 0 .1-.1.1-.2l-.8-1.8c0 0-.1 0-.2 0h0z" fill="#fff"/>
1012
+ <path d="M-4.5-7.8c-.1 0-.2 0-.2-.1l-.3-.8c0-.1 0-.2.1-.2s.1 0 .2.1l.3.8c.1.1 0 .2-.1.2h0z" fill="#f3f3f3"/>
1013
+ <path d="M-4.4-7.8c-.1 0-.2 0-.2-.1l-.3-.8c0-.1 0-.2.1-.2s.2 0 .2.1l.3.8c0 .1-.1.2-.1.2h0zm-.4-1.1c-.1 0-.1.1-.1.2l.3.8c0 .1.1.1.2.1s0-.1 0-.2l-.3-.8c0-.1 0-.1-.1-.1h0z" fill="#fff"/>
1014
+ <path d="M-3.3-6.9c-.1 0-.2 0-.2-.1l-.4-2c0-.1 0-.1.1-.2.1 0 .1 0 .2.1l.4 1.9c0 .2-.1.2-.1.3h0z" fill="#f3f3f3"/>
1015
+ <path d="M-3.3-6.9c-.1 0-.2 0-.2-.1l-.4-2c0-.1 0-.2.1-.2s.2 0 .2.1l.4 1.9c0 .2-.1.2-.1.3h0zm-.5-2.2c-.1 0-.1.1-.1.1l.4 1.9c0 .1.1.2.2.1 0 0 .1 0 .1-.1L-3.6-9c-.1-.1-.1-.1-.2-.1h0z" fill="#fff"/>
1016
+ <path d="M-2.6-8.2c-.1 0-.1 0-.2-.1l-.1-.9c0-.1 0-.1.1-.1s.1 0 .2.1l.1.9c0 .1-.1.1-.1.1h0z" fill="#f3f3f3"/>
1017
+ <path d="M-2.6-8.2c-.1 0-.2 0-.2-.1l-.1-.9c0-.1 0-.1.1-.2.1 0 .2 0 .2.1l.1.9c0 .2 0 .2-.1.2h0zm-.2-1.1c-.1 0-.1.1-.1.1l.1.9c0 .1.1.1.1.1.1 0 .1-.1.1-.1l-.1-.9c.1 0 0-.1-.1-.1h0z" fill="#fff"/>
1018
+ <linearGradient id="SafariC" gradientUnits="userSpaceOnUse" x1="-305.413" y1="513.124" x2="-305.435" y2="513.084" gradientTransform="matrix(229.4 0 0 -229.4 70061.3984 117709.6016)">
1019
+ <stop offset="0" stop-opacity="0"/>
1020
+ <stop offset="1"/>
1021
+ </linearGradient>
1022
+ <circle cx="-1.6" cy="1.3" r="11.1" fill="url(#SafariC)" fill-opacity=".2"/>
1023
+ </g>
1024
+ <path d="M15.8 3l-9 5.7h0 0 0l-5.6 9.2 8.2-6.6h0 0L15.8 3z" fill-opacity=".05"/>
1025
+ <path d="M15.6 2.4L6.7 8.7l2.6 2.6 6.3-8.9" fill="#cd151e"/>
1026
+ <path d="M6.7,8.7L8.1,10l7.5-7.6L6.7,8.7z" fill="#fa5153"/>
1027
+ <path d="M6.7 8.7l2.6 2.6-8.9 6.3 6.3-8.9z" fill="#acacac"/>
1028
+ <path d="M.5 17.6L8.1 10 6.7 8.7.5 17.6z" fill="#eee"/>
1029
+ </g>
1030
+ </symbol>
1031
+ <symbol id="icon-sales-scope" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
1032
+ <path stroke="none" fill-rule="evenodd" d="M13.3694433,16.1 C13.6133508,15.869702 13.904315,15.6924874 14.2232434,15.5922219 L14.344105,15 L4.61961524,15 C4.41961524,15 4.21961524,14.9 4.11961524,14.7 L1.01961524,6.7 C0.919615242,6.3 1.21961524,6 1.51961524,6 L16.1808397,6 L17.1196152,1.4 C17.1196152,1.2 17.4196152,1 17.6196152,1 L20.0196152,1 C20.3196152,1 20.5196152,1.2 20.5196152,1.5 C20.5196152,1.8 20.3196152,2.1 20.0196152,2.1 L18.0196152,2.1 L15.2569156,15.5451383 C16.2530864,15.7536162 17.0196152,16.6618288 17.0196152,17.8 C17.0196152,19 16.0196152,20 14.8196152,20 C13.6196152,20 12.6196152,19 12.6196152,17.8 C12.6196152,17.56 12.6596152,17.324 12.7332152,17.1 L6.91792099,17.1 C6.98391867,17.319477 7.01961524,17.554384 7.01961524,17.8 C7.01961524,19 6.01961524,20 4.81961524,20 C3.61961524,20 2.61961524,19 2.61961524,17.8 C2.61961524,16.6 3.61961524,15.5 4.81961524,15.5 C5.38867799,15.5 5.91276401,15.7248836 6.30655805,16.1 L13.3694433,16.1 Z M14.5481867,14 L15.9767581,7 L2.31961524,7 L5.01961524,14 L14.5481867,14 Z M4.81961524,19 C5.51961524,19 6.01961524,18.4 6.01961524,17.8 C6.01961524,17.1 5.41961524,16.6 4.81961524,16.6 C4.21961524,16.6 3.61961524,17.2 3.61961524,17.8 C3.51961524,18.5 4.11961524,19 4.81961524,19 Z M14.8196152,19 C15.5196152,19 16.0196152,18.4 16.0196152,17.8 C16.0196152,17.1 15.4196152,16.6 14.8196152,16.6 C14.1196152,16.6 13.6196152,17.2 13.6196152,17.8 C13.5196152,18.5 14.1196152,19 14.8196152,19 Z"/>
1033
+ </symbol>
1034
+ <symbol id="icon-save" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
1035
+ <path stroke="none" fill-rule="evenodd" d="M4,23 L4,20.5 C4,20.3 4.2,20 4.5,20 L19.5,20 C19.8,20 20,20.2 20,20.5 L20,23 L23,23 L23,1 L20,1 L20,5.5 C20,5.8 19.8,6 19.5,6 L4.5,6 C4.2,6 4,5.8 4,5.5 L4,1 L3.7,1 L1,3.7 L1,23 L4,23 Z M23.5,0 C23.8,0 24,0.3 24,0.5 L24,23.5 C24,23.8 23.8,24 23.5,24 L0.5,24 C0.2,24 0,23.8 0,23.5 L0,3.5 C0,3.4 0.1,3.2 0.1,3.1 L3.1,0.1 C3.2,0.1 3.4,0 3.5,0 L23.5,0 Z M19,1 L5,1 L5,5 L19,5 L19,1 Z M19,23 L19,21 L5,21 L5,23 L19,23 Z M16.5,11.5 C16.5,14 14.5,16 12,16 C9.5,16 7.5,14 7.5,11.5 C7.5,9 9.5,7 12,7 C14.5,7 16.5,9 16.5,11.5 Z M15.5,11.5 C15.5,9.6 13.9,8 12,8 C10.1,8 8.5,9.6 8.5,11.5 C8.5,13.4 10.1,15 12,15 C13.9,15 15.5,13.5 15.5,11.5 Z M14.5,19 C14.2,19 14,18.8 14,18.5 C14,18.2 14.2,18 14.5,18 L19.5,18 C19.8,18 20,18.2 20,18.5 C20,18.8 19.8,19 19.5,19 L14.5,19 Z M10,10.5 C10,10.2 10.2,10 10.5,10 C10.8,10 11,10.2 11,10.5 L11,12.5 C11,12.8 10.8,13 10.5,13 C10.2,13 10,12.8 10,12.5 L10,10.5 Z M13,11.5 C13,12.1 12.6,12.5 12,12.5 C11.4,12.5 11,12.1 11,11.5 C11,10.9 11.4,10.5 12,10.5 C12.6,10.5 13,11 13,11.5 Z"/>
1036
+ </symbol>
1037
+ <symbol id="icon-search" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
1038
+ <path stroke="none" fill-rule="evenodd" d="M1,7.167 C1,3.767 3.766,1 7.166,1 C10.566,1 13.333,3.767 13.333,7.167 C13.333,10.567 10.566,13.334 7.166,13.334 C3.766,13.334 1,10.567 1,7.167 M20.021,19.314 L12.568,11.862 C13.664,10.603 14.333,8.963 14.333,7.167 C14.333,3.215 11.118,0 7.166,0 C3.215,0 0,3.215 0,7.167 C0,11.119 3.215,14.334 7.166,14.334 C8.963,14.334 10.603,13.665 11.861,12.569 L19.313,20.021 C19.411,20.119 19.539,20.167 19.667,20.167 C19.795,20.167 19.923,20.119 20.021,20.021 C20.216,19.826 20.216,19.509 20.021,19.314"/>
1039
+ </symbol>
1040
+ <symbol id="icon-security-groups" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
1041
+ <path stroke="none" fill-rule="evenodd" d="M20.1217075,16.002 C21.42345,16.002 22.477487,17.0556729 22.477487,18.3577794 C22.477487,19.0347942 22.1918242,19.6452151 21.7344113,20.0749752 C23.020563,20.6779357 23.9109838,21.9857198 23.9109838,23.502 C23.9109838,23.7474599 23.7341086,23.9516084 23.5008594,23.9939443 L23.4109838,24.002 L16.8322457,24.002 C16.5561033,24.002 16.3322457,23.7781424 16.3322457,23.502 C16.3322457,21.9854312 17.222421,20.6776918 18.5092034,20.072326 C18.0515909,19.6452151 17.7659281,19.0347942 17.7659281,18.3577794 C17.7659281,17.0556729 18.8199651,16.002 20.1217075,16.002 Z M12.2005782,16.002 C13.5023206,16.002 14.5563576,17.0556729 14.5563576,18.3577794 C14.5563576,19.0347942 14.2706948,19.6452151 13.8132819,20.0749752 C15.0997639,20.6778165 15.9898544,21.9855034 15.9898544,23.502 C15.9898544,23.7474599 15.8129792,23.9516084 15.57973,23.9939443 L15.4898544,24.002 L8.91204422,24.002 C8.63590185,24.002 8.41204422,23.7781424 8.41204422,23.502 C8.41204422,21.9856232 9.30204793,20.6778824 10.5883934,20.0724398 C10.1304615,19.6452151 9.84479873,19.0347942 9.84479873,18.3577794 C9.84479873,17.0556729 10.8988357,16.002 12.2005782,16.002 Z M4.20336182,16.002 C5.5051043,16.002 6.55914125,17.0556729 6.55914125,18.3577794 C6.55914125,19.0347942 6.27347848,19.6452151 5.81606556,20.0749752 C7.10221734,20.6779357 7.99263807,21.9857198 7.99263807,23.502 C7.99263807,23.7474599 7.81576291,23.9516084 7.5825137,23.9939443 L7.49263807,24.002 L0.9139,24.002 C0.637757625,24.002 0.4139,23.7781424 0.4139,23.502 C0.4139,21.9854312 1.3040753,20.6776918 2.59085772,20.072326 C2.13324517,19.6452151 1.8475824,19.0347942 1.8475824,18.3577794 C1.8475824,17.0556729 2.90161935,16.002 4.20336182,16.002 Z M20.1216147,20.7135589 C18.8109912,20.7135589 17.7125962,21.6155012 17.4130024,22.832691 L17.377155,23.0005704 L22.866,23.001 C22.6500548,21.8105286 21.6788224,20.8839276 20.466366,20.734631 L20.2915725,20.7186461 L20.1216147,20.7135589 Z M12.2004854,20.7135589 C10.8905474,20.7135589 9.79234289,21.6155891 9.49279083,22.8327305 L9.45694827,23.0006024 L14.944,23.001 C14.7289924,21.8102776 13.758145,20.883885 12.5453502,20.7346255 L12.3705034,20.7186447 L12.2004854,20.7135589 Z M4.20326903,20.7135589 C2.89264554,20.7135589 1.79425045,21.6155012 1.49465669,22.832691 L1.45880933,23.0005704 L6.947,23.001 C6.73167934,21.8105286 5.76047539,20.8839276 4.54802023,20.734631 L4.37322675,20.7186461 L4.20326903,20.7135589 Z M20.1217075,17.002 C19.3721725,17.002 18.7659281,17.608035 18.7659281,18.3577794 C18.7659281,19.1063865 19.3728908,19.7135589 20.1217075,19.7135589 C20.8705242,19.7135589 21.477487,19.1063865 21.477487,18.3577794 C21.477487,17.608035 20.8712426,17.002 20.1217075,17.002 Z M12.2005782,17.002 C11.4510431,17.002 10.8447987,17.608035 10.8447987,18.3577794 C10.8447987,19.1063865 11.4517615,19.7135589 12.2005782,19.7135589 C12.9493948,19.7135589 13.5563576,19.1063865 13.5563576,18.3577794 C13.5563576,17.608035 12.9501132,17.002 12.2005782,17.002 Z M4.20336182,17.002 C3.45382678,17.002 2.8475824,17.608035 2.8475824,18.3577794 C2.8475824,19.1063865 3.45454513,19.7135589 4.20336182,19.7135589 C4.95217852,19.7135589 5.55914125,19.1063865 5.55914125,18.3577794 C5.55914125,17.608035 4.95289687,17.002 4.20336182,17.002 Z M12.003,0.378052174 C12.1601209,0.378052174 12.3081035,0.451908011 12.4025601,0.577466474 C12.7861817,1.08740392 13.3586574,1.37770435 13.995,1.37770435 C14.5320572,1.37770435 15.0620497,1.16092609 15.7051212,0.691305505 C16.0118987,0.467272785 16.4343268,0.654728054 16.4931084,1.01019355 L16.5,1.09509565 L16.5,7.27770435 L16.4834753,7.40518618 C16.3373978,7.95918554 15.8899868,8.73978695 14.9807405,9.50249423 C14.3238073,10.0535526 13.5020596,10.5100264 12.5007321,10.8442249 L12.4999,12.0000522 L19.5,12.0005 C19.7454599,12.0005 19.9496084,12.1773752 19.9919443,12.4106244 L20,12.5005 L20,14.4585 C20,14.7346424 19.7761424,14.9585 19.5,14.9585 C19.2545401,14.9585 19.0503916,14.7816248 19.0080557,14.5483756 L19,14.4585 L19,13 L12.4999,12.9990522 L12.5,14.479 C12.5,14.7551424 12.2761424,14.979 12,14.979 C11.7545401,14.979 11.5503916,14.8021248 11.5080557,14.5688756 L11.5,14.479 L11.4999,12.9990522 L5,13 L5,14.4585 C5,14.7039599 4.82312484,14.9081084 4.58987563,14.9504443 L4.5,14.9585 C4.25454011,14.9585 4.05039163,14.7816248 4.00805567,14.5483756 L4,14.4585 L4,12.5005 C4,12.2550401 4.17687516,12.0508916 4.41012437,12.0085557 L4.5,12.0005 L11.4999,12.0000522 L11.5002853,10.8445644 C10.498497,10.5103355 9.6764152,10.0537393 9.01925948,9.50249423 C8.1749594,8.79426604 7.72887433,8.07060873 7.55249774,7.52727962 L7.51652468,7.40518618 L7.5,7.27770435 L7.5,1.09509565 C7.5,0.686002167 7.96450298,0.450039498 8.29487882,0.691305505 C8.93743328,1.1605485 9.4685498,1.37770435 10.005,1.37770435 C10.6413426,1.37770435 11.2138183,1.08740392 11.5974399,0.577466474 C11.6918965,0.451908011 11.8398791,0.378052174 12.003,0.378052174 Z M11.9999,1.612 L11.8238345,1.76045291 C11.3100178,2.15774212 10.6788949,2.37770435 10.005,2.37770435 C9.58028593,2.37770435 9.17238026,2.28985778 8.75962844,2.11529539 L8.55274843,2.02079311 L8.4999,1.993 L8.4999,7.202 L8.51846631,7.25242645 C8.53546882,7.29539839 8.55802901,7.34692706 8.58680336,7.40597073 L8.63470756,7.50004227 L8.69242534,7.604605 C8.91129754,7.98647293 9.22803462,8.37238506 9.66192796,8.73634985 C10.2192628,9.20386164 10.9262617,9.59736509 11.8033552,9.89149775 L12.1402783,9.99708996 L11.9999,9.953 L12.1966448,9.89149775 C12.8544649,9.67089826 13.4166068,9.39440269 13.8916897,9.07271084 L14.1220161,8.9081481 L14.338072,8.73634985 C14.7719654,8.37238506 15.0887025,7.98647293 15.3075747,7.604605 C15.3703634,7.4950571 15.4176931,7.40007405 15.4517796,7.32317169 L15.4815337,7.25242645 L15.4999,7.202 L15.4999,1.992 L15.4471978,2.02095575 C15.115332,2.18369546 14.7889533,2.29099393 14.4566821,2.34236398 L14.206196,2.37039733 L13.995,2.37770435 C13.3211051,2.37770435 12.6899822,2.15774212 12.1761655,1.76045291 L12.0093401,1.62151399 L11.9999,1.612 Z M11.9999,2.70521739 C12.2453599,2.70521739 12.4495084,2.88209255 12.4918443,3.11534176 L12.4999,3.20521739 L12.499,4.75905217 L14.0194,4.75982609 C14.2955424,4.75982609 14.5194,4.98368371 14.5194,5.25982609 C14.5194,5.50528598 14.3425248,5.70943446 14.1092756,5.75177042 L14.0194,5.75982609 L12.499,5.75905217 L12.4999,7.34678261 C12.4999,7.62292498 12.2760424,7.84678261 11.9999,7.84678261 C11.7544401,7.84678261 11.5502916,7.66990745 11.5079557,7.43665824 L11.4999,7.34678261 L11.499,5.75905217 L10.0194,5.75982609 C9.74325763,5.75982609 9.5194,5.53596846 9.5194,5.25982609 C9.5194,5.0143662 9.69627516,4.81021772 9.92952437,4.76788176 L10.0194,4.75982609 L11.499,4.75905217 L11.4999,3.20521739 C11.4999,2.92907502 11.7237576,2.70521739 11.9999,2.70521739 Z"/>
1042
+ </symbol>
1043
+ <symbol id="icon-segments" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
1044
+ <path stroke="none" fill-rule="evenodd" d="M12,7 C13.7,7 15,5.7 15,4 C15,2.3 13.7,1 12,1 C10.3,1 9,2.3 9,4 C9,5.7 10.3,7 12,7 Z M12,2 C13.1,2 14,2.9 14,4 C14,5.1 13.1,6 12,6 C10.9,6 10,5.1 10,4 C10,2.9 10.9,2 12,2 Z M19,7 C20.1,7 21,6.1 21,5 C21,3.9 20.1,3 19,3 C17.9,3 17,3.9 17,5 C17,6.1 17.9,7 19,7 Z M19,4 C19.6,4 20,4.4 20,5 C20,5.6 19.6,6 19,6 C18.4,6 18,5.6 18,5 C18,4.4 18.4,4 19,4 Z M5,7 C6.1,7 7,6.1 7,5 C7,3.9 6.1,3 5,3 C3.9,3 3,3.9 3,5 C3,6.1 3.9,7 5,7 Z M5,4 C5.6,4 6,4.4 6,5 C6,5.6 5.6,6 5,6 C4.4,6 4,5.6 4,5 C4,4.4 4.4,4 5,4 Z M17,18.2 C16.7,18.2 16.5,18.4 16.5,18.7 C16.5,19 16.7,19.2 17,19.2 C21.6,19.6 22.9,20.3 23.1,20.5 C22.7,21 18.8,22 12,22 C5.2,22 1.3,21 1,20.5 C1.1,20.3 2.5,19.5 7,19.2 C7.3,19.2 7.5,18.9 7.5,18.7 C7.5,18.4 7.2,18.2 7,18.2 C2.3,18.6 0,19.4 0,20.5 C0,22.9 10.8,23 12,23 C13.2,23 24,22.9 24,20.5 C24,19.4 21.7,18.6 17,18.2 Z M9.5,18 L14.5,18 C14.8,18 15,17.8 15,17.5 L15,11 C15,9.3 13.7,8 12,8 C10.3,8 9,9.3 9,11 L9,17.5 C9,17.8 9.2,18 9.5,18 Z M10,11 C10,9.9 10.9,9 12,9 C13.1,9 14,9.9 14,11 L14,17 L10,17 L10,11 Z M17.5,16 L20.5,16 C20.8,16 21,15.8 21,15.5 L21,10 C21,8.9 20.1,8 19,8 C17.9,8 17,8.9 17,10 L17,15.5 C17,15.8 17.2,16 17.5,16 Z M18,10 C18,9.4 18.4,9 19,9 C19.6,9 20,9.4 20,10 L20,15 L18,15 L18,10 Z M3.5,16 L6.5,16 C6.8,16 7,15.8 7,15.5 L7,10 C7,8.9 6.1,8 5,8 C3.9,8 3,8.9 3,10 L3,15.5 C3,15.8 3.2,16 3.5,16 Z M4,10 C4,9.4 4.4,9 5,9 C5.6,9 6,9.4 6,10 L6,15 L4,15 L4,10 Z"/>
1045
+ </symbol>
1046
+ <symbol id="icon-shipment-status" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
1047
+ <path stroke="none" fill-rule="evenodd" d="M20.1249565,14.4368396 C20.1249565,11.296421 17.5783866,8.74959976 14.4377166,8.74959976 C11.2970467,8.74959976 8.7504768,11.296421 8.7504768,14.4368396 C8.7504768,17.5783845 11.296423,20.1240795 14.4377166,20.1240795 C17.5790103,20.1240795 20.1249565,17.5783845 20.1249565,14.4368396 Z M20.9999165,14.4368396 C20.9999165,18.0616308 18.062218,20.9990394 14.4377166,20.9990394 C10.8132153,20.9990394 7.87551683,18.0616308 7.87551683,14.4368396 C7.87551683,10.8132132 10.8138003,7.87463979 14.4377166,7.87463979 C18.0616329,7.87463979 20.9999165,10.8132132 20.9999165,14.4368396 Z M0.875837016,13.1243996 L5.68811689,13.1243996 C5.92973041,13.1243996 6.12559687,13.3202661 6.12559687,13.5618796 C6.12559687,13.8034932 5.92973041,13.9993596 5.68811689,13.9993596 L0.438357028,13.9993596 C0.196743502,13.9993596 0.000877039998,13.8034932 0.000877039998,13.5618796 L0.000877039998,3.93731989 C0.000877039998,3.69570637 0.196743502,3.4998399 0.438357028,3.4998399 L12.6877967,3.4998399 C12.9294102,3.4998399 13.1252767,3.69570637 13.1252767,3.93731989 L13.1252767,5.68723985 C13.1252767,5.92885337 12.9294102,6.12471983 12.6877967,6.12471983 C12.4461832,6.12471983 12.2503167,5.92885337 12.2503167,5.68723985 L12.2503167,4.37479988 L0.875837016,4.37479988 L0.875837016,13.1243996 Z M9.00674665,0.874959976 L4.11940708,0.874959976 L1.49452715,3.4998399 L11.6316266,3.4998399 L9.00674665,0.874959976 Z M12.6877967,4.37479988 L0.438357028,4.37479988 C0.0486039847,4.37479988 -0.146585058,3.90357185 0.129011962,3.62797483 L3.62885187,0.128134922 C3.71089528,0.0460915093 3.82217003,3.73034936e-14 3.93819693,3.73034936e-14 L9.18795679,3.73034936e-14 C9.3039837,3.73034936e-14 9.41525844,0.0460915093 9.49730186,0.128134922 L12.9971418,3.62797483 C13.2727388,3.90357185 13.0775497,4.37479988 12.6877967,4.37479988 Z M14.8751966,15.3117996 C14.8751966,15.5534131 14.6793302,15.7492796 14.4377166,15.7492796 C14.1961031,15.7492796 14.0002367,15.5534131 14.0002367,15.3117996 L14.0002367,10.9369997 C14.0002367,10.6953862 14.1961031,10.4995197 14.4377166,10.4995197 C14.6793302,10.4995197 14.8751966,10.6953862 14.8751966,10.9369997 L14.8751966,15.3117996 Z M14.4377166,16.6242395 C14.1962277,16.6242395 14.0002367,16.8202306 14.0002367,17.0617195 C14.0002367,17.3032085 14.1962277,17.4991995 14.4377166,17.4991995 C14.6792056,17.4991995 14.8751966,17.3032085 14.8751966,17.0617195 C14.8751966,16.8202306 14.6792056,16.6242395 14.4377166,16.6242395 M6.12559687,0.437479988 C6.12559687,0.195866462 6.32146334,3.73034936e-14 6.56307686,3.73034936e-14 C6.80469039,3.73034936e-14 7.00055685,0.195866462 7.00055685,0.437479988 L7.00055685,3.93731989 C7.00055685,4.17893342 6.80469039,4.37479988 6.56307686,4.37479988 C6.32146334,4.37479988 6.12559687,4.17893342 6.12559687,3.93731989 L6.12559687,0.437479988 Z"/>
1048
+ </symbol>
1049
+ <symbol id="icon-stop" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
1050
+ <path stroke="none" fill-rule="evenodd" d="M19.99,10.495 C19.99,5.25149729 15.7382357,1 10.495,1 C5.25058867,1 1,5.2508556 1,10.495 C1,15.7391444 5.25058867,19.99 10.495,19.99 C15.7382357,19.99 19.99,15.7385027 19.99,10.495 Z M20.99,10.495 C20.99,16.2908015 16.2905064,20.99 10.495,20.99 C4.69828987,20.99 -1.08357767e-13,16.2914151 -1.08357767e-13,10.495 C-1.08357767e-13,4.69858491 4.69828987,-4.4408921e-14 10.495,-4.4408921e-14 C16.2905064,-4.4408921e-14 20.99,4.69919848 20.99,10.495 Z M13.6253774,10.5989473 L16.194556,13.1673993 C16.3898653,13.3626534 16.3898877,13.6792744 16.194606,13.8745561 L13.8561351,16.213027 C13.6608534,16.4083087 13.3442324,16.4082863 13.1489783,16.212977 L10.5805263,13.6437984 L8.01207431,16.212977 C7.81682026,16.4082863 7.5001992,16.4083087 7.30491753,16.213027 L4.96644661,13.8745561 C4.77116494,13.6792744 4.77118733,13.3626534 4.96649661,13.1673993 L7.5356752,10.5989473 L4.96649661,8.03049531 C4.77118733,7.83524126 4.77116494,7.5186202 4.96644661,7.32333853 L7.30491753,4.98486761 C7.5001992,4.78958594 7.81682026,4.78960833 8.01207431,4.98491761 L10.5805263,7.5540962 L13.1489783,4.98491761 C13.3442324,4.78960833 13.6608534,4.78958594 13.8561351,4.98486761 L16.194606,7.32333853 C16.3898877,7.5186202 16.3898653,7.83524126 16.194556,8.03049531 L13.6253774,10.5989473 Z M12.5275105,10.9525509 C12.3321816,10.7572773 12.3321816,10.4406177 12.5275105,10.2453441 L15.0967391,7.67684213 L13.4654749,6.045578 L10.8969729,8.6148066 C10.7016993,8.81013542 10.3850397,8.81013542 10.1897661,8.6148066 L7.62126413,6.045578 L5.99,7.67684213 L8.5592286,10.2453441 C8.75455742,10.4406177 8.75455742,10.7572773 8.5592286,10.9525509 L5.99,13.5210529 L7.62126413,15.1523171 L10.1897661,12.5830885 C10.3850397,12.3877596 10.7016993,12.3877596 10.8969729,12.5830885 L13.4654749,15.1523171 L15.0967391,13.5210529 L12.5275105,10.9525509 Z"/>
1051
+ </symbol>
1052
+ <symbol id="icon-stores" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
1053
+ <path stroke="none" fill-rule="evenodd" d="M24,6.3 C23.9,6.3 23.9,6.3 24,6.3 L22,2.3 C21.9,2.1 21.7,2 21.5,2 L2.5,2 C2.3,2 2.1,2.1 2.1,2.3 L0.1,6.3 C0.1,6.3 0.1,6.3 0.1,6.3 C0,6.4 0,6.4 0,6.5 L0,7.5 C0,8.9 0.8,10.1 2,10.7 L2,22.6 C2,22.8 2.2,23 2.5,23 L21.5,23 C21.8,23 22,22.8 22,22.5 L22,10.7 C23.2,10.1 24,8.9 24,7.5 L24,6.5 C24,6.4 24,6.4 24,6.3 Z M21.2,3 L22.7,6 L18.9,6 L18.1,3 L21.2,3 Z M12.5,3 L17.1,3 L17.9,6 L12.5,6 L12.5,3 L12.5,3 Z M12.5,7 L18,7 L18,9.3 C17.3,10.3 16.1,11 15,11 C14,11 13.2,10.6 12.5,9.9 L12.5,7 Z M6.9,3 L11.5,3 L11.5,6 L6.1,6 L6.9,3 Z M6,7 L11.5,7 L11.5,9.9 C10.8,10.6 10,11 9,11 C7.9,11 6.7,10.3 6,9.3 L6,7 Z M2.8,3 L5.9,3 L5.1,6 L1.3,6 L2.8,3 Z M2.7,9.8 C1.7,9.5 1,8.6 1,7.5 L1,7 L5,7 L5,9.3 C4.5,9.8 4,10 3.5,10 C3.2,10 3,9.9 2.7,9.8 C2.7,9.9 2.7,9.8 2.7,9.8 Z M19,22 L15,22 L15,14 L19,14 L19,22 Z M21,22 L20,22 L20,13.5 C20,13.2 19.8,13 19.5,13 L14.5,13 C14.2,13 14,13.2 14,13.5 L14,22 L3,22 L3,10.9 C3.2,11 3.3,11 3.5,11 C4.2,11 4.8,10.7 5.4,10.2 C6.3,11.3 7.6,12 9,12 C10.1,12 11.2,11.6 12,10.8 C12.8,11.5 13.9,12 15,12 C16.4,12 17.7,11.3 18.6,10.2 C19.2,10.7 19.8,11 20.5,11 C20.7,11 20.8,11 21,10.9 L21,22 Z M23,7.5 C23,8.9 21.9,10 20.5,10 C20,10 19.5,9.8 19,9.3 L19,7 L23,7 L23,7.5 Z M17.5,19 C17.8,19 18,18.8 18,18.5 C18,18.2 17.8,18 17.5,18 C17.2,18 17,18.2 17,18.5 C17,18.8 17.2,19 17.5,19 Z M12.5,13 L4.5,13 C4.2,13 4,13.2 4,13.5 L4,19.5 C4,19.8 4.2,20 4.5,20 L12.5,20 C12.8,20 13,19.8 13,19.5 L13,13.5 C13,13.2 12.8,13 12.5,13 Z M12,19 L5,19 L5,14 L12,14 L12,19 Z"/>
1054
+ </symbol>
1055
+ <symbol id="icon-tree-view" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
1056
+ <path stroke="none" fill-rule="evenodd" d="M1,5 L11,5 L11,3 L1,3 L1,5 Z M10.001,19 L20.001,19 L20.001,17 L10.001,17 L10.001,19 Z M10.001,12 L20.001,12 L20.001,10 L10.001,10 L10.001,12 Z M9.501,13 L20.501,13 C20.777,13 21.001,12.776 21.001,12.5 L21.001,9.5 C21.001,9.224 20.777,9 20.501,9 L9.501,9 C9.225,9 9.001,9.224 9.001,9.5 L9.001,10 L5.997,10 L5.997,6 L11.5,6 C11.776,6 12,5.776 12,5.5 L12,2.5 C12,2.224 11.776,2 11.5,2 L0.5,2 C0.224,2 0,2.224 0,2.5 L0,5.5 C0,5.776 0.224,6 0.5,6 L4.997,6 L4.997,17.477 C4.997,17.753 5.221,17.977 5.497,17.977 L9.001,17.977 L9.001,19.5 C9.001,19.776 9.225,20 9.501,20 L20.501,20 C20.777,20 21.001,19.776 21.001,19.5 L21.001,16.5 C21.001,16.224 20.777,16 20.501,16 L9.501,16 C9.225,16 9.001,16.224 9.001,16.5 L9.001,16.977 L5.997,16.977 L5.997,11 L9.001,11 L9.001,12.5 C9.001,12.776 9.225,13 9.501,13 L9.501,13 Z"/>
1057
+ </symbol>
1058
+ <symbol id="icon-unlock" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
1059
+ <path stroke="none" fill-rule="evenodd" d="M12,0 C15.2381675,0 17.8775613,2.56547691 17.9958612,5.77505506 L18,6 L18,11 L20.5,11 C20.7454599,11 20.9496084,11.1768752 20.9919443,11.4101244 L21,11.5 L21,23.5 C21,23.7761424 20.7761424,24 20.5,24 L20.5,24 L3.5,24 C3.22385763,24 3,23.7761424 3,23.5 L3,23.5 L3,11.5 C3,11.2238576 3.22385763,11 3.5,11 L3.5,11 L17,11 L17,6 C17,3.23850178 14.7612171,1 12,1 C9.23814237,1 7,3.23814237 7,6 C7,6.27614237 6.77614237,6.5 6.5,6.5 C6.22385763,6.5 6,6.27614237 6,6 C6,2.68585763 8.68585763,0 12,0 Z M20,12 L4,12 L4,23 L20,23 L20,12 Z M12,15 C12.5523336,15 13,15.4470481 13,16 C13,16.3687862 12.7995319,16.6916367 12.5015919,16.8649998 L12.5,19.5 C12.5,19.7761424 12.2761424,20 12,20 C11.7545401,20 11.5503916,19.8231248 11.5080557,19.5898756 L11.5,19.5 L11.4994027,16.8655778 C11.2009143,16.6923549 11,16.3691964 11,16 C11,15.4470481 11.4476664,15 12,15 Z"/>
1060
+ </symbol>
1061
+ <symbol id="icon-user-roles" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
1062
+ <path stroke="none" fill-rule="evenodd" d="M19.5031,13.3780522 C19.6602209,13.3780522 19.8082035,13.451908 19.9026601,13.5774665 C20.2862817,14.0874039 20.8587574,14.3777043 21.4951,14.3777043 C22.0321572,14.3777043 22.5621497,14.1609261 23.2052212,13.6913055 C23.535597,13.4500395 24.0001,13.6860022 24.0001,14.0950957 L24.0001,14.0950957 L24.0001,20.2777043 L23.9835753,20.4051862 C23.8374978,20.9591855 23.3900868,21.7397869 22.4808405,22.5024942 C21.7467126,23.1183062 20.8067606,23.6159986 19.6403783,23.9569274 C19.5487759,23.9837024 19.4514241,23.9837024 19.3598217,23.9569274 C18.1934394,23.6159986 17.2534874,23.1183062 16.5193595,22.5024942 C15.6101132,21.7397869 15.1627022,20.9591855 15.0166247,20.4051862 L15.0166247,20.4051862 L15.0001,20.2777043 L15.0001,14.0950957 C15.0001,13.6860022 15.464603,13.4500395 15.7949788,13.6913055 C16.4375333,14.1605485 16.9686498,14.3777043 17.5051,14.3777043 C18.1414426,14.3777043 18.7139183,14.0874039 19.0975399,13.5774665 C19.1919965,13.451908 19.3399791,13.3780522 19.5031,13.3780522 Z M19.5,14.612 L19.3239345,14.7604529 C18.8101178,15.1577421 18.1789949,15.3777043 17.5051,15.3777043 C17.0096002,15.3777043 16.5369786,15.2581354 16.0528484,15.0207931 L16.0528484,15.0207931 L16,14.993 L16,20.202 L16.0185663,20.2524264 C16.0440701,20.3168844 16.0820786,20.4005949 16.1348076,20.5000423 L16.1348076,20.5000423 L16.1925253,20.604605 C16.4113975,20.9864729 16.7281346,21.3723851 17.162028,21.7363499 C17.7890296,22.2623006 18.6054499,22.6945846 19.6403783,22.99709 L19.6403783,22.99709 L19.5,22.953 L19.6967448,22.8914978 C20.4642016,22.6341317 21.1014298,22.3006848 21.6221161,21.9081481 L21.6221161,21.9081481 L21.838172,21.7363499 C22.2720654,21.3723851 22.5888025,20.9864729 22.8076747,20.604605 C22.8913929,20.4585411 22.9476287,20.3383703 22.9816337,20.2524264 L22.9816337,20.2524264 L23,20.202 L23,14.992 L22.9472978,15.0209557 C22.5324656,15.2243804 22.1262069,15.3411781 21.706296,15.3703973 L21.706296,15.3703973 L21.4951,15.3777043 C20.7463279,15.3777043 20.0503607,15.106146 19.5094401,14.621514 L19.5094401,14.621514 L19.5,14.612 Z M19.5,15.7052174 C19.7454599,15.7052174 19.9496084,15.8820926 19.9919443,16.1153418 L20,16.2052174 L19.999664,17.759361 L21.5195,17.7598261 C21.7956424,17.7598261 22.0195,17.9836837 22.0195,18.2598261 C22.0195,18.505286 21.8426248,18.7094345 21.6093756,18.7517704 L21.5195,18.7598261 L19.999664,18.759361 L20,20.3467826 C20,20.622925 19.7761424,20.8467826 19.5,20.8467826 C19.2545401,20.8467826 19.0503916,20.6699074 19.0080557,20.4366582 L19,20.3467826 L18.999664,18.759361 L17.5195,18.7598261 C17.2433576,18.7598261 17.0195,18.5359685 17.0195,18.2598261 C17.0195,18.0143662 17.1963752,17.8102177 17.4296244,17.7678818 L17.5195,17.7598261 L18.999664,17.759361 L19,16.2052174 C19,15.929075 19.2238576,15.7052174 19.5,15.7052174 Z M13.9862583,1.96981303 L14.0281678,2.1762093 C14.1528349,2.91197976 14.0381057,3.65096383 13.7617956,4.46665502 L13.6360115,4.81558961 L13.609,4.885 L13.6618859,4.9344037 C14.2560656,5.56624941 14.2263566,7.04865663 13.572759,7.59544618 L13.489,7.657 L13.4775129,7.83712248 C13.4038188,8.69604279 13.1503611,9.39730571 12.7618562,9.94951059 L12.6412981,10.1107089 C12.4727074,10.3229279 12.3013737,10.4905446 12.139886,10.6190158 L11.999,10.722 L11.999,12.7 L12.4685843,12.8764299 L13.3946906,13.2065538 L14.1283598,13.460207 L13.8032402,14.4058799 L13.0604369,14.1490575 L12.2880214,13.8751328 L11.7967259,13.6930502 L11.3161794,13.5069759 C11.1525303,13.4423624 11.0369805,13.2976443 11.0073061,13.1283507 L10.9998,13.041913 L10.9998,10.4332174 C10.9998,10.2620446 11.0871044,10.1049426 11.2275545,10.0138118 L11.3020502,9.9739843 C11.4186366,9.92378119 11.6329833,9.77230954 11.8583019,9.48868239 C12.2562147,8.98779675 12.4998,8.27771371 12.4998,7.30278261 C12.4998,7.02664023 12.7236576,6.80278261 12.9998,6.80278261 L12.9983048,6.79493225 L13.0446516,6.61514691 C13.0658673,6.51794899 13.0863,6.38532124 13.0863,6.22278261 C13.0863,6.10087864 13.0748066,5.99579953 13.0601096,5.90987361 L13.0289,5.76424919 L12.9983048,5.65063297 C12.9975217,5.64542814 12.9979177,5.64278261 12.9998,5.64278261 C12.7236576,5.64278261 12.4998,5.41892498 12.4998,5.14278261 C12.4998,5.09771364 12.5233658,5.00205597 12.557638,4.8869217 L12.6366473,4.63990273 L12.788871,4.21129345 L12.8153727,4.14225527 L12.8936441,3.89737369 C13.0625747,3.326574 13.1224756,2.81692192 13.0422204,2.34326576 L13.0134497,2.20142314 C12.6716439,0.768735941 8.10999202,0.727802021 7.52705219,2.07862138 L7.45813808,2.28540173 C7.36528954,2.4987833 7.13292796,2.62407138 6.89740504,2.57479428 C6.46643115,2.48462411 6.28475826,2.54025499 6.2020687,2.67534124 C6.1057249,2.8327338 6.07915909,3.14641132 6.13613512,3.57236853 C6.15876036,3.7415166 6.1928592,3.92027213 6.23827631,4.11552233 L6.35697963,4.57756105 L6.44732721,4.90612207 L6.48275591,5.05392008 C6.49504169,5.11538868 6.4998,5.16266995 6.4998,5.21582609 C6.4998,5.49196846 6.27594237,5.71582609 5.9998,5.71582609 L5.99932681,5.7249767 L5.96045364,5.85771867 C5.93721493,5.95030606 5.91255,6.08617562 5.91255,6.25930435 C5.91255,6.43243307 5.93721493,6.56830264 5.96045364,6.66089002 L5.99932681,6.79363199 C6.00093259,6.79970103 6.00122621,6.80278261 5.9998,6.80278261 C6.27594237,6.80278261 6.4998,7.02664023 6.4998,7.30278261 C6.4998,8.27771371 6.74338534,8.98779675 7.14129809,9.48868239 C7.36661669,9.77230954 7.58096337,9.92378119 7.69754976,9.9739843 C7.85476623,10.0416831 7.96453015,10.184003 7.99268277,10.3490438 L7.9998,10.4332174 L7.9998,13.041913 C7.9998,13.2468324 7.87476301,13.4310077 7.68430594,13.5066254 L7.18821619,13.6980869 L5.9051075,14.1572455 L4.32750495,14.7069156 L3.83269728,14.889434 C3.7544249,14.9191801 3.67823564,14.9485984 3.6041075,14.9777027 L3.18389621,15.1486688 L2.81209623,15.3127529 C2.00022172,15.6880967 1.57508475,16.0125924 1.47633505,16.3237227 C1.3524308,16.713779 1.25136302,17.2292785 1.17343637,17.8361953 C1.12061254,18.2476035 1.08052044,18.6827253 1.05149067,19.1239548 L1.02192555,19.6535891 L1.013,19.846 L10.9998,19.8462609 L10.9998,20.8462609 L0.4998,20.8462609 C0.221762673,20.8462609 -0.00287200353,20.6194378 -0.000314408739,20.3414135 L0.0124547607,19.8579012 L0.0272977253,19.5173651 C0.0576097596,18.9020505 0.107433351,18.2863108 0.1815788,17.7088432 C0.266494196,17.0474959 0.378247439,16.4774948 0.523228222,16.0210886 C0.74878462,15.3104289 1.41838558,14.8066131 2.73664169,14.2487159 L3.20036533,14.0603893 L3.71382153,13.8659091 L4.69076079,13.5199898 L6.01515136,13.0601937 L6.57712723,12.8582495 L6.999,12.699 L6.999,10.722 L6.97878695,10.7081147 C6.82300904,10.5988751 6.65423792,10.4518544 6.48506254,10.2615955 L6.35830191,10.1107089 C5.90172808,9.53598172 5.60315061,8.78193482 5.5220871,7.83712248 L5.511,7.66 L5.42644551,7.60023877 C4.77239668,7.06608827 4.74266719,5.61794693 5.33725703,5.00070635 L5.416,4.927 L5.31864514,4.56430996 C5.23914154,4.25345753 5.18104725,3.97471855 5.14496271,3.70494774 C5.060237,3.0715318 5.1040992,2.55362601 5.34917157,2.15326223 C5.60826896,1.7299864 6.04267426,1.52326451 6.6096213,1.53626177 L6.684,1.54 L6.69412529,1.52141884 C7.88818769,-0.519198372 13.4280676,-0.369857688 13.9862583,1.96981303 Z"/>
1063
+ </symbol>
1064
+ <symbol id="icon-user-security" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
1065
+ <path stroke="none" fill-rule="evenodd" d="M19.5,13 C21.3680466,13 22.895092,14.46444 22.9948194,16.307981 L23,16.5 L22.9998181,16.9999924 L23.5,17 C23.7454599,17 23.9496084,17.1768752 23.9919443,17.4101244 L24,17.5 L24,23.5 C24,23.7761424 23.7761424,24 23.5,24 L23.5,24 L15.5,24 C15.2238576,24 15,23.7761424 15,23.5 L15,23.5 L15,17.5 C15,17.2238576 15.2238576,17 15.5,17 L15.5,17 L15.9998181,16.9999924 L16,16.5 C16,14.5668576 17.5668576,13 19.5,13 Z M23,18 L16,18 L16,23 L23,23 L23,18 Z M19.5,19 C20.0521424,19 20.5,19.4478576 20.5,20 C20.5,20.3695857 20.2993366,20.6924465 20.001051,20.865541 L20,21.5 C20,21.7761424 19.7761424,22 19.5,22 C19.2545401,22 19.0503916,21.8231248 19.0080557,21.5898756 L19,21.5 L18.9993182,20.8657552 C18.700829,20.6927129 18.5,20.3697382 18.5,20 C18.5,19.4478576 18.9478576,19 19.5,19 Z M13.9851651,1.88001025 C14.0021934,1.94859086 14.0167779,2.01786472 14.028978,2.08780091 C14.1528819,2.79807503 14.0369984,3.50949464 13.7597261,4.2936411 L13.617,4.671 L13.6619859,4.712 C14.2561656,5.32625 14.2264566,6.767375 13.572859,7.2989375 L13.488,7.359 L13.4774231,7.51634687 C13.4031072,8.34565671 13.1475538,9.0232737 12.7562869,9.55642599 L12.6348809,9.71204496 C12.4657644,9.91611219 12.2942069,10.077112 12.1327089,10.2004124 L11.999,10.294 L11.999,12.152 L12.4608985,12.3160235 L14.1404641,12.8789755 L13.8253359,13.8280245 L12.6705169,13.4446639 L12.028922,13.2243346 L11.3239165,12.9685062 C11.1568323,12.9056778 11.0381252,12.7597194 11.0076188,12.5881517 L10.9999,12.5005 L10.9999,10.0005 C10.9999,9.82704179 11.0895207,9.66824417 11.2329013,9.57773322 L11.3089055,9.53841656 C11.4261493,9.48995581 11.640652,9.34457059 11.8649191,9.07395504 C12.2590784,8.59833616 12.4999,7.92564107 12.4999,7.0005 C12.4999,6.72435763 12.7237576,6.5005 12.9999,6.5005 L13.0390159,6.36082453 C13.062019,6.26959937 13.0864,6.13559937 13.0864,5.9645 C13.0864,5.79340063 13.062019,5.65940063 13.0390159,5.56817547 L13.0004516,5.43749576 C12.99884,5.43152814 12.998522,5.4285 12.9999,5.4285 C12.7237576,5.4285 12.4999,5.20464237 12.4999,4.9285 C12.4999,4.8368814 12.51183,4.77014427 12.5488573,4.66207386 L12.7166178,4.22879062 C12.7542348,4.13237461 12.7864463,4.04648155 12.8169302,3.96027077 C13.0420961,3.323485 13.1325574,2.76813454 13.0438549,2.259651 C13.035673,2.21274867 13.0259423,2.16652961 13.0146198,2.12092893 C12.677432,0.762197374 8.11309407,0.722234682 7.52725035,2.00104085 L7.4851802,2.12092893 C7.42077398,2.38046013 7.16356799,2.54337881 6.90140425,2.4907026 C6.465201,2.40305686 6.2775375,2.45806554 6.19690942,2.58437349 C6.1056463,2.72734176 6.07997066,3.01927974 6.1359992,3.41985405 C6.15845169,3.58037741 6.19229648,3.75028588 6.23740307,3.93612074 L6.30750625,4.2060162 L6.41920533,4.5972948 C6.48069132,4.81265527 6.4999,4.89294191 6.4999,5.0005 C6.4999,5.27664237 6.27604237,5.5005 5.9999,5.5005 L5.97463198,5.57362662 L5.9416595,5.70050271 C5.92566783,5.77894039 5.91265,5.87950231 5.91265,6.0005 C5.91265,6.12149769 5.92566783,6.22205961 5.9416595,6.30049729 L5.97463198,6.42737338 L5.9999,6.5005 C6.27604237,6.5005 6.4999,6.72435763 6.4999,7.0005 C6.4999,7.92564107 6.74072163,8.59833616 7.13488092,9.07395504 C7.32710981,9.30591123 7.51216496,9.44586146 7.63494762,9.51163099 L7.69089449,9.53841656 C7.85119882,9.60467569 7.96372018,9.74815914 7.99259763,9.91524088 L7.9999,10.0005 L7.9999,12.5005 C7.9999,12.7081587 7.87154555,12.8942026 7.67741478,12.9679275 L7.18177155,13.1509247 L6.63825365,13.3417888 L4.33719876,14.1113366 L4.08261874,14.1999594 L3.61115739,14.3714565 L3.18913881,14.5357528 L2.81557643,14.693405 C1.99969575,15.0539421 1.57148352,15.3647678 1.47453994,15.6577162 C1.35152016,16.0291163 1.2508948,16.5217696 1.17322191,17.1024971 C1.12065072,17.4955499 1.08068873,17.9113891 1.05169793,18.3331106 L1.015,19 L12.4999,19.0005 L12.4999,20.0005 L0.4999,20.0005 C0.221705668,20.0005 -0.00299268263,19.7734305 -0.000155291275,19.4952515 L0.0127093959,19.031264 L0.0276312331,18.7046532 C0.0580706245,18.1145378 0.107942832,17.5239824 0.182048325,16.9699267 C0.267280582,16.3326809 0.379460901,15.7834555 0.525216323,15.3434159 C0.766599649,14.613993 1.49987827,14.1148981 2.97767352,13.5408981 L3.46938882,13.356789 L4.10877281,13.132726 L6.02162975,12.4954451 L6.58406991,12.3020123 L6.999,12.153 L6.999,10.293 L6.98613303,10.2859029 C6.83044616,10.1811167 6.66157454,10.0399731 6.49201882,9.85710411 L6.36491908,9.71204496 C5.90516925,9.15728017 5.60412441,8.42858769 5.52237688,7.51634687 L5.512,7.363 C4.78254204,6.90676364 4.71918512,5.42856552 5.32107586,4.79414573 L5.411,4.709 L5.32004678,4.38525542 C5.24030764,4.08634061 5.18199039,3.81826313 5.14563986,3.55837612 C5.05958707,2.94314434 5.10402074,2.4379231 5.35400534,2.04630964 C5.6091228,1.6466553 6.027684,1.4489942 6.57362729,1.45265905 L6.69,1.457 L6.70099756,1.43891762 C7.90734338,-0.521764567 13.4256236,-0.374717129 13.9851651,1.88001025 Z M19.5,14 C18.1743767,14 17.0899501,15.0314016 17.005317,16.3356082 L17,16.5 L16.9998181,16.9999924 L21.9998181,16.9999924 L22,16.5 C22,15.1195135 20.8802288,14 19.5,14 Z"/>
1066
+ </symbol>
1067
+ <symbol id="icon-view" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
1068
+ <path stroke="none" fill-rule="evenodd" d="M21.275,11.9 C20.675,11.2 19.875,10.5 19.075,9.9 C16.775,8.1 14.375,7 11.975,7 C9.575,7 7.175,8.1 4.875,9.9 C4.075,10.5 3.275,11.2 2.675,11.9 C2.475,12.1 2.275,12.3 2.175,12.4 C2.275,12.6 2.475,12.8 2.675,13 C3.275,13.7 4.075,14.4 4.875,15 C7.175,16.8 9.575,17.9 11.975,17.9 C14.375,17.9 16.775,16.8 19.075,15 C19.875,14.4 20.575,13.7 21.275,13 C21.475,12.8 21.675,12.6 21.775,12.4 C21.675,12.3 21.475,12.1 21.275,11.9 Z M22.875,12.7 C22.875,12.8 22.775,12.8 22.675,13 C22.475,13.2 22.275,13.5 21.975,13.7 C21.275,14.4 20.475,15.1 19.675,15.8 C17.175,17.7 14.575,18.9 11.975,18.9 C9.375,18.9 6.675,17.7 4.275,15.8 C3.375,15.1 2.575,14.4 1.975,13.7 C1.675,13.5 1.475,13.2 1.275,13 C1.175,12.9 1.075,12.8 1.075,12.7 C0.975,12.5 0.975,12.3 1.075,12.1 C1.075,12 1.175,12 1.275,11.8 C1.475,11.6 1.675,11.4 1.975,11.2 C2.575,10.5 3.375,9.7 4.275,9.1 C6.775,7.2 9.375,6 11.975,6 C14.575,6 17.275,7.2 19.675,9.1 C20.575,9.8 21.275,10.5 21.975,11.2 C22.175,11.4 22.375,11.7 22.575,11.9 C22.675,12 22.775,12.1 22.775,12.2 C22.975,12.3 22.975,12.6 22.875,12.7 Z M15.175,12.4 C15.175,10.7 13.775,9.2 11.975,9.2 C10.175,9.2 8.775,10.7 8.775,12.4 C8.775,14.1 10.175,15.6 11.975,15.6 C13.775,15.6 15.175,14.2 15.175,12.4 Z M16.175,12.4 C16.175,14.7 14.275,16.6 11.975,16.6 C9.675,16.6 7.775,14.7 7.775,12.4 C7.775,10.1 9.675,8.2 11.975,8.2 C14.275,8.2 16.175,10.1 16.175,12.4 Z M11.975,11.1 C11.675,11.1 11.475,10.9 11.475,10.6 C11.475,10.3 11.675,10.1 11.975,10.1 C13.275,10.1 14.275,11.1 14.275,12.4 C14.275,13.7 13.275,14.7 11.975,14.7 C10.675,14.7 9.675,13.7 9.675,12.4 C9.675,12.1 9.875,11.9 10.175,11.9 C10.475,11.9 10.675,12.1 10.675,12.4 C10.675,13.1 11.275,13.7 11.975,13.7 C12.675,13.7 13.275,13.1 13.275,12.4 C13.275,11.7 12.675,11.1 11.975,11.1 Z"/>
1069
+ </symbol>
1070
+ <symbol id="icon-virtual-scope" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
1071
+ <path stroke="none" fill-rule="evenodd" d="M9.7,4 L23.5,4 C23.8,4 24,4.2 24,4.5 L24,21.5 C24,21.8 23.8,22 23.5,22 L0.5,22 C0.2,22 0,21.8 0,21.5 L0,2.5 C0,2.2 0.2,2 0.5,2 L7.5,2 C7.6,2 7.8,2.1 7.9,2.1 L9.7,4 Z M23,5 L9.5,5 C9.4,5 9.2,4.9 9.1,4.9 L7.3,3 L1,3 L1,21 L23,21 L23,5 Z"/>
1072
+ </symbol>
1073
+ <symbol id="icon-warehouse" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
1074
+ <path stroke="none" fill-rule="evenodd" d="M23.2,5.5 L12.7,2 C12.6,2 12.5,2 12.4,2 L0.9,5.5 C0.6,5.6 0.5,5.8 0.5,6 L0.5,8.5 C0.5,8.8 0.7,9 1,9 L2.5,9 L2.5,22.5 C2.5,22.8 2.7,23 3,23 C3.3,23 3.5,22.8 3.5,22.5 L3.5,9 L20.5,9 L20.5,22.5 C20.5,22.8 20.7,23 21,23 C21.3,23 21.5,22.8 21.5,22.5 L21.5,9 L23,9 C23.3,9 23.5,8.8 23.5,8.5 L23.5,6 C23.5,5.8 23.4,5.6 23.2,5.5 Z M22.5,8 L21.2,8 L21,8 L3.2,8 C3.2,8 3.1,8 3.1,8 C3.1,8 3,8 3,8 L1.5,8 L1.5,6.4 L12.5,3 L22.5,6.3 L22.5,8 Z M19,16 C19.3,16 19.5,16.2 19.5,16.5 L19.5,22.5 C19.5,22.8 19.3,23 19,23 L12,23 L5,23 C4.7,23 4.5,22.8 4.5,22.5 L4.5,16.5 C4.5,16.2 4.7,16 5,16 L7,16 L7.5,16 L7.5,10.5 C7.5,10.2 7.7,10 8,10 L10,10 L13,10 L15,10 C15.3,10 15.5,10.2 15.5,10.5 L15.5,16 L17,16 L19,16 Z M14.5,17 L14.5,19 L16.5,19 L16.5,17 L15,17 L14.5,17 Z M12.5,11 L10.5,11 L10.5,13 L12.5,13 L12.5,11 Z M8.5,11 L8.5,16 L10,16 L12,16 L14,16 L14.5,16 L14.5,11 L13.5,11 L13.5,13.5 C13.5,13.8 13.3,14 13,14 L10,14 C9.7,14 9.5,13.8 9.5,13.5 L9.5,11 L8.5,11 Z M8,17 L7.5,17 L7.5,19 L9.5,19 L9.5,17 L8,17 Z M5.5,17 L5.5,22 L11.5,22 L11.5,17 L10.5,17 L10.5,19.5 C10.5,19.8 10.3,20 10,20 L7,20 C6.7,20 6.5,19.8 6.5,19.5 L6.5,17 L5.5,17 Z M18.5,22 L18.5,17 L17.5,17 L17.5,19.5 C17.5,19.8 17.3,20 17,20 L14,20 C13.7,20 13.5,19.8 13.5,19.5 L13.5,17 L12.5,17 L12.5,22 L18.5,22 Z"/>
1075
+ </symbol>
1076
+ <symbol id="icon-warning" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21">
1077
+ <path stroke="none" fill-rule="evenodd" d="M10.4955926,18.3313774 C10.0128096,18.3313774 9.62220266,17.9407704 9.62220266,17.4589001 C9.62220266,16.9779424 10.0128096,16.5855102 10.4955926,16.5855102 C10.9765502,16.5855102 11.3680699,16.9779424 11.3680699,17.4589001 C11.3680699,17.9407704 10.9765502,18.3313774 10.4955926,18.3313774 L10.4955926,18.3313774 Z M10.039276,7.41993558 C10.039276,7.16804883 10.2437058,6.96361901 10.4955926,6.96361901 C10.7465667,6.96361901 10.9519091,7.16804883 10.9519091,7.41993558 L10.9519091,14.4034044 C10.9519091,14.6552911 10.7465667,14.8597209 10.4955926,14.8597209 C10.2437058,14.8597209 10.039276,14.6552911 10.039276,14.4034044 L10.039276,7.41993558 Z M20.9050862,20.2369554 L10.9035396,0.232036976 C10.748392,-0.0773456585 10.2418806,-0.0773456585 10.0876456,0.232036976 L0.048681033,20.309966 C-0.0225043518,20.4514242 -0.0152032867,20.6193487 0.0678463289,20.7535057 C0.150895945,20.8885754 0.29782988,20.9707124 0.456628046,20.9707124 L20.5345571,20.9707124 L20.5436834,20.9707124 C20.7946575,20.9707124 21,20.7662826 21,20.5143959 C21,20.409443 20.9644073,20.3136166 20.9050862,20.2369554 L20.9050862,20.2369554 Z"/>
1078
+ </symbol>
1079
+ <symbol id="icon-wrench" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
1080
+ <path stroke="none" fill-rule="evenodd" d="M2.5,23.7579816 C1.9,23.7579816 1.2,23.5579816 0.7,23.0579816 C0.2,22.5579816 -1.11910481e-13,21.9579816 -1.11910481e-13,21.2579816 C-1.11910481e-13,20.5579816 0.3,19.9579816 0.7,19.4579816 L10.3,9.85798161 C9.1,7.25798161 9.7,4.15798161 11.8,2.05798161 C13.9,-0.0420183911 17.3,-0.642018391 20,0.757981609 C20.1,0.857981609 20.2,0.957981609 20.3,1.15798161 C20.3,1.35798161 20.3,1.45798161 20.2,1.55798161 L17.1,4.75798161 L17.1,6.85798161 L19.1,6.85798161 L22.3,3.65798161 C22.2,3.65798161 22.4,3.55798161 22.5,3.55798161 C22.7,3.55798161 22.8,3.65798161 22.9,3.85798161 C24.3,6.55798161 23.8,9.85798161 21.6,11.9579816 L21.6,11.9579816 C19.5,14.0579816 16.4,14.5579816 13.8,13.3579816 L4.2,22.9579816 C3.8,23.4579816 3.1,23.7579816 2.5,23.7579816 Z M16.7,0.957981609 C15.1,0.957981609 13.6,1.55798161 12.4,2.75798161 C10.5,4.65798161 10.1,7.45798161 11.3,9.75798161 C11.4,9.95798161 11.4,10.1579816 11.2,10.3579816 L1.4,20.1579816 C1.1,20.4579816 1,20.8579816 1,21.2579816 C1,21.6579816 1.2,22.0579816 1.4,22.3579816 C2,22.9579816 3,22.9579816 3.5,22.3579816 L13.3,12.5579816 C13.5,12.3579816 13.7,12.3579816 13.9,12.4579816 C16.2,13.6579816 19,13.1579816 20.9,11.3579816 L20.9,11.3579816 C22.6,9.65798161 23.1,7.15798161 22.3,5.05798161 L19.4,7.65798161 C19.3,7.75798161 19.2,7.75798161 19,7.75798161 L16.4,7.75798161 C16.1,7.75798161 15.9,7.55798161 15.9,7.25798161 L15.9,4.45798161 C15.9,4.35798161 16,4.15798161 16,4.15798161 L18.7,1.35798161 C18.1,1.05798161 17.4,0.957981609 16.7,0.957981609 Z"/>
1081
+ </symbol>
1082
+ <symbol id="icon-youtube" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
1083
+ <g fill="none" fill-rule="evenodd" transform="translate(0 4)">
1084
+ <path stroke="none" fill="red" d="M23.52,2.48 C23.2,1.52 22.4,0.72 21.36,0.48 C19.52,0 12,0 12,0 C12,0 4.48,0 2.64,0.48 C1.6,0.72 0.8,1.52 0.48,2.48 C0,4.32 0,8 0,8 C0,8 0,11.68 0.48,13.52 C0.8,14.48 1.6,15.28 2.64,15.52 C4.48,16 12,16 12,16 C12,16 19.52,16 21.36,15.52 C22.4,15.28 23.2,14.48 23.52,13.52 C24,11.68 24,8 24,8 C24,8 24,4.32 23.52,2.48"/>
1085
+ <polygon fill="#FFF" points="9.6 12 16 8.4 9.6 4.8"/>
1086
+ </g>
1087
+ </symbol>
555
1088
  </svg>