platform-calendar-seatmap 2.0.0 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (113) hide show
  1. package/dist/9ff54b1cefde15da74a9.svg +198 -0
  2. package/dist/components/actionsHandler/ActionsHandler.d.ts +11 -0
  3. package/dist/components/alignmentGuides/AlignmentGuides.d.ts +6 -0
  4. package/dist/components/app/App.d.ts +18 -0
  5. package/dist/components/background/Background.d.ts +7 -0
  6. package/dist/components/deleteModal/DeleteModal.d.ts +4 -0
  7. package/dist/components/draggable/Draggable.d.ts +14 -0
  8. package/dist/components/elementSelector/ElementSelector.d.ts +10 -0
  9. package/dist/components/elementSelector/dropdown/Dropdown.d.ts +7 -0
  10. package/dist/components/elementSelector/dropdown/sections/aisles/Aisles.d.ts +7 -0
  11. package/dist/components/elementSelector/dropdown/sections/info/Info.d.ts +3 -0
  12. package/dist/components/elementSelector/dropdown/sections/objects/Objects.d.ts +7 -0
  13. package/dist/components/elementSelector/dropdown/sections/seatEditor/SeatEditor.d.ts +3 -0
  14. package/dist/components/elementSelector/dropdown/sections/seatingGroup/SeatingGroup.d.ts +7 -0
  15. package/dist/components/elementSelector/dropdown/sections/settings/Settings.d.ts +3 -0
  16. package/dist/components/elementSelector/dropdown/sections/standingArea/StandingArea.d.ts +7 -0
  17. package/dist/components/elementSelector/dropdown/sections/stats/Statistics.d.ts +3 -0
  18. package/dist/components/elementSelector/dropdown/sections/tables/Tables.d.ts +7 -0
  19. package/dist/components/elementSelector/dropdown/sections/text/Text.d.ts +7 -0
  20. package/dist/components/elementTitle/ElementTitle.d.ts +15 -0
  21. package/dist/components/elementWrapper/ElementWrapper.d.ts +19 -0
  22. package/dist/components/elements/aisle/Aisle.d.ts +12 -0
  23. package/dist/components/elements/object/Object.d.ts +7 -0
  24. package/dist/components/elements/seatingGroup/SeatingGroup.d.ts +7 -0
  25. package/dist/components/elements/stage/Stage.d.ts +28 -0
  26. package/dist/components/elements/standingArea/StandingArea.d.ts +7 -0
  27. package/dist/components/elements/table/Table.d.ts +7 -0
  28. package/dist/components/elements/table/round/Round.d.ts +20 -0
  29. package/dist/components/elements/table/square/Square.d.ts +20 -0
  30. package/dist/components/elements/text/Text.d.ts +7 -0
  31. package/dist/components/mouseSeatSelector/MouseSeatSelector.d.ts +6 -0
  32. package/dist/components/numberingSettings/NumberingSettings.d.ts +12 -0
  33. package/dist/components/onboarding/Onboarding.d.ts +31 -0
  34. package/dist/components/previewMode/PreviewMode.d.ts +24 -0
  35. package/dist/components/resizer/Resizer.d.ts +18 -0
  36. package/dist/components/rotate/Rotate.d.ts +9 -0
  37. package/dist/components/scene3d/InteractionController3D.d.ts +18 -0
  38. package/dist/components/scene3d/Scene3D.d.ts +13 -0
  39. package/dist/components/scene3d/builders/Object3D.d.ts +3 -0
  40. package/dist/components/scene3d/builders/SeatingGroup3D.d.ts +3 -0
  41. package/dist/components/scene3d/builders/StandingArea3D.d.ts +3 -0
  42. package/dist/components/scene3d/builders/Table3D.d.ts +3 -0
  43. package/dist/components/scene3d/builders/Text3D.d.ts +3 -0
  44. package/dist/components/scene3d/builders/materials.d.ts +11 -0
  45. package/dist/components/scene3d/builders/types.d.ts +36 -0
  46. package/dist/components/sceneContainer/SceneContainer.d.ts +10 -0
  47. package/dist/components/seat/Seat.d.ts +39 -0
  48. package/dist/components/seat/seatIcons/index.d.ts +46 -0
  49. package/dist/components/seatTooltip/SeatTooltip.d.ts +30 -0
  50. package/dist/helpers/constants/commons.d.ts +10 -0
  51. package/dist/helpers/constants/numberingStyles.d.ts +55 -0
  52. package/dist/helpers/constants/seatColors.d.ts +35 -0
  53. package/dist/helpers/constants/seatMap.d.ts +12 -0
  54. package/dist/helpers/constants/standingAreaStyles.d.ts +51 -0
  55. package/dist/helpers/functions/commons.d.ts +9 -0
  56. package/dist/helpers/functions/export.d.ts +30 -0
  57. package/dist/helpers/functions/rowLabels.d.ts +7 -0
  58. package/dist/helpers/functions/seat.d.ts +16 -0
  59. package/dist/helpers/functions/seatMap.d.ts +38 -0
  60. package/dist/helpers/functions/seatSelectionUtils.d.ts +33 -0
  61. package/dist/helpers/functions/seatStatus.d.ts +20 -0
  62. package/dist/helpers/functions/seatingGroup.d.ts +4 -0
  63. package/dist/helpers/functions/statistics.d.ts +116 -0
  64. package/dist/helpers/functions/zoomToFit.d.ts +20 -0
  65. package/dist/helpers/types/aisle.d.ts +25 -0
  66. package/dist/helpers/types/commons.d.ts +10 -0
  67. package/dist/hooks/useCopyPaste.d.ts +1 -0
  68. package/dist/hooks/useElementWrapperActionHandlers.d.ts +21 -0
  69. package/dist/hooks/useIsViewOnly.d.ts +2 -0
  70. package/dist/hooks/useKeyboardSeatNavigation.d.ts +22 -0
  71. package/dist/hooks/useKeyboardShortcuts.d.ts +1 -0
  72. package/dist/hooks/useScaleTracker.d.ts +2 -0
  73. package/dist/hooks/useSmoothZoom.d.ts +18 -0
  74. package/dist/hooks/useUndoRedo.d.ts +4 -0
  75. package/dist/index.d.ts +2 -0
  76. package/dist/index.html +1 -0
  77. package/dist/index.js +2 -0
  78. package/dist/index.js.LICENSE.txt +66 -0
  79. package/dist/lib/numberInputWithSlider/NumberInputWithSlider.d.ts +11 -0
  80. package/dist/store/middleware/historyMiddleware.d.ts +3 -0
  81. package/dist/store/reducers/actionHandlers/actionCreators.d.ts +3 -0
  82. package/dist/store/reducers/actionHandlers/actionTypes.d.ts +2 -0
  83. package/dist/store/reducers/actionHandlers/reducer.d.ts +3 -0
  84. package/dist/store/reducers/actionHandlers/selectors.d.ts +8 -0
  85. package/dist/store/reducers/actionHandlers/types.d.ts +20 -0
  86. package/dist/store/reducers/clipboard/actionCreators.d.ts +6 -0
  87. package/dist/store/reducers/clipboard/actionTypes.d.ts +3 -0
  88. package/dist/store/reducers/clipboard/reducer.d.ts +3 -0
  89. package/dist/store/reducers/clipboard/selectors.d.ts +6 -0
  90. package/dist/store/reducers/clipboard/types.d.ts +19 -0
  91. package/dist/store/reducers/elementSelector/actionCreators.d.ts +7 -0
  92. package/dist/store/reducers/elementSelector/actionTypes.d.ts +5 -0
  93. package/dist/store/reducers/elementSelector/reducer.d.ts +3 -0
  94. package/dist/store/reducers/elementSelector/selectors.d.ts +8 -0
  95. package/dist/store/reducers/elementSelector/types.d.ts +45 -0
  96. package/dist/store/reducers/history/actionCreators.d.ts +10 -0
  97. package/dist/store/reducers/history/actionTypes.d.ts +4 -0
  98. package/dist/store/reducers/history/reducer.d.ts +21 -0
  99. package/dist/store/reducers/history/selectors.d.ts +5 -0
  100. package/dist/store/reducers/history/types.d.ts +18 -0
  101. package/dist/store/reducers/main/actionCreators.d.ts +15 -0
  102. package/dist/store/reducers/main/actionTypes.d.ts +12 -0
  103. package/dist/store/reducers/main/reducer.d.ts +3 -0
  104. package/dist/store/reducers/main/selectors.d.ts +65 -0
  105. package/dist/store/reducers/main/types.d.ts +89 -0
  106. package/dist/store/reducers/rootReducer.d.ts +28 -0
  107. package/dist/store/reducers/seatMap/actionCreators.d.ts +11 -0
  108. package/dist/store/reducers/seatMap/actionTypes.d.ts +9 -0
  109. package/dist/store/reducers/seatMap/reducer.d.ts +3 -0
  110. package/dist/store/reducers/seatMap/selectors.d.ts +474 -0
  111. package/dist/store/reducers/seatMap/types.d.ts +70 -0
  112. package/dist/store/store.d.ts +19 -0
  113. package/package.json +1 -1
@@ -0,0 +1,198 @@
1
+ var _defs;
2
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
3
+ import * as React from "react";
4
+ var SvgObjects = function SvgObjects(props) {
5
+ return /*#__PURE__*/React.createElement("svg", _extends({
6
+ xmlns: "http://www.w3.org/2000/svg"
7
+ }, props), _defs || (_defs = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("font", {
8
+ id: "objects_svg__icomoon",
9
+ horizAdvX: 1024
10
+ }, /*#__PURE__*/React.createElement("fontFace", {
11
+ ascent: 960,
12
+ descent: -64,
13
+ unitsPerEm: 1024
14
+ }), /*#__PURE__*/React.createElement("glyph", {
15
+ horizAdvX: 512
16
+ }), /*#__PURE__*/React.createElement("glyph", {
17
+ d: "m300.8 159.5 3.2-192c0-19.2 12.8-32 32-32s32 12.8 32 32v192h320v-192c0-19.2 12.8-32 32-32s32 12.8 32 32v198.4c38.4 12.8 64 48 64 86.4v38.4c0 41.6-25.6 73.6-60.8 86.4L784 741.9c6.4 57.6-12.8 115.2-51.2 156.8-38.4 38.4-86.4 60.8-140.8 60.8H464c-54.4 0-102.4-22.4-137.6-60.8-38.4-41.6-57.6-99.2-54.4-156.8l28.8-358.4c-51.2 0-92.8-41.6-92.8-92.8v-38.4c0-51.2 41.6-92.8 92.8-92.8M336 748.3c-3.2 41.6 9.6 80 35.2 108.8 25.6 25.6 57.6 38.4 92.8 38.4h128c35.2 0 67.2-12.8 92.8-38.4 25.6-28.8 38.4-67.2 35.2-108.8l-28.8-364.8H364.8zm-64-457.6c0 16 12.8 28.8 28.8 28.8h422.4c16 0 28.8-12.8 28.8-28.8v-38.4c0-16-12.8-28.8-28.8-28.8H300.8c-16 0-28.8 12.8-28.8 28.8z",
18
+ glyphName: "chair",
19
+ unicode: "B"
20
+ }), /*#__PURE__*/React.createElement("glyph", {
21
+ d: "M279.731 959.5 65.121 744.812 64.5 170.788h228.963L293.231-64.5h666.286v789.948l-228.652-.54V959.5zm-1.85-114.326v-97.816l-98.898-.311zM141.256 253.483V664.12h214.845v213.917h298.233V253.483zM882.99 642.749V18.195h-513v152.589h360.875v472.894z",
22
+ glyphName: "copy",
23
+ unicode: "C"
24
+ }), /*#__PURE__*/React.createElement("glyph", {
25
+ d: "M569.15 749.808c-3.801 34.367-26.451 63.025-57.251 75.242V960h-66.216V825.05c-30.783-12.217-53.45-40.875-57.25-75.242C206.916 708.133 70.966 543.883 70.966 348.05 70.967 120.866 253.917-64 478.8-64c224.867 0 407.833 184.867 407.833 412.05 0 195.834-135.967 360.083-317.483 401.758m226.316-224.65c2.734-1.416 5.367-2.9 8.017-4.367a370.7 370.7 0 0 0 35.284-100.157c-.634.166-1.233.316-1.867.467-.9.233-1.85.433-2.75.649-3.816.934-7.683 1.85-11.65 2.734-1.6.35-3.233.717-4.833 1.067-3.434.75-6.933 1.484-10.483 2.216-1.751.35-3.484.717-5.25 1.067-3.801.75-7.668 1.484-11.567 2.201-1.5.283-2.967.566-4.484.833-5.483 1-11.049 1.967-16.749 2.916a15 15 0 0 0-.868.133c-5.366.884-10.867 1.734-16.433 2.567-1.766.266-3.567.516-5.366.783-2.601.367-5.15.767-7.784 1.134l-.017.017-.033.017c-.1 1.066-.266 2.1-.383 3.15-.983 9.083-2.083 18.133-3.35 27.066-.067.617-.183 1.217-.267 1.834a811 811 0 0 1-4.1 25.375c-.334 1.783-.634 3.567-.95 5.35a803 803 0 0 1-5.117 25.367c-.367 1.716-.767 3.4-1.167 5.099-1.817 8.033-3.733 15.992-5.801 23.842-.133.551-.266 1.134-.4 1.684 5.1-1.701 10.134-3.45 15.1-5.268 1.583-.583 3.117-1.183 4.684-1.766a593 593 0 0 0 10.4-3.983c1.917-.767 3.816-1.55 5.716-2.334 3.034-1.233 6.067-2.5 9.034-3.792a452 452 0 0 0 5.766-2.533 470 470 0 0 0 8.767-4.017 258 258 0 0 0 5.35-2.534 499 499 0 0 0 9.484-4.733c1.351-.7 2.734-1.367 4.067-2.084M584.967 393.633c-.1 4.966-.266 9.834-.4 14.734-.2 8.133-.367 16.3-.666 24.334a123 123 0 0 0 2.483-.116c10.583-.517 21.033-1.1 31.366-1.784 1.517-.1 3.001-.2 4.516-.317 10.634-.717 21.2-1.499 31.55-2.383.35-.033.684-.067 1.05-.1a1736 1736 0 0 0 30.05-2.85l3.917-.4a1595 1595 0 0 0 28.367-3.3c.867-.117 1.766-.217 2.649-.334.184-2.317.383-4.617.584-6.934.183-2.583.383-5.182.566-7.75.267-4.033.5-8.033.7-12.067.133-2.467.284-4.9.4-7.333.2-4.434.334-8.834.467-13.268.05-2.067.133-4.133.201-6.2a954 954 0 0 0 .216-19.517c0-6.483-.083-12.966-.216-19.45-.068-2.133-.151-4.249-.201-6.383-.133-4.349-.267-8.699-.467-13.049-.116-2.516-.267-5.017-.4-7.534-.217-3.967-.433-7.917-.7-11.867-.166-2.6-.383-5.2-.566-7.8-.201-2.334-.4-4.634-.584-6.967l-2.55-.299c-9.333-1.167-18.8-2.3-28.467-3.334-1.233-.133-2.517-.233-3.767-.367a1565 1565 0 0 0-31.216-2.967 1734 1734 0 0 0-31.283-2.367c-1.65-.133-3.3-.234-4.933-.334-10.201-.7-20.534-1.267-30.967-1.8a76 76 0 0 1-2.767-.134c.3 8.033.468 16.201.667 24.334.133 4.933.3 9.801.4 14.75.3 15.15.467 30.35.467 45.567s-.166 30.453-.466 45.586M784.133 553.65c-.234.1-.467.217-.7.317-1.883.883-3.766 1.75-5.683 2.616a556 556 0 0 1-17.75 7.634c-.8.316-1.567.666-2.383.983-6.8 2.75-13.751 5.366-20.817 7.9a625 625 0 0 1-5.834 2.033c-5.55 1.934-11.2 3.8-16.9 5.617-1.25.4-2.45.85-3.7 1.233l-.017.033h-.034c-.382 1.267-.817 2.45-1.217 3.716a623 623 0 0 1-5.567 17.15c-.666 1.95-1.333 3.9-2 5.834-2.516 7.158-5.116 14.208-7.833 21.091-.3.767-.634 1.5-.933 2.267a545 545 0 0 1-7.634 18.1 586 586 0 0 1-2.516 5.617c-.116.25-.216.516-.35.767 40.285-27.2 74.935-62.225 101.868-102.908M649.767 676.116c1.45-2.699 2.916-5.366 4.334-8.125.667-1.283 1.3-2.616 1.95-3.916 1.617-3.233 3.233-6.484 4.8-9.801.817-1.716 1.617-3.484 2.433-5.233q2.05-4.475 4.05-9.05a287 287 0 0 0 2.433-5.667c1.3-3.066 2.584-6.183 3.834-9.316.767-1.867 1.5-3.716 2.233-5.6a488 488 0 0 0 4.033-10.725 368 368 0 0 0 1.684-4.567 630 630 0 0 0 5.217-15.283c-.534.15-1.1.267-1.633.4a649 649 0 0 1-23.701 5.884c-1.633.383-3.267.783-4.916 1.15a754 754 0 0 1-25.25 5.2c-1.7.316-3.401.6-5.084.916-8.417 1.517-16.916 2.95-25.483 4.2-.501.084-1.001.167-1.5.234-8.883 1.283-17.867 2.383-26.9 3.392-1.034.116-2.051.284-3.084.4l-.017.033c-.367 2.551-.734 5.034-1.084 7.55-.284 1.967-.55 3.934-.833 5.867-.767 5.233-1.55 10.367-2.367 15.433-.116.667-.217 1.367-.317 2.017a1069 1069 0 0 1-2.833 16.684c-.284 1.667-.6 3.3-.9 4.95a818 818 0 0 1-2.1 11.209c-.367 1.9-.734 3.783-1.117 5.65-.7 3.45-1.401 6.85-2.116 10.201-.367 1.733-.734 3.499-1.117 5.217-.85 3.8-1.701 7.517-2.567 11.183a231 231 0 0 1-.783 3.35c-.133.617-.299 1.2-.433 1.817 35.1-7.07 68.383-19.237 99.134-35.654m-231.4-241.799c5.167.133 10.266.334 15.466.433 14.934.3 29.95.467 44.967.467h.033c15 0 30-.166 44.933-.467 5.2-.1 10.334-.3 15.517-.45 8.067-.217 16.116-.45 24.116-.767.3-8.367.567-16.8.783-25.267.133-4.901.317-9.767.417-14.667.3-15.134.467-30.334.467-45.55 0-15.2-.166-30.4-.467-45.534-.1-4.916-.284-9.766-.417-14.666a2464 2464 0 0 0-.783-25.284q-12.724-.449-25.6-.8c-4.533-.133-9.033-.299-13.6-.4-30.15-.6-60.666-.6-90.8 0-4.566.101-9.033.267-13.583.4-8.583.234-17.134.501-25.617.8-.317 8.334-.566 16.7-.783 25.15-.133 4.916-.317 9.817-.417 14.767-.3 15.117-.467 30.334-.467 45.567 0 15.25.166 30.45.467 45.583.1 4.966.284 9.834.417 14.767.217 8.433.467 16.833.783 25.134 8.001.317 16.067.55 24.168.784m-23.334 19.933c.033.95.084 1.916.134 2.867.5 10.5 1.083 20.883 1.733 31.141.1 1.7.234 3.384.35 5.084.7 10.633 1.467 21.15 2.317 31.484.05.483.1.95.133 1.416.85 10.116 1.801 20.059 2.8 29.875.133 1.434.267 2.868.417 4.3a1642 1642 0 0 0 3.217 28.267c.133.983.234 1.95.367 2.933 2.133.184 4.267.367 6.417.533 2.75.217 5.484.451 8.25.634 3.95.267 7.917.5 11.899.717 2.334.116 4.684.266 7.034.367 4.8.216 9.6.383 14.4.516 1.583.05 3.167.116 4.75.15 13.016.3 26.083.3 39.084 0 1.6-.033 3.167-.1 4.75-.15 4.817-.133 9.617-.3 14.4-.516 2.349-.101 4.699-.25 7.049-.367a948 948 0 0 0 11.9-.717c2.75-.183 5.5-.417 8.233-.634 2.151-.166 4.284-.349 6.434-.533.1-.983.233-1.95.349-2.916a1478 1478 0 0 0 3.217-28.3c.167-1.416.3-2.867.434-4.3 1-9.8 1.933-19.724 2.782-29.825.051-.5.084-.983.134-1.483.85-10.317 1.617-20.8 2.317-31.401.133-1.716.249-3.434.367-5.167a1993 1993 0 0 0 1.733-31.091c.05-.951.1-1.917.133-2.883-8.2.316-16.533.483-24.8.699-4.583.117-9.1.284-13.7.383-15.067.3-30.166.484-45.267.484-15.117 0-30.234-.184-45.267-.484-4.601-.1-9.1-.266-13.668-.383-8.298-.217-16.631-.384-24.832-.7M478.8 800.566c27.7 0 51.033-18.975 58.133-44.691-19 2.75-38.4 4.25-58.133 4.25s-39.134-1.5-58.134-4.25c7.084 25.716 30.435 44.691 58.134 44.691m-69.017-184.324c.334 2.317.667 4.617 1.017 6.916a860 860 0 0 0 1.65 10.817c.35 2.25.717 4.501 1.084 6.717.566 3.583 1.183 7.117 1.783 10.617.35 2.033.717 4.067 1.067 6.083a859 859 0 0 0 2.183 11.6c.267 1.442.534 2.909.8 4.325a862 862 0 0 0 3.167 15.2c.201.984.433 1.917.65 2.901.867 3.916 1.75 7.783 2.633 11.549.4 1.651.817 3.251 1.217 4.884.634 2.566 1.268 5.083 1.9 7.583 16.334 2.249 32.933 3.499 49.867 3.499 16.916 0 33.534-1.25 49.849-3.499a632 632 0 0 0 1.917-7.6c.4-1.633.817-3.217 1.2-4.868.9-3.766 1.784-7.633 2.65-11.549.216-.984.45-1.917.649-2.901a708 708 0 0 0 3.15-15.233c.284-1.35.517-2.767.783-4.142.767-3.883 1.5-7.816 2.234-11.816.334-1.934.666-3.9 1-5.85.634-3.6 1.268-7.217 1.867-10.916.334-2.116.667-4.25 1.017-6.383.583-3.733 1.149-7.5 1.733-11.316.317-2.117.616-4.217.916-6.367.201-1.283.367-2.617.551-3.917-.884.067-1.784.083-2.684.15-9.7.767-19.434 1.351-29.233 1.784-2.367.1-4.7.166-7.067.249-9.283.334-18.6.534-27.917.567-.883 0-1.75.05-2.616.05s-1.751-.05-2.617-.05a867 867 0 0 1-27.95-.567c-2.35-.083-4.699-.15-7.033-.249a806 806 0 0 1-29.267-1.784c-.884-.067-1.784-.083-2.667-.15.167 1.199.334 2.466.517 3.666M277.634 608.4a423 423 0 0 0 4.133 11.058 771 771 0 0 0 2.167 5.45c1.283 3.167 2.566 6.334 3.899 9.449.8 1.884 1.583 3.734 2.4 5.6 1.334 3.067 2.7 6.084 4.084 9.084.8 1.75 1.6 3.5 2.417 5.233a590 590 0 0 0 4.767 9.716c.666 1.334 1.333 2.7 2 4.017 1.4 2.759 2.867 5.426 4.333 8.109 30.734 16.417 64.033 28.584 99.134 35.65l-.45-1.849c-.249-1.017-.483-2.083-.734-3.117-.883-3.75-1.75-7.55-2.616-11.434a538 538 0 0 1-1.084-5.066c-.717-3.401-1.45-6.833-2.15-10.334-.367-1.85-.734-3.716-1.1-5.583-.717-3.667-1.401-7.408-2.1-11.176-.3-1.683-.634-3.35-.917-5.049A1120 1120 0 0 1 393 641.607c-.133-.916-.283-1.883-.433-2.8-.767-4.782-1.5-9.633-2.233-14.55-.3-2.166-.617-4.383-.934-6.583-.334-2.334-.666-4.65-1-7.034h-.017l-.017-.033c-1.034-.116-2.033-.284-3.05-.4-9.05-1.008-18.033-2.109-26.933-3.392-.484-.067-.984-.15-1.467-.234-8.583-1.25-17.084-2.683-25.517-4.2-1.683-.317-3.383-.601-5.066-.916a753 753 0 0 1-25.251-5.2c-1.65-.367-3.283-.767-4.95-1.15a681 681 0 0 1-23.633-5.867c-.566-.15-1.134-.267-1.683-.417a567 567 0 0 0 5.25 15.35c.501 1.419 1.035 2.802 1.568 4.219m96.933-365.7c.033-1.034.116-2.067.167-3.1.5-10.533 1.066-21.001 1.716-31.3l.249-3.734c.65-10.033 1.367-19.933 2.167-29.716.067-1.067.15-2.133.233-3.183.834-10.033 1.734-19.9 2.7-29.667.184-1.801.367-3.633.551-5.434.983-9.533 2.017-18.9 3.116-28.133.084-.6.134-1.267.217-1.867-.584.068-1.183.134-1.766.201a808 808 0 0 0-27.583 3.667c-1.6.267-3.217.5-4.833.767-9.2 1.467-18.317 3.034-27.334 4.8a106 106 0 0 1-3.2.667 734 734 0 0 0-26.867 5.934c-.5.1-1.001.2-1.517.333a639 639 0 0 0-26.284 7.034c-.867.234-1.75.5-2.616.734-.25.9-.5 1.766-.75 2.667-2.45 8.699-4.8 17.533-6.933 26.5-.134.55-.234 1.117-.367 1.667a675 675 0 0 0-5.801 26.883c-.233 1.15-.483 2.3-.699 3.467-1.751 9.034-3.301 18.183-4.734 27.416a445 445 0 0 0-.783 5.134c-1.351 9.167-2.584 18.367-3.617 27.701-.084.6-.134 1.233-.201 1.866.533-.067 1.117-.133 1.667-.2a1321 1321 0 0 1 28.017-3.167c1.751-.201 3.517-.367 5.284-.567 9.667-.966 19.466-1.899 29.4-2.733 1.034-.068 2.083-.167 3.117-.234 9.633-.8 19.4-1.534 29.283-2.166 1.333-.101 2.634-.201 3.967-.3 10.05-.634 20.234-1.2 30.5-1.7l3.5-.201v-.033h.034zm10.899 344.983a1632 1632 0 0 1-3.099-28.1c-.201-1.834-.383-3.667-.567-5.5a1847 1847 0 0 1-2.699-29.624 187 187 0 0 1-.234-3.183c-.8-9.801-1.517-19.701-2.166-29.734-.084-1.25-.167-2.467-.25-3.716a1998 1998 0 0 1-1.716-31.309c-.05-1.049-.134-2.067-.167-3.116h-.033v-.018c-1.134-.05-2.216-.133-3.333-.183-10.334-.516-20.567-1.067-30.65-1.733-1.3-.068-2.583-.167-3.883-.25-9.9-.667-19.684-1.383-29.334-2.183-1.033-.084-2.067-.151-3.066-.234-9.967-.85-19.767-1.766-29.467-2.75-1.751-.183-3.5-.35-5.25-.533-9.467-.984-18.817-2.05-27.983-3.167-.584-.083-1.2-.133-1.767-.201.068.617.117 1.233.201 1.867 1.034 9.3 2.267 18.533 3.617 27.683.25 1.7.516 3.401.783 5.1 1.434 9.242 3 18.408 4.734 27.458.216 1.134.467 2.25.666 3.384a746 746 0 0 0 5.834 27.016c.133.516.234 1.05.367 1.567 2.133 8.975 4.483 17.808 6.933 26.542.267.883.501 1.766.75 2.649.867.25 1.734.484 2.601.734 8.649 2.484 17.383 4.85 26.249 7.017.567.133 1.117.249 1.668.383 8.766 2.116 17.633 4.05 26.6 5.866 1.15.234 2.3.484 3.45.7 8.916 1.767 17.983 3.334 27.083 4.767 1.717.284 3.434.551 5.134.8a757 757 0 0 0 27.334 3.667c.633.068 1.267.134 1.883.201-.089-.617-.139-1.25-.223-1.867m-110.149 68.875c-.116-.25-.234-.516-.35-.783-.833-1.85-1.683-3.716-2.516-5.6a581 581 0 0 1-7.65-18.133c-.3-.75-.601-1.484-.9-2.234-2.734-6.9-5.334-13.95-7.85-21.125-.684-1.9-1.316-3.85-1.983-5.767a743 743 0 0 1-5.6-17.2c-.367-1.25-.817-2.433-1.2-3.7h-.033v-.033c-1.267-.383-2.467-.833-3.7-1.233a593 593 0 0 1-16.934-5.633c-1.934-.667-3.866-1.316-5.783-2-7.084-2.551-14.067-5.183-20.9-7.934-.717-.284-1.384-.601-2.101-.883a560 560 0 0 1-18.05-7.751c-1.866-.85-3.7-1.7-5.534-2.55-.266-.116-.516-.234-.767-.35 26.918 40.684 61.584 75.709 101.851 102.909M161.65 287.117c-1.617.3-3.25.616-4.85.933a731 731 0 0 0-14.901 3.15c-1.133.25-2.2.5-3.333.767-3.716.833-7.4 1.683-10.966 2.55-1.717.433-3.367.85-5.034 1.284-2.5.616-4.95 1.25-7.366 1.883-2.234 16.483-3.467 33.283-3.467 50.367 0 17.117 1.233 33.884 3.467 50.383 2.367.634 4.783 1.233 7.233 1.867 1.716.433 3.4.867 5.167 1.3 3.517.867 7.134 1.7 10.767 2.533 1.2.267 2.334.534 3.534.8a682 682 0 0 0 14.916 3.134c1.484.3 3.016.601 4.5.901 3.716.733 7.467 1.433 11.3 2.133 1.95.367 3.967.734 5.967 1.067 3.517.633 7.05 1.233 10.65 1.849 2.133.367 4.3.717 6.467 1.067a851 851 0 0 0 10.933 1.7c2.201.334 4.4.667 6.634 1.001 1.233.183 2.5.349 3.733.533-.05-.817-.067-1.617-.133-2.417a919 919 0 0 1-1.801-30.433c-.083-1.834-.133-3.7-.2-5.567-.383-10.601-.634-21.233-.634-31.85 0-10.6.25-21.233.634-31.833.067-1.867.116-3.717.2-5.567a912 912 0 0 1 1.801-30.417c.067-.8.083-1.633.133-2.4-1.134.133-2.283.299-3.416.467-2.483.367-4.916.734-7.351 1.1-3.416.5-6.8 1.033-10.133 1.567-2.4.4-4.767.766-7.117 1.166a733 733 0 0 0-9.983 1.734c-2.166.4-4.35.767-6.467 1.167-3.7.664-7.3 1.364-10.884 2.081m11.816-144.651.7-.3a303 303 0 0 1 5.7-2.633c5.767-2.601 11.6-5.1 17.567-7.567.868-.334 1.717-.734 2.584-1.067 6.783-2.734 13.716-5.333 20.75-7.866 1.95-.7 3.934-1.367 5.916-2.068a582 582 0 0 1 16.8-5.6c1.268-.4 2.484-.833 3.751-1.233v-.033h.033c.4-1.267.833-2.5 1.233-3.733a678 678 0 0 1 5.534-17.084c.684-1.983 1.35-3.967 2.033-5.917 2.516-7.134 5.1-14.15 7.8-21 .334-.85.7-1.683 1.05-2.551a537 537 0 0 1 7.5-17.783q1.274-2.925 2.6-5.801c.101-.216.201-.45.317-.683-40.284 27.22-74.95 62.252-101.868 102.919M307.833 20c-1.466 2.7-2.933 5.401-4.35 8.133-.649 1.268-1.25 2.534-1.883 3.801-1.65 3.283-3.301 6.6-4.883 9.967a237 237 0 0 0-2.35 5.084 580 580 0 0 0-4.167 9.233c-.783 1.816-1.567 3.65-2.35 5.483a715 715 0 0 0-3.916 9.534c-.734 1.817-1.467 3.6-2.167 5.434-1.4 3.6-2.767 7.25-4.1 10.916-.533 1.467-1.084 2.9-1.6 4.383a529 529 0 0 0-5.25 15.333c.5-.133 1.016-.266 1.517-.4 7.883-2.1 15.883-4.067 23.933-5.934 1.6-.366 3.167-.733 4.75-1.099a748 748 0 0 1 25.351-5.217c1.667-.317 3.35-.617 5.033-.917 8.367-1.516 16.8-2.933 25.334-4.183.566-.083 1.134-.184 1.716-.267 8.783-1.267 17.65-2.35 26.583-3.35 1.117-.116 2.217-.3 3.334-.417l.017-.033h.017c.334-2.433.684-4.783 1.033-7.183.3-2.134.601-4.284.901-6.383a1409 1409 0 0 1 2.266-14.8c.134-.85.267-1.733.4-2.584a929 929 0 0 1 2.817-16.566c.3-1.716.617-3.383.917-5.084.699-3.75 1.383-7.449 2.1-11.117.367-1.899.734-3.8 1.117-5.667a526 526 0 0 1 2.116-10.166c.367-1.767.734-3.5 1.117-5.233.833-3.801 1.683-7.5 2.55-11.134.267-1.134.534-2.3.8-3.401.134-.633.3-1.2.433-1.8C371.866-8.566 338.567 3.567 307.833 20m239.934 59.617c-.3-2.133-.6-4.234-.916-6.334-.584-3.833-1.15-7.633-1.75-11.366-.334-2.116-.667-4.234-1.001-6.317a848 848 0 0 0-1.867-11.034c-.334-1.916-.666-3.849-1-5.733-.734-4.067-1.5-8.05-2.25-12-.249-1.333-.5-2.667-.75-3.967a833 833 0 0 0-3.167-15.267c-.2-.966-.417-1.834-.633-2.8a762 762 0 0 0-2.667-11.633c-.383-1.667-.8-3.233-1.2-4.867-.633-2.567-1.267-5.1-1.917-7.6-16.316-2.267-32.933-3.534-49.849-3.534-16.934 0-33.534 1.267-49.867 3.534q-.95 3.7-1.9 7.499c-.4 1.668-.817 3.301-1.217 5.001-.883 3.7-1.75 7.534-2.616 11.366-.217 1.034-.45 2.033-.684 3.067-1.067 4.933-2.116 10-3.15 15.167-.267 1.4-.533 2.9-.8 4.3-.734 3.849-1.467 7.7-2.183 11.65-.35 1.983-.717 4.017-1.05 6.033a840 840 0 0 0-1.816 10.667c-.35 2.2-.717 4.433-1.067 6.666-.551 3.583-1.117 7.2-1.65 10.867-.35 2.284-.684 4.584-1.017 6.901-.183 1.2-.35 2.45-.516 3.667.85-.067 1.7-.083 2.533-.151a897 897 0 0 1 30.033-1.833c1.751-.067 3.484-.116 5.233-.184 10.567-.383 21.15-.649 31.734-.649 10.566 0 21.167.266 31.733.649 1.733.068 3.467.117 5.2.184a886 886 0 0 1 30.033 1.833c.85.068 1.7.084 2.551.151-.184-1.3-.35-2.634-.55-3.933M681.55 92c-.551-1.567-1.134-3.084-1.701-4.634a648 648 0 0 0-4.017-10.649 326 326 0 0 0-2.233-5.617 470 470 0 0 0-3.834-9.301c-.8-1.916-1.6-3.816-2.433-5.7a560 560 0 0 0-4.033-8.966c-.833-1.784-1.633-3.583-2.467-5.334a393 393 0 0 0-4.7-9.566c-.684-1.384-1.366-2.8-2.067-4.167-1.401-2.734-2.867-5.4-4.3-8.067-30.75-16.4-64.033-28.566-99.134-35.633.134.566.284 1.167.433 1.766.267 1.167.534 2.367.833 3.567.833 3.6 1.684 7.233 2.501 10.967.4 1.766.767 3.533 1.149 5.333.7 3.3 1.401 6.667 2.084 10.067.383 1.9.767 3.834 1.15 5.767.683 3.6 1.383 7.267 2.05 10.983.316 1.716.633 3.434.966 5.183.933 5.416 1.884 10.9 2.8 16.516.133.916.267 1.867.433 2.783.75 4.8 1.5 9.65 2.217 14.567.316 2.166.616 4.349.933 6.533.334 2.35.684 4.684 1.001 7.084h.017l.017.033c1.116.116 2.216.299 3.35.417 8.916 1 17.801 2.083 26.584 3.35.566.083 1.116.184 1.683.267 8.533 1.25 17 2.666 25.4 4.183 1.667.3 3.317.601 4.967.901a787 787 0 0 1 25.4 5.233l4.7 1.099a763 763 0 0 1 23.967 5.934c.5.134 1.016.267 1.5.4A495 495 0 0 0 681.55 92m31.65 127.3a793 793 0 0 0-4.734-27.433c-.217-1.15-.467-2.284-.684-3.417-1.8-9.084-3.716-18.1-5.816-26.966-.134-.534-.234-1.067-.367-1.6-2.151-8.984-4.501-17.784-6.934-26.517-.266-.9-.5-1.766-.767-2.666-.867-.234-1.733-.5-2.6-.734-8.65-2.5-17.401-4.867-26.3-7.034-.5-.133-1-.233-1.517-.334-8.833-2.133-17.8-4.1-26.85-5.933-1.066-.201-2.133-.433-3.217-.667-9.016-1.766-18.133-3.333-27.333-4.8-1.617-.267-3.217-.5-4.817-.734a737 737 0 0 0-27.6-3.7c-.584-.067-1.167-.134-1.767-.201.084.601.134 1.267.217 1.867 1.117 9.233 2.15 18.6 3.117 28.133.2 1.801.367 3.633.55 5.434a1877 1877 0 0 1 2.717 29.733c.067.967.133 1.967.233 2.934.8 9.933 1.517 20 2.167 30.166.083 1.134.166 2.234.233 3.366a1821 1821 0 0 1 1.734 31.434c.05 1.034.116 2.033.166 3.067h.033v.033l3.484.2c10.284.5 20.467 1.067 30.516 1.7 1.334.101 2.634.201 3.967.3 9.884.634 19.65 1.367 29.283 2.167 1.017.067 2.084.166 3.1.233 9.95.833 19.751 1.767 29.417 2.734 1.766.201 3.534.367 5.267.566 9.5.967 18.833 2.034 28.033 3.167.533.068 1.117.134 1.667.201-.067-.634-.133-1.267-.2-1.867a811 811 0 0 0-3.617-27.716 502 502 0 0 0-.781-5.116m90.283-43.984c-2.649-1.449-5.283-2.933-7.982-4.35-1.384-.716-2.8-1.416-4.201-2.133a451 451 0 0 0-9.417-4.7c-1.733-.85-3.516-1.667-5.283-2.5a392 392 0 0 0-8.867-4.067 953 953 0 0 0-5.65-2.5 404 404 0 0 0-9.2-3.834c-1.85-.767-3.683-1.534-5.55-2.267-3.5-1.4-7.034-2.734-10.6-4.067-1.5-.566-3.001-1.167-4.517-1.7-4.983-1.834-10.017-3.567-15.117-5.3.134.5.234 1 .35 1.466a776 776 0 0 1 5.884 24.167c.367 1.65.767 3.3 1.134 4.95a805 805 0 0 1 5.117 25.45c.317 1.766.616 3.534.95 5.3 1.467 8.4 2.867 16.867 4.1 25.434.084.6.201 1.2.267 1.8 1.267 8.933 2.367 18 3.35 27.067.117 1.066.284 2.1.383 3.167h.033l.018.033c2.55.367 5 .734 7.516 1.099 1.9.267 3.834.534 5.734.834 5.183.766 10.283 1.566 15.3 2.366.667.134 1.35.234 2 .334 5.633.934 11.1 1.867 16.5 2.833 1.667.334 3.283.634 4.916.934 3.751.699 7.45 1.4 11.1 2.133 1.884.367 3.716.734 5.583 1.134 3.401.7 6.767 1.4 10.067 2.133 1.734.367 3.484.734 5.2 1.134 3.767.833 7.45 1.7 11.1 2.601 1.067.233 2.201.5 3.267.767.601.133 1.2.299 1.801.467-7.002-35.468-19.036-69.118-35.286-100.185m31.567 120.483c-1.683-.433-3.35-.85-5.049-1.283a676 676 0 0 0-10.967-2.55c-1.133-.267-2.2-.516-3.35-.767a680 680 0 0 0-14.9-3.15 387 387 0 0 0-4.833-.933 566 566 0 0 0-10.884-2.083c-2.133-.4-4.299-.8-6.467-1.167-3.3-.601-6.6-1.167-9.983-1.734-2.35-.4-4.734-.767-7.116-1.167a791 791 0 0 0-10.134-1.567c-2.433-.367-4.883-.733-7.366-1.099a114 114 0 0 0-3.417-.468c.05.767.083 1.6.151 2.4a912 912 0 0 1 1.8 30.418c.083 1.849.134 3.7.201 5.566.383 10.601.633 21.234.633 31.834 0 10.617-.249 21.25-.633 31.85-.067 1.866-.117 3.733-.201 5.6a904 904 0 0 1-1.8 30.316c-.068.818-.084 1.668-.151 2.501 1.25-.184 2.551-.35 3.784-.534 2.2-.333 4.367-.649 6.55-.983a911 911 0 0 0 11.017-1.733 670 670 0 0 0 6.4-1.034c3.633-.634 7.2-1.233 10.716-1.867a314 314 0 0 0 5.917-1.066c3.85-.7 7.6-1.434 11.334-2.167 1.499-.266 3-.566 4.467-.867 5.1-1 10.067-2.067 14.933-3.134 1.2-.266 2.317-.533 3.5-.8a697 697 0 0 0 10.8-2.533c1.75-.433 3.449-.867 5.167-1.3 2.45-.634 4.867-1.233 7.233-1.867 2.216-16.5 3.467-33.267 3.467-50.383 0-17.084-1.251-33.884-3.467-50.367a663 663 0 0 0-7.352-1.882M904.967 172.7c-11.033-65.934-20-75.001-85.267-86.167 65.267-11.15 74.234-20.2 85.267-86.166 11.05 65.967 20 75.016 85.267 86.166-65.267 11.167-74.217 20.234-85.267 86.167M146.533 639.042c14.5 86.658 26.267 98.542 112.033 113.233-85.766 14.65-97.534 26.534-112.033 113.176-14.516-86.642-26.3-98.526-112.033-113.176 85.733-14.692 97.517-26.575 112.033-113.233M130 88.5c-8.033-48.017-14.567-54.6-62.083-62.734 47.516-8.133 54.05-14.733 62.083-62.749 8.05 48.017 14.566 54.616 62.1 62.749C144.567 33.9 138.05 40.483 130 88.5",
26
+ glyphName: "dancefloor",
27
+ unicode: "J"
28
+ }), /*#__PURE__*/React.createElement("glyph", {
29
+ d: "M487.274 838.422V635.237c0-137.401 103.802-250.937 237.097-266.476V12.531H601.915V-50H909.36v62.531H786.903v356.23C920.188 384.3 1024 497.846 1024 635.237v203.185zm220.256-177.13a22.6 22.6 0 0 0 9.067 0zm200.089 0a23 23 0 0 0 4.544.459 22.8 22.8 0 0 0 4.544-.459zm53.839 114.599v-68.076c-12.214 9.203-27.951 16.467-49.295 16.467-39.676 0-60.374-24.836-74.068-41.26-12.475-14.966-16.654-18.76-26.013-18.76-9.338 0-13.517 3.794-25.992 18.76-13.684 16.435-34.382 41.26-74.037 41.26s-60.332-24.825-74.037-41.26c-12.475-14.977-16.654-18.77-26.013-18.77-9.328 0-13.496 3.793-25.971 18.749-8.452 10.151-19.604 23.48-36.237 32.214v60.676zM0 538.835c0-101.394 74.725-185.446 171.961-200.569V12.531H54.756V-50h307.445v62.531H234.492v325.735c97.236 15.123 171.961 99.175 171.961 200.569v406.432H0zm343.921 343.901V680.552c-3.564 2.157-7.128 4.71-11.213 7.691-15.519 11.339-36.758 26.868-75.486 26.868s-59.967-15.529-75.486-26.868c-12.641-9.244-20.281-14.82-38.602-14.82-18.291 0-25.919 5.576-38.551 14.81-10.296 7.535-23.261 16.82-42.062 22.271v172.232z",
30
+ glyphName: "drinks",
31
+ unicode: "K"
32
+ }), /*#__PURE__*/React.createElement("glyph", {
33
+ d: "M960.965 709.737c-21.736 35.933-48.546 71.122-81.361 103.75-33.187 32.954-68.98 59.95-105.612 81.641l64.326 64.372s93.091 0 139.637-46.545c46.545-46.546 46.545-139.637 46.545-139.637zm-541.556-541.51H233.227v186.182l22.342 22.342c37.842-17.92 75.45-43.101 109.289-76.893 33.885-33.932 59.019-71.447 76.893-109.289zm487.796 487.797L495.464 244.329c-21.736 35.887-48.547 71.168-81.361 103.75-33.14 33.001-68.98 59.95-105.612 81.641l412.533 412.485a388.8 388.8 0 0 0 109.288-76.846c33.932-33.885 59.067-71.494 76.893-109.335m-767.069 163.84V75.136h744.728v325.819L1024.5 542.36V28.591c0-51.433-41.705-93.091-93.091-93.091H93.591C42.205-64.5.5-22.842.5 28.591v837.818c0 51.386 41.705 93.091 93.091 93.091h512.465L466.373 819.864z",
34
+ glyphName: "edit",
35
+ unicode: "L"
36
+ }), /*#__PURE__*/React.createElement("glyph", {
37
+ d: "M225.411 145.804h-24.232v27.532c0 8.888-7.088 16.728-15.976 16.728H56.225c-8.888 0-15.989-7.84-15.989-16.728v-27.532H16.018C7.13 145.804 0 137.965 0 129.076v-21.073C0 99.115 7.128 93.5 16.018 93.5h209.393c8.888 0 16.004 5.615 16.004 14.503v21.073c0 8.889-7.116 16.728-16.004 16.728M90.53 689.563V230.302h60.354v459.259c18.106 10.437 30.181 29.923 30.181 52.26 0 33.333-27.02 60.353-60.352 60.353s-60.355-27.02-60.355-60.353C60.356 719.486 72.424 700 90.53 689.563m734.064-66.365c6.387 8.741 10.91 15.963 14.018 20.812 1.547 2.428 2.667 4.325 3.422 5.568.742 1.238 1.126 1.875 1.126 1.875l.014.02c3.392 5.637 2.451 13.067-2.603 17.66-5.751 5.228-14.654 4.804-19.882-.95l-5.714-6.287c-3.643-4.061-9.137-9.831-16.158-17.082-7.06-7.218-15.898-15.702-26.301-25.028-10.425-9.299-22.481-19.398-36.178-29.525-13.676-10.144-28.955-20.372-45.711-29.895-16.748-9.528-34.979-18.338-54.373-25.745-9.721-3.638-19.693-7.019-29.923-9.912a377 377 0 0 0-31.324-7.357c-21.303-3.944-43.163-6.018-65.24-5.887-21.623-.01-43.235 2.619-64.21 7.248a360 360 0 0 0-30.897 8.528c-10.098 3.3-19.951 7.068-29.547 11.124-19.157 8.194-37.233 17.621-53.86 27.664-16.648 10.014-31.923 20.514-45.648 30.822-13.736 10.299-25.94 20.39-36.524 29.638-10.561 9.27-19.59 17.631-26.797 24.727-7.17 7.126-12.766 12.765-16.398 16.702-1.79 1.929-3.164 3.408-4.09 4.404l-1.442 1.609-.068.08c-4.394 4.911-11.783 6.195-17.664 2.702-6.681-3.967-8.88-12.602-4.911-19.281l1.143-1.923c.855-1.384 2.012-3.307 3.623-5.766 3.233-4.886 7.921-12.028 14.469-20.631 6.514-8.628 14.64-18.943 24.671-30.187a503 503 0 0 1 35.58-36.149c13.749-12.6 29.43-25.526 47.082-37.973 17.643-12.437 37.306-24.351 58.837-34.731 10.737-5.245 21.988-9.989 33.629-14.244 11.632-4.279 23.672-8.033 36.041-11.073 24.715-6.174 50.743-9.453 76.828-9.614 25.622.012 51.482 2.513 76.221 7.804a346 346 0 0 1 36.326 9.632c11.79 3.792 23.245 8.075 34.221 12.894 21.993 9.56 42.159 20.932 60.249 32.989 18.08 12.099 34.054 24.94 47.975 37.55a434 434 0 0 1 35.699 36.492c9.965 11.421 17.937 21.928 24.289 30.696m183.994-477.394h-24.824v27.532c0 8.888-6.496 16.728-15.384 16.728H839.402c-8.888 0-16.581-7.84-16.581-16.728v-27.532h-23.626c-8.888 0-16.61-7.839-16.61-16.728v-21.073c0-8.888 7.722-14.503 16.61-14.503h209.393c8.888 0 15.412 5.615 15.412 14.503v21.073c0 8.889-6.522 16.728-15.412 16.728M873.116 689.561V230.3h60.354v459.263c18.106 10.437 30.476 29.923 30.476 52.258 0 33.333-26.871 60.353-60.205 60.353-33.333 0-60.579-27.02-60.579-60.353 0-22.335 11.848-41.823 29.954-52.26",
38
+ glyphName: "entrance",
39
+ unicode: "M"
40
+ }), /*#__PURE__*/React.createElement("glyph", {
41
+ d: "m988.666 865.659-304.567 74.334c-16.066 5.5-33.801 2.968-47.633-6.767-13.867-9.766-22.067-25.532-22.067-42.332V4.961c0-16.8 8.2-32.569 22.067-42.336 13.832-9.734 31.567-12.266 47.633-6.766l304.567 74.335C1009.798 37.458 1024 57.162 1024 79.325v737.202c-.002 22.167-14.202 41.866-35.334 49.132M716.799 362.595c-18.868 0-34.134 22.933-34.134 51.2 0 28.266 15.266 51.2 34.134 51.2s34.133-22.934 34.133-51.2-15.266-51.2-34.133-51.2M430.066 89.529h150.199V21.262H409.599c-37.7 0-68.266 30.567-68.266 68.267v204.799h68.266V109.996c0-11.3 9.167-20.467 20.467-20.467m-20.467 785.065h170.666v-68.267H430.066c-11.3 0-20.467-9.167-20.467-20.467V601.528h-68.266v204.799c0 37.7 30.566 68.267 68.266 68.267M273.066 362.595V257.127c0-12.401-7.567-23.601-19.234-28.533-11.699-4.9-25.233-2.603-34.534 5.867l-209.201 190.8C3.667 431.128 0 439.329 0 447.928s3.667 16.8 10.099 22.667l209.201 190.8c9.299 8.467 22.833 10.767 34.534 5.833 11.667-4.9 19.234-16.1 19.234-28.499V533.261h169.6c19.432 0 35.2-15.767 35.2-35.2V397.795c0-19.433-15.768-35.2-35.2-35.2z",
42
+ glyphName: "exit",
43
+ unicode: "N"
44
+ }), /*#__PURE__*/React.createElement("glyph", {
45
+ d: "M828.68 524.8c55.914 30.316 95.992 113.352 95.992 211.398 0 123.302-63.578 223.302-142.308 223.302-78.45 0-142.094-100-142.094-223.3 0-103.714 45.058-191.076 105.946-216.088 17.144-44.048 35.258-124.524 1.722-226.538C696.224 137.14 683.356-13.912 786.43-64.42v-.08h.312l.054.08c103.132 50.508 89.996 201.56 38.454 357.994-35.066 105.914-13.93 188.696 3.43 231.226M523.782 396.92c-55.914 30.32-92.878 176.818-92.878 274.864 0 123.3 39.792 287.052 118.528 287.052 23.126 0 38.242-68.888 38.242-223.37s-38.878-339.878-5.344-441.892C634.044 137.14 646.912-13.912 543.838-64.42v-.08h-.308l-.058.08C440.34-13.912 453.48 137.14 505.026 293.574c12.572 37.994 17.872 72.092 18.756 103.346M384.054 736.2c0 81.208-27.656 152.466-68.938 191.396V668.058h-38.86v284.88c-16.192 7.606-53.07 8.33-69.05 0v-284.88h-38.82v259.538C127.122 888.666 99.5 817.406 99.5 736.2c0-100.908 42.66-186.326 101.11-213.956 17.262-43.378 36.792-124.892 2.626-228.67C151.43 137.14 138.5-13.912 241.48-64.42v-.08h.452v.08c103.09 50.508 90.196 201.56 38.406 357.994-34.152 103.778-14.684 185.292 2.574 228.67 58.456 27.63 101.142 113.048 101.142 213.956",
46
+ glyphName: "food",
47
+ unicode: "O"
48
+ }), /*#__PURE__*/React.createElement("glyph", {
49
+ d: "M960 95.5H768v-64h256v256h-64zm-896 704h192v64H0v-256h64zm704 64v-64h192v-192h64v256zm-704-576H0v-256h256v64H64zm192 320v-320h512v320z",
50
+ glyphName: "fullscreen",
51
+ unicode: "P"
52
+ }), /*#__PURE__*/React.createElement("glyph", {
53
+ d: "M512.002-64C229.678-64 0 165.678 0 448s229.678 512 512.002 512S1024 730.324 1024 448c0-282.322-229.674-512-511.998-512m0 928.001C282.605 864.001 95.999 677.395 95.999 448c0-229.39 186.606-415.999 416.003-415.999 229.393 0 416.002 186.606 416.002 415.999S741.395 864.001 512.002 864.001m34.34-612.18c-12.181-10.857-27.307-18.444-34.483-16.391-6.641 1.89-10.516 7.927-9.216 13.907L600.59 513.5c8.071 33.571-13.983 64.072-60.804 67.963-49.176 0-121.696-42.677-165.874-96.801 0-6.466-1.431-22.519.177-32.164l58.77 57.716c12.143 10.857 26.195 18.482 33.39 16.41 7.194-2.053 11.126-8.947 8.789-15.374l-97.234-262.93c-11.195-30.749 9.982-60.928 61.587-67.786 75.591 0 120.518 41.75 164.664 95.858 0 6.499 2.639 23.499 1.019 33.158zm44.661 477.286c-37.214 0-67.358-22.073-67.358-54.66 0-32.592 30.144-54.66 67.358-54.66 37.14 0 67.286 22.07 67.286 54.66 0 32.587-30.146 54.66-67.286 54.66",
54
+ glyphName: "info",
55
+ unicode: "Q"
56
+ }), /*#__PURE__*/React.createElement("glyph", {
57
+ d: "m819.2 652.3-47.991-47.991 122.675-122.676H546.133V829.35l122.676-122.641L716.8 754.7 512 959.5 307.2 754.7l47.991-47.991L477.867 829.35V481.633H130.15l122.641 122.676L204.8 652.3 0 447.5l204.8-204.8 47.991 47.991L130.15 413.367h347.717V65.616L355.191 188.291 307.2 140.3 512-64.5l204.8 204.8-47.991 47.991L546.133 65.616v347.751h347.751L771.209 290.691 819.2 242.7 1024 447.5z",
58
+ glyphName: "move",
59
+ unicode: "R"
60
+ }), /*#__PURE__*/React.createElement("glyph", {
61
+ d: "M960 831.5H640c-35.392 0-64-28.608-64-64v-320c0-35.328 28.608-64 64-64s64 28.672 64 64v190.272c39.68-53.312 64-118.72 64-190.272 0-176.768-143.232-320-320-320s-320 143.232-320 320 143.232 320 320 320c35.392 0 64 28.672 64 64 0 35.392-28.608 64-64 64-247.424 0-448-200.576-448-448S200.576-.5 448-.5s448 200.576 448 448c0 95.36-30.272 183.36-81.088 256H960c35.392 0 64 28.672 64 64 0 35.392-28.608 64-64 64",
62
+ glyphName: "rotate",
63
+ unicode: "S"
64
+ }), /*#__PURE__*/React.createElement("glyph", {
65
+ d: "M512 862.881c-344.279 0-505.217-234.11-512-244.181l68.239-45.63C69.678 575.125 211.09 780.665 512 780.665s438.006-199.373 443.761-207.8l34.119 22.814 34.12 22.815c-6.783 10.277-167.721 244.387-512 244.387m13.566-157.443H293.717L106.059 322.722C162.377 69.497 422.179 32.5 496.585 32.5h29.803c75.433 0 335.03 37.203 390.526 290.222L731.517 705.438z",
66
+ glyphName: "seat",
67
+ unicode: "T"
68
+ }), /*#__PURE__*/React.createElement("glyph", {
69
+ d: "M163.325 958.678a43 43 0 0 1-5.331-2.636c-18.243-5.987-30.241-23.433-29.292-42.613V607.207C78.86 589.714 43.5 542.872 43.5 487.382c0-55.477 35.36-102.343 85.202-119.824V-21.219c-.457-32.794 34.751-53.802 63.387-37.809a42.61 42.61 0 0 1 21.827 37.809v388.777c49.854 17.481 85.214 64.347 85.214 119.824 0 55.49-35.36 102.332-85.214 119.825v306.222c2.285 28.12-22.894 50.65-50.591 45.273zm340.844 0c-1.84-.75-3.62-1.64-5.331-2.636-18.243-5.987-30.24-23.433-29.291-42.613V351.577c-49.842-17.493-85.203-64.347-85.203-119.825s35.361-102.344 85.203-119.836V-21.219c-.457-32.794 34.751-53.802 63.386-37.809a42.62 42.62 0 0 1 21.828 37.809v133.135c49.853 17.492 85.214 64.358 85.214 119.836s-35.361 102.332-85.214 119.825v561.852c2.284 28.12-22.894 50.65-50.592 45.273zm343.504 0a43 43 0 0 1-5.319-2.636c-18.255-5.987-30.252-23.433-29.292-42.613V695.081c-51.072-16.79-87.873-63.469-87.873-119.825s36.801-103.035 87.873-119.824V-21.219c-.468-32.794 34.74-53.802 63.375-37.809a42.62 42.62 0 0 1 21.828 37.809v476.651c48.635 18.137 82.554 65.225 82.554 119.824S946.9 676.932 898.265 695.081v218.348c2.284 28.12-22.894 50.65-50.592 45.273zm5.331-340.844c24.054 0 42.601-18.536 42.601-42.601 0-24.054-18.547-42.602-42.601-42.602-24.066 0-42.613 18.548-42.613 42.602 0 24.065 18.547 42.601 42.613 42.601M171.315 529.96c24.054 0 42.601-18.547 42.601-42.601s-18.547-42.601-42.601-42.601-42.613 18.547-42.613 42.601 18.559 42.601 42.613 42.601M512.16 274.33c24.054 0 42.601-18.547 42.601-42.601s-18.547-42.602-42.601-42.602c-24.066 0-42.613 18.548-42.613 42.602s18.547 42.601 42.613 42.601",
70
+ glyphName: "settings",
71
+ unicode: "U"
72
+ }), /*#__PURE__*/React.createElement("glyph", {
73
+ d: "M124.512 381.529v.848H0v-257.61h251.52zM0-26.617c0 .062 1.213 1.112 1.213 1.112h.013C1.226-44.826 18.129-62 38.953-62h9.385c20.841 0 37.721 15.373 37.736 34.327C86.087-46.627 102.975-62 123.816-62h9.383c20.832 0 37.73 15.373 37.736 34.327C170.948-46.627 187.839-62 208.671-62h9.383c17.694 0 33.118 12.337 37.411 27.298V90.419H0zm961.744 408.146L768.593 124.767H1024v257.61h-62.256zM768.537-33.779C772.83-49.208 788.149-62 806.208-62h9.39c20.832 0 37.722 15.373 37.727 34.327C853.331-46.627 870.235-62 891.067-62h9.377c20.84 0 37.727 15.373 37.742 34.327C938.199-46.627 955.081-62 975.921-62h9.384c20.83 0 37.727 17.174 37.733 36.495h.007s.953-1.048.953-1.112V90.419H768.537zm232.332 991.485H25.482C12.503 957.706 0 947.351 0 934.369V429.606h127.908c16.3 40.788 228.07 384.268 250.07 480.872h262.597c28.632-96.604 304.113-440.084 320.691-480.872H1024v504.763c0 12.982-10.152 23.337-23.131 23.337",
74
+ glyphName: "stage",
75
+ unicode: "V"
76
+ }), /*#__PURE__*/React.createElement("glyph", {
77
+ d: "M346.484 406.005H141.766L85.142 776.239c-4.355 23.956-26.134 39.201-47.912 34.846-23.957-2.178-39.201-23.957-37.024-47.913l63.158-400.724L37.23 133.775c-2.178-23.957 15.245-43.557 37.023-47.913 23.956-2.178 45.735 15.245 47.913 39.201l21.778 196.006h106.715l21.778-196.006c2.178-21.778 21.778-37.023 41.379-37.023h4.356c23.956 2.178 39.201 23.956 37.023 47.912l-21.778 187.295h8.711c23.956 0 43.557 19.601 43.557 43.557 4.356 21.779-15.245 39.201-39.201 39.201m640.286 405.08c-23.956 4.355-45.734-13.068-47.912-34.846l-56.624-370.234H677.516c-23.956 0-43.557-19.6-43.557-43.557s19.601-43.557 43.557-43.557h8.712l-21.779-187.294c-2.178-23.957 15.245-43.557 37.024-47.913 23.956-2.178 43.556 15.245 47.912 37.024l21.779 196.006h106.714l21.778-196.006c2.178-21.779 21.779-37.024 41.38-37.024h4.355c23.957 2.178 39.201 23.956 37.024 47.913l-21.779 230.851 63.158 398.546c2.177 26.134-13.067 47.913-37.024 50.091M705.828 593.3c23.957 0 43.557 19.601 43.557 43.557s-19.6 43.557-43.557 43.557H318.172c-23.957 0-43.557-19.601-43.557-43.557s19.6-43.557 43.557-43.557h150.271V129.419c0-23.956 19.601-43.557 43.557-43.557s43.557 19.601 43.557 43.557V593.3z",
78
+ glyphName: "table",
79
+ unicode: "W"
80
+ }), /*#__PURE__*/React.createElement("glyph", {
81
+ d: "M117.922 860.986c0-75.723 81.972-123.049 147.548-85.188 30.435 17.573 49.185 50.045 49.185 85.188 0 75.724-81.973 123.05-147.549 85.189a98.37 98.37 0 0 1-49.184-85.189m592.311 0c0-75.723 81.973-123.049 147.549-85.188 30.435 17.573 49.185 50.045 49.185 85.188 0 75.724-81.973 123.05-147.549 85.189a98.37 98.37 0 0 1-49.185-85.189M274.462 728.773H158.115c-46.731 0-84.615-37.883-84.615-84.614V386.08c0-11.655 17.764-20.396 44.424-26.238V-64.5h76.153v374.426h25.386V-64.498h76.153v420.899c36.878 5.564 63.463 15.438 63.463 29.679v258.077c0 46.733-37.886 84.616-84.617 84.616m592.309 0H750.424c-46.731 0-84.614-37.883-84.614-84.614V386.08c0-9.112 10.957-16.419 28.441-21.978-.57-2.464-.942-5.002-.942-7.638L659.463 197.81c0-18.694 15.153-33.847 33.846-33.847h16.924V-64.5h76.154v228.463h25.385V-64.5h76.154v228.463h23.269c18.693 0 33.846 15.153 33.846 33.847l-33.846 158.654c0 1.484-.252 2.9-.437 4.332 24.467 5.819 40.63 14.216 40.63 25.284v258.077c0 46.733-37.883 84.616-84.617 84.616M541.002-31.712c0-15.772-12.785-28.557-28.558-28.557s-28.558 12.785-28.558 28.557v954.044c0 15.773 12.786 28.558 28.558 28.558s28.558-12.785 28.558-28.558z",
82
+ glyphName: "toilet",
83
+ unicode: "X"
84
+ }), /*#__PURE__*/React.createElement("glyph", {
85
+ d: "M959.86 741.824c-3.072 50.24-44.384 90.112-95.36 90.112h-96V864c0 53.024-43.008 96-96 96h-320c-53.024 0-96-42.976-96-96v-32.032h-96c-51.04 0-92.32-39.872-95.392-90.112H64.5V672c0-35.328 28.672-64 64-64V64c0-70.688 57.312-128 128-128h512c70.688 0 128 57.312 128 128v544c35.328 0 64 28.672 64 64v69.824zM320.5 863.968c0 17.696 14.304 32 32 32h320c17.696 0 32-14.304 32-32v-32h-384zm512-800c0-35.264-28.736-64-64-64h-512c-35.296 0-64 28.736-64 64v544h640zM896.5 704v-32h-768v63.968c0 17.696 14.304 32 32 32h704c17.696 0 32-14.304 32-32zm-608-640.16h64c17.696 0 32 14.304 32 32v416c0 17.696-14.304 32-32 32h-64c-17.696 0-32-14.304-32-32v-416c0-17.696 14.304-32 32-32m0 448.032h64v-416h-64zm192-448.032h64c17.696 0 32 14.304 32 32v416c0 17.696-14.304 32-32 32h-64c-17.696 0-32-14.304-32-32v-416c0-17.696 14.304-32 32-32m0 448.032h64v-416h-64zm192-448.032h64c17.696 0 32 14.304 32 32v416c0 17.696-14.304 32-32 32h-64c-17.696 0-32-14.304-32-32v-416c0-17.696 14.304-32 32-32m0 448.032h64v-416h-64z",
86
+ glyphName: "trash",
87
+ unicode: "Y"
88
+ }), /*#__PURE__*/React.createElement("glyph", {
89
+ d: "M320.093 177.627c50.92-37.707 111.693-42.56 175.907-42.547 64.213-.013 124.987 4.84 175.907 42.547 96.853 71.707 160.4 222.68 160.4 368.413 0 105.44-1.573 231.187-56.907 303.4C714 929.547 595 951.587 496 952.32c-99-.733-218-22.76-279.387-102.867-55.347-72.213-56.907-197.973-56.907-303.4-.013-145.747 63.533-296.72 160.387-368.427zm620.854 119.186C816.774 80.093 496 80.093 496 80.093s-320.773 0-444.947 216.72c-10.347 21.667-81.787.96-35.72-91.627 0 0 90.04-247.453 480.667-262.813 395.773 7.653 480.667 262.813 480.667 262.813 46.067 92.587-25.373 113.307-35.72 91.627",
90
+ glyphName: "chair2",
91
+ horizAdvX: 992,
92
+ unicode: "\\uE900"
93
+ }), /*#__PURE__*/React.createElement("glyph", {
94
+ d: "M819.2 891.233H68.267V3.766h887.467v750.933zm-443.733-68.266h273.067v-204.8H375.467zM750.933 72.033H273.066v341.333h477.867zm136.534 0H819.2v409.6H204.8v-409.6h-68.267v750.933H307.2V549.899h409.6v273.067h74.138l96.529-96.529zM512 652.3h68.267v136.533H512zm170.667-307.2H341.334v-68.267h341.333zm0-136.533H341.334V140.3h341.333z",
95
+ glyphName: "save",
96
+ unicode: "\\uE901"
97
+ }), /*#__PURE__*/React.createElement("glyph", {
98
+ d: "M753.072 731.724H595.536c-23.828 0-43.152-19.32-43.152-43.152s19.32-43.152 43.152-43.152H709.92V531.036c0-23.832 19.32-43.152 43.152-43.152s43.152 19.32 43.152 43.152v157.536c0 23.832-19.32 43.152-43.152 43.152m-324.612 0H270.928c-23.828 0-43.152-19.32-43.152-43.152V531.04c0-23.832 19.32-43.152 43.152-43.152s43.152 19.32 43.152 43.152v114.384h114.384c23.828 0 43.152 19.32 43.152 43.152-.004 23.828-19.324 43.148-43.156 43.148m324.612-324.612c-23.828 0-43.152-19.32-43.152-43.152V249.576H595.536c-23.828 0-43.152-19.32-43.152-43.152s19.32-43.152 43.152-43.152h157.536c23.828 0 43.152 19.32 43.152 43.152v157.532c0 23.836-19.32 43.156-43.152 43.156M428.46 249.576H314.076V363.96c0 23.832-19.32 43.152-43.152 43.152s-43.152-19.32-43.152-43.152V206.428c0-23.832 19.32-43.152 43.152-43.152H428.46c23.828 0 43.152 19.32 43.152 43.152s-19.32 43.148-43.152 43.148",
99
+ glyphName: "caption",
100
+ unicode: "\\uE902"
101
+ }), /*#__PURE__*/React.createElement("glyph", {
102
+ d: "M1089.983 743.402v192.3c-1.498 13.314-12.694 23.568-26.285 23.568q-1.929-.002-3.783-.269l-175.213.017c-.713.103-1.536.161-2.372.161-9.071 0-16.534-6.882-17.452-15.71a21 21 0 0 1 .015-7.898l-.021-71.381h-639.76v71.668c0 13.276-10.762 24.038-24.038 24.038q-.697 0-1.386-.039l-1.859.003H22.355c-.765.106-1.648.167-2.545.167-10.432 0-18.947-8.203-19.447-18.511a23.377 23.377 0 0 1 .01-5.808L.361 743.522a26 26 0 0 1-.335-4.232c0-13.031 9.258-23.9 21.555-26.387l48.248-.029v-530.99H22.355c-.363.023-.786.035-1.213.035-11.242 0-20.401-8.922-20.78-20.072a24.42 24.42 0 0 1 .008-4.946L.361-35.296a25 25 0 0 1-.312-3.976c0-12.311 8.731-22.583 20.339-24.961l1.967-.028h175.474c15.281 1.039 27.283 13.689 27.283 29.142v65.446h640v-65.623c0-15.745 5.168-29.206 19.591-29.206h175.354c15.983.72 28.809 13.297 29.921 29.106l.006 192.4c-1.337 14.073-13.096 24.994-27.407 24.994a28 28 0 0 1-2.631-.124l-62.868.008-5.048 530.749h68.026c16.202 1.444 28.942 14.473 29.922 30.677zM52.162 769.603V901.81h121.029V769.603zM173.191-7.651H52.162v132.207h121.029zm691.921 164.777v-70.31h-640v70.31c-.195 13.856-11.473 25.013-25.357 25.013q-.445 0-.886-.015l-77.478.001v530.509h76.439c15.417 1.752 27.284 14.721 27.284 30.463l-.002.322v64.524h640v-64.06c0-15.745 5.168-30.768 19.591-30.768h55.527l5.048-530.749h-60.094c-.254.012-.551.019-.85.019-10.349 0-18.777-8.227-19.1-18.498a22.5 22.5 0 0 1-.108-6.877zm172.95-32.09V-7.171H917.033v132.207h34.614v3.365l20.071-3.365zm0 644.447h-51.921v2.404l-20.552-2.644h-48.075V901.45h120.548z",
103
+ glyphName: "resize",
104
+ horizAdvX: 1090,
105
+ unicode: "\\uE903"
106
+ }), /*#__PURE__*/React.createElement("glyph", {
107
+ d: "M195.599 882.7H828.3c37.199 0 67.699-30.226 67.699-67.438V720.05c0-37.212-30.5-67.75-67.699-67.75h-18.45c-37.202 0-67.451 30.538-67.451 67.75v9.05H616.9c-15.501 0-28.201-12.543-28.201-28.069l.049-481.222c0-15.511 12.651-28.309 28.152-28.309h6.648c37.199 0 67.651-29.975 67.651-67.2v-18.511c0-37.215-30.451-67.889-67.651-67.889H400.349c-37.202 0-67.55 30.674-67.55 67.889V124.3c0 37.225 30.349 67.2 67.55 67.2h6.648c15.501 0 28.201 13.025 28.201 28.536v481.075c0 15.526-12.7 27.988-28.201 27.988H281.598v-9.05c0-37.212-30.349-67.75-67.6-67.75h-18.401c-37.199 0-67.599 30.538-67.599 67.75v95.212c0 37.212 30.349 67.438 67.599 67.438z",
108
+ glyphName: "text",
109
+ unicode: "\\uE904"
110
+ }), /*#__PURE__*/React.createElement("glyph", {
111
+ d: "M572.508 297.525c-55.173-19.169-98.755-34.304-172.564-34.304-211.21 0-323.963 41.882-368.558 63.877-4.321 2.13-9.615.532-11.889-3.727l-8.233-15.421c-2.273-4.26-.666-9.564 3.656-11.715 46.889-23.255 165.663-67.983 385.024-67.983 79.708 0 128.051 16.794 184.033 36.229 34.98 12.155 73.636 25.549 126.249 36.956v-55.706c0-7.25 5.868-13.107 13.107-13.107h277.32c7.229 0 13.107 5.857 13.107 13.107v117.944c-254.29-1.29-357.847-37.181-441.252-66.15m381.717 369.203c-72.1-16.394-90.675-103.793-155.126-103.793-144.22 0-91.781 91.771-156.242 91.771-20.214 0-41.902-8.847-64.389-23.101l21.78-21.78c.87.164 1.761.266 2.673.266 8.448 0 15.288-6.851 15.288-15.299s-6.84-15.288-15.288-15.288-15.299 6.84-15.299 15.288c0 .922.123 1.802.266 2.673l-24.136 24.136c-10.312-7.434-20.756-15.821-31.273-24.863l22.333-22.333c.87.154 1.751.256 2.673.256 8.448 0 15.288-6.84 15.288-15.288s-6.84-15.299-15.288-15.299-15.299 6.851-15.299 15.299c0 .911.123 1.802.266 2.673l-23.122 23.122c-9.8-8.817-19.64-18.074-29.481-27.525l22.569-22.569c.87.154 1.761.256 2.673.256 8.448 0 15.299-6.84 15.299-15.288s-6.851-15.299-15.299-15.299-15.288 6.851-15.288 15.299c0 .911.113 1.802.256 2.673l-22.774 22.774c-9.574-9.318-19.108-18.719-28.59-27.955l22.651-22.651c.87.154 1.761.256 2.673.256 8.448 0 15.288-6.84 15.288-15.288s-6.84-15.299-15.288-15.299-15.299 6.851-15.299 15.299c0 .911.123 1.802.266 2.673l-22.835 22.835c-40.684-39.209-79.688-73.626-113.388-84.46-89.917-28.897-242.77 34.478-283.146-83.21 45.036-21.75 155.269-61.358 360.346-61.358 71.608 0 114.258 14.807 168.253 33.567 83.343 28.938 186.481 64.748 436.419 66.836 37.018 136.417-50.412 289.997-50.412 289.997z",
112
+ glyphName: "feet",
113
+ unicode: "\\uE905"
114
+ }), /*#__PURE__*/React.createElement("glyph", {
115
+ d: "M434.273 667.731c-.071-.001-.3-.036-.48-.04-1.756-.039-7.995-.189-11.4-.96-3.807-.862-7.611-2.035-10.96-4.04-5.009-2.999-9.234-7.283-13.12-11.64-3.243-3.636-5.725-7.887-8.4-11.96-1.075-1.637-2.464-3.168-3.04-5.04-.08-.258-.186-.49-.24-.76-62.514-.176-125.026-.62-187.52-2.04-37.524-1.254-74.335-20.105-94.88-51.96-8.804-10.268-14.428-22.397-16.96-35.52-14.636-39.506-8.382-82.567-9.72-123.8-1.243-32.881 5.663-65.95 20.56-95.2 17.32-27.299 43.213-51.653 76.32-56.6 46.381-9.643 94.152-4.167 141.16-5.76 23.708.053 47.411.036 71.12.04.041-.169.11-.316.16-.48.576-1.872 1.965-3.403 3.04-5.04 2.675-4.073 5.157-8.324 8.4-11.96 3.886-4.357 8.111-8.641 13.12-11.64 3.349-2.005 7.153-3.178 10.96-4.04 3.405-.771 9.644-.921 11.4-.96.79-.162 1.64-.022 2.2.4s.737.837.88 1.8-.001 1.379-.64 3.8-2.164 6.639-3.8 10.48-4.352 9.113-6.16 12.44a106 106 0 0 1-3 5.2c30.843-.014 61.677-.014 92.52-.04.108-.142.223-.295.36-.44.712-.75 1.746-1.744 3.72-2.44s2.074-.5 8.08-.8 21.223-.194 25.68.08 5.25.344 7.44 1.2c1.769.692 3.089 1.025 3.36 2.36 46.991-.012 94.01.042 141 .24 1.727-.586 2.118-.435 7.84-.72 6.006-.3 21.263-.194 25.72.08 3.675.226 4.871.333 6.4.84 38.825.243 77.658.61 116.48 1.16 27.148-.064 54.127 16.859 63.24 42.96 23.275 57.42 22.857 121.082 20.48 182.08-3.04 39.827-8.179 81.729-29.76 116.12-19.337 27.391-56.602 28.199-86.96 28.08-28.589.299-57.169.417-85.76.48-.971.129-2.157.239-4.12.36-4.457.274-19.714.38-25.72.08-3.942-.197-5.266-.196-6.32-.36-36.613.01-73.227-.079-109.84-.08-10.879-.059-21.762-.084-32.64-.12-.228 1.411-1.593 1.733-3.4 2.44-2.19.856-2.983.926-7.44 1.2s-19.674.38-25.68.08-6.106-.104-8.08-.8-3.008-1.69-3.72-2.44a5 5 0 0 1-.48-.56 951108 951108 0 0 1-92.52-.12c.942 1.515 1.91 3.174 3.12 5.4 1.808 3.327 4.524 8.599 6.16 12.44s3.162 8.059 3.8 10.48c.639 2.421.783 2.837.64 3.8s-.32 1.379-.88 1.8c-.383.289-.903.42-1.44.44a3 3 0 0 1-.28 0m105.16-34.16c1.139.012 2.432.012 3.68-.04-1.775-.004-3.545.004-5.32 0 .565.022 1.144.034 1.64.04m323.24-14.64c7.967.2 16.95-.994 21.8-3.48 11.873-6.086 18.994-15.461 21.76-28.68.903-4.315 3.053-10.584 4.76-13.96 5.077-10.043 9.749-24.563 9.32-28.92l-.4-4.04-3.96 3.72c-2.176 2.04-5.9 7.905-8.24 13.04-13.545 29.722-31.631 47.035-59.2 56.72-2.399.843-2.381.936-.12 2.6 2.517 1.852 8.083 2.844 14.28 3m-428.68-2.52c2.578.016 5.525.006 8.8 0 21.836-.042 58.204-.523 96.32-1.32l27.2-.56 10.6-16.64c5.822-9.134 10.754-17.48 10.96-18.56.37-1.937.272-1.933-8.2-1.8-4.722.074-17.031.426-27.32.8-29.066 1.056-73.887 5.715-102.2 10.6l-11.32 1.92-3.64 5.68c-2.004 3.111-5.733 8.549-8.28 12.12s-4.775 6.865-4.96 7.32c-.093.227 4.307.391 12.04.44m-255.16-.92c2.079 0 4.439.012 7.12 0 28.892-.119 34.05-2.338 23-9.8-6.384-4.311-47.486-29.277-64.12-38.96-14.143-8.233-19.714-12.976-26.04-22.16-2.546-3.697-6.414-7.544-8.64-8.6-4.135-1.962-10.583-2.537-12.04-1.08-.451.451-.84 4.07-.84 8.04 0 7.711 2.343 13.474 10.8 26.8 6.959 10.966 20.499 26.33 28.52 32.36 4.103 3.085 12.02 7.4 17.6 9.56 8.814 3.411 10.088 3.841 24.64 3.84m435-1.64c3.298.008 8.488-.118 16.52-.32 67.415-1.697 111.263-3.187 111.8-3.76.902-.96 3.4-16.426 3.4-21.08 0-7.251.566-7.046-24.44-8.36-16.733-.879-80.147-2.856-95.24-2.96-1.469-.01-3.082 2.904-9.32 16.8-4.147 9.239-7.831 17.504-8.16 18.36-.355.925-.056 1.307 5.44 1.32m168.68-9.68c1.455.047 3.258-.057 5.56-.24 9.021-.717 30.423-3.753 31.6-4.48 2.527-1.562-10.478-6.176-26.4-9.4-11.851-2.399-13.228-2.54-16.16-1.36-2.724 1.096-3.264 4.39-1.56 9.52 1.448 4.36 2.594 5.818 6.96 5.96m-477.44-7.48c3.85 0 110.025-23.346 128.44-28.24 12.415-3.3 35.229-11.009 50.68-17.12 35.156-13.905 53.14-18.64 70.88-18.64 13.504 0 14.284-.359 25.36-12.2l11.4-12.2v-121l-22.2-23.72-21.52-1.28c-16.973-.992-26.436-3.177-44.88-10.36-45.961-17.899-75.889-26.627-131.68-38.52-31.133-6.637-59.07-12.634-62.08-13.32-4.408-1.004-6.376.541-10.16 8-5.819 11.469-18.612 51.393-22.28 69.56-8.089 40.066-7.454 111.312 1.28 146.44 8.145 32.759 22.833 72.6 26.76 72.6m570.4-12.6c6.789.333 8.846-5.532 16.24-19.4 20.109-37.717 26.198-70.201 24.32-130-1.473-46.915-5.464-64.946-21.72-98-14.165-28.803-14.537-29-35.44-19.04-9.475 4.515-23.617 10.602-31.4 13.52s-14.16 5.751-14.16 6.28 3.86 8.586 8.56 17.92c14.753 29.295 19.589 52.583 19.44 93.64-.149 41.098-4.49 61.511-19.36 91.04-4.919 9.769-8.585 18.05-8.16 18.4s15.063 6.86 32.52 14.48c15.76 6.879 23.879 10.901 29.16 11.16m-774.44-221.8c.976.085 2.185-.083 3.68-.44 7.318-1.748 8.386-2.592 14.56-11.08 7.324-10.07 11.498-13.403 29.68-23.92 26.943-15.585 63.179-38.29 64.48-40.4 2.79-4.524-.53-5.28-25.44-5.56-20.568-.231-24.469.044-30.08 2.08-18.759 6.807-33.69 19.506-47.76 40.64-10.355 15.554-12.807 21.241-12.84 29.72-.024 6.214.791 8.704 3.72 8.96m818.88-6.44.36-3.68c.434-4.265-4.74-20.441-9.12-28.44-1.635-2.987-3.804-9.344-4.8-14.12-4.24-20.333-19.946-32.947-40.52-32.6-4.107.069-9.146.508-11.2 1s-4.804 1.504-6.12 2.24c-2.239 1.253-2.15 1.415 1.28 2.8 15.974 6.449 24.762 11.798 33.2 20.12 10.072 9.933 16.407 19.149 24.6 35.88 3.112 6.355 7.129 12.753 8.96 14.2zm-295.84-37.32 17.44-.2c21.171-.239 62.798-1.699 85.32-2.96 13.42-.752 16.717-1.181 17.6-2.32 1.5-1.935 1.342-9.576-.44-18.88l-1.52-7.8-3.92-.6c-3.798-.574-49.147-1.921-103.84-3.08-18.949-.401-26.798-.297-26.56.36.185.512 3.84 8.703 8.12 18.2zm-51.52-.36c9.389.016 15.48-.359 15.48-1.24 0-1.14-19.168-32.114-21.24-34.32-1.021-1.087-23.303-1.671-120.36-3.12l-25.4-.4 3.56 4.92c1.971 2.702 5.951 8.561 8.84 13 3.204 4.922 5.978 8.234 7.08 8.48 9.857 2.204 47.51 7.223 70.96 9.48 20.675 1.99 45.431 3.173 61.08 3.2m209.16-10.56c3.618-.05 8.754-.932 15.76-2.52 17.549-3.976 26.412-7.896 20.56-9.12-5.641-1.18-22.221-3.211-30.44-3.72l-8.84-.52-1.76 2.88c-.964 1.586-2.005 4.415-2.32 6.28-.788 4.667 1.01 6.804 7.04 6.72",
116
+ glyphName: "car",
117
+ unicode: "\\uE906"
118
+ }), /*#__PURE__*/React.createElement("glyph", {
119
+ d: "M832.512 697.356H687.104L788.48 795.66c6.144 6.144 6.144 15.36 0 21.504s-15.36 6.144-21.504 0L643.072 697.356h-450.56c-6.144 0-12.288-4.096-14.336-9.216s-1.024-12.288 4.096-16.384l315.392-302.08V104.46H358.4c-8.192 0-15.36-7.168-15.36-15.36s7.168-15.36 15.36-15.36h307.2c8.192 0 15.36 7.168 15.36 15.36s-7.168 15.36-15.36 15.36H527.36v265.216l315.392 302.08c4.096 4.096 6.144 11.264 4.096 16.384s-8.192 9.216-14.336 9.216m-222.208-30.72-46.08-44.032c-11.264 9.216-26.624 13.312-41.984 13.312-41.984 0-76.8-34.816-76.8-76.8 0-14.336 4.096-28.672 11.264-39.936l-8.192-7.168c-4.096-3.072-6.144-7.168-6.144-13.312s4.096-11.264 9.216-14.336c2.048-1.024 4.096-1.024 6.144-1.024h1.024c2.048 0 4.096 1.024 5.12 1.024 2.048 1.024 4.096 3.072 6.144 5.12l7.168 7.168c12.288-9.216 27.648-14.336 45.056-14.336 36.864 0 68.608 26.624 74.752 61.44H665.6L512 396.3 230.4 666.636zM476.16 559.116c0 25.6 20.48 46.08 46.08 46.08s46.08-20.48 46.08-46.08-20.48-46.08-46.08-46.08-46.08 21.504-46.08 46.08m220.16 14.336c-2.048 1.024-4.096 1.024-6.144 1.024h-93.184c-2.048 9.216-6.144 18.432-11.264 26.624l68.608 65.536H793.6zM355.328 631.82c-6.144 6.144-15.36 6.144-21.504 0s-6.144-15.36 0-21.504l47.104-45.056c3.072-3.072 7.168-4.096 10.24-4.096 4.096 0 8.192 2.048 11.264 5.12 6.144 6.144 6.144 15.36 0 21.504z",
120
+ glyphName: "drinks-2",
121
+ unicode: "\\uE907"
122
+ }), /*#__PURE__*/React.createElement("glyph", {
123
+ d: "M1384.472 129.426c-8.094 15.75-24.137 25.502-41.813 25.502H47.055c-17.676 0-33.719-9.752-41.813-25.502-8.094-15.726-6.729-34.45 3.56-48.859L63.927 3.426c30.379-42.545 79.701-67.925 131.95-67.925h997.961c52.248 0 101.571 25.381 131.95 67.925l55.125 77.141c10.289 14.409 11.654 33.134 3.56 48.859zm-67.901 74.264c0 308.224-221.135 565.614-513.048 622.202.439 3.901 1.048 7.826 1.048 11.703 0 67.218-54.686 121.905-121.905 121.905s-121.905-54.686-121.905-121.905c0-3.877.61-7.802 1.048-11.703C269.896 769.304 48.761 511.914 48.761 203.69v-24.381h1267.81zM609.67 833.402a61 61 0 0 0-.146 4.194c0 40.326 32.817 73.143 73.143 73.143s73.143-32.817 73.143-73.143c0-1.39-.049-2.779-.146-4.194-1.146.146-2.292.171-3.438.317-8.363.902-16.823 1.56-25.307 2.17-3.121.219-6.217.536-9.338.707-11.557.634-23.186 1-34.914 1s-23.357-.366-34.914-1c-3.121-.171-6.217-.488-9.338-.707-8.485-.61-16.945-1.268-25.307-2.17-1.146-.146-2.292-.171-3.438-.317M443.002 627.431C328.095 559.359 244.37 435.772 219.039 296.825c-2.146-11.752-12.41-19.992-23.966-19.992-1.463 0-2.926.122-4.389.414-13.263 2.389-22.04 15.092-19.627 28.355 27.843 152.6 120.222 288.622 247.077 363.788 11.63 6.851 26.551 3.023 33.402-8.558 6.875-11.581 3.048-26.551-8.533-33.402zm239.665 63.879h-.317c-36.474 0-72.728-3.998-107.788-11.898a24 24 0 0 0-5.388-.585c-11.142 0-21.187 7.68-23.747 19.017-2.974 13.141 5.266 26.185 18.432 29.135 38.546 8.704 78.434 13.093 118.491 13.093 13.897.463 24.698-10.825 24.698-24.405 0-13.458-10.923-24.357-24.381-24.357",
124
+ glyphName: "food-2",
125
+ horizAdvX: 1390,
126
+ unicode: "\\uE908"
127
+ }), /*#__PURE__*/React.createElement("glyph", {
128
+ d: "M951.454 805.032c5.126 5.156 27.312 27.376-29.626 84.282-56.876 56.938-79.126 34.75-84.25 29.626-1.25-1.25-8.5-8.438-18.25-18.218l-11.376 11.406c-6.31 6.282-16.5 6.282-22.81 0-6.25-6.312-6.25-16.5 0-22.812l11.376-11.376c-7.438-7.468-15.188-15.188-22.75-22.782l-11.376 11.376a16.11 16.11 0 0 1-22.812 0c-6.25-6.282-6.25-16.468 0-22.782l11.376-11.376c-3.25-3.25-6.5-6.5-9.188-9.218-8.876-8.844-15.626-19.718-19.562-31.626l-16.75-50.282L570.83 606.688c-90.876 77.75-152.688 76.876-187.312 42.25-40.75-40.688-21.876-67.688-60.626-106.438-51.312-51.312-151.126-13.594-233.438-95.938-88-87.938-79.75-192.812 58.5-331.094C286.266-22.816 391.142-31.032 479.08 56.934c82.312 82.344 44.626 182.126 95.938 233.44 38.75 38.782 65.75 19.906 106.438 60.626 34.626 34.626 35.5 96.438-42.25 187.312l134.626 134.626 50.188 16.718c12 3.968 22.75 10.656 31.688 19.594 2.69 2.688 5.94 5.938 9.19 9.188l11.376-11.376c6.312-6.282 16.5-6.282 22.812 0a16.11 16.11 0 0 1 0 22.812L887.71 741.25 910.46 764l11.376-11.376c6.312-6.282 16.5-6.282 22.812 0a16.11 16.11 0 0 1 0 22.812l-11.376 11.376c9.744 9.75 16.932 17 18.182 18.22M377.39 180.844c-3.688-3.656-8.5-5.656-13.688-5.656-5.126 0-10 2-13.626 5.656L213.388 317.532c-7.562 7.534-7.562 19.784 0 27.312 3.626 3.656 8.5 5.656 13.626 5.656 5.188 0 10-2 13.688-5.656L377.39 208.156c7.5-7.532 7.5-19.782 0-27.312M513.64 363.5c-32.5-32.5-85.126-32.5-117.626 0-32.5 32.468-32.5 85.126 0 117.626s85.126 32.5 117.626 0 32.5-85.158 0-117.626m302 441.594L801.014 790.5c-2.438-2.5-6.438-2.5-8.938 0l-14.626 14.594c-1.188 1.218-1.876 2.812-1.876 4.5s.688 3.282 1.876 4.468l14.626 14.626c2.5 2.5 6.5 2.5 8.938 0l14.626-14.626c1.188-1.188 1.876-2.782 1.876-4.468s-.688-3.282-1.876-4.5m45.564-45.532-14.626-14.626c-1.188-1.188-2.75-1.876-4.438-1.876-1.69 0-3.312.688-4.5 1.876l-14.626 14.626a6.263 6.263 0 0 0 0 8.938l14.626 14.626a6.39 6.39 0 0 0 4.5 1.876c1.688 0 3.25-.688 4.438-1.876l14.626-14.626a6.263 6.263 0 0 0 0-8.938m0 91.094-14.626-14.594a6.13 6.13 0 0 0-4.438-1.876c-1.69 0-3.312.656-4.5 1.876l-14.626 14.562c-2.5 2.5-2.5 6.5 0 9l14.626 14.626c2.5 2.468 6.5 2.468 8.938 0l14.626-14.626c2.5-2.5 2.5-6.5 0-8.968m45.562-45.562L892.14 790.5c-2.5-2.5-6.5-2.5-8.94 0l-14.626 14.594c-1.188 1.218-1.876 2.812-1.876 4.5s.69 3.282 1.876 4.468l14.626 14.626c2.44 2.5 6.44 2.5 8.94 0l14.626-14.594c1.188-1.218 1.876-2.812 1.876-4.5s-.688-3.282-1.876-4.5",
129
+ glyphName: "music",
130
+ unicode: "\\uE909"
131
+ }), /*#__PURE__*/React.createElement("glyph", {
132
+ d: "m944.8 384.3 70.4 268.8c2.4 10.4-3.2 21.6-14.4 24-10.4 2.4-21.6-3.2-24-14.4l-67.2-253.6h-248c-11.2 0-20-8.8-20-20s8.8-20 20-20h52.8l-56-123.2c-4.8-9.6 0-21.6 9.6-26.4 2.4-.8 5.6-1.6 8-1.6 7.2 0 14.4 4 17.6 11.2l63.2 140h96.8l63.2-140c3.2-7.2 10.4-11.2 17.6-11.2 2.4 0 5.6.8 8 1.6 9.6 4.8 14.4 16 9.6 26.4l-56 123.2h28c10.4 0 18.4 6.4 20.8 15.2m-582.4 24H113.6L46.4 662.7c-2.4 10.4-13.6 16.8-24 14.4S5.6 663.5 8 653.1l70.4-268.8c2.4-8.8 10.4-14.4 19.2-14.4h28l-56-123.2c-4.8-9.6 0-21.6 9.6-26.4 2.4-.8 5.6-1.6 8-1.6 7.2 0 14.4 4 17.6 11.2l63.2 140h96.8l63.2-140c3.2-7.2 10.4-11.2 17.6-11.2 2.4 0 5.6.8 8 1.6 9.6 4.8 14.4 16 9.6 26.4l-56 123.2H360c11.2 0 20 8.8 20 20s-6.4 18.4-17.6 18.4m194.4 194.4H808v73.6H216v-73.6h251.2V256.3h-44.8v-28h179.2v28h-44.8z",
133
+ glyphName: "table-2",
134
+ unicode: "\\uE90A"
135
+ }), /*#__PURE__*/React.createElement("glyph", {
136
+ d: "M701.056 95.156C643.948-3.584 538.692-64.5 424.156-64.5c-176.732 0-320 143.264-320 319.996 0 115.128 60.992 219.772 160.156 277.024a328 328 0 0 0 28.036 14.424l13.916-82.204c-.756-.424-1.512-.852-2.26-1.288C230.096 420.784 184.16 341.06 184.16 255.496c0-132.56 107.436-240 240-240 104.172 0 196.168 67.084 228.272 165.74zM392.168 691.5c-35.344 0-64-28.656-64-64.004 0-5.116.92-10.032 1.744-14.868l52.108-307.764c7.168-42.332 43.676-73.36 86.64-73.36h210.496l121.5-215.056c17.3-30.628 56.092-41.508 86.752-24.248 28.012 15.768 39.472 49.568 28.08 78.68L811.604 336.34c-8.476 21.64-22.836 39.364-41.044 51.776-12.448 8.488-26.46 14.42-41.396 17.348 10.092 8.504 17.248 20.588 19.304 34.676 4.468 30.572-16.688 58.964-47.252 63.44l-144.532 21.116C529.86 611.46 483.7 691.5 392.168 691.5m108 148c0-66.272-53.724-120.004-120-120.004-66.272 0-120 53.732-120 120.004s53.728 120 120 120c66.276 0 120-53.728 120-120",
137
+ glyphName: "disability",
138
+ unicode: "\\uE90B"
139
+ }), /*#__PURE__*/React.createElement("glyph", {
140
+ d: "M1592.889 561.278H1536v113.778c0 62.805-50.972 113.778-113.778 113.778-20.821 0-40.107-5.973-56.889-15.758v72.647c0 62.805-50.972 113.778-113.778 113.778s-113.778-50.972-113.778-113.778V561.279H568.888v284.444c0 62.805-50.972 113.778-113.778 113.778s-113.778-50.972-113.778-113.778v-72.647c-16.782 9.785-36.068 15.758-56.889 15.758-62.805 0-113.778-50.972-113.778-113.778V561.278h-56.889C50.971 561.278-.002 510.306-.002 447.5S50.97 333.722 113.776 333.722h56.889V219.944c0-62.805 50.972-113.778 113.778-113.778 20.821 0 40.107 5.973 56.889 15.758V49.277c0-62.805 50.972-113.778 113.778-113.778S568.888-13.529 568.888 49.277v284.444h568.889V49.277c0-62.805 50.972-113.778 113.778-113.778s113.778 50.972 113.778 113.778v72.647c16.782-9.785 36.068-15.758 56.889-15.758 62.805 0 113.778 50.972 113.778 113.778v113.778h56.889c62.805 0 113.778 50.972 113.778 113.778s-50.972 113.778-113.778 113.778M170.667 390.611h-56.889c-31.346 0-56.889 25.543-56.889 56.889s25.543 56.889 56.889 56.889h56.889zm113.777-227.555c-31.346 0-56.889 25.486-56.889 56.889v455.111c0 31.346 25.543 56.889 56.889 56.889s56.889-25.543 56.889-56.889V219.945c0-31.403-25.543-56.889-56.889-56.889M512 49.278c0-31.403-25.543-56.889-56.889-56.889s-56.889 25.486-56.889 56.889v796.444c0 31.346 25.543 56.889 56.889 56.889S512 877.068 512 845.722zm625.778 341.333H568.889v113.778h568.889zm170.666-341.333c0-31.403-25.486-56.889-56.889-56.889s-56.889 25.486-56.889 56.889v796.444c0 31.346 25.486 56.889 56.889 56.889s56.889-25.543 56.889-56.889zm170.667 170.666c0-31.403-25.486-56.889-56.889-56.889s-56.889 25.486-56.889 56.889v455.111c0 31.346 25.486 56.889 56.889 56.889s56.889-25.543 56.889-56.889zm113.778 170.667H1536v113.778h56.889c31.403 0 56.889-25.543 56.889-56.889s-25.486-56.889-56.889-56.889",
141
+ glyphName: "gym",
142
+ horizAdvX: 1707,
143
+ unicode: "\\uE90C"
144
+ }), /*#__PURE__*/React.createElement("glyph", {
145
+ d: "M853.421 945.48c-32.156 0-62.603-11.126-87.853-29.889l-61.801 37.108c-23.088 13.916-55.941 5.72-69.787-17.403-14.369-24.03-6.557-55.314 17.403-69.752l137.029-82.343c7.952-4.743 16.985-7.254 26.192-7.254 18.031 0 34.318 9.207 43.63 24.692 14.369 24.03 6.557 55.314-17.403 69.752l-42.514 25.494c16.671 9.417 35.539 14.683 55.104 14.683 62.498 0 113.348-50.849 113.348-113.348V-47.098c0-9.626 7.812-17.438 17.438-17.438s17.438 7.812 17.438 17.438v844.353c0 81.715-66.509 148.224-148.224 148.224zM828.31 818.565c-4.464-7.359-14.648-9.87-21.972-5.476l-136.994 82.308c-7.533 4.534-10.009 14.404-5.476 21.972 2.895 4.848 8.022 7.743 13.706 7.743 2.895 0 5.72-.767 8.196-2.302l137.063-82.308c7.533-4.569 10.009-14.439 5.476-21.937zm-292.263-35.329c3.488 0 6.94 1.046 10.114 3.139 7.673 5.231 9.73 16.043 4.534 24.065-5.58 8.022-16.427 10.114-24.413 4.534-8.022-5.231-9.765-16.043-4.534-24.065 3.488-5.231 8.719-7.673 14.299-7.673M142.609 511.201c8.022 5.231 10.114 16.043 4.534 24.065s-16.392 10.114-24.065 4.534c-8.022-5.231-10.114-16.043-4.883-24.065 3.488-4.883 9.068-7.673 14.648-7.673 3.522 0 6.661 1.046 9.765 3.139zm335.892 232.625c3.488 0 6.975 1.046 9.765 3.139 8.022 5.231 10.114 16.043 4.883 24.065-5.58 8.022-16.392 10.114-24.413 4.534-8.022-5.231-10.114-16.043-4.534-24.065 3.488-4.883 8.719-7.673 14.299-7.673M7.673 461.328c-8.022-5.58-10.114-16.392-4.534-24.413 3.488-4.883 8.719-7.324 14.299-7.324 3.488 0 6.975.698 9.765 2.79 8.022 5.58 10.114 16.392 4.883 24.413-5.58 8.022-16.392 9.765-24.413 4.534m57.545 39.411c-8.022-5.58-9.765-16.392-4.534-24.413 3.488-4.883 9.068-7.673 14.648-7.673 3.139 0 6.626 1.046 9.765 3.139 8.022 5.58 9.765 16.392 4.534 24.065-5.58 8.056-16.392 10.149-24.413 4.883zm172.986 117.916c-8.022-5.58-10.114-16.392-4.534-24.413 3.488-4.883 8.719-7.673 14.299-7.673 3.488 0 6.975 1.046 9.765 3.139 8.022 5.58 10.114 16.392 4.883 24.065-5.58 7.987-16.392 10.079-24.413 4.883zm125.171 46.699c3.139 0 6.626.698 9.765 2.79 8.022 5.58 10.114 16.392 4.534 24.413-5.231 8.022-16.392 10.114-24.065 4.534-8.022-5.231-10.114-16.392-4.883-24.413 3.522-4.883 9.103-7.324 14.648-7.324zm-57.511-39.375c3.139 0 6.626 1.046 9.765 3.139 8.022 5.231 9.765 16.043 4.534 24.065-5.58 8.022-16.392 10.114-24.413 4.534-7.673-5.231-9.765-16.043-4.534-24.065 3.488-4.918 9.033-7.673 14.648-7.673m-105.675-75.716c8.022 5.58 10.114 16.392 4.534 24.413-5.231 8.022-16.043 10.114-24.065 4.534s-10.114-16.392-4.534-24.413c3.139-4.883 8.719-7.324 14.299-7.324 3.488.035 6.975.732 9.765 2.79zm393.718 272.034c3.139 0 6.626 1.046 9.765 3.139 7.987 5.58 10.114 16.392 4.534 24.065-5.58 8.022-16.392 10.114-24.413 4.883-7.673-5.58-9.73-16.392-4.534-24.413 3.522-4.883 9.068-7.673 14.648-7.673zM420.921 704.45c3.488 0 6.626 1.046 9.765 3.139 8.022 5.58 10.114 16.392 4.534 24.065-5.231 8.022-16.043 10.114-24.065 4.883-8.022-5.58-10.114-16.392-4.534-24.413 3.174-4.918 8.754-7.673 14.299-7.673zm-93.12-221.847c3.488-3.139 7.673-4.883 12.207-4.883s9.068 1.744 12.555 5.231c6.626 6.975 6.278 18.136-.349 24.762-6.975 6.626-18.136 6.626-24.762-.349-6.592-6.975-6.592-18.136.349-24.762zM182.054 356.735c-6.626-6.975-6.278-18.17.698-24.762 3.139-3.174 7.673-4.918 12.207-4.918s9.068 1.744 12.555 5.231c6.626 6.975 6.278 18.136-.698 24.762-7.01 6.626-17.822 6.626-24.762-.314zm-48.164-50.257c-6.626-6.975-6.626-18.136.349-24.762 3.488-3.139 7.673-4.883 12.207-4.883s9.068 1.744 12.555 5.197c6.626 6.975 6.278 18.17-.698 24.762-6.592 6.696-17.752 6.696-24.413-.314m96.607 100.444c-6.626-6.94-6.278-18.136.698-24.762 3.139-3.139 7.673-4.883 11.858-4.883 4.534 0 9.417 1.744 12.555 5.231 6.626 6.94 6.626 18.136-.349 24.727-6.94 6.661-18.136 6.661-24.762-.314zm73.24 50.57c-6.975 6.626-18.136 6.626-24.762-.349s-6.278-18.136.349-24.762c3.488-3.139 8.022-4.883 12.207-4.883 4.534 0 9.068 1.744 12.555 5.231 6.661 6.975 6.661 18.17-.349 24.762zm278.312 271.337c4.534 0 9.068 1.744 12.555 5.231 6.592 6.975 6.592 18.136-.384 24.762-6.94 6.626-18.136 6.626-24.727-.349-6.626-6.975-6.313-18.136.349-24.762 3.488-3.104 8.022-4.883 12.207-4.883zM376.314 532.825c3.488-3.139 7.673-4.883 12.207-4.883s9.068 1.744 12.555 5.231c6.626 6.975 6.278 18.136-.349 24.762-6.975 6.626-18.136 6.626-24.762-.349-6.661-6.975-6.661-18.101.349-24.762zm254.213 246.226c4.569 0 9.103 1.744 12.555 5.231 6.626 6.975 6.278 18.136-.349 24.762-6.975 6.626-18.17 6.278-24.762-.349-6.626-6.975-6.626-18.136.349-24.762 3.488-3.139 7.673-4.883 12.207-4.883zm-96.921-100.444c4.534 0 9.068 1.744 12.555 5.231 6.592 6.975 6.592 18.136-.384 24.762-6.94 6.626-18.136 6.278-24.762-.349-6.626-6.975-6.278-18.136.698-24.762 3.174-3.104 7.708-4.883 11.893-4.883zm-109.198-70.764c-6.975-6.975-6.626-18.136.349-24.762 3.488-3.139 7.673-4.883 12.207-4.883s9.068 1.744 12.555 5.231c6.626 6.975 6.278 18.136-.698 24.762-6.975 6.592-17.787 6.592-24.413-.349zm48.13 50.187c-6.626-6.975-6.278-18.136.698-24.762 3.139-3.139 7.673-4.883 11.858-4.883 4.883 0 9.417 1.744 12.555 5.231 6.975 6.975 6.626 18.136-.349 24.762-6.94 6.626-17.752 6.626-24.762-.349zM329.894 175.378c-8.37 5.197-18.833 2.406-23.716-5.929-5.231-8.022-2.441-18.833 5.929-23.751 2.79-1.744 5.929-2.79 8.719-2.79 5.929 0 11.858 3.174 14.997 8.719 4.918 8.022 2.476 18.833-5.929 23.751m299.621 532.176c-5.231-8.37-2.441-18.833 5.929-23.716 2.79-1.744 5.929-2.79 8.719-2.79 5.929 0 11.858 3.139 14.997 8.719 4.883 8.022 2.441 18.833-5.929 23.716-8.022 5.231-18.868 2.441-23.716-5.929m-35.922-59.638c-5.231-8.37-2.441-19.182 5.929-24.065 2.79-1.744 5.929-2.441 8.719-2.441 5.929 0 11.858 3.139 14.997 8.37 4.918 8.37 2.441 19.182-5.929 24.065s-18.868 2.093-23.716-5.929m86.493 93.12c5.929 0 11.858 2.79 14.997 8.37 5.197 8.37 2.441 18.833-5.929 24.065-8.022 4.883-18.833 2.093-23.751-6.278-5.197-8.022-2.406-18.833 5.964-23.716 2.755-1.744 5.929-2.441 8.719-2.441M365.851 235.331c-8.022 4.883-18.833 2.441-24.065-5.929-4.883-8.37-2.093-19.182 6.278-24.065 2.79-1.744 5.58-2.406 8.719-2.406 5.929 0 11.858 3.139 14.997 8.335 4.848 8.37 2.406 19.217-5.929 24.065m71.81 119.625c-8.37 4.918-18.833 2.127-24.065-6.278-4.883-7.987-2.093-18.833 6.278-23.716 2.79-1.744 5.929-2.441 8.719-2.441 5.929 0 11.858 2.79 14.997 8.37 4.883 8.405 2.476 18.868-5.929 24.065m-35.887-59.987c-8.37 5.231-18.833 2.441-23.716-5.929-5.231-8.37-2.441-18.833 5.929-23.716 2.79-1.779 5.929-2.79 8.719-2.79 5.929 0 11.858 3.139 14.997 8.719 5.197 8.022 2.441 18.868-5.929 23.716m143.69 239.251c-7.987 4.883-18.833 2.093-23.716-5.929-5.231-8.37-2.441-19.182 5.929-24.065 2.79-1.744 5.929-2.441 8.719-2.441 5.929 0 11.858 3.139 14.997 8.37 4.883 8.37 2.441 19.217-5.929 24.065m18.135 29.644c2.79-1.395 5.929-2.441 8.719-2.441 5.929 0 11.858 3.139 14.997 8.719 5.197 8.022 2.406 18.833-5.929 23.716-8.37 4.883-18.833 2.441-23.716-5.929-5.231-8.022-2.441-18.833 5.929-24.065m-54.093-89.283c-8.37 4.883-18.833 2.093-23.716-6.278-5.231-8.022-2.441-18.833 5.929-23.716 2.79-1.744 5.929-2.441 8.719-2.441 5.929 0 11.858 2.79 14.997 8.37 5.266 8.022 2.476 18.833-5.929 24.065m-35.887-59.987c-8.022 4.883-18.833 2.441-23.716-5.929-5.231-8.37-2.441-19.182 5.929-24.099 2.79-1.36 5.929-2.406 8.719-2.406 5.929 0 11.858 3.139 14.997 8.37a17.273 17.273 0 0 1-5.929 24.065zm259.793-231.578a17.344 17.344 0 0 1-19.182-15.346 17.344 17.344 0 0 1 15.346-19.182c.698 0 1.011-.349 1.744-.349 8.719 0 16.392 6.626 17.438 15.694 1.081 9.417-5.894 18.136-15.346 19.182zm15.38 138.843c-9.765 1.011-18.17-5.964-19.182-15.346-1.046-9.765 5.545-18.136 15.311-19.531h1.744c8.719 0 16.427 6.592 17.438 15.659 1.046 9.451-5.929 18.17-15.311 19.217zm15.311 138.458c-9.73 1.046-18.45-5.929-19.182-15.346-1.395-9.417 5.58-18.136 15.346-19.182h1.744c8.719 0 16.392 6.626 17.438 15.346 1.081 9.765-5.894 18.101-15.346 19.182m-7.673-69.439c-9.765 1.395-18.136-5.58-19.182-15.311-1.046-9.451 5.58-18.17 15.311-19.217h1.779c8.719 0 16.392 6.626 17.438 15.346 1.046 9.765-5.894 18.136-15.346 19.182M718.101 44.593c-9.451 1.011-18.17-5.929-19.217-15.694-1.011-9.451 5.964-18.17 15.346-19.182h2.093c8.719 0 16.078 6.592 17.089 15.311 1.081 9.765-5.58 18.484-15.311 19.566zm7.673 69.02c-9.451 1.046-18.17-5.58-19.182-15.311-1.046-9.451 5.929-18.17 15.311-19.182h2.127c8.719 0 16.043 6.592 17.089 15.311 1.011 9.8-5.58 18.17-15.346 19.182zm68.671 623.935c-9.417 1.046-18.136-5.58-19.182-15.346-1.046-9.417 5.929-18.136 15.346-19.182h2.093c8.719 0 16.392 6.626 17.438 15.346 1.081 9.765-5.894 18.484-15.694 19.182zM771.81 529.686c-9.765 1.046-18.484-5.929-19.566-15.346-1.046-9.765 5.929-18.136 15.694-19.182.349 0 1.046-.349 1.744-.349 8.719 0 16.392 6.626 17.438 15.694 1.081 9.417-5.929 18.136-15.311 19.182zm14.997 138.807c-9.451 1.046-18.17-5.929-19.182-15.694-1.046-9.417 5.929-18.136 15.311-19.182h2.127c8.719 0 16.392 6.626 17.438 15.694 1.011 9.417-5.929 18.136-15.694 19.182m-7.324-69.369c-9.765 1.046-18.484-5.929-19.566-15.346-1.011-9.765 5.964-18.484 15.346-19.531h2.093c8.719 0 16.427 6.626 17.438 15.694 1.046 9.382-5.929 18.101-15.311 19.182zm-38.364-346.669c-9.765 1.046-18.17-5.929-19.217-15.346-1.011-9.73 5.929-18.136 15.346-19.182.698-.349 1.046-.349 1.744-.349 8.719 0 16.392 6.592 17.438 15.694 1.081 9.382-5.894 18.101-15.311 19.182zm-150.002 32.4c-9.068 2.79-18.798-2.093-21.972-11.16-2.755-9.417 2.127-19.182 11.509-21.972 1.779-.698 3.522-1.011 5.231-1.011 7.324 0 14.299 4.883 16.706 12.207 2.825 9.033-2.023 18.798-11.474 21.937zm21.623 66.3c-9.068 2.79-18.833-2.127-21.972-11.16-2.79-9.068 2.127-19.182 11.16-21.972 2.093-.732 3.802-1.046 5.58-1.046 7.324 0 14.264 4.918 16.392 12.242 3.139 9.033-1.709 18.798-11.16 21.937zm118.928 364.77c1.744-.698 3.488-1.046 5.58-1.046 7.324 0 13.916 4.534 16.392 12.207 3.139 9.068-1.744 18.833-11.16 21.972-9.068 2.79-18.798-2.093-21.972-11.509-2.79-9.068 2.127-18.833 11.16-21.623zm-162.14-497.684c-9.103 3.139-18.833-1.744-21.972-11.126-2.79-9.103 2.093-18.833 11.509-22.007 1.744-.349 3.488-.698 5.197-.698 7.324 0 14.299 4.534 16.741 11.858 2.79 9.451-2.058 19.182-11.474 21.972zm-21.623-66.23c-9.068 3.139-18.833-2.127-21.972-11.16-2.825-9.068 2.093-18.833 11.509-21.972 1.744-.349 3.488-.732 5.197-.732 7.324 0 14.299 4.569 16.741 11.893 2.825 9.068-2.093 19.182-11.474 21.972zm86.458 265.408c-9.068 2.79-18.833-2.093-21.972-11.16-2.79-9.417 2.093-19.182 11.16-21.972 2.093-.698 3.802-1.011 5.545-1.011 7.359 0 14.299 4.883 16.427 12.207 3.174 8.998-1.709 18.763-11.16 21.937zm21.658 66.23c-9.068 2.79-18.833-2.093-21.972-11.16-2.79-9.068 2.093-19.182 11.16-21.972 2.093-.698 3.802-1.046 5.545-1.046 7.324 0 14.299 4.883 16.427 12.207 3.139 9.068-1.779 18.833-11.16 21.972zm54.372 110.558c3.174 9.417-1.744 19.182-11.126 21.972-9.103 3.139-18.833-2.093-21.972-11.16-2.79-9.068 2.093-18.833 11.126-21.972 1.744-.349 3.836-.698 5.58-.698 7.324.035 13.985 4.534 16.392 11.858m-11.509 77.46c-2.755-9.417 2.127-19.182 11.16-22.321 1.744-.349 3.522-.698 5.58-.698 7.324 0 13.95 4.534 16.392 11.858 3.139 9.417-2.093 19.182-11.126 21.972-9.103 3.104-18.833-1.779-22.007-10.812zm-21.24-121.753c-9.068 3.139-18.833-2.093-21.972-11.16-2.79-9.068 2.093-18.833 11.126-21.972 1.779-.698 3.836-.698 5.58-.698 7.324 0 14.299 4.534 16.427 11.858 3.139 9.068-1.779 19.182-11.16 21.972zM526.631 85.712c-9.417 3.139-19.182-2.093-21.972-11.16-3.139-9.068 1.744-18.833 11.16-21.972 1.744-.698 3.488-.698 5.231-.698 7.324 0 14.299 4.534 16.741 11.858 2.79 9.068-2.127 19.182-11.16 21.972",
146
+ glyphName: "shower",
147
+ horizAdvX: 1002,
148
+ unicode: "\\uE90D"
149
+ }), /*#__PURE__*/React.createElement("glyph", {
150
+ d: "M970.404 802.449c-17.888 4.138-35.775-7.475-39.713-25.497-5.073-23.027-9.545-45.053-13.482-66.344-3.471-18.088 8.477-35.508 26.631-38.912q3.103-.6 6.207-.601c15.752 0 29.768 11.146 32.772 27.232a2853 2853 0 0 0 13.082 64.476c3.871 17.954-7.475 35.775-25.497 39.646m-49.058-329.653c.801 0 1.535-.067 2.336-.067 17.42 0 32.038 13.482 33.306 31.103a1393 1393 0 0 0 6.007 64.943c2.136 18.288-11.013 34.841-29.301 36.977-18.422 2.002-34.841-11.08-36.977-29.301-2.803-24.028-4.872-46.655-6.341-68.013-1.268-18.422 12.615-34.307 30.97-35.642m5.206-199.967c1.135 0 2.269.067 3.471.2 18.355 1.869 31.704 18.221 29.768 36.643a1094 1094 0 0 0-4.806 64.542c-.801 18.422-15.885 33.172-34.774 31.904-18.422-.801-32.705-16.419-31.904-34.774 1.135-25.296 2.937-47.99 5.073-68.547 1.802-17.22 16.219-29.968 33.172-29.968M898.92 109.771c-1.535-18.355 12.081-34.507 30.436-36.042.934-.067 1.869-.133 2.803-.133 17.153 0 31.771 13.149 33.239 30.569l5.406 65.143.267 3.471-66.611 2.803-5.54-65.81zm1085.672-2.937c-16.086 8.677-36.443 2.47-45.12-13.816l-15.285-28.767-261.173 134.825c25.163-.534 52.061-.868 80.161-.868 44.853 0 91.507 1.268 137.227 3.404l-9.745-23.494c-7.008-17.02 1.068-36.576 18.088-43.584a33.2 33.2 0 0 1 12.748-2.536c13.082 0 25.497 7.742 30.836 20.624l29.968 72.285c.467 1.135.334 2.269.667 3.404.534 1.669 1.335 3.204 1.535 4.939.133.868-.133 1.669-.067 2.536.067 1.669-.067 3.404-.2 5.073a39.4 39.4 0 0 1-1.402 7.008c-.534 1.535-1.068 2.937-1.735 4.338-1.135 2.269-2.536 4.272-4.138 6.274-1.001 1.201-1.869 2.403-3.004 3.471-2.069 1.869-4.405 3.337-6.941 4.672-1.001.534-1.669 1.402-2.737 1.802-.267.133-.534.067-.801.133-.334.133-.534.334-.801.467-87.636 31.37-258.236 237.011-352.146 399.935-4.939 8.477-13.282 14.417-22.96 16.152-238.68 43.451-573.472 266.512-576.876 268.715-.601.4-1.268.4-1.802.734-1.468.868-3.07 1.335-4.672 1.936-3.07 1.201-6.074 2.136-9.278 2.403-.667.067-1.402.601-2.203.601-1.068.067-2.002-.601-3.07-.601a33.3 33.3 0 0 1-7.609-1.468c-2.336-.801-4.539-1.402-6.674-2.737-2.47-1.402-4.472-3.471-6.541-5.607-1.001-1.068-2.403-1.602-3.27-2.803-1.869-2.536-191.358-253.163-294.345-383.716-92.108-117.004-217.455-267.313-242.818-297.615L83.829 118.515l-24.162 30.836c-11.413 14.55-32.305 17.02-46.855 5.673s-17.087-32.305-5.673-46.855L87.967 4.981c6.608-8.41 16.419-12.748 26.297-12.748 7.208 0 14.417 2.336 20.557 7.075 14.55 11.347 17.087 32.305 5.673 46.855l-14.217 18.155 289.339 130.553 88.771-149.842c4.806-8.143 12.815-13.816 22.093-15.685 8.61-1.735 214.051-42.85 445.789-42.85h439.181c1.535 0 3.137.133 4.672.334l234.875 33.506c18.221 2.603 30.97 19.49 28.367 37.711-2.67 18.288-20.09 30.436-37.711 28.367l-173.27-24.629 62.34 130.42L1892.947 5.317l-11.013-20.824c-8.677-16.286-2.47-36.443 13.816-45.12a32.9 32.9 0 0 1 15.618-3.938c11.947 0 23.494 6.474 29.434 17.754l57.601 108.46c8.677 16.352 2.536 36.509-13.816 45.186zm-158.185 159.12c-127.216-3.337-255.633 2.269-295.48 4.205-33.906 37.644-156.917 175.339-249.292 292.343-55.598 70.416-128.284 169.132-185.951 248.825 119.874-68.814 294.946-157.918 444.788-188.955 66.545-112.065 182.747-268.581 285.935-356.418M1390.363 53.305H972.206c-190.623 0-367.497 29.501-418.157 38.779l-84.299 142.3c39.913 47.856 150.443 180.945 233.874 286.87 79.76 101.052 211.047 273.788 267.714 348.542 52.995-74.22 174.404-242.885 257.835-348.542 88.837-112.465 205.441-243.619 246.422-289.272l-85.233-178.676z",
151
+ glyphName: "camping",
152
+ horizAdvX: 2002,
153
+ unicode: "\\uE90E"
154
+ }), /*#__PURE__*/React.createElement("glyph", {
155
+ d: "M132.378 883.34h758.374c31.027 0 56.32-25.293 56.32-56.32V68.799c0-31.002-25.293-56.294-56.32-56.294H132.378c-31.027 0-56.32 25.293-56.32 56.294V827.02c.026 31.027 25.293 56.32 56.32 56.32m174.796-742.886h128V370.47h76.8c56.192 0 99.123 3.021 128.717 8.883 21.76 4.736 43.213 14.438 64.23 29.005 21.171 14.746 38.451 34.918 52.198 60.646 13.747 25.6 20.582 57.344 20.582 95.104 0 48.742-11.853 91.059-35.61 121.958-23.731 30.874-53.325 50.893-88.525 60.058-22.886 6.144-72.09 9.267-147.456 9.267H307.172V140.453zm128 512.563V473.254h63.795c48.922 0 81.664 3.149 98.099 9.6 16.461 6.426 29.338 16.461 38.758 30.182 9.318 13.722 14.029 33.613 14.029 51.738 0 22.323-6.579 42.342-19.738 56.96-13.005 14.413-29.747 23.578-49.766 27.162-14.874 2.867-44.621 4.147-89.242 4.147h-55.936z",
156
+ glyphName: "parking",
157
+ unicode: "\\uE90F"
158
+ }), /*#__PURE__*/React.createElement("glyph", {
159
+ d: "m1125.008 179.228-.125 31.503c0 120.801-93.799 219.101-209.142 219.101-114.343 0-207.35-98.883-207.35-220.393 0-98.716-74.381-179.015-165.805-179.015-92.049 0-166.972 79.548-166.972 177.348v167.305c185.307 10.501 332.777 155.096 332.777 331.819v231.769c0 11.501-9.334 20.835-20.835 20.835H541.711c-11.501 0-20.835-9.334-20.835-20.835s9.334-20.835 20.835-20.835h125.01V706.896c0-160.596-140.22-291.232-312.525-291.232S41.671 546.341 41.671 706.896V917.83h125.01c11.501 0 20.835 9.334 20.835 20.835s-9.334 20.835-20.835 20.835H20.836C9.335 959.5.001 950.166.001 938.665V706.896c0-177.098 148.054-321.943 333.902-331.902V207.73c0-120.76 93.591-219.018 208.642-219.018 114.426.042 207.517 99.05 207.517 220.726 0 98.55 74.339 178.723 165.722 178.723 92.341 0 167.472-79.59 167.472-177.514l.125-31.419c-57.421-10.042-101.3-60.255-101.3-120.843 0-67.756 54.796-122.885 122.218-122.885 67.339 0 122.177 55.129 122.177 122.885-.042 60.63-44.004 110.842-101.467 120.843zM1104.257-22.83c-44.379 0-80.548 36.42-80.548 81.215 0 44.837 36.128 81.298 80.548 81.298s80.507-36.461 80.507-81.298c0-44.795-36.128-81.215-80.507-81.215",
160
+ glyphName: "doctor",
161
+ horizAdvX: 1226,
162
+ unicode: "\\uE910"
163
+ }), /*#__PURE__*/React.createElement("glyph", {
164
+ d: "M917.333 212.833H622.826c12.693-70.421 54.891-118.869 93.888-149.333h51.285c11.797 0 21.333-9.536 21.333-21.333s-9.536-21.333-21.333-21.333h-512c-11.797 0-21.333 9.536-21.333 21.333S244.202 63.5 255.999 63.5h51.264c38.976 30.464 81.216 78.912 93.888 149.333H106.666c-47.125 0-85.333 38.208-85.333 85.333v490.667c0 47.125 38.208 85.333 85.333 85.333h810.667c47.125 0 85.333-38.208 85.333-85.333V298.166c0-47.125-38.208-85.333-85.333-85.333M371.136 63.5h281.707c-34.027 35.883-64.32 84.821-73.792 149.333H444.928c-9.472-64.512-39.765-113.451-73.792-149.333M960 788.833c0 23.552-19.115 42.667-42.667 42.667H106.666c-23.552 0-42.667-19.115-42.667-42.667V383.5h896v405.333zm0-448H64v-42.667c0-23.552 19.115-42.667 42.667-42.667h810.667c23.552 0 42.667 19.115 42.667 42.667v42.667zm-448-64c-11.797 0-21.333 9.536-21.333 21.333s9.536 21.333 21.333 21.333 21.333-9.536 21.333-21.333-9.536-21.333-21.333-21.333",
165
+ glyphName: "mac",
166
+ unicode: "\\uE911"
167
+ }), /*#__PURE__*/React.createElement("glyph", {
168
+ d: "M1635.958 229.624c-127.37 81.211-397.824 162.619-602.27 216.615-20.677 5.514-42.575-6.971-48.128-28.002s7.01-42.575 28.042-48.128c162.934-43.008 454.932-127.134 579.978-206.848 43.047-27.49 60.574-53.524 60.574-89.915 0-32.571-31.823-59.077-70.892-59.077h-1433.6c-39.07 0-70.892 26.506-70.892 59.077 0 36.391 17.526 62.425 60.574 89.876C324.373 281.258 869.81 407.879 875.324 409.14c17.881 4.096 30.523 20.007 30.523 38.361v157.538c0 21.74-17.605 39.385-39.385 39.385-65.142 0-118.154 53.012-118.154 118.154s53.012 118.154 118.154 118.154 118.154-53.012 118.154-118.154c0-21.74 17.605-39.385 39.385-39.385s39.385 17.644 39.385 39.385c0 108.583-88.34 196.923-196.923 196.923S669.54 871.161 669.54 762.578c0-95.114 67.781-174.671 157.538-192.945v-90.978C706.404 449.589 269.195 339.47 96.966 229.626 31.745 187.996.001 136.875.001 73.348c0-76.012 67.151-137.846 149.662-137.846h1433.6c82.511 0 149.662 61.834 149.662 137.846 0 63.527-31.744 114.649-96.965 156.278z",
169
+ glyphName: "hanger",
170
+ horizAdvX: 1733,
171
+ unicode: "\\uE912"
172
+ }), /*#__PURE__*/React.createElement("glyph", {
173
+ d: "M98 122.7v28.788c0 7.936 6.476 14.412 14.412 14.412h6.032c19.552 173.612 155.512 312.76 329.552 340.532V529.5c0 10.744 16.548 19.936 40 23.736V585.5h-22.8c-8.292 0-15.116 6.312-15.92 14.396h-30.88c-10.908 0-18.784 11.024-15 21.44 5.152 14.188 10.42 25.936 20.012 35.016 10.256 9.716 23.84 15.144 44.46 15.144h88.26c20.616 0 34.204-5.428 44.46-15.14 9.312-8.824 14.092-20.348 19.572-33.82 4.32-10.644-2.828-22.64-14.564-22.64h-30.884c-.804-8.084-7.624-14.396-15.92-14.396H536v-32.264c23.452-3.796 40-12.992 40-23.736v-23.068C750.04 478.66 886 339.508 905.556 165.9h6.032c7.936 0 14.416-6.48 14.416-14.412V122.7zm710.232 47.996C793.24 292.7 721.904 392.272 626.764 437.384c-8.408 3.992-15.704-7.38-8.564-13.36 58.96-49.424 108.148-141.38 131.14-253.332zm-190.896 0-1.492 17.668-268.204 17.668c10.172 109.752 49.892 196.092 105.752 234.984 7.264 5.06 2.032 16.5-6.54 14.32C327.556 425 233.268 313.124 215.764 170.696zm221.86-144.04H184.804l-1.176-9.584h656.748zm44.2 33.828 5.336-43.412h22.852C919.52 17.072 926 10.58 926 2.668V-64.5H98V2.668c0 7.932 6.476 14.404 14.412 14.404h22.852l5.332 43.412c.996 8.096 7.728 14.172 15.896 14.172h711.012c8.168 0 14.9-6.084 15.892-14.172m94.448 773.264-196.42-179.456c-15.616-14.264-36.9 7.012-22.624 22.628l179.452 196.424c10.428 11.416 28.664 10.932 39.592 0 10.928-10.94 11.412-29.172 0-39.596m27.944-193.572-146.428-41.82c-20.352-5.812-30.328 20.948-11.124 29.876L986.32 692.46c13.968 6.5 30.5-1.968 35.876-16.404 5.372-14.44-1.596-31.648-16.408-35.88M796.96 881.816l-64.22-138.092c-8.928-19.196-35.688-9.228-29.876 11.124l41.812 146.436c4.236 14.812 21.436 21.78 35.876 16.408 14.44-5.376 22.908-21.908 16.408-35.876M46.156 833.748 242.58 654.292c15.616-14.264 36.896 7.012 22.624 22.628L85.752 873.34c-10.428 11.416-28.664 10.932-39.592 0-10.936-10.936-11.416-29.168-.004-39.592M18.212 640.176l146.432-41.82c20.348-5.812 30.324 20.948 11.124 29.876L37.68 692.456c-13.968 6.5-30.5-1.968-35.876-16.404s1.596-31.644 16.408-35.876m208.824 241.64 64.228-138.092c8.928-19.196 35.684-9.228 29.872 11.124L279.32 901.284c-4.232 14.812-21.44 21.78-35.876 16.408-14.436-5.376-22.9-21.908-16.408-35.876",
174
+ glyphName: "reception",
175
+ unicode: "\\uE913"
176
+ }), /*#__PURE__*/React.createElement("glyph", {
177
+ d: "M112 783.5c0 44.188 35.812 80 80 80s80-35.812 80-80c0-44.156-35.812-80-80-80s-80 35.844-80 80m672-80c44.188 0 80 35.844 80 80 0 44.188-35.812 80-80 80s-80-35.812-80-80c0-44.156 35.812-80 80-80m-293.344 160h-21.312c-11.782 0-21.344-9.562-21.344-21.344V52.844c0-11.782 9.562-21.344 21.344-21.344h21.312C502.438 31.5 512 41.062 512 52.844v789.312c0 11.782-9.562 21.344-21.344 21.344M284 671.5h-36l-56-99.25-56 99.25h-35.968C62.468 671.5 32 641.032 32 603.468V419.532c0-37.564 30.468-68.032 68.032-68.032h1.782l23.344-282.904c1.73-20.964 19.248-37.096 40.284-37.096h52.868c21.022 0 38.534 16.114 40.282 37.06l23.596 282.94H284c37.562 0 68 30.468 68 68.032V603.47c0 37.562-30.438 68.03-68 68.03m706.188-277.376-82.782 230.75c-10.03 27.97-36.562 46.626-66.28 46.626h-5.904L784 585.188 732.782 671.5h-5.906c-29.716 0-56.25-18.656-66.282-46.626l-82.782-230.75c-5.876-16.69 2.906-34.94 19.562-40.812 3.5-1.25 7.126-1.812 10.626-1.812 13.188 0 25.562 8.218 30.188 21.376l66.844 192.5 11.784-111.5-62.876-171.312c-2.25-6.19-1.376-13.062 2.406-18.468a20.11 20.11 0 0 1 16.5-8.594h40.782l22.19-194.406C737.75 44.218 752 31.5 769 31.5h30c17 0 31.25 12.718 33.188 29.594L854.376 255.5h40.784a20.11 20.11 0 0 1 16.5 8.594c3.782 5.406 4.656 12.282 2.406 18.468L851.19 453.874l11.784 111.5 66.844-192.5c4.62-13.156 16.994-21.374 30.182-21.374 3.5 0 7.126.562 10.626 1.812 16.656 5.876 25.436 24.126 19.562 40.812",
178
+ glyphName: "toilet-2",
179
+ unicode: "\\uE914"
180
+ }), /*#__PURE__*/React.createElement("glyph", {
181
+ d: "M416 471.156v70.094l31.876-21.75a36.87 36.87 0 0 1 20.75-6.376c7.438 0 14.844 2.218 21.188 6.688l81.81 57.594c16.594 11.718 20.594 34.656 8.876 51.282-11.688 16.626-34.656 20.562-51.25 8.906l-60.938-42.906-47.376 32.5c-11.688 8-25.5 12.312-39.688 12.312h-39.906c-29.466 0-53.342-23.876-53.342-53.344V383.03zM864 639.5h-96a127.88 127.88 0 0 1-72.5-22.532l-470-323.126a36.07 36.07 0 0 0-20.438-6.344H160c-70.688 0-128-57.312-128-128s57.312-128 128-128h96c25.906 0 51.188 7.844 72.532 22.532l470 323.126a36.22 36.22 0 0 0 20.44 6.344H864c70.688 0 128 57.312 128 128s-57.312 128-128 128m0-192h-64.906a36.2 36.2 0 0 1-20.438-6.344L292.282 106.782C281.562 99.406 269 95.5 256 95.5h-96c-35.282 0-64 28.718-64 64s28.718 64 64 64h64.938a36.07 36.07 0 0 1 20.438 6.344L731.752 564.22C742.5 571.594 755 575.5 768 575.5h96c35.312 0 64-28.718 64-64s-28.688-64-64-64m-496 224c44.188 0 80 35.812 80 80s-35.812 80-80 80-80-35.812-80-80 35.812-80 80-80",
182
+ glyphName: "escalator",
183
+ unicode: "\\uE915"
184
+ }), /*#__PURE__*/React.createElement("glyph", {
185
+ d: "M576 863.5H128c-35.344 0-64-28.656-64-64v-704c0-35.344 28.656-64 64-64h448c35.344 0 64 28.656 64 64v704c0 35.344-28.656 64-64 64m0-758.664a9.336 9.336 0 0 0-9.336-9.336H137.336a9.336 9.336 0 0 0-9.336 9.336v685.328a9.336 9.336 0 0 0 9.336 9.336h429.328a9.336 9.336 0 0 0 9.336-9.336zm382.688 389.226a9.65 9.65 0 0 0 0-9.718c-1.75-2.984-5.032-4.844-8.562-4.844h-236.25c-3.5 0-6.782 1.86-8.56 4.844a9.65 9.65 0 0 0 0 9.718l118.126 204.204a9.97 9.97 0 0 0 8.562 4.906 9.97 9.97 0 0 0 8.562-4.906zM705.312 400.61a9.65 9.65 0 0 0 0 9.718c1.75 2.984 5.032 4.844 8.562 4.844h236.25c3.5 0 6.782-1.86 8.56-4.844a9.65 9.65 0 0 0 0-9.718L840.56 196.406c-1.78-3.032-5.06-4.906-8.56-4.906s-6.782 1.876-8.562 4.906zM352 767.516c35.344 0 64-28.656 64-64S387.344 639.5 352 639.5s-64 28.672-64 64.016 28.656 64 64 64m159.156-383.032L465.968 562.5c-7.376 26.578-32.126 45-60.312 45H298.344c-28.188 0-52.938-18.422-60.312-45l-45.188-178.016c-3.718-14.11 5-28.484 19.468-32.14 2.282-.546 4.532-.844 6.782-.844 12.062 0 23.062 7.922 26.188 19.796l37.5 157.716 10.876-99.154-37.562-269.862c-1.376-16.532 11.188-31 28.126-32.376.876-.094 1.75-.126 2.562-.126 15.876 0 29.312 11.844 30.626 27.532L352 386.718l34.594-231.69c1.312-15.688 14.75-27.532 30.626-27.532.812 0 1.688.032 2.562.126 16.938 1.376 29.5 15.844 28.126 32.376l-37.562 269.86 10.876 99.156 37.5-157.718c3.126-11.876 14.126-19.794 26.188-19.794 2.25 0 4.5.294 6.782.844 14.464 3.654 23.184 18.028 19.464 32.138",
186
+ glyphName: "elevator",
187
+ unicode: "\\uE916"
188
+ }), /*#__PURE__*/React.createElement("glyph", {
189
+ d: "M344 642.7h57.6l12.8-29.6h32.8L388 749.9h-29.6l-59.2-136.8H332zm12 26.4 17.6 40 16.8-40zm124-56h30.4v110.4h39.2v26.4h-108v-26.4H480zm122.4 86.4 36.8-75.2h18.4l36.8 75.2v-86.4h31.2v136.8H684l-35.2-75.2-35.2 75.2H572V613.1h30.4zm303.2 252H118.4c-17.6 0-31.2-14.4-31.2-31.2V-24.5c0-17.6 14.4-31.2 31.2-31.2h788c17.6 0 31.2 14.4 31.2 31.2v944.8c0 16.8-14.4 31.2-32 31.2M227.2 65.1h-48c-11.2 0-20.8 8.8-20.8 20.8 0 11.2 8.8 20.8 20.8 20.8h48c11.2 0 20.8-8.8 20.8-20.8 0-11.2-9.6-20.8-20.8-20.8m0 144h-48c-11.2 0-20.8 8.8-20.8 20.8 0 11.2 8.8 20.8 20.8 20.8h48c11.2 0 20.8-8.8 20.8-20.8s-9.6-20.8-20.8-20.8m0 160.8h-48c-11.2 0-20.8 8.8-20.8 20.8 0 11.2 8.8 20.8 20.8 20.8h48c11.2 0 20.8-8.8 20.8-20.8s-9.6-20.8-20.8-20.8M341.6 65.1h-48c-11.2 0-20.8 8.8-20.8 20.8 0 11.2 8.8 20.8 20.8 20.8h48c11.2 0 20.8-8.8 20.8-20.8-.8-11.2-9.6-20.8-20.8-20.8m0 144h-48c-11.2 0-20.8 8.8-20.8 20.8 0 11.2 8.8 20.8 20.8 20.8h48c11.2 0 20.8-8.8 20.8-20.8-.8-12-9.6-20.8-20.8-20.8m0 160.8h-48c-11.2 0-20.8 8.8-20.8 20.8 0 11.2 8.8 20.8 20.8 20.8h48c11.2 0 20.8-8.8 20.8-20.8-.8-12-9.6-20.8-20.8-20.8M455.2 65.1h-48c-11.2 0-20.8 8.8-20.8 20.8 0 11.2 8.8 20.8 20.8 20.8h48c11.2 0 20.8-8.8 20.8-20.8 0-11.2-8.8-20.8-20.8-20.8m0 144h-48c-11.2 0-20.8 8.8-20.8 20.8 0 11.2 8.8 20.8 20.8 20.8h48c11.2 0 20.8-8.8 20.8-20.8s-8.8-20.8-20.8-20.8m0 160.8h-48c-11.2 0-20.8 8.8-20.8 20.8 0 11.2 8.8 20.8 20.8 20.8h48c11.2 0 20.8-8.8 20.8-20.8s-8.8-20.8-20.8-20.8M800.8 51.5H578.4v308.8H800V51.5zm43.2 468H180v324h664z",
190
+ glyphName: "atm",
191
+ unicode: "\\uE917"
192
+ }), /*#__PURE__*/React.createElement("glyph", {
193
+ d: "M0 128h1024V0H0zm128 256h128V192H128zm192 256h128V192H320zm192-192h128V192H512zm192 384h128V192H704z",
194
+ glyphName: "stats-bars",
195
+ unicode: "\\uE99C"
196
+ })))));
197
+ };
198
+ export default SvgObjects;
@@ -0,0 +1,11 @@
1
+ import { T_Seat, T_SeatMap } from 'platform-calendar-helpers';
2
+ type actions = {
3
+ save: () => (T_SeatMap & {
4
+ backgroundColor: string;
5
+ }) | false;
6
+ cancel: () => void;
7
+ updateSeatMap: (seatMap: T_SeatMap) => void;
8
+ unselectSeat: (seatId: T_Seat['id']) => void;
9
+ };
10
+ declare const ActionsHandler: import("react").ForwardRefExoticComponent<import("react").RefAttributes<actions>>;
11
+ export { ActionsHandler, type actions };
@@ -0,0 +1,6 @@
1
+ import { FC } from 'react';
2
+ type T_AlignmentGuidesProps = {
3
+ wrapperRef?: React.MutableRefObject<HTMLDivElement>;
4
+ };
5
+ declare const AlignmentGuides: FC<T_AlignmentGuidesProps>;
6
+ export { AlignmentGuides };
@@ -0,0 +1,18 @@
1
+ import { FC } from 'react';
2
+ import '@wix/design-system/styles.global.css';
3
+ import { T_SeatMap, T_Ticket } from 'platform-calendar-helpers';
4
+ import "../../assets/styles/global.css";
5
+ import { actions } from "../actionsHandler/ActionsHandler";
6
+ import { T_ActionHandlersState } from "../../store/reducers/actionHandlers/types";
7
+ import { T_Mode } from "../../helpers/types/commons";
8
+ import { T_MainState } from "../../store/reducers/main/types";
9
+ type T_Props = {
10
+ tickets: T_Ticket[];
11
+ seatMap: T_SeatMap | null;
12
+ actionsRef: React.ForwardedRef<actions>;
13
+ mode?: T_Mode;
14
+ soldSeats?: T_MainState['soldSeats'];
15
+ currencySymbol?: string;
16
+ } & Partial<T_ActionHandlersState>;
17
+ declare const App: FC<T_Props>;
18
+ export { App };
@@ -0,0 +1,7 @@
1
+ import { FC, ReactNode } from 'react';
2
+ type T_Props = {
3
+ children: (ref: React.MutableRefObject<HTMLDivElement>) => ReactNode;
4
+ backgroundColor?: string;
5
+ };
6
+ declare const Background: FC<T_Props>;
7
+ export { Background };
@@ -0,0 +1,4 @@
1
+ import { FC } from 'react';
2
+ type T_Props = {};
3
+ declare const DeleteModal: FC<T_Props>;
4
+ export { DeleteModal };
@@ -0,0 +1,14 @@
1
+ import { T_Element, T_ElementType } from 'platform-calendar-helpers';
2
+ import { FC, MutableRefObject, PropsWithChildren } from 'react';
3
+ /** Extended so Aisle (local 'aisles' type) can use this component */
4
+ type T_ElementType_SeatMap = T_ElementType | 'aisles';
5
+ type T_Props = PropsWithChildren<{
6
+ draggableContainer: MutableRefObject<HTMLElement | null>;
7
+ elementPosition: T_Element['position'];
8
+ elementId?: T_Element['id'];
9
+ elementType?: T_ElementType_SeatMap;
10
+ disabled?: boolean;
11
+ onDragEnd?: (position: T_Element['position']) => void;
12
+ }>;
13
+ declare const Draggable: FC<T_Props>;
14
+ export { Draggable };
@@ -0,0 +1,10 @@
1
+ import { FC } from 'react';
2
+ import { T_SceneTransform } from "../../helpers/types/commons";
3
+ type T_Props = {
4
+ sceneTransform: T_SceneTransform;
5
+ renderMode?: '2d' | '3d';
6
+ onToggleRenderMode?: () => void;
7
+ onZoomToFit?: () => void;
8
+ };
9
+ declare const ElementSelector: FC<T_Props>;
10
+ export { ElementSelector };
@@ -0,0 +1,7 @@
1
+ import { FC } from 'react';
2
+ import { T_SceneTransform } from "../../../helpers/types/commons";
3
+ type T_Props = {
4
+ sceneTransform: T_SceneTransform;
5
+ };
6
+ declare const Dropdown: FC<T_Props>;
7
+ export { Dropdown };
@@ -0,0 +1,7 @@
1
+ import { FC } from 'react';
2
+ import { T_SceneTransform } from "../../../../../helpers/types/commons";
3
+ type T_Props = {
4
+ sceneTransform: T_SceneTransform;
5
+ };
6
+ declare const Aisles: FC<T_Props>;
7
+ export { Aisles };
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ declare const Info: FC;
3
+ export { Info };
@@ -0,0 +1,7 @@
1
+ import { FC } from 'react';
2
+ import { T_SceneTransform } from "../../../../../helpers/types/commons";
3
+ type T_Props = {
4
+ sceneTransform: T_SceneTransform;
5
+ };
6
+ declare const Objects: FC<T_Props>;
7
+ export { Objects };
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ declare const SeatEditor: FC;
3
+ export { SeatEditor };
@@ -0,0 +1,7 @@
1
+ import { FC } from 'react';
2
+ import { T_SceneTransform } from "../../../../../helpers/types/commons";
3
+ type T_Props = {
4
+ sceneTransform: T_SceneTransform;
5
+ };
6
+ declare const SeatingGroup: FC<T_Props>;
7
+ export { SeatingGroup };
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ declare const Settings: FC;
3
+ export { Settings };
@@ -0,0 +1,7 @@
1
+ import { FC } from 'react';
2
+ import { T_SceneTransform } from "../../../../../helpers/types/commons";
3
+ type T_Props = {
4
+ sceneTransform: T_SceneTransform;
5
+ };
6
+ declare const StandingArea: FC<T_Props>;
7
+ export { StandingArea };
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ declare const Statistics: FC;
3
+ export { Statistics };
@@ -0,0 +1,7 @@
1
+ import { FC } from 'react';
2
+ import { T_SceneTransform } from "../../../../../helpers/types/commons";
3
+ type T_Props = {
4
+ sceneTransform: T_SceneTransform;
5
+ };
6
+ declare const Tables: FC<T_Props>;
7
+ export { Tables };
@@ -0,0 +1,7 @@
1
+ import { FC } from 'react';
2
+ import { T_SceneTransform } from "../../../../../helpers/types/commons";
3
+ type T_Props = {
4
+ sceneTransform: T_SceneTransform;
5
+ };
6
+ declare const Text: FC<T_Props>;
7
+ export { Text };
@@ -0,0 +1,15 @@
1
+ import { FC } from 'react';
2
+ type T_Props = {
3
+ fontSize?: string | number;
4
+ elementTitle: string;
5
+ color?: string;
6
+ disabled?: boolean;
7
+ absolute?: boolean;
8
+ fontFamily?: string;
9
+ fontWeight?: number | string;
10
+ letterSpacing?: number;
11
+ /** Counter-rotate the title to keep it readable when parent is rotated */
12
+ counterRotate?: number;
13
+ };
14
+ declare const ElementTitle: FC<T_Props>;
15
+ export { ElementTitle };
@@ -0,0 +1,19 @@
1
+ import { FC, MutableRefObject, PropsWithChildren } from 'react';
2
+ import { T_Element, T_ElementType } from 'platform-calendar-helpers';
3
+ /** Extended so Aisle (local 'aisles' type) can use this wrapper */
4
+ type T_ElementType_SeatMap = T_ElementType | 'aisles';
5
+ type T_Props = {
6
+ rotateContainer: MutableRefObject<HTMLElement | null>;
7
+ elementId: T_Element['id'];
8
+ elementType: T_ElementType_SeatMap;
9
+ elementPosition: T_Element['position'];
10
+ disablePadding?: boolean;
11
+ initialRotateAngle?: number;
12
+ disableActions?: boolean;
13
+ onEdit?: () => void;
14
+ onDelete?: () => void;
15
+ onDuplicate?: () => void;
16
+ onRotate?: (angle: number) => void;
17
+ };
18
+ declare const ElementWrapper: FC<PropsWithChildren<T_Props>>;
19
+ export { ElementWrapper };
@@ -0,0 +1,12 @@
1
+ /**
2
+ * AISLE / WALKWAY ELEMENT
3
+ * A line or strip between sections representing walkways, aisles, or corridors
4
+ * No seats - purely for layout clarity and visual organization
5
+ */
6
+ import { FC } from 'react';
7
+ import { T_Element_Aisle } from "../../../helpers/types/aisle";
8
+ type T_Props = {
9
+ aisle: T_Element_Aisle;
10
+ };
11
+ declare const Aisle: FC<T_Props>;
12
+ export { Aisle };
@@ -0,0 +1,7 @@
1
+ import { T_Element_Object } from 'platform-calendar-helpers';
2
+ import { FC } from 'react';
3
+ type T_Props = {
4
+ object: T_Element_Object;
5
+ };
6
+ declare const _Object: FC<T_Props>;
7
+ export { _Object as Object };
@@ -0,0 +1,7 @@
1
+ import { FC } from 'react';
2
+ import { T_Element_SeatingGroup } from 'platform-calendar-helpers';
3
+ type T_Props = {
4
+ seatingGroup: T_Element_SeatingGroup;
5
+ };
6
+ declare const SeatingGroup: FC<T_Props>;
7
+ export { SeatingGroup };
@@ -0,0 +1,28 @@
1
+ /**
2
+ * STAGE / FOCAL POINT COMPONENT
3
+ * Represents a stage or focal point in the venue
4
+ */
5
+ import { FC } from 'react';
6
+ export type T_StageShape = 'rectangle' | 'semicircle' | 'thrust' | 'arena' | 'custom';
7
+ export interface T_StageElement {
8
+ id: string;
9
+ title: string;
10
+ position: {
11
+ top: number;
12
+ left: number;
13
+ };
14
+ size?: {
15
+ width: number;
16
+ height: number;
17
+ };
18
+ shape: T_StageShape;
19
+ rotation?: number;
20
+ color?: string;
21
+ label?: string;
22
+ isPrimary?: boolean;
23
+ }
24
+ type T_Props = {
25
+ stage: T_StageElement;
26
+ };
27
+ declare const Stage: FC<T_Props>;
28
+ export { Stage };