kitchen-simulator 1.0.0-DIY-1119
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +0 -0
- package/README.md +64 -0
- package/es/@history.js +2 -0
- package/es/AppContext.js +3 -0
- package/es/LiteKitchenConfigurator.js +520 -0
- package/es/LiteRenderer.js +316 -0
- package/es/actions/area-actions.js +14 -0
- package/es/actions/export.js +36 -0
- package/es/actions/groups-actions.js +89 -0
- package/es/actions/holes-actions.js +119 -0
- package/es/actions/items-actions.js +352 -0
- package/es/actions/lines-actions.js +83 -0
- package/es/actions/project-actions.js +298 -0
- package/es/actions/scene-actions.js +33 -0
- package/es/actions/vertices-actions.js +27 -0
- package/es/actions/viewer2d-actions.js +58 -0
- package/es/actions/viewer3d-actions.js +23 -0
- package/es/analytics/ga4.js +188 -0
- package/es/analytics/posthog.js +60 -0
- package/es/assets/Window.hdr +2100 -0
- package/es/assets/brown_photostudio_02_1k.hdr +0 -0
- package/es/assets/fonts/Rene Bieder Milliard Black Italic.woff +0 -0
- package/es/assets/fonts/Rene Bieder Milliard Black.woff +0 -0
- package/es/assets/fonts/Rene Bieder Milliard Bold Italic.woff +0 -0
- package/es/assets/fonts/Rene Bieder Milliard Bold.woff +0 -0
- package/es/assets/fonts/Rene Bieder Milliard Book Italic.woff +0 -0
- package/es/assets/fonts/Rene Bieder Milliard Book.woff +0 -0
- package/es/assets/fonts/Rene Bieder Milliard ExtraBold Italic.woff +0 -0
- package/es/assets/fonts/Rene Bieder Milliard ExtraBold.woff +0 -0
- package/es/assets/fonts/Rene Bieder Milliard ExtraLight Italic.woff +0 -0
- package/es/assets/fonts/Rene Bieder Milliard ExtraLight.woff +0 -0
- package/es/assets/fonts/Rene Bieder Milliard Hairline Italic.woff +0 -0
- package/es/assets/fonts/Rene Bieder Milliard Hairline.woff +0 -0
- package/es/assets/fonts/Rene Bieder Milliard Heavy Italic.woff +0 -0
- package/es/assets/fonts/Rene Bieder Milliard Heavy.woff +0 -0
- package/es/assets/fonts/Rene Bieder Milliard Light Italic.woff +0 -0
- package/es/assets/fonts/Rene Bieder Milliard Light.woff +0 -0
- package/es/assets/fonts/Rene Bieder Milliard Medium Italic.woff +0 -0
- package/es/assets/fonts/Rene Bieder Milliard Medium.woff +0 -0
- package/es/assets/fonts/Rene Bieder Milliard SemiBold Italic.woff +0 -0
- package/es/assets/fonts/Rene Bieder Milliard SemiBold.woff +0 -0
- package/es/assets/fonts/Rene Bieder Milliard Thin Italic.woff +0 -0
- package/es/assets/fonts/Rene Bieder Milliard Thin.woff +0 -0
- package/es/assets/fonts/style.css +177 -0
- package/es/assets/gltf/door_closet.gltf +1 -0
- package/es/assets/gltf/door_exterior.gltf +1 -0
- package/es/assets/gltf/door_interior.gltf +1 -0
- package/es/assets/gltf/door_sliding.gltf +1 -0
- package/es/assets/gltf/doorway_framed.bin +0 -0
- package/es/assets/gltf/doorway_framed.fbx +0 -0
- package/es/assets/gltf/doorway_framed.gltf +1 -0
- package/es/assets/gltf/window_clear.bin +0 -0
- package/es/assets/gltf/window_clear.fbx +0 -0
- package/es/assets/gltf/window_clear.gltf +1 -0
- package/es/assets/gltf/window_cross.bin +0 -0
- package/es/assets/gltf/window_cross.fbx +0 -0
- package/es/assets/gltf/window_cross.gltf +1 -0
- package/es/assets/gltf/window_double_hung.bin +0 -0
- package/es/assets/gltf/window_double_hung.fbx +0 -0
- package/es/assets/gltf/window_double_hung.gltf +1 -0
- package/es/assets/gltf/window_vertical.bin +0 -0
- package/es/assets/gltf/window_vertical.fbx +0 -0
- package/es/assets/gltf/window_vertical.gltf +1 -0
- package/es/assets/img/TKC_thumbnail.png +0 -0
- package/es/assets/img/Toggle.png +0 -0
- package/es/assets/img/default/maple.jpg +0 -0
- package/es/assets/img/default/steel.jpg +0 -0
- package/es/assets/img/loading/loading.gif +0 -0
- package/es/assets/img/loading/loading_1.svg +11 -0
- package/es/assets/img/loading_large.gif +0 -0
- package/es/assets/img/png/door/closet.png +0 -0
- package/es/assets/img/png/door/doorwaysframed.png +0 -0
- package/es/assets/img/png/door/doorwaysframeles.png +0 -0
- package/es/assets/img/png/door/doorwaysframeless.png +0 -0
- package/es/assets/img/png/door/exterior.png +0 -0
- package/es/assets/img/png/door/interior.png +0 -0
- package/es/assets/img/png/door/sliding.png +0 -0
- package/es/assets/img/png/helper/outcome.png +0 -0
- package/es/assets/img/project_img.png +0 -0
- package/es/assets/img/rta/rta_logo_box_blue.jpg +0 -0
- package/es/assets/img/rta/rta_logo_box_blue_ico.jpg +0 -0
- package/es/assets/img/rta/rta_logo_box_blue_ico.svg +55 -0
- package/es/assets/img/rta/rta_logo_box_darkGray.jpg +0 -0
- package/es/assets/img/rta/rta_logo_box_lightblue.png +0 -0
- package/es/assets/img/rta/rta_logo_box_lightmaroon.png +0 -0
- package/es/assets/img/rta/rta_logo_box_maroon.png +0 -0
- package/es/assets/img/rta/rta_logo_box_white.png +0 -0
- package/es/assets/img/rta_menu.png +0 -0
- package/es/assets/img/step2.jpg +0 -0
- package/es/assets/img/step3.jpg +0 -0
- package/es/assets/img/step4.jpg +0 -0
- package/es/assets/img/step5.jpg +0 -0
- package/es/assets/img/step6.jpg +0 -0
- package/es/assets/img/step7.jpg +0 -0
- package/es/assets/img/step8.jpg +0 -0
- package/es/assets/img/svg/2d_delete_object.svg +33 -0
- package/es/assets/img/svg/2d_delete_object1.svg +33 -0
- package/es/assets/img/svg/2d_lock_object.svg +33 -0
- package/es/assets/img/svg/3d_item_move.svg +10 -0
- package/es/assets/img/svg/3d_item_rotation.svg +4 -0
- package/es/assets/img/svg/3d_item_warning_edit.svg +77 -0
- package/es/assets/img/svg/3d_item_warning_info.svg +81 -0
- package/es/assets/img/svg/accessories.svg +4 -0
- package/es/assets/img/svg/angle_icon.svg +39 -0
- package/es/assets/img/svg/blank_div.svg +14 -0
- package/es/assets/img/svg/bottombar/2d3d_button.svg +3 -0
- package/es/assets/img/svg/bottombar/2d3d_button_active.svg +3 -0
- package/es/assets/img/svg/bottombar/2d3d_toggle.svg +4 -0
- package/es/assets/img/svg/bottombar/2d3d_toggle_active.svg +4 -0
- package/es/assets/img/svg/bottombar/arrow-down.svg +3 -0
- package/es/assets/img/svg/bottombar/arrow-left.svg +3 -0
- package/es/assets/img/svg/bottombar/arrow-minus.svg +3 -0
- package/es/assets/img/svg/bottombar/arrow-plus.svg +11 -0
- package/es/assets/img/svg/bottombar/arrow-right.svg +3 -0
- package/es/assets/img/svg/bottombar/arrow-up.svg +3 -0
- package/es/assets/img/svg/bottombar/collapse.svg +3 -0
- package/es/assets/img/svg/bottombar/elevation-back.svg +6 -0
- package/es/assets/img/svg/bottombar/elevation-front.svg +6 -0
- package/es/assets/img/svg/bottombar/elevation-left.svg +6 -0
- package/es/assets/img/svg/bottombar/elevation-right.svg +7 -0
- package/es/assets/img/svg/bottombar/elevation.svg +13 -0
- package/es/assets/img/svg/bottombar/expand.svg +3 -0
- package/es/assets/img/svg/bottombar/help.svg +72 -0
- package/es/assets/img/svg/bottombar/incm_toggle.svg +39 -0
- package/es/assets/img/svg/bottombar/pan_1.svg +57 -0
- package/es/assets/img/svg/bottombar/pan_2.svg +27 -0
- package/es/assets/img/svg/bottombar/pan_3.svg +27 -0
- package/es/assets/img/svg/bottombar/pan_4.svg +27 -0
- package/es/assets/img/svg/bottombar/pan_5.svg +27 -0
- package/es/assets/img/svg/bottombar/settings.svg +23 -0
- package/es/assets/img/svg/bottombar/spin-down.svg +76 -0
- package/es/assets/img/svg/bottombar/spin-left.svg +75 -0
- package/es/assets/img/svg/bottombar/spin-right.svg +75 -0
- package/es/assets/img/svg/bottombar/spin-up.svg +76 -0
- package/es/assets/img/svg/bottombar/spin_1.svg +48 -0
- package/es/assets/img/svg/bottombar/spin_2.svg +31 -0
- package/es/assets/img/svg/bottombar/spin_3.svg +31 -0
- package/es/assets/img/svg/bottombar/spin_4.svg +31 -0
- package/es/assets/img/svg/bottombar/spin_5.svg +31 -0
- package/es/assets/img/svg/bottombar/zoomin.svg +29 -0
- package/es/assets/img/svg/bottombar/zoomout.svg +26 -0
- package/es/assets/img/svg/check.svg +10 -0
- package/es/assets/img/svg/close.svg +11 -0
- package/es/assets/img/svg/color/Black.svg +3 -0
- package/es/assets/img/svg/color/Blue.svg +3 -0
- package/es/assets/img/svg/color/Cream.svg +3 -0
- package/es/assets/img/svg/color/Gray.svg +3 -0
- package/es/assets/img/svg/color/Green.svg +3 -0
- package/es/assets/img/svg/color/White.svg +3 -0
- package/es/assets/img/svg/color/White.svg.bak +3 -0
- package/es/assets/img/svg/color/stone2.jpg +0 -0
- package/es/assets/img/svg/color/wood2.jpg +0 -0
- package/es/assets/img/svg/copy.svg +11 -0
- package/es/assets/img/svg/delete.svg +7 -0
- package/es/assets/img/svg/detail.svg +77 -0
- package/es/assets/img/svg/disclaimer/background.svg +758 -0
- package/es/assets/img/svg/disclaimer/logo-dots.svg +11 -0
- package/es/assets/img/svg/door/Closet.svg +11 -0
- package/es/assets/img/svg/door/Exterior.svg +5 -0
- package/es/assets/img/svg/door/Framed_dorway.svg +5 -0
- package/es/assets/img/svg/door/Frameless_dorway.svg +5 -0
- package/es/assets/img/svg/door/Interior.svg +7 -0
- package/es/assets/img/svg/door/Sliding.svg +5 -0
- package/es/assets/img/svg/doors_closet.svg +47 -0
- package/es/assets/img/svg/doors_exterior.svg +25 -0
- package/es/assets/img/svg/doors_interior.svg +29 -0
- package/es/assets/img/svg/doors_patio.svg +26 -0
- package/es/assets/img/svg/duplicate.svg +11 -0
- package/es/assets/img/svg/duplicate_object_left.svg +32 -0
- package/es/assets/img/svg/duplicate_object_right.svg +32 -0
- package/es/assets/img/svg/filtersActive.svg +19 -0
- package/es/assets/img/svg/firstsetting/L.svg +3 -0
- package/es/assets/img/svg/firstsetting/L2.svg +3 -0
- package/es/assets/img/svg/firstsetting/Open.svg +3 -0
- package/es/assets/img/svg/firstsetting/Square.svg +3 -0
- package/es/assets/img/svg/firstsetting/bar-active.svg +9 -0
- package/es/assets/img/svg/firstsetting/bar-normal.svg +3 -0
- package/es/assets/img/svg/firstsetting/bullet-current.svg +3 -0
- package/es/assets/img/svg/firstsetting/bullet-done.svg +3 -0
- package/es/assets/img/svg/firstsetting/bullet-not-done.svg +3 -0
- package/es/assets/img/svg/firstsetting/check-active.svg +3 -0
- package/es/assets/img/svg/firstsetting/check-normal.svg +3 -0
- package/es/assets/img/svg/firstsetting/pencil.svg +11 -0
- package/es/assets/img/svg/green_checkmark.svg +27 -0
- package/es/assets/img/svg/headerbar/assist.svg +3 -0
- package/es/assets/img/svg/headerbar/cart.svg +3 -0
- package/es/assets/img/svg/headerbar/check.svg +10 -0
- package/es/assets/img/svg/headerbar/consult_designer.svg +45 -0
- package/es/assets/img/svg/headerbar/edit_name.svg +26 -0
- package/es/assets/img/svg/headerbar/file-dollar.svg +13 -0
- package/es/assets/img/svg/headerbar/hamburger_menu.svg +32 -0
- package/es/assets/img/svg/headerbar/plus.svg +11 -0
- package/es/assets/img/svg/headerbar/review_quote.svg +44 -0
- package/es/assets/img/svg/headerbar/ruler-measure.svg +11 -0
- package/es/assets/img/svg/headerbar/save.svg +3 -0
- package/es/assets/img/svg/headerbar/setting.svg +75 -0
- package/es/assets/img/svg/help/check.svg +10 -0
- package/es/assets/img/svg/help/search.svg +76 -0
- package/es/assets/img/svg/intro/1-start-with-floorplan-whole.svg +27 -0
- package/es/assets/img/svg/intro/1-start-with-floorplan.svg +26 -0
- package/es/assets/img/svg/intro/2-start-from-scratch-whole.svg +28 -0
- package/es/assets/img/svg/intro/2-start-from-scratch.svg +27 -0
- package/es/assets/img/svg/intro/3-retrieve-project-whole.svg +19 -0
- package/es/assets/img/svg/intro/3-retrieve-project.svg +18 -0
- package/es/assets/img/svg/invert.svg +12 -0
- package/es/assets/img/svg/lefttoolbar/appliance-active.svg +13 -0
- package/es/assets/img/svg/lefttoolbar/appliance.svg +13 -0
- package/es/assets/img/svg/lefttoolbar/cabinet-active.svg +10 -0
- package/es/assets/img/svg/lefttoolbar/cabinet-category.svg +3 -0
- package/es/assets/img/svg/lefttoolbar/cabinet-one.svg +3 -0
- package/es/assets/img/svg/lefttoolbar/cabinet.svg +10 -0
- package/es/assets/img/svg/lefttoolbar/disigner_assistance.svg +89 -0
- package/es/assets/img/svg/lefttoolbar/door-style-active.svg +20 -0
- package/es/assets/img/svg/lefttoolbar/door-style.svg +20 -0
- package/es/assets/img/svg/lefttoolbar/door.svg +12 -0
- package/es/assets/img/svg/lefttoolbar/error_icon.svg +81 -0
- package/es/assets/img/svg/lefttoolbar/finishing-active.svg +13 -0
- package/es/assets/img/svg/lefttoolbar/finishing.svg +13 -0
- package/es/assets/img/svg/lefttoolbar/reviewforquote-active.svg +86 -0
- package/es/assets/img/svg/lefttoolbar/reviewforquote.svg +12 -0
- package/es/assets/img/svg/lefttoolbar/room-shape-L.svg +3 -0
- package/es/assets/img/svg/lefttoolbar/room-shape-active.svg +18 -0
- package/es/assets/img/svg/lefttoolbar/room-shape-custom.svg +12 -0
- package/es/assets/img/svg/lefttoolbar/room-shape-irregular.svg +3 -0
- package/es/assets/img/svg/lefttoolbar/room-shape-open.svg +3 -0
- package/es/assets/img/svg/lefttoolbar/room-shape-square.svg +3 -0
- package/es/assets/img/svg/lefttoolbar/room-shape.svg +18 -0
- package/es/assets/img/svg/lefttoolbar/search.svg +76 -0
- package/es/assets/img/svg/lefttoolbar/view_more.svg +86 -0
- package/es/assets/img/svg/lefttoolbar/warning_icon.svg +81 -0
- package/es/assets/img/svg/lefttoolbar/window.svg +12 -0
- package/es/assets/img/svg/logo.svg +11 -0
- package/es/assets/img/svg/logo_with_text.svg +25 -0
- package/es/assets/img/svg/menubar/login.svg +84 -0
- package/es/assets/img/svg/menubar/my_projects.svg +85 -0
- package/es/assets/img/svg/menubar/new_project.svg +110 -0
- package/es/assets/img/svg/menubar/save_project.svg +84 -0
- package/es/assets/img/svg/options.svg +3 -0
- package/es/assets/img/svg/positioning.svg +3 -0
- package/es/assets/img/svg/rotate.png +0 -0
- package/es/assets/img/svg/rotate.svg +17 -0
- package/es/assets/img/svg/rotate_object_clockwise.svg +26 -0
- package/es/assets/img/svg/rotate_object_counterclockwise.svg +26 -0
- package/es/assets/img/svg/toggleFilters.svg +19 -0
- package/es/assets/img/svg/toolbar/add_appliances_active.svg +64 -0
- package/es/assets/img/svg/toolbar/add_appliances_inactive.svg +52 -0
- package/es/assets/img/svg/toolbar/add_button.svg +36 -0
- package/es/assets/img/svg/toolbar/add_cabinets_active.svg +59 -0
- package/es/assets/img/svg/toolbar/add_cabinets_inactive.svg +49 -0
- package/es/assets/img/svg/toolbar/add_items_doors.svg +25 -0
- package/es/assets/img/svg/toolbar/add_items_doorways.svg +24 -0
- package/es/assets/img/svg/toolbar/add_items_refrigerator.svg +32 -0
- package/es/assets/img/svg/toolbar/add_items_windows.svg +28 -0
- package/es/assets/img/svg/toolbar/apply_button.svg +38 -0
- package/es/assets/img/svg/toolbar/arrow-plus.svg +11 -0
- package/es/assets/img/svg/toolbar/backsplash.svg +8 -0
- package/es/assets/img/svg/toolbar/cancel_button.svg +37 -0
- package/es/assets/img/svg/toolbar/consult_a_designer_button.svg +47 -0
- package/es/assets/img/svg/toolbar/countertop.svg +7 -0
- package/es/assets/img/svg/toolbar/dcm.png +0 -0
- package/es/assets/img/svg/toolbar/dcm_off.svg +12 -0
- package/es/assets/img/svg/toolbar/dcm_on.svg +474 -0
- package/es/assets/img/svg/toolbar/delete_button.svg +37 -0
- package/es/assets/img/svg/toolbar/download.svg +77 -0
- package/es/assets/img/svg/toolbar/draw_custom_floor.svg +31 -0
- package/es/assets/img/svg/toolbar/edit_button.svg +75 -0
- package/es/assets/img/svg/toolbar/email_quote_button.svg +44 -0
- package/es/assets/img/svg/toolbar/fbm.png +0 -0
- package/es/assets/img/svg/toolbar/finishing_touches_active.svg +54 -0
- package/es/assets/img/svg/toolbar/finishing_touches_inactive.svg +42 -0
- package/es/assets/img/svg/toolbar/floorstyle.svg +9 -0
- package/es/assets/img/svg/toolbar/fmb.png +0 -0
- package/es/assets/img/svg/toolbar/fmb_off.svg +12 -0
- package/es/assets/img/svg/toolbar/fmb_on.svg +489 -0
- package/es/assets/img/svg/toolbar/furnishings_icon.svg +6 -0
- package/es/assets/img/svg/toolbar/get_started_button.svg +41 -0
- package/es/assets/img/svg/toolbar/handles.svg +5 -0
- package/es/assets/img/svg/toolbar/lighting.svg +7 -0
- package/es/assets/img/svg/toolbar/lrm.png +0 -0
- package/es/assets/img/svg/toolbar/lrm_off.svg +12 -0
- package/es/assets/img/svg/toolbar/lrm_on.svg +470 -0
- package/es/assets/img/svg/toolbar/make_floorplan_active.svg +66 -0
- package/es/assets/img/svg/toolbar/make_floorplan_inactive.svg +52 -0
- package/es/assets/img/svg/toolbar/predefined_room_l_shaped.svg +20 -0
- package/es/assets/img/svg/toolbar/predefined_room_layout.svg +20 -0
- package/es/assets/img/svg/toolbar/predefined_room_long_narrow.svg +20 -0
- package/es/assets/img/svg/toolbar/predefined_room_open_l_shape.svg +20 -0
- package/es/assets/img/svg/toolbar/predefined_room_open_pentagon.svg +20 -0
- package/es/assets/img/svg/toolbar/predefined_room_open_rectangle.svg +20 -0
- package/es/assets/img/svg/toolbar/predefined_room_open_rectangle_2.svg +20 -0
- package/es/assets/img/svg/toolbar/predefined_room_pentagon.svg +20 -0
- package/es/assets/img/svg/toolbar/predefined_room_rectangle.svg +20 -0
- package/es/assets/img/svg/toolbar/predefined_room_rectangle_with_alcove.svg +20 -0
- package/es/assets/img/svg/toolbar/redo_button.svg +75 -0
- package/es/assets/img/svg/toolbar/redo_button1.svg +75 -0
- package/es/assets/img/svg/toolbar/review_quote_active.svg +14 -0
- package/es/assets/img/svg/toolbar/review_quote_inactive.svg +44 -0
- package/es/assets/img/svg/toolbar/save_project_button.svg +44 -0
- package/es/assets/img/svg/toolbar/select_doorstyle_active.svg +67 -0
- package/es/assets/img/svg/toolbar/select_doorstyle_inactive.svg +57 -0
- package/es/assets/img/svg/toolbar/shopping-cart.svg +13 -0
- package/es/assets/img/svg/toolbar/style_change_button.svg +47 -0
- package/es/assets/img/svg/toolbar/take_picture.svg +75 -0
- package/es/assets/img/svg/toolbar/undo_button.svg +76 -0
- package/es/assets/img/svg/toolbar/undo_button1.svg +76 -0
- package/es/assets/img/svg/toolbar/use_button.svg +37 -0
- package/es/assets/img/svg/toolbar/wall_color_icon.svg +6 -0
- package/es/assets/img/svg/topbar/edit_active.svg +10 -0
- package/es/assets/img/svg/topbar/edit_inactive.svg +10 -0
- package/es/assets/img/svg/topbar/redo_active.svg +42 -0
- package/es/assets/img/svg/topbar/redo_inactive.svg +23 -0
- package/es/assets/img/svg/topbar/select_all_active.svg +50 -0
- package/es/assets/img/svg/topbar/select_all_inactive.svg +32 -0
- package/es/assets/img/svg/topbar/take_picture_active.svg +51 -0
- package/es/assets/img/svg/topbar/take_picture_inactive.svg +26 -0
- package/es/assets/img/svg/topbar/undo_active.svg +42 -0
- package/es/assets/img/svg/topbar/undo_inactive.svg +23 -0
- package/es/assets/img/svg/warning_info_2d.svg +81 -0
- package/es/assets/img/svg/window/Clear.svg +3 -0
- package/es/assets/img/svg/window/Cross.svg +5 -0
- package/es/assets/img/svg/window/Double_hung.svg +4 -0
- package/es/assets/img/svg/window/Vertical.svg +4 -0
- package/es/assets/img/svg/windows_clear.svg +23 -0
- package/es/assets/img/svg/windows_cross.svg +28 -0
- package/es/assets/img/svg/windows_double_hung.svg +24 -0
- package/es/assets/img/svg/windows_vertical.svg +24 -0
- package/es/assets/img/svg/wizardstep/Custom.svg +3 -0
- package/es/assets/img/svg/wizardstep/Dashed_line.svg +3 -0
- package/es/assets/img/svg/wizardstep/L.svg +3 -0
- package/es/assets/img/svg/wizardstep/L2.svg +3 -0
- package/es/assets/img/svg/wizardstep/Open.svg +3 -0
- package/es/assets/img/svg/wizardstep/Square.svg +3 -0
- package/es/assets/img/svg/wizardstep/bar-active.svg +9 -0
- package/es/assets/img/svg/wizardstep/bar-normal.svg +3 -0
- package/es/assets/img/svg/wizardstep/bullet-current.svg +3 -0
- package/es/assets/img/svg/wizardstep/bullet-done.svg +3 -0
- package/es/assets/img/svg/wizardstep/bullet-not-done.svg +3 -0
- package/es/assets/img/svg/wizardstep/check-active.svg +3 -0
- package/es/assets/img/svg/wizardstep/check-normal.svg +3 -0
- package/es/assets/img/svg/wizardstep/detail_view.svg +87 -0
- package/es/assets/img/svg/wizardstep/pencil.svg +11 -0
- package/es/assets/img/svg/wizardstep/tile_view.svg +95 -0
- package/es/assets/img/texture/glass.jpg +0 -0
- package/es/assets/img/texture/steel.jpg +0 -0
- package/es/assets/img/texture/white1px.jpg +0 -0
- package/es/assets/img/texture/wood.jpg +0 -0
- package/es/assets/model/DCM.bin +0 -0
- package/es/assets/model/DCM.fbx +0 -0
- package/es/assets/model/DCM.gltf +1 -0
- package/es/assets/model/FBM.bin +0 -0
- package/es/assets/model/FBM.fbx +0 -0
- package/es/assets/model/FBM.gltf +1 -0
- package/es/assets/model/LRM.bin +0 -0
- package/es/assets/model/LRM.fbx +0 -0
- package/es/assets/model/LRM.gltf +1 -0
- package/es/assets/rtastore_logo.png +0 -0
- package/es/catalog/areas/area/planner-element.js +45 -0
- package/es/catalog/areas/area/textures/ceramic-tile.jpg +0 -0
- package/es/catalog/areas/area/textures/grass.jpg +0 -0
- package/es/catalog/areas/area/textures/parquet.jpg +0 -0
- package/es/catalog/areas/area/textures/strand-porcelain.jpg +0 -0
- package/es/catalog/areas/area/textures/tile1.jpg +0 -0
- package/es/catalog/back.png +0 -0
- package/es/catalog/cabinet/cabinet-assembly-order.js +36 -0
- package/es/catalog/cabinet/cabinet-texture-resolver.js +8 -0
- package/es/catalog/catalog.js +263 -0
- package/es/catalog/doors.png +0 -0
- package/es/catalog/doorways.png +0 -0
- package/es/catalog/envMap/nx.hdr +0 -0
- package/es/catalog/envMap/ny.hdr +0 -0
- package/es/catalog/envMap/nz.hdr +0 -0
- package/es/catalog/envMap/px.hdr +0 -0
- package/es/catalog/envMap/py.hdr +0 -0
- package/es/catalog/envMap/pz.hdr +0 -0
- package/es/catalog/export.js +0 -0
- package/es/catalog/factories/area-factory-3d.js +178 -0
- package/es/catalog/factories/area-factory.js +78 -0
- package/es/catalog/factories/export.js +7 -0
- package/es/catalog/factories/wall-factory-3d.js +202 -0
- package/es/catalog/factories/wall-factory.js +267 -0
- package/es/catalog/holes/door-closet/planner-element.js +222 -0
- package/es/catalog/holes/door-double/door_double.png +0 -0
- package/es/catalog/holes/door-double/planner-element.js +315 -0
- package/es/catalog/holes/door-exterior/planner-element.js +215 -0
- package/es/catalog/holes/door-interior/planner-element.js +227 -0
- package/es/catalog/holes/door-panic/panicDoor.png +0 -0
- package/es/catalog/holes/door-panic/planner-element.js +503 -0
- package/es/catalog/holes/door-panic-double/panicDoorDouble.png +0 -0
- package/es/catalog/holes/door-panic-double/planner-element.js +463 -0
- package/es/catalog/holes/door-sliding/planner-element.js +225 -0
- package/es/catalog/holes/doorway-framed/planner-element.js +145 -0
- package/es/catalog/holes/doorway-frameless/planner-element.js +104 -0
- package/es/catalog/holes/export.js +13 -0
- package/es/catalog/holes/gate/gate.jpg +0 -0
- package/es/catalog/holes/window-clear/planner-element.js +166 -0
- package/es/catalog/holes/window-clear/texture.png +0 -0
- package/es/catalog/holes/window-cross/planner-element.js +165 -0
- package/es/catalog/holes/window-cross/texture.png +0 -0
- package/es/catalog/holes/window-double-hung/planner-element.js +303 -0
- package/es/catalog/holes/window-double-hung/texture.png +0 -0
- package/es/catalog/holes/window-vertical/planner-element.js +276 -0
- package/es/catalog/holes/window-vertical/texture.png +0 -0
- package/es/catalog/lines/wall/planner-element.js +79 -0
- package/es/catalog/lines/wall/textures/bricks-normal.jpg +0 -0
- package/es/catalog/lines/wall/textures/bricks.jpg +0 -0
- package/es/catalog/lines/wall/textures/bricks2.jpg +0 -0
- package/es/catalog/lines/wall/textures/morden-normal.jpg +0 -0
- package/es/catalog/lines/wall/textures/morden.jpg +0 -0
- package/es/catalog/lines/wall/textures/painted-normal.jpg +0 -0
- package/es/catalog/lines/wall/textures/painted.jpg +0 -0
- package/es/catalog/lines/wall/textures/plaster-normal.jpg +0 -0
- package/es/catalog/lines/wall/textures/plaster.jpg +0 -0
- package/es/catalog/lines/wall/wall.png +0 -0
- package/es/catalog/molding/molding-dcm/planner-element.js +26 -0
- package/es/catalog/molding/molding-dcm/texture.png +0 -0
- package/es/catalog/molding/molding-fbm/planner-element.js +26 -0
- package/es/catalog/molding/molding-fbm/texture.png +0 -0
- package/es/catalog/molding/molding-lrm/planner-element.js +26 -0
- package/es/catalog/molding/molding-lrm/texture.png +0 -0
- package/es/catalog/utils/exporter.js +172 -0
- package/es/catalog/utils/geom-utils.js +189 -0
- package/es/catalog/utils/item-loader.js +1606 -0
- package/es/catalog/utils/load-obj.js +120 -0
- package/es/catalog/utils/mtl-loader.js +357 -0
- package/es/catalog/utils/obj-loader.js +476 -0
- package/es/catalog/windows.png +0 -0
- package/es/class/area.js +140 -0
- package/es/class/export.js +22 -0
- package/es/class/group.js +431 -0
- package/es/class/guide.js +58 -0
- package/es/class/hole.js +924 -0
- package/es/class/item.js +2131 -0
- package/es/class/layer.js +663 -0
- package/es/class/line.js +1227 -0
- package/es/class/project.js +940 -0
- package/es/class/vertex.js +204 -0
- package/es/components/content.js +149 -0
- package/es/components/export.js +7 -0
- package/es/components/style/export.js +5 -0
- package/es/components/style/form-number-input.js +183 -0
- package/es/components/style/form-submit-button.js +25 -0
- package/es/components/viewer2d/area.js +81 -0
- package/es/components/viewer2d/export.js +31 -0
- package/es/components/viewer2d/grids/grid-horizontal-streak.js +36 -0
- package/es/components/viewer2d/grids/grid-streak.js +36 -0
- package/es/components/viewer2d/grids/grid-vertical-streak.js +36 -0
- package/es/components/viewer2d/grids/grids.js +30 -0
- package/es/components/viewer2d/group.js +53 -0
- package/es/components/viewer2d/item.js +249 -0
- package/es/components/viewer2d/layer.js +164 -0
- package/es/components/viewer2d/line.js +964 -0
- package/es/components/viewer2d/ruler.js +84 -0
- package/es/components/viewer2d/rulerDist.js +102 -0
- package/es/components/viewer2d/rulerX.js +145 -0
- package/es/components/viewer2d/rulerY.js +147 -0
- package/es/components/viewer2d/scene.js +128 -0
- package/es/components/viewer2d/snap.js +74 -0
- package/es/components/viewer2d/state.js +73 -0
- package/es/components/viewer2d/utils.js +187 -0
- package/es/components/viewer2d/vertex.js +66 -0
- package/es/components/viewer2d/viewer2d.js +1468 -0
- package/es/components/viewer3d/camera-controls-module/camera-controls.module.js +2585 -0
- package/es/components/viewer3d/dcm.js +401 -0
- package/es/components/viewer3d/fbm.js +414 -0
- package/es/components/viewer3d/front3D.js +61 -0
- package/es/components/viewer3d/grid-creator.js +25 -0
- package/es/components/viewer3d/grids/grid-horizontal-streak.js +36 -0
- package/es/components/viewer3d/grids/grid-streak.js +27 -0
- package/es/components/viewer3d/grids/grid-vertical-streak.js +36 -0
- package/es/components/viewer3d/libs/first-person-controls.js +67 -0
- package/es/components/viewer3d/libs/helvetiker_regular.typeface.js +1281 -0
- package/es/components/viewer3d/libs/mtl-loader.js +357 -0
- package/es/components/viewer3d/libs/obj-loader.js +462 -0
- package/es/components/viewer3d/libs/orbit-controls.js +697 -0
- package/es/components/viewer3d/libs/pointer-lock-controls.js +44 -0
- package/es/components/viewer3d/lrm.js +305 -0
- package/es/components/viewer3d/model.js +708 -0
- package/es/components/viewer3d/pointer-lock-navigation.js +25 -0
- package/es/components/viewer3d/ruler-utils/itemRect.js +61 -0
- package/es/components/viewer3d/ruler-utils/layer3D.js +495 -0
- package/es/components/viewer3d/ruler-utils/ruler3D.js +224 -0
- package/es/components/viewer3d/ruler-utils/scene3D.js +59 -0
- package/es/components/viewer3d/ruler-utils/state3D.js +18 -0
- package/es/components/viewer3d/scene-creator.js +3853 -0
- package/es/components/viewer3d/three-memory-cleaner.js +37 -0
- package/es/components/viewer3d/viewer3d-first-person.js +309 -0
- package/es/components/viewer3d/viewer3d.js +2770 -0
- package/es/constants/applianceCategories.js +19 -0
- package/es/constants/catalog/skinPanel.js +9 -0
- package/es/constants.js +788 -0
- package/es/devLiteRenderer.js +913 -0
- package/es/engine/2d/viewer-utils.js +20 -0
- package/es/events/external/handleExternalEvent.js +144 -0
- package/es/events/external/handleExternalEvent.util.js +1099 -0
- package/es/events/external/handlers.addItem.js +47 -0
- package/es/events/external/handlers.changeDoorStyle.js +138 -0
- package/es/events/external/handlers.elementOps.js +16 -0
- package/es/events/external/handlers.finishing.js +26 -0
- package/es/events/external/handlers.hole.js +4 -0
- package/es/events/external/handlers.loadProject.js +127 -0
- package/es/events/external/handlers.molding.js +24 -0
- package/es/events/external/handlers.projectLifecycle.js +11 -0
- package/es/events/external/handlers.projectSettings.js +32 -0
- package/es/events/external/handlers.replaceCabinet.js +41 -0
- package/es/events/external/handlers.roomShape.js +8 -0
- package/es/events/external/handlers.syncScene.js +54 -0
- package/es/events/external/handlers.updateSelectedElements.js +11 -0
- package/es/events/external/handlers.viewMode.js +11 -0
- package/es/events/external/handlers.viewerNavigation.js +108 -0
- package/es/events/external/handlers.wall.js +7 -0
- package/es/index.js +627 -0
- package/es/mappings/external-events/mapExternalEventPayload.js +28 -0
- package/es/mappings/external-events/mappers/addItemMapper.js +97 -0
- package/es/mappings/external-events/mappers/ccdfMapper.js +97 -0
- package/es/mappings/external-events/mappers/ccdfToCDSMapper.js +50 -0
- package/es/mappings/external-events/mappers/changeDoorStyleMapper.js +37 -0
- package/es/mappings/external-events/mappers/loadProjectMapper.js +62 -0
- package/es/mappings/holesToCatalog.js +139 -0
- package/es/models.js +533 -0
- package/es/plugins/SVGLoader.js +1414 -0
- package/es/plugins/console-debugger.js +34 -0
- package/es/plugins/export.js +7 -0
- package/es/plugins/keyboard.js +110 -0
- package/es/reducers/areas-reducer.js +12 -0
- package/es/reducers/export.js +23 -0
- package/es/reducers/groups-reducer.js +38 -0
- package/es/reducers/holes-reducer.js +62 -0
- package/es/reducers/items-reducer.js +142 -0
- package/es/reducers/lines-reducer.js +45 -0
- package/es/reducers/project-reducer.js +136 -0
- package/es/reducers/reducer.js +18 -0
- package/es/reducers/scene-reducer.js +28 -0
- package/es/reducers/vertices-reducer.js +19 -0
- package/es/reducers/viewer2d-reducer.js +77 -0
- package/es/reducers/viewer3d-reducer.js +58 -0
- package/es/shared/concurrency/async-pool.js +71 -0
- package/es/shared/domain/asset/load-asset-json.js +53 -0
- package/es/shared/domain/asset/sanitize-asset-url.js +25 -0
- package/es/shared/domain/cabinet-corner.js +6 -0
- package/es/shared/domain/cabinet-mirror.js +7 -0
- package/es/shared/domain/cabinet-warning.js +13 -0
- package/es/shared/math/line-metrics.js +34 -0
- package/es/shared/network/load-json.js +45 -0
- package/es/shared/objects/immutable.js +3 -0
- package/es/shared-style.js +66 -0
- package/es/translator/en.js +104 -0
- package/es/translator/it.js +79 -0
- package/es/translator/ru.js +79 -0
- package/es/translator/translator.js +80 -0
- package/es/utils/browser.js +33 -0
- package/es/utils/convert-units-lite.js +38 -0
- package/es/utils/email-validator.js +4 -0
- package/es/utils/export.js +25 -0
- package/es/utils/geometry/overlap/index.js +1 -0
- package/es/utils/geometry/overlap/overlapHelpers.js +24 -0
- package/es/utils/geometry/overlap/pointHelpers.js +25 -0
- package/es/utils/geometry/overlap/relationshipOfTwoOverlappedLines2.js +374 -0
- package/es/utils/geometry.js +2800 -0
- package/es/utils/get-edges-of-subgraphs.js +26 -0
- package/es/utils/graph-cycles.js +238 -0
- package/es/utils/graph-inner-cycles.js +46 -0
- package/es/utils/graph.js +145 -0
- package/es/utils/helper.js +448 -0
- package/es/utils/history.js +41 -0
- package/es/utils/id-broker.js +15 -0
- package/es/utils/logger.js +8 -0
- package/es/utils/math.js +50 -0
- package/es/utils/molding.js +1118 -0
- package/es/utils/name-generator.js +14 -0
- package/es/utils/objects-utils.js +50 -0
- package/es/utils/phone-validator.js +4 -0
- package/es/utils/process-black-list.js +15 -0
- package/es/utils/react-if.js +18 -0
- package/es/utils/ruler.js +58 -0
- package/es/utils/skinPanelEngine.js +631 -0
- package/es/utils/snap-scene.js +94 -0
- package/es/utils/snap.js +231 -0
- package/es/utils/summarizeCart.js +24 -0
- package/es/utils/threeCSG.es6.js +494 -0
- package/es/version.js +1 -0
- package/lib/@history.js +11 -0
- package/lib/AppContext.js +11 -0
- package/lib/LiteKitchenConfigurator.js +529 -0
- package/lib/LiteRenderer.js +325 -0
- package/lib/actions/area-actions.js +21 -0
- package/lib/actions/export.js +36 -0
- package/lib/actions/groups-actions.js +107 -0
- package/lib/actions/holes-actions.js +140 -0
- package/lib/actions/items-actions.js +405 -0
- package/lib/actions/lines-actions.js +98 -0
- package/lib/actions/project-actions.js +351 -0
- package/lib/actions/scene-actions.js +43 -0
- package/lib/actions/vertices-actions.js +35 -0
- package/lib/actions/viewer2d-actions.js +73 -0
- package/lib/actions/viewer3d-actions.js +32 -0
- package/lib/analytics/ga4.js +194 -0
- package/lib/analytics/posthog.js +68 -0
- package/lib/assets/Window.hdr +2100 -0
- package/lib/assets/brown_photostudio_02_1k.hdr +0 -0
- package/lib/assets/fonts/Rene Bieder Milliard Black Italic.woff +0 -0
- package/lib/assets/fonts/Rene Bieder Milliard Black.woff +0 -0
- package/lib/assets/fonts/Rene Bieder Milliard Bold Italic.woff +0 -0
- package/lib/assets/fonts/Rene Bieder Milliard Bold.woff +0 -0
- package/lib/assets/fonts/Rene Bieder Milliard Book Italic.woff +0 -0
- package/lib/assets/fonts/Rene Bieder Milliard Book.woff +0 -0
- package/lib/assets/fonts/Rene Bieder Milliard ExtraBold Italic.woff +0 -0
- package/lib/assets/fonts/Rene Bieder Milliard ExtraBold.woff +0 -0
- package/lib/assets/fonts/Rene Bieder Milliard ExtraLight Italic.woff +0 -0
- package/lib/assets/fonts/Rene Bieder Milliard ExtraLight.woff +0 -0
- package/lib/assets/fonts/Rene Bieder Milliard Hairline Italic.woff +0 -0
- package/lib/assets/fonts/Rene Bieder Milliard Hairline.woff +0 -0
- package/lib/assets/fonts/Rene Bieder Milliard Heavy Italic.woff +0 -0
- package/lib/assets/fonts/Rene Bieder Milliard Heavy.woff +0 -0
- package/lib/assets/fonts/Rene Bieder Milliard Light Italic.woff +0 -0
- package/lib/assets/fonts/Rene Bieder Milliard Light.woff +0 -0
- package/lib/assets/fonts/Rene Bieder Milliard Medium Italic.woff +0 -0
- package/lib/assets/fonts/Rene Bieder Milliard Medium.woff +0 -0
- package/lib/assets/fonts/Rene Bieder Milliard SemiBold Italic.woff +0 -0
- package/lib/assets/fonts/Rene Bieder Milliard SemiBold.woff +0 -0
- package/lib/assets/fonts/Rene Bieder Milliard Thin Italic.woff +0 -0
- package/lib/assets/fonts/Rene Bieder Milliard Thin.woff +0 -0
- package/lib/assets/fonts/style.css +177 -0
- package/lib/assets/gltf/door_closet.gltf +1 -0
- package/lib/assets/gltf/door_exterior.gltf +1 -0
- package/lib/assets/gltf/door_interior.gltf +1 -0
- package/lib/assets/gltf/door_sliding.gltf +1 -0
- package/lib/assets/gltf/doorway_framed.bin +0 -0
- package/lib/assets/gltf/doorway_framed.fbx +0 -0
- package/lib/assets/gltf/doorway_framed.gltf +1 -0
- package/lib/assets/gltf/window_clear.bin +0 -0
- package/lib/assets/gltf/window_clear.fbx +0 -0
- package/lib/assets/gltf/window_clear.gltf +1 -0
- package/lib/assets/gltf/window_cross.bin +0 -0
- package/lib/assets/gltf/window_cross.fbx +0 -0
- package/lib/assets/gltf/window_cross.gltf +1 -0
- package/lib/assets/gltf/window_double_hung.bin +0 -0
- package/lib/assets/gltf/window_double_hung.fbx +0 -0
- package/lib/assets/gltf/window_double_hung.gltf +1 -0
- package/lib/assets/gltf/window_vertical.bin +0 -0
- package/lib/assets/gltf/window_vertical.fbx +0 -0
- package/lib/assets/gltf/window_vertical.gltf +1 -0
- package/lib/assets/img/TKC_thumbnail.png +0 -0
- package/lib/assets/img/Toggle.png +0 -0
- package/lib/assets/img/default/maple.jpg +0 -0
- package/lib/assets/img/default/steel.jpg +0 -0
- package/lib/assets/img/loading/loading.gif +0 -0
- package/lib/assets/img/loading/loading_1.svg +11 -0
- package/lib/assets/img/loading_large.gif +0 -0
- package/lib/assets/img/png/door/closet.png +0 -0
- package/lib/assets/img/png/door/doorwaysframed.png +0 -0
- package/lib/assets/img/png/door/doorwaysframeles.png +0 -0
- package/lib/assets/img/png/door/doorwaysframeless.png +0 -0
- package/lib/assets/img/png/door/exterior.png +0 -0
- package/lib/assets/img/png/door/interior.png +0 -0
- package/lib/assets/img/png/door/sliding.png +0 -0
- package/lib/assets/img/png/helper/outcome.png +0 -0
- package/lib/assets/img/project_img.png +0 -0
- package/lib/assets/img/rta/rta_logo_box_blue.jpg +0 -0
- package/lib/assets/img/rta/rta_logo_box_blue_ico.jpg +0 -0
- package/lib/assets/img/rta/rta_logo_box_blue_ico.svg +55 -0
- package/lib/assets/img/rta/rta_logo_box_darkGray.jpg +0 -0
- package/lib/assets/img/rta/rta_logo_box_lightblue.png +0 -0
- package/lib/assets/img/rta/rta_logo_box_lightmaroon.png +0 -0
- package/lib/assets/img/rta/rta_logo_box_maroon.png +0 -0
- package/lib/assets/img/rta/rta_logo_box_white.png +0 -0
- package/lib/assets/img/rta_menu.png +0 -0
- package/lib/assets/img/step2.jpg +0 -0
- package/lib/assets/img/step3.jpg +0 -0
- package/lib/assets/img/step4.jpg +0 -0
- package/lib/assets/img/step5.jpg +0 -0
- package/lib/assets/img/step6.jpg +0 -0
- package/lib/assets/img/step7.jpg +0 -0
- package/lib/assets/img/step8.jpg +0 -0
- package/lib/assets/img/svg/2d_delete_object.svg +33 -0
- package/lib/assets/img/svg/2d_delete_object1.svg +33 -0
- package/lib/assets/img/svg/2d_lock_object.svg +33 -0
- package/lib/assets/img/svg/3d_item_move.svg +10 -0
- package/lib/assets/img/svg/3d_item_rotation.svg +4 -0
- package/lib/assets/img/svg/3d_item_warning_edit.svg +77 -0
- package/lib/assets/img/svg/3d_item_warning_info.svg +81 -0
- package/lib/assets/img/svg/accessories.svg +4 -0
- package/lib/assets/img/svg/angle_icon.svg +39 -0
- package/lib/assets/img/svg/blank_div.svg +14 -0
- package/lib/assets/img/svg/bottombar/2d3d_button.svg +3 -0
- package/lib/assets/img/svg/bottombar/2d3d_button_active.svg +3 -0
- package/lib/assets/img/svg/bottombar/2d3d_toggle.svg +4 -0
- package/lib/assets/img/svg/bottombar/2d3d_toggle_active.svg +4 -0
- package/lib/assets/img/svg/bottombar/arrow-down.svg +3 -0
- package/lib/assets/img/svg/bottombar/arrow-left.svg +3 -0
- package/lib/assets/img/svg/bottombar/arrow-minus.svg +3 -0
- package/lib/assets/img/svg/bottombar/arrow-plus.svg +11 -0
- package/lib/assets/img/svg/bottombar/arrow-right.svg +3 -0
- package/lib/assets/img/svg/bottombar/arrow-up.svg +3 -0
- package/lib/assets/img/svg/bottombar/collapse.svg +3 -0
- package/lib/assets/img/svg/bottombar/elevation-back.svg +6 -0
- package/lib/assets/img/svg/bottombar/elevation-front.svg +6 -0
- package/lib/assets/img/svg/bottombar/elevation-left.svg +6 -0
- package/lib/assets/img/svg/bottombar/elevation-right.svg +7 -0
- package/lib/assets/img/svg/bottombar/elevation.svg +13 -0
- package/lib/assets/img/svg/bottombar/expand.svg +3 -0
- package/lib/assets/img/svg/bottombar/help.svg +72 -0
- package/lib/assets/img/svg/bottombar/incm_toggle.svg +39 -0
- package/lib/assets/img/svg/bottombar/pan_1.svg +57 -0
- package/lib/assets/img/svg/bottombar/pan_2.svg +27 -0
- package/lib/assets/img/svg/bottombar/pan_3.svg +27 -0
- package/lib/assets/img/svg/bottombar/pan_4.svg +27 -0
- package/lib/assets/img/svg/bottombar/pan_5.svg +27 -0
- package/lib/assets/img/svg/bottombar/settings.svg +23 -0
- package/lib/assets/img/svg/bottombar/spin-down.svg +76 -0
- package/lib/assets/img/svg/bottombar/spin-left.svg +75 -0
- package/lib/assets/img/svg/bottombar/spin-right.svg +75 -0
- package/lib/assets/img/svg/bottombar/spin-up.svg +76 -0
- package/lib/assets/img/svg/bottombar/spin_1.svg +48 -0
- package/lib/assets/img/svg/bottombar/spin_2.svg +31 -0
- package/lib/assets/img/svg/bottombar/spin_3.svg +31 -0
- package/lib/assets/img/svg/bottombar/spin_4.svg +31 -0
- package/lib/assets/img/svg/bottombar/spin_5.svg +31 -0
- package/lib/assets/img/svg/bottombar/zoomin.svg +29 -0
- package/lib/assets/img/svg/bottombar/zoomout.svg +26 -0
- package/lib/assets/img/svg/check.svg +10 -0
- package/lib/assets/img/svg/close.svg +11 -0
- package/lib/assets/img/svg/color/Black.svg +3 -0
- package/lib/assets/img/svg/color/Blue.svg +3 -0
- package/lib/assets/img/svg/color/Cream.svg +3 -0
- package/lib/assets/img/svg/color/Gray.svg +3 -0
- package/lib/assets/img/svg/color/Green.svg +3 -0
- package/lib/assets/img/svg/color/White.svg +3 -0
- package/lib/assets/img/svg/color/White.svg.bak +3 -0
- package/lib/assets/img/svg/color/stone2.jpg +0 -0
- package/lib/assets/img/svg/color/wood2.jpg +0 -0
- package/lib/assets/img/svg/copy.svg +11 -0
- package/lib/assets/img/svg/delete.svg +7 -0
- package/lib/assets/img/svg/detail.svg +77 -0
- package/lib/assets/img/svg/disclaimer/background.svg +758 -0
- package/lib/assets/img/svg/disclaimer/logo-dots.svg +11 -0
- package/lib/assets/img/svg/door/Closet.svg +11 -0
- package/lib/assets/img/svg/door/Exterior.svg +5 -0
- package/lib/assets/img/svg/door/Framed_dorway.svg +5 -0
- package/lib/assets/img/svg/door/Frameless_dorway.svg +5 -0
- package/lib/assets/img/svg/door/Interior.svg +7 -0
- package/lib/assets/img/svg/door/Sliding.svg +5 -0
- package/lib/assets/img/svg/doors_closet.svg +47 -0
- package/lib/assets/img/svg/doors_exterior.svg +25 -0
- package/lib/assets/img/svg/doors_interior.svg +29 -0
- package/lib/assets/img/svg/doors_patio.svg +26 -0
- package/lib/assets/img/svg/duplicate.svg +11 -0
- package/lib/assets/img/svg/duplicate_object_left.svg +32 -0
- package/lib/assets/img/svg/duplicate_object_right.svg +32 -0
- package/lib/assets/img/svg/filtersActive.svg +19 -0
- package/lib/assets/img/svg/firstsetting/L.svg +3 -0
- package/lib/assets/img/svg/firstsetting/L2.svg +3 -0
- package/lib/assets/img/svg/firstsetting/Open.svg +3 -0
- package/lib/assets/img/svg/firstsetting/Square.svg +3 -0
- package/lib/assets/img/svg/firstsetting/bar-active.svg +9 -0
- package/lib/assets/img/svg/firstsetting/bar-normal.svg +3 -0
- package/lib/assets/img/svg/firstsetting/bullet-current.svg +3 -0
- package/lib/assets/img/svg/firstsetting/bullet-done.svg +3 -0
- package/lib/assets/img/svg/firstsetting/bullet-not-done.svg +3 -0
- package/lib/assets/img/svg/firstsetting/check-active.svg +3 -0
- package/lib/assets/img/svg/firstsetting/check-normal.svg +3 -0
- package/lib/assets/img/svg/firstsetting/pencil.svg +11 -0
- package/lib/assets/img/svg/green_checkmark.svg +27 -0
- package/lib/assets/img/svg/headerbar/assist.svg +3 -0
- package/lib/assets/img/svg/headerbar/cart.svg +3 -0
- package/lib/assets/img/svg/headerbar/check.svg +10 -0
- package/lib/assets/img/svg/headerbar/consult_designer.svg +45 -0
- package/lib/assets/img/svg/headerbar/edit_name.svg +26 -0
- package/lib/assets/img/svg/headerbar/file-dollar.svg +13 -0
- package/lib/assets/img/svg/headerbar/hamburger_menu.svg +32 -0
- package/lib/assets/img/svg/headerbar/plus.svg +11 -0
- package/lib/assets/img/svg/headerbar/review_quote.svg +44 -0
- package/lib/assets/img/svg/headerbar/ruler-measure.svg +11 -0
- package/lib/assets/img/svg/headerbar/save.svg +3 -0
- package/lib/assets/img/svg/headerbar/setting.svg +75 -0
- package/lib/assets/img/svg/help/check.svg +10 -0
- package/lib/assets/img/svg/help/search.svg +76 -0
- package/lib/assets/img/svg/intro/1-start-with-floorplan-whole.svg +27 -0
- package/lib/assets/img/svg/intro/1-start-with-floorplan.svg +26 -0
- package/lib/assets/img/svg/intro/2-start-from-scratch-whole.svg +28 -0
- package/lib/assets/img/svg/intro/2-start-from-scratch.svg +27 -0
- package/lib/assets/img/svg/intro/3-retrieve-project-whole.svg +19 -0
- package/lib/assets/img/svg/intro/3-retrieve-project.svg +18 -0
- package/lib/assets/img/svg/invert.svg +12 -0
- package/lib/assets/img/svg/lefttoolbar/appliance-active.svg +13 -0
- package/lib/assets/img/svg/lefttoolbar/appliance.svg +13 -0
- package/lib/assets/img/svg/lefttoolbar/cabinet-active.svg +10 -0
- package/lib/assets/img/svg/lefttoolbar/cabinet-category.svg +3 -0
- package/lib/assets/img/svg/lefttoolbar/cabinet-one.svg +3 -0
- package/lib/assets/img/svg/lefttoolbar/cabinet.svg +10 -0
- package/lib/assets/img/svg/lefttoolbar/disigner_assistance.svg +89 -0
- package/lib/assets/img/svg/lefttoolbar/door-style-active.svg +20 -0
- package/lib/assets/img/svg/lefttoolbar/door-style.svg +20 -0
- package/lib/assets/img/svg/lefttoolbar/door.svg +12 -0
- package/lib/assets/img/svg/lefttoolbar/error_icon.svg +81 -0
- package/lib/assets/img/svg/lefttoolbar/finishing-active.svg +13 -0
- package/lib/assets/img/svg/lefttoolbar/finishing.svg +13 -0
- package/lib/assets/img/svg/lefttoolbar/reviewforquote-active.svg +86 -0
- package/lib/assets/img/svg/lefttoolbar/reviewforquote.svg +12 -0
- package/lib/assets/img/svg/lefttoolbar/room-shape-L.svg +3 -0
- package/lib/assets/img/svg/lefttoolbar/room-shape-active.svg +18 -0
- package/lib/assets/img/svg/lefttoolbar/room-shape-custom.svg +12 -0
- package/lib/assets/img/svg/lefttoolbar/room-shape-irregular.svg +3 -0
- package/lib/assets/img/svg/lefttoolbar/room-shape-open.svg +3 -0
- package/lib/assets/img/svg/lefttoolbar/room-shape-square.svg +3 -0
- package/lib/assets/img/svg/lefttoolbar/room-shape.svg +18 -0
- package/lib/assets/img/svg/lefttoolbar/search.svg +76 -0
- package/lib/assets/img/svg/lefttoolbar/view_more.svg +86 -0
- package/lib/assets/img/svg/lefttoolbar/warning_icon.svg +81 -0
- package/lib/assets/img/svg/lefttoolbar/window.svg +12 -0
- package/lib/assets/img/svg/logo.svg +11 -0
- package/lib/assets/img/svg/logo_with_text.svg +25 -0
- package/lib/assets/img/svg/menubar/login.svg +84 -0
- package/lib/assets/img/svg/menubar/my_projects.svg +85 -0
- package/lib/assets/img/svg/menubar/new_project.svg +110 -0
- package/lib/assets/img/svg/menubar/save_project.svg +84 -0
- package/lib/assets/img/svg/options.svg +3 -0
- package/lib/assets/img/svg/positioning.svg +3 -0
- package/lib/assets/img/svg/rotate.png +0 -0
- package/lib/assets/img/svg/rotate.svg +17 -0
- package/lib/assets/img/svg/rotate_object_clockwise.svg +26 -0
- package/lib/assets/img/svg/rotate_object_counterclockwise.svg +26 -0
- package/lib/assets/img/svg/toggleFilters.svg +19 -0
- package/lib/assets/img/svg/toolbar/add_appliances_active.svg +64 -0
- package/lib/assets/img/svg/toolbar/add_appliances_inactive.svg +52 -0
- package/lib/assets/img/svg/toolbar/add_button.svg +36 -0
- package/lib/assets/img/svg/toolbar/add_cabinets_active.svg +59 -0
- package/lib/assets/img/svg/toolbar/add_cabinets_inactive.svg +49 -0
- package/lib/assets/img/svg/toolbar/add_items_doors.svg +25 -0
- package/lib/assets/img/svg/toolbar/add_items_doorways.svg +24 -0
- package/lib/assets/img/svg/toolbar/add_items_refrigerator.svg +32 -0
- package/lib/assets/img/svg/toolbar/add_items_windows.svg +28 -0
- package/lib/assets/img/svg/toolbar/apply_button.svg +38 -0
- package/lib/assets/img/svg/toolbar/arrow-plus.svg +11 -0
- package/lib/assets/img/svg/toolbar/backsplash.svg +8 -0
- package/lib/assets/img/svg/toolbar/cancel_button.svg +37 -0
- package/lib/assets/img/svg/toolbar/consult_a_designer_button.svg +47 -0
- package/lib/assets/img/svg/toolbar/countertop.svg +7 -0
- package/lib/assets/img/svg/toolbar/dcm.png +0 -0
- package/lib/assets/img/svg/toolbar/dcm_off.svg +12 -0
- package/lib/assets/img/svg/toolbar/dcm_on.svg +474 -0
- package/lib/assets/img/svg/toolbar/delete_button.svg +37 -0
- package/lib/assets/img/svg/toolbar/download.svg +77 -0
- package/lib/assets/img/svg/toolbar/draw_custom_floor.svg +31 -0
- package/lib/assets/img/svg/toolbar/edit_button.svg +75 -0
- package/lib/assets/img/svg/toolbar/email_quote_button.svg +44 -0
- package/lib/assets/img/svg/toolbar/fbm.png +0 -0
- package/lib/assets/img/svg/toolbar/finishing_touches_active.svg +54 -0
- package/lib/assets/img/svg/toolbar/finishing_touches_inactive.svg +42 -0
- package/lib/assets/img/svg/toolbar/floorstyle.svg +9 -0
- package/lib/assets/img/svg/toolbar/fmb.png +0 -0
- package/lib/assets/img/svg/toolbar/fmb_off.svg +12 -0
- package/lib/assets/img/svg/toolbar/fmb_on.svg +489 -0
- package/lib/assets/img/svg/toolbar/furnishings_icon.svg +6 -0
- package/lib/assets/img/svg/toolbar/get_started_button.svg +41 -0
- package/lib/assets/img/svg/toolbar/handles.svg +5 -0
- package/lib/assets/img/svg/toolbar/lighting.svg +7 -0
- package/lib/assets/img/svg/toolbar/lrm.png +0 -0
- package/lib/assets/img/svg/toolbar/lrm_off.svg +12 -0
- package/lib/assets/img/svg/toolbar/lrm_on.svg +470 -0
- package/lib/assets/img/svg/toolbar/make_floorplan_active.svg +66 -0
- package/lib/assets/img/svg/toolbar/make_floorplan_inactive.svg +52 -0
- package/lib/assets/img/svg/toolbar/predefined_room_l_shaped.svg +20 -0
- package/lib/assets/img/svg/toolbar/predefined_room_layout.svg +20 -0
- package/lib/assets/img/svg/toolbar/predefined_room_long_narrow.svg +20 -0
- package/lib/assets/img/svg/toolbar/predefined_room_open_l_shape.svg +20 -0
- package/lib/assets/img/svg/toolbar/predefined_room_open_pentagon.svg +20 -0
- package/lib/assets/img/svg/toolbar/predefined_room_open_rectangle.svg +20 -0
- package/lib/assets/img/svg/toolbar/predefined_room_open_rectangle_2.svg +20 -0
- package/lib/assets/img/svg/toolbar/predefined_room_pentagon.svg +20 -0
- package/lib/assets/img/svg/toolbar/predefined_room_rectangle.svg +20 -0
- package/lib/assets/img/svg/toolbar/predefined_room_rectangle_with_alcove.svg +20 -0
- package/lib/assets/img/svg/toolbar/redo_button.svg +75 -0
- package/lib/assets/img/svg/toolbar/redo_button1.svg +75 -0
- package/lib/assets/img/svg/toolbar/review_quote_active.svg +14 -0
- package/lib/assets/img/svg/toolbar/review_quote_inactive.svg +44 -0
- package/lib/assets/img/svg/toolbar/save_project_button.svg +44 -0
- package/lib/assets/img/svg/toolbar/select_doorstyle_active.svg +67 -0
- package/lib/assets/img/svg/toolbar/select_doorstyle_inactive.svg +57 -0
- package/lib/assets/img/svg/toolbar/shopping-cart.svg +13 -0
- package/lib/assets/img/svg/toolbar/style_change_button.svg +47 -0
- package/lib/assets/img/svg/toolbar/take_picture.svg +75 -0
- package/lib/assets/img/svg/toolbar/undo_button.svg +76 -0
- package/lib/assets/img/svg/toolbar/undo_button1.svg +76 -0
- package/lib/assets/img/svg/toolbar/use_button.svg +37 -0
- package/lib/assets/img/svg/toolbar/wall_color_icon.svg +6 -0
- package/lib/assets/img/svg/topbar/edit_active.svg +10 -0
- package/lib/assets/img/svg/topbar/edit_inactive.svg +10 -0
- package/lib/assets/img/svg/topbar/redo_active.svg +42 -0
- package/lib/assets/img/svg/topbar/redo_inactive.svg +23 -0
- package/lib/assets/img/svg/topbar/select_all_active.svg +50 -0
- package/lib/assets/img/svg/topbar/select_all_inactive.svg +32 -0
- package/lib/assets/img/svg/topbar/take_picture_active.svg +51 -0
- package/lib/assets/img/svg/topbar/take_picture_inactive.svg +26 -0
- package/lib/assets/img/svg/topbar/undo_active.svg +42 -0
- package/lib/assets/img/svg/topbar/undo_inactive.svg +23 -0
- package/lib/assets/img/svg/warning_info_2d.svg +81 -0
- package/lib/assets/img/svg/window/Clear.svg +3 -0
- package/lib/assets/img/svg/window/Cross.svg +5 -0
- package/lib/assets/img/svg/window/Double_hung.svg +4 -0
- package/lib/assets/img/svg/window/Vertical.svg +4 -0
- package/lib/assets/img/svg/windows_clear.svg +23 -0
- package/lib/assets/img/svg/windows_cross.svg +28 -0
- package/lib/assets/img/svg/windows_double_hung.svg +24 -0
- package/lib/assets/img/svg/windows_vertical.svg +24 -0
- package/lib/assets/img/svg/wizardstep/Custom.svg +3 -0
- package/lib/assets/img/svg/wizardstep/Dashed_line.svg +3 -0
- package/lib/assets/img/svg/wizardstep/L.svg +3 -0
- package/lib/assets/img/svg/wizardstep/L2.svg +3 -0
- package/lib/assets/img/svg/wizardstep/Open.svg +3 -0
- package/lib/assets/img/svg/wizardstep/Square.svg +3 -0
- package/lib/assets/img/svg/wizardstep/bar-active.svg +9 -0
- package/lib/assets/img/svg/wizardstep/bar-normal.svg +3 -0
- package/lib/assets/img/svg/wizardstep/bullet-current.svg +3 -0
- package/lib/assets/img/svg/wizardstep/bullet-done.svg +3 -0
- package/lib/assets/img/svg/wizardstep/bullet-not-done.svg +3 -0
- package/lib/assets/img/svg/wizardstep/check-active.svg +3 -0
- package/lib/assets/img/svg/wizardstep/check-normal.svg +3 -0
- package/lib/assets/img/svg/wizardstep/detail_view.svg +87 -0
- package/lib/assets/img/svg/wizardstep/pencil.svg +11 -0
- package/lib/assets/img/svg/wizardstep/tile_view.svg +95 -0
- package/lib/assets/img/texture/glass.jpg +0 -0
- package/lib/assets/img/texture/steel.jpg +0 -0
- package/lib/assets/img/texture/white1px.jpg +0 -0
- package/lib/assets/img/texture/wood.jpg +0 -0
- package/lib/assets/model/DCM.bin +0 -0
- package/lib/assets/model/DCM.fbx +0 -0
- package/lib/assets/model/DCM.gltf +1 -0
- package/lib/assets/model/FBM.bin +0 -0
- package/lib/assets/model/FBM.fbx +0 -0
- package/lib/assets/model/FBM.gltf +1 -0
- package/lib/assets/model/LRM.bin +0 -0
- package/lib/assets/model/LRM.fbx +0 -0
- package/lib/assets/model/LRM.gltf +1 -0
- package/lib/assets/rtastore_logo.png +0 -0
- package/lib/catalog/areas/area/planner-element.js +53 -0
- package/lib/catalog/areas/area/textures/ceramic-tile.jpg +0 -0
- package/lib/catalog/areas/area/textures/grass.jpg +0 -0
- package/lib/catalog/areas/area/textures/parquet.jpg +0 -0
- package/lib/catalog/areas/area/textures/strand-porcelain.jpg +0 -0
- package/lib/catalog/areas/area/textures/tile1.jpg +0 -0
- package/lib/catalog/back.png +0 -0
- package/lib/catalog/cabinet/cabinet-assembly-order.js +42 -0
- package/lib/catalog/cabinet/cabinet-texture-resolver.js +14 -0
- package/lib/catalog/catalog.js +270 -0
- package/lib/catalog/doors.png +0 -0
- package/lib/catalog/doorways.png +0 -0
- package/lib/catalog/envMap/nx.hdr +0 -0
- package/lib/catalog/envMap/ny.hdr +0 -0
- package/lib/catalog/envMap/nz.hdr +0 -0
- package/lib/catalog/envMap/px.hdr +0 -0
- package/lib/catalog/envMap/py.hdr +0 -0
- package/lib/catalog/envMap/pz.hdr +0 -0
- package/lib/catalog/export.js +1 -0
- package/lib/catalog/factories/area-factory-3d.js +187 -0
- package/lib/catalog/factories/area-factory.js +88 -0
- package/lib/catalog/factories/export.js +25 -0
- package/lib/catalog/factories/wall-factory-3d.js +212 -0
- package/lib/catalog/factories/wall-factory.js +279 -0
- package/lib/catalog/holes/door-closet/planner-element.js +232 -0
- package/lib/catalog/holes/door-double/door_double.png +0 -0
- package/lib/catalog/holes/door-double/planner-element.js +325 -0
- package/lib/catalog/holes/door-exterior/planner-element.js +225 -0
- package/lib/catalog/holes/door-interior/planner-element.js +237 -0
- package/lib/catalog/holes/door-panic/panicDoor.png +0 -0
- package/lib/catalog/holes/door-panic/planner-element.js +513 -0
- package/lib/catalog/holes/door-panic-double/panicDoorDouble.png +0 -0
- package/lib/catalog/holes/door-panic-double/planner-element.js +473 -0
- package/lib/catalog/holes/door-sliding/planner-element.js +235 -0
- package/lib/catalog/holes/doorway-framed/planner-element.js +155 -0
- package/lib/catalog/holes/doorway-frameless/planner-element.js +114 -0
- package/lib/catalog/holes/export.js +97 -0
- package/lib/catalog/holes/gate/gate.jpg +0 -0
- package/lib/catalog/holes/window-clear/planner-element.js +176 -0
- package/lib/catalog/holes/window-clear/texture.png +0 -0
- package/lib/catalog/holes/window-cross/planner-element.js +175 -0
- package/lib/catalog/holes/window-cross/texture.png +0 -0
- package/lib/catalog/holes/window-double-hung/planner-element.js +313 -0
- package/lib/catalog/holes/window-double-hung/texture.png +0 -0
- package/lib/catalog/holes/window-vertical/planner-element.js +286 -0
- package/lib/catalog/holes/window-vertical/texture.png +0 -0
- package/lib/catalog/lines/wall/planner-element.js +87 -0
- package/lib/catalog/lines/wall/textures/bricks-normal.jpg +0 -0
- package/lib/catalog/lines/wall/textures/bricks.jpg +0 -0
- package/lib/catalog/lines/wall/textures/bricks2.jpg +0 -0
- package/lib/catalog/lines/wall/textures/morden-normal.jpg +0 -0
- package/lib/catalog/lines/wall/textures/morden.jpg +0 -0
- package/lib/catalog/lines/wall/textures/painted-normal.jpg +0 -0
- package/lib/catalog/lines/wall/textures/painted.jpg +0 -0
- package/lib/catalog/lines/wall/textures/plaster-normal.jpg +0 -0
- package/lib/catalog/lines/wall/textures/plaster.jpg +0 -0
- package/lib/catalog/lines/wall/wall.png +0 -0
- package/lib/catalog/molding/molding-dcm/planner-element.js +33 -0
- package/lib/catalog/molding/molding-dcm/texture.png +0 -0
- package/lib/catalog/molding/molding-fbm/planner-element.js +33 -0
- package/lib/catalog/molding/molding-fbm/texture.png +0 -0
- package/lib/catalog/molding/molding-lrm/planner-element.js +33 -0
- package/lib/catalog/molding/molding-lrm/texture.png +0 -0
- package/lib/catalog/utils/exporter.js +180 -0
- package/lib/catalog/utils/geom-utils.js +205 -0
- package/lib/catalog/utils/item-loader.js +1620 -0
- package/lib/catalog/utils/load-obj.js +129 -0
- package/lib/catalog/utils/mtl-loader.js +366 -0
- package/lib/catalog/utils/obj-loader.js +486 -0
- package/lib/catalog/windows.png +0 -0
- package/lib/class/area.js +147 -0
- package/lib/class/export.js +88 -0
- package/lib/class/group.js +438 -0
- package/lib/class/guide.js +64 -0
- package/lib/class/hole.js +930 -0
- package/lib/class/item.js +2138 -0
- package/lib/class/layer.js +670 -0
- package/lib/class/line.js +1236 -0
- package/lib/class/project.js +949 -0
- package/lib/class/vertex.js +211 -0
- package/lib/components/content.js +160 -0
- package/lib/components/export.js +7 -0
- package/lib/components/style/export.js +17 -0
- package/lib/components/style/form-number-input.js +192 -0
- package/lib/components/style/form-submit-button.js +35 -0
- package/lib/components/viewer2d/area.js +89 -0
- package/lib/components/viewer2d/export.js +121 -0
- package/lib/components/viewer2d/grids/grid-horizontal-streak.js +44 -0
- package/lib/components/viewer2d/grids/grid-streak.js +44 -0
- package/lib/components/viewer2d/grids/grid-vertical-streak.js +44 -0
- package/lib/components/viewer2d/grids/grids.js +40 -0
- package/lib/components/viewer2d/group.js +63 -0
- package/lib/components/viewer2d/item.js +259 -0
- package/lib/components/viewer2d/layer.js +172 -0
- package/lib/components/viewer2d/line.js +975 -0
- package/lib/components/viewer2d/ruler.js +92 -0
- package/lib/components/viewer2d/rulerDist.js +110 -0
- package/lib/components/viewer2d/rulerX.js +154 -0
- package/lib/components/viewer2d/rulerY.js +156 -0
- package/lib/components/viewer2d/scene.js +137 -0
- package/lib/components/viewer2d/snap.js +84 -0
- package/lib/components/viewer2d/state.js +83 -0
- package/lib/components/viewer2d/utils.js +200 -0
- package/lib/components/viewer2d/vertex.js +76 -0
- package/lib/components/viewer2d/viewer2d.js +1478 -0
- package/lib/components/viewer3d/camera-controls-module/camera-controls.module.js +2591 -0
- package/lib/components/viewer3d/dcm.js +408 -0
- package/lib/components/viewer3d/fbm.js +421 -0
- package/lib/components/viewer3d/front3D.js +71 -0
- package/lib/components/viewer3d/grid-creator.js +35 -0
- package/lib/components/viewer3d/grids/grid-horizontal-streak.js +45 -0
- package/lib/components/viewer3d/grids/grid-streak.js +36 -0
- package/lib/components/viewer3d/grids/grid-vertical-streak.js +45 -0
- package/lib/components/viewer3d/libs/first-person-controls.js +74 -0
- package/lib/components/viewer3d/libs/helvetiker_regular.typeface.js +1287 -0
- package/lib/components/viewer3d/libs/mtl-loader.js +366 -0
- package/lib/components/viewer3d/libs/obj-loader.js +471 -0
- package/lib/components/viewer3d/libs/orbit-controls.js +706 -0
- package/lib/components/viewer3d/libs/pointer-lock-controls.js +53 -0
- package/lib/components/viewer3d/lrm.js +312 -0
- package/lib/components/viewer3d/model.js +714 -0
- package/lib/components/viewer3d/pointer-lock-navigation.js +32 -0
- package/lib/components/viewer3d/ruler-utils/itemRect.js +69 -0
- package/lib/components/viewer3d/ruler-utils/layer3D.js +503 -0
- package/lib/components/viewer3d/ruler-utils/ruler3D.js +232 -0
- package/lib/components/viewer3d/ruler-utils/scene3D.js +67 -0
- package/lib/components/viewer3d/ruler-utils/state3D.js +26 -0
- package/lib/components/viewer3d/scene-creator.js +3887 -0
- package/lib/components/viewer3d/three-memory-cleaner.js +46 -0
- package/lib/components/viewer3d/viewer3d-first-person.js +316 -0
- package/lib/components/viewer3d/viewer3d.js +2777 -0
- package/lib/constants/applianceCategories.js +25 -0
- package/lib/constants/catalog/skinPanel.js +15 -0
- package/lib/constants.js +798 -0
- package/lib/devLiteRenderer.js +917 -0
- package/lib/engine/2d/viewer-utils.js +25 -0
- package/lib/events/external/handleExternalEvent.js +151 -0
- package/lib/events/external/handleExternalEvent.util.js +1111 -0
- package/lib/events/external/handlers.addItem.js +54 -0
- package/lib/events/external/handlers.changeDoorStyle.js +145 -0
- package/lib/events/external/handlers.elementOps.js +24 -0
- package/lib/events/external/handlers.finishing.js +32 -0
- package/lib/events/external/handlers.hole.js +10 -0
- package/lib/events/external/handlers.loadProject.js +134 -0
- package/lib/events/external/handlers.molding.js +31 -0
- package/lib/events/external/handlers.projectLifecycle.js +19 -0
- package/lib/events/external/handlers.projectSettings.js +38 -0
- package/lib/events/external/handlers.replaceCabinet.js +48 -0
- package/lib/events/external/handlers.roomShape.js +14 -0
- package/lib/events/external/handlers.syncScene.js +61 -0
- package/lib/events/external/handlers.updateSelectedElements.js +17 -0
- package/lib/events/external/handlers.viewMode.js +19 -0
- package/lib/events/external/handlers.viewerNavigation.js +117 -0
- package/lib/events/external/handlers.wall.js +13 -0
- package/lib/index.js +637 -0
- package/lib/mappings/external-events/mapExternalEventPayload.js +33 -0
- package/lib/mappings/external-events/mappers/addItemMapper.js +103 -0
- package/lib/mappings/external-events/mappers/ccdfMapper.js +104 -0
- package/lib/mappings/external-events/mappers/ccdfToCDSMapper.js +56 -0
- package/lib/mappings/external-events/mappers/changeDoorStyleMapper.js +44 -0
- package/lib/mappings/external-events/mappers/loadProjectMapper.js +70 -0
- package/lib/mappings/holesToCatalog.js +148 -0
- package/lib/models.js +540 -0
- package/lib/plugins/SVGLoader.js +1419 -0
- package/lib/plugins/console-debugger.js +42 -0
- package/lib/plugins/export.js +25 -0
- package/lib/plugins/keyboard.js +117 -0
- package/lib/reducers/areas-reducer.js +19 -0
- package/lib/reducers/export.js +89 -0
- package/lib/reducers/groups-reducer.js +45 -0
- package/lib/reducers/holes-reducer.js +69 -0
- package/lib/reducers/items-reducer.js +146 -0
- package/lib/reducers/lines-reducer.js +52 -0
- package/lib/reducers/project-reducer.js +143 -0
- package/lib/reducers/reducer.js +25 -0
- package/lib/reducers/scene-reducer.js +35 -0
- package/lib/reducers/vertices-reducer.js +26 -0
- package/lib/reducers/viewer2d-reducer.js +84 -0
- package/lib/reducers/viewer3d-reducer.js +65 -0
- package/lib/shared/concurrency/async-pool.js +78 -0
- package/lib/shared/domain/asset/load-asset-json.js +60 -0
- package/lib/shared/domain/asset/sanitize-asset-url.js +31 -0
- package/lib/shared/domain/cabinet-corner.js +12 -0
- package/lib/shared/domain/cabinet-mirror.js +13 -0
- package/lib/shared/domain/cabinet-warning.js +18 -0
- package/lib/shared/math/line-metrics.js +40 -0
- package/lib/shared/network/load-json.js +51 -0
- package/lib/shared/objects/immutable.js +9 -0
- package/lib/shared-style.js +72 -0
- package/lib/translator/en.js +111 -0
- package/lib/translator/it.js +86 -0
- package/lib/translator/ru.js +86 -0
- package/lib/translator/translator.js +87 -0
- package/lib/utils/browser.js +40 -0
- package/lib/utils/convert-units-lite.js +44 -0
- package/lib/utils/email-validator.js +10 -0
- package/lib/utils/export.js +56 -0
- package/lib/utils/geometry/overlap/index.js +12 -0
- package/lib/utils/geometry/overlap/overlapHelpers.js +30 -0
- package/lib/utils/geometry/overlap/pointHelpers.js +31 -0
- package/lib/utils/geometry/overlap/relationshipOfTwoOverlappedLines2.js +381 -0
- package/lib/utils/geometry.js +2903 -0
- package/lib/utils/get-edges-of-subgraphs.js +33 -0
- package/lib/utils/graph-cycles.js +239 -0
- package/lib/utils/graph-inner-cycles.js +54 -0
- package/lib/utils/graph.js +153 -0
- package/lib/utils/helper.js +477 -0
- package/lib/utils/history.js +48 -0
- package/lib/utils/id-broker.js +22 -0
- package/lib/utils/logger.js +14 -0
- package/lib/utils/math.js +57 -0
- package/lib/utils/molding.js +1146 -0
- package/lib/utils/name-generator.js +21 -0
- package/lib/utils/objects-utils.js +62 -0
- package/lib/utils/phone-validator.js +10 -0
- package/lib/utils/process-black-list.js +22 -0
- package/lib/utils/react-if.js +25 -0
- package/lib/utils/ruler.js +63 -0
- package/lib/utils/skinPanelEngine.js +639 -0
- package/lib/utils/snap-scene.js +101 -0
- package/lib/utils/snap.js +245 -0
- package/lib/utils/summarizeCart.js +30 -0
- package/lib/utils/threeCSG.es6.js +504 -0
- package/lib/version.js +7 -0
- package/package.json +136 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="40" height="41" viewBox="0 0 40 41" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M4.22265 31.8437C6.55475 31.8437 8.4453 33.7341 8.4453 36.0661C8.4453 38.398 6.55475 40.2885 4.22265 40.2885C1.89054 40.2885 0 38.398 0 36.0661C0 33.7341 1.89054 31.8437 4.22265 31.8437Z" fill="#6332AC"/>
|
|
3
|
+
<path d="M19.9617 31.8437C22.2938 31.8437 24.1843 33.7341 24.1843 36.0661C24.1843 38.3981 22.2938 40.2885 19.9617 40.2885C17.6296 40.2885 15.739 38.3981 15.739 36.0661C15.739 33.7341 17.6296 31.8437 19.9617 31.8437Z" fill="#4DCBCB"/>
|
|
4
|
+
<path d="M35.7773 31.8437C38.1094 31.8437 40 33.7341 40 36.0661C40 38.3981 38.1094 40.2885 35.7773 40.2885C33.4452 40.2885 31.5547 38.3981 31.5547 36.0661C31.5547 33.7341 33.4452 31.8437 35.7773 31.8437Z" fill="#154AC5"/>
|
|
5
|
+
<path d="M4.22265 16.1057C6.55475 16.1057 8.4453 17.9961 8.4453 20.3281C8.4453 22.66 6.55475 24.5505 4.22265 24.5505C1.89054 24.5505 0 22.66 0 20.3281C0 17.9961 1.89054 16.1057 4.22265 16.1057Z" fill="#0C389D"/>
|
|
6
|
+
<path d="M19.9617 16.1057C22.2938 16.1057 24.1843 17.9961 24.1843 20.3281C24.1843 22.66 22.2938 24.5505 19.9617 24.5505C17.6296 24.5505 15.739 22.66 15.739 20.3281C15.739 17.9961 17.6296 16.1057 19.9617 16.1057Z" fill="#4C12A1"/>
|
|
7
|
+
<path d="M35.7773 16.1057C38.1094 16.1057 40 17.9961 40 20.3281C40 22.66 38.1094 24.5505 35.7773 24.5505C33.4452 24.5505 31.5547 22.66 31.5547 20.3281C31.5547 17.9961 33.4452 16.1057 35.7773 16.1057Z" fill="#008D8D"/>
|
|
8
|
+
<path d="M4.22265 0.367654C6.55475 0.367654 8.4453 2.25808 8.4453 4.59005C8.4453 6.92201 6.55475 8.81244 4.22265 8.81244C1.89054 8.81244 0 6.92201 0 4.59005C0 2.25808 1.89054 0.367654 4.22265 0.367654Z" fill="#00B9B9"/>
|
|
9
|
+
<path d="M19.9617 0.367654C22.2938 0.367654 24.1843 2.25808 24.1843 4.59005C24.1843 6.92201 22.2938 8.81244 19.9617 8.81244C17.6296 8.81244 15.739 6.92201 15.739 4.59005C15.739 2.25808 17.6296 0.367654 19.9617 0.367654Z" fill="#3A66CA"/>
|
|
10
|
+
<path d="M35.7773 0.367654C38.1094 0.367654 40 2.25808 40 4.59005C40 6.92201 38.1094 8.81244 35.7773 8.81244C33.4452 8.81244 31.5547 6.92201 31.5547 4.59005C31.5547 2.25808 33.4452 0.367654 35.7773 0.367654Z" fill="#3A0B80"/>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="38" height="38" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17.1178 6H9V32H17.1178V6Z" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M9 32V6H29.2222V32" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M9 12.5H17.1178" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M9 19H17.1178" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path d="M9 25.5H17.1178" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
<path d="M29.2223 6H21.1045V32H29.2223V6Z" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
<path d="M21.1045 12.5H29.2223" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
9
|
+
<path d="M21.1045 19H29.2223" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
|
+
<path d="M21.1045 25.5H29.2223" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="38" height="38" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M22.6066 10.8965H15.6011V30.5554H22.6066V10.8965Z" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M29.2222 32V6H9V32" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M29.222 19H26.5498" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="38" height="38" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8.61133 32V6H28.8335V32" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M5 32H8.61111" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M28.8335 32H32.4446" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="38" height="38" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8.61133 32V6H28.8335V32" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="4 4"/>
|
|
3
|
+
<path d="M5 32H8.61111" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M28.8335 32H32.4446" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="38" height="38" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M29.2222 32V6H9V32" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M29.222 21.1807H26.5498" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M9 6H29.2222" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M9 16.125H29.2222" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path d="M9 26.25H29.2222" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="38" height="38" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17.1178 11.4307H9V31.9996H17.1178V11.4307Z" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M29.2223 11.4307H21.1045V31.9996H29.2223V11.4307Z" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M9 32V6H29.2222V32" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<!-- Creator: CorelDRAW 2020 (64-Bit) -->
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="0.101949in" height="0.143165in" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
|
|
5
|
+
viewBox="0 0 3.36 4.72"
|
|
6
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
7
|
+
xmlns:xodm="http://www.corel.com/coreldraw/odm/2003">
|
|
8
|
+
<defs>
|
|
9
|
+
<style type="text/css">
|
|
10
|
+
<![CDATA[
|
|
11
|
+
.str0 {stroke:black;stroke-width:0.11;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2.61313}
|
|
12
|
+
.fil0 {fill:none}
|
|
13
|
+
]]>
|
|
14
|
+
</style>
|
|
15
|
+
</defs>
|
|
16
|
+
<g id="design">
|
|
17
|
+
<metadata id="CorelCorpID_0Corel-Layer"/>
|
|
18
|
+
<g id="_1995293918304">
|
|
19
|
+
<g>
|
|
20
|
+
<rect class="fil0 str0" transform="matrix(0.957501 0.0069313 -0 1.18774 0.0550266 0.055053)" width="1.7" height="3.87"/>
|
|
21
|
+
<polygon class="fil0 str0" points="0.39,0.53 1.35,0.54 1.35,4.66 0.39,4.65 "/>
|
|
22
|
+
<line class="fil0 str0" x1="0.42" y1="0.94" x2="1.32" y2= "0.94" />
|
|
23
|
+
<line class="fil0 str0" x1="0.42" y1="1.34" x2="1.32" y2= "1.34" />
|
|
24
|
+
<line class="fil0 str0" x1="0.42" y1="1.75" x2="1.32" y2= "1.75" />
|
|
25
|
+
<line class="fil0 str0" x1="0.42" y1="2.15" x2="1.32" y2= "2.15" />
|
|
26
|
+
<line class="fil0 str0" x1="0.42" y1="2.55" x2="1.32" y2= "2.55" />
|
|
27
|
+
<line class="fil0 str0" x1="0.42" y1="2.95" x2="1.32" y2= "2.95" />
|
|
28
|
+
<line class="fil0 str0" x1="0.42" y1="3.36" x2="1.32" y2= "3.36" />
|
|
29
|
+
<line class="fil0 str0" x1="0.42" y1="3.76" x2="1.32" y2= "3.76" />
|
|
30
|
+
<line class="fil0 str0" x1="0.42" y1="4.16" x2="1.32" y2= "4.16" />
|
|
31
|
+
</g>
|
|
32
|
+
<g>
|
|
33
|
+
<rect class="fil0 str0" transform="matrix(0.957501 0.0069313 -0 1.18774 1.67844 0.055053)" width="1.7" height="3.87"/>
|
|
34
|
+
<polygon class="fil0 str0" points="2.01,0.53 2.97,0.54 2.97,4.66 2.01,4.65 "/>
|
|
35
|
+
<line class="fil0 str0" x1="2.04" y1="0.94" x2="2.94" y2= "0.94" />
|
|
36
|
+
<line class="fil0 str0" x1="2.04" y1="1.34" x2="2.94" y2= "1.34" />
|
|
37
|
+
<line class="fil0 str0" x1="2.04" y1="1.75" x2="2.94" y2= "1.75" />
|
|
38
|
+
<line class="fil0 str0" x1="2.04" y1="2.15" x2="2.94" y2= "2.15" />
|
|
39
|
+
<line class="fil0 str0" x1="2.04" y1="2.55" x2="2.94" y2= "2.55" />
|
|
40
|
+
<line class="fil0 str0" x1="2.04" y1="2.95" x2="2.94" y2= "2.95" />
|
|
41
|
+
<line class="fil0 str0" x1="2.04" y1="3.36" x2="2.94" y2= "3.36" />
|
|
42
|
+
<line class="fil0 str0" x1="2.04" y1="3.76" x2="2.94" y2= "3.76" />
|
|
43
|
+
<line class="fil0 str0" x1="2.04" y1="4.16" x2="2.94" y2= "4.16" />
|
|
44
|
+
</g>
|
|
45
|
+
</g>
|
|
46
|
+
</g>
|
|
47
|
+
</svg>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<!-- Creator: CorelDRAW 2020 (64-Bit) -->
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="0.0745827in" height="0.143165in" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
|
|
5
|
+
viewBox="0 0 1.82 3.49"
|
|
6
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
7
|
+
xmlns:xodm="http://www.corel.com/coreldraw/odm/2003">
|
|
8
|
+
<defs>
|
|
9
|
+
<style type="text/css">
|
|
10
|
+
<![CDATA[
|
|
11
|
+
.str1 {stroke:black;stroke-width:0.08;stroke-miterlimit:2.61313}
|
|
12
|
+
.str0 {stroke:black;stroke-width:0.08;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2.61313}
|
|
13
|
+
.fil0 {fill:none}
|
|
14
|
+
]]>
|
|
15
|
+
</style>
|
|
16
|
+
</defs>
|
|
17
|
+
<g id="design">
|
|
18
|
+
<metadata id="CorelCorpID_0Corel-Layer"/>
|
|
19
|
+
<g id="_1995296803696">
|
|
20
|
+
<rect class="fil0 str0" transform="matrix(1.3808 0.0069313 -0 1.18774 0.0406004 0.040635)" width="1.26" height="2.86"/>
|
|
21
|
+
<polygon class="fil0 str0" points="0.46,0.53 1.35,0.54 1.35,2.95 0.46,2.95 "/>
|
|
22
|
+
<circle class="fil0 str1" cx="1.56" cy="1.74" r="0.09"/>
|
|
23
|
+
</g>
|
|
24
|
+
</g>
|
|
25
|
+
</svg>
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<!-- Creator: CorelDRAW 2020 (64-Bit) -->
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="0.0745827in" height="0.143165in" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
|
|
5
|
+
viewBox="0 0 1.82 3.49"
|
|
6
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
7
|
+
xmlns:xodm="http://www.corel.com/coreldraw/odm/2003">
|
|
8
|
+
<defs>
|
|
9
|
+
<style type="text/css">
|
|
10
|
+
<![CDATA[
|
|
11
|
+
.str0 {stroke:black;stroke-width:0.08;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2.61313}
|
|
12
|
+
.fil0 {fill:none}
|
|
13
|
+
]]>
|
|
14
|
+
</style>
|
|
15
|
+
</defs>
|
|
16
|
+
<g id="design">
|
|
17
|
+
<metadata id="CorelCorpID_0Corel-Layer"/>
|
|
18
|
+
<g id="_1995222872384">
|
|
19
|
+
<rect class="fil0 str0" transform="matrix(1.3808 0.0069313 -0 1.18774 0.0406004 0.040635)" width="1.26" height="2.86"/>
|
|
20
|
+
<g>
|
|
21
|
+
<polygon class="fil0 str0" points="0.4,0.38 0.78,0.39 0.78,1.54 0.4,1.53 "/>
|
|
22
|
+
<polygon class="fil0 str0" points="1.03,0.38 1.42,0.39 1.42,1.54 1.03,1.53 "/>
|
|
23
|
+
<polygon class="fil0 str0" points="0.4,1.95 0.78,1.95 0.78,3.1 0.4,3.1 "/>
|
|
24
|
+
<polygon class="fil0 str0" points="1.03,1.95 1.42,1.95 1.42,3.1 1.03,3.1 "/>
|
|
25
|
+
</g>
|
|
26
|
+
<line class="fil0 str0" x1="1.46" y1="1.73" x2="1.6" y2= "1.73" />
|
|
27
|
+
</g>
|
|
28
|
+
</g>
|
|
29
|
+
</svg>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<!-- Creator: CorelDRAW 2020 (64-Bit) -->
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="0.139638in" height="0.131472in" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
|
|
5
|
+
viewBox="0 0 6.21 5.84"
|
|
6
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
7
|
+
xmlns:xodm="http://www.corel.com/coreldraw/odm/2003">
|
|
8
|
+
<defs>
|
|
9
|
+
<style type="text/css">
|
|
10
|
+
<![CDATA[
|
|
11
|
+
.str0 {stroke:black;stroke-width:0.15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2.61313}
|
|
12
|
+
.fil0 {fill:none}
|
|
13
|
+
]]>
|
|
14
|
+
</style>
|
|
15
|
+
</defs>
|
|
16
|
+
<g id="design">
|
|
17
|
+
<metadata id="CorelCorpID_0Corel-Layer"/>
|
|
18
|
+
<g id="_1995284661552">
|
|
19
|
+
<rect class="fil0 str0" transform="matrix(1.0999 0.00579002 -0 0.992172 0.559086 0.577779)" width="2.29" height="5.22"/>
|
|
20
|
+
<rect class="fil0 str0" transform="matrix(1.0999 0.00578252 -0 0.990887 3.1247 0.584503)" width="2.29" height="5.22"/>
|
|
21
|
+
<rect class="fil0 str0" transform="matrix(2.64172 0.00635167 -0 1.08842 0.0740228 0.0741677)" width="2.29" height="5.22"/>
|
|
22
|
+
<polygon class="fil0 str0" points="3.5,0.99 5.27,1 5.27,5.37 3.5,5.36 "/>
|
|
23
|
+
<polygon class="fil0 str0" points="0.93,0.99 2.71,1 2.71,5.37 0.93,5.36 "/>
|
|
24
|
+
</g>
|
|
25
|
+
</g>
|
|
26
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_2362_168013)">
|
|
3
|
+
<path d="M5.33334 6.66683C5.33334 6.31321 5.47382 5.97407 5.72387 5.72402C5.97392 5.47397 6.31305 5.3335 6.66668 5.3335H12C12.3536 5.3335 12.6928 5.47397 12.9428 5.72402C13.1929 5.97407 13.3333 6.31321 13.3333 6.66683V12.0002C13.3333 12.3538 13.1929 12.6929 12.9428 12.943C12.6928 13.193 12.3536 13.3335 12 13.3335H6.66668C6.31305 13.3335 5.97392 13.193 5.72387 12.943C5.47382 12.6929 5.33334 12.3538 5.33334 12.0002V6.66683Z" stroke="#3A0B80" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M10.6667 5.33317V3.99984C10.6667 3.64622 10.5262 3.30708 10.2761 3.05703C10.0261 2.80698 9.68695 2.6665 9.33332 2.6665H3.99999C3.64637 2.6665 3.30723 2.80698 3.05718 3.05703C2.80713 3.30708 2.66666 3.64622 2.66666 3.99984V9.33317C2.66666 9.68679 2.80713 10.0259 3.05718 10.276C3.30723 10.526 3.64637 10.6665 3.99999 10.6665H5.33332" stroke="#3A0B80" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<clipPath id="clip0_2362_168013">
|
|
8
|
+
<rect width="16" height="16" fill="white"/>
|
|
9
|
+
</clipPath>
|
|
10
|
+
</defs>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<!-- Creator: CorelDRAW 2020 (64-Bit) -->
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="0.0426732in" height="0.0426732in" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
|
|
5
|
+
viewBox="0 0 5.01 5.01"
|
|
6
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
7
|
+
xmlns:xodm="http://www.corel.com/coreldraw/odm/2003">
|
|
8
|
+
<defs>
|
|
9
|
+
<style type="text/css">
|
|
10
|
+
<![CDATA[
|
|
11
|
+
.str0 {stroke:white;stroke-width:0.27;stroke-linecap:round;stroke-miterlimit:2.61313}
|
|
12
|
+
.str1 {stroke:white;stroke-width:0.27;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2.61313}
|
|
13
|
+
.fil1 {fill:none}
|
|
14
|
+
.fil0 {fill:#494949}
|
|
15
|
+
]]>
|
|
16
|
+
</style>
|
|
17
|
+
</defs>
|
|
18
|
+
<g id="design">
|
|
19
|
+
<metadata id="CorelCorpID_0Corel-Layer"/>
|
|
20
|
+
<g id="_1994891822304">
|
|
21
|
+
<rect class="fil0" x="-0" y="-0" width="5.01" height="5.01" rx="0.39" ry="0.39"/>
|
|
22
|
+
<g>
|
|
23
|
+
<rect class="fil1 str0" x="1.06" y="1.42" width="2.23" height="2.8" rx="0.25" ry="0.28"/>
|
|
24
|
+
<path class="fil1 str0" d="M1.72 1.03c0,-0.14 0.11,-0.25 0.25,-0.25l1.73 0c0.14,0 0.25,0.11 0.25,0.25l0 2.31c0,0.14 -0.11,0.25 -0.25,0.25"/>
|
|
25
|
+
<g>
|
|
26
|
+
<line class="fil1 str1" x1="1.76" y1="2.82" x2="2.58" y2= "2.82" />
|
|
27
|
+
<line class="fil1 str1" x1="2.17" y1="3.23" x2="2.17" y2= "2.41" />
|
|
28
|
+
</g>
|
|
29
|
+
</g>
|
|
30
|
+
</g>
|
|
31
|
+
</g>
|
|
32
|
+
</svg>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<!-- Creator: CorelDRAW 2020 (64-Bit) -->
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="0.0426732in" height="0.0426732in" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
|
|
5
|
+
viewBox="0 0 53.73 53.73"
|
|
6
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
7
|
+
xmlns:xodm="http://www.corel.com/coreldraw/odm/2003">
|
|
8
|
+
<defs>
|
|
9
|
+
<style type="text/css">
|
|
10
|
+
<![CDATA[
|
|
11
|
+
.str0 {stroke:white;stroke-width:2.94;stroke-linecap:round;stroke-miterlimit:2.61313}
|
|
12
|
+
.str1 {stroke:white;stroke-width:2.94;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2.61313}
|
|
13
|
+
.fil1 {fill:none}
|
|
14
|
+
.fil0 {fill:#494949}
|
|
15
|
+
]]>
|
|
16
|
+
</style>
|
|
17
|
+
</defs>
|
|
18
|
+
<g id="design">
|
|
19
|
+
<metadata id="CorelCorpID_0Corel-Layer"/>
|
|
20
|
+
<g id="_1994011295744">
|
|
21
|
+
<rect class="fil0" x="-0" y="-0" width="53.73" height="53.73" rx="4.14" ry="4.14"/>
|
|
22
|
+
<g>
|
|
23
|
+
<rect class="fil1 str0" x="18.47" y="15.25" width="23.92" height="30.05" rx="2.65" ry="3"/>
|
|
24
|
+
<path class="fil1 str0" d="M35.27 11.08c0,-1.46 -1.19,-2.65 -2.65,-2.65l-18.62 0c-1.46,0 -2.65,1.19 -2.65,2.65l0 24.75c0,1.46 1.19,2.65 2.65,2.65"/>
|
|
25
|
+
<g>
|
|
26
|
+
<line class="fil1 str1" x1="34.86" y1="30.28" x2="26" y2= "30.27" />
|
|
27
|
+
<line class="fil1 str1" x1="30.43" y1="34.71" x2="30.43" y2= "25.85" />
|
|
28
|
+
</g>
|
|
29
|
+
</g>
|
|
30
|
+
</g>
|
|
31
|
+
</g>
|
|
32
|
+
</svg>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="40" height="40" rx="6" fill="#3A0B80"/>
|
|
3
|
+
<g clip-path="url(#clip0_2782_269361)">
|
|
4
|
+
<path d="M20 14C20 14.5304 20.2107 15.0391 20.5858 15.4142C20.9609 15.7893 21.4696 16 22 16C22.5304 16 23.0391 15.7893 23.4142 15.4142C23.7893 15.0391 24 14.5304 24 14C24 13.4696 23.7893 12.9609 23.4142 12.5858C23.0391 12.2107 22.5304 12 22 12C21.4696 12 20.9609 12.2107 20.5858 12.5858C20.2107 12.9609 20 13.4696 20 14Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M12 14H20" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path d="M24 14H28" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
<path d="M14 20C14 20.5304 14.2107 21.0391 14.5858 21.4142C14.9609 21.7893 15.4696 22 16 22C16.5304 22 17.0391 21.7893 17.4142 21.4142C17.7893 21.0391 18 20.5304 18 20C18 19.4696 17.7893 18.9609 17.4142 18.5858C17.0391 18.2107 16.5304 18 16 18C15.4696 18 14.9609 18.2107 14.5858 18.5858C14.2107 18.9609 14 19.4696 14 20Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
<path d="M12 20H14" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
9
|
+
<path d="M18 20H28" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
|
+
<path d="M23 26C23 26.5304 23.2107 27.0391 23.5858 27.4142C23.9609 27.7893 24.4696 28 25 28C25.5304 28 26.0391 27.7893 26.4142 27.4142C26.7893 27.0391 27 26.5304 27 26C27 25.4696 26.7893 24.9609 26.4142 24.5858C26.0391 24.2107 25.5304 24 25 24C24.4696 24 23.9609 24.2107 23.5858 24.5858C23.2107 24.9609 23 25.4696 23 26Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
11
|
+
<path d="M12 26H23" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
12
|
+
<path d="M27 26H28" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
13
|
+
</g>
|
|
14
|
+
<defs>
|
|
15
|
+
<clipPath id="clip0_2782_269361">
|
|
16
|
+
<rect width="24" height="24" fill="white" transform="translate(8 8)"/>
|
|
17
|
+
</clipPath>
|
|
18
|
+
</defs>
|
|
19
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="120" height="121" viewBox="0 0 120 121" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M6 120.385L2 120.385L2 119.385L1 119.385L1 118.385L-8.74227e-08 118.385L-2.62268e-07 114.385L1 114.385L1 110.385L-4.37114e-07 110.385L-6.11959e-07 106.385L0.999999 106.385L0.999999 102.385L-7.86805e-07 102.385L-9.61651e-07 98.3848L0.999999 98.3848L0.999999 94.3848L-1.1365e-06 94.3848L-1.31134e-06 90.3848L0.999999 90.3848L0.999999 86.3848L-1.48619e-06 86.3848L-1.66103e-06 82.3848L0.999998 82.3848L0.999998 78.3848L-1.83588e-06 78.3848L-2.01072e-06 74.3848L0.999998 74.3848L0.999998 70.3848L-2.18557e-06 70.3848L-2.36041e-06 66.3848L0.999998 66.3848L0.999997 62.3848L-2.53526e-06 62.3848L-2.71011e-06 58.3848L0.999997 58.3848L0.999997 54.3848L-2.88495e-06 54.3848L-3.0598e-06 50.3848L0.999997 50.3848L0.999997 46.3848L-3.23464e-06 46.3848L-3.40949e-06 42.3848L0.999997 42.3848L0.999996 38.3848L-3.58433e-06 38.3848L-3.75918e-06 34.3848L0.999996 34.3848L0.999996 30.3848L-3.93402e-06 30.3848L-4.10887e-06 26.3848L0.999996 26.3848L0.999996 22.3848L-4.28372e-06 22.3848L-4.45856e-06 18.3848L0.999996 18.3848L0.999995 14.3848L-4.63341e-06 14.3848L-4.80825e-06 10.3848L0.999995 10.3848L0.999995 6.38477L-4.9831e-06 6.38477L-5.15794e-06 2.38477L0.999995 2.38477L0.999995 1.38477L1.99999 1.38477L1.99999 0.384766L6 0.384765L6 1.38477L9.99999 1.38477L9.99999 0.384765L14 0.384765L14 1.38477L18 1.38476L18 0.384765L22 0.384765L22 1.38476L26 1.38476L26 0.384764L30 0.384764L30 1.38476L34 1.38476L34 0.384764L38 0.384764L38 1.38476L42 1.38476L42 0.384764L46 0.384764L46 1.38476L50 1.38476L50 0.384763L54 0.384763L54 1.38476L58 1.38476L58 0.384763L62 0.384763L62 1.38476L66 1.38476L66 0.384763L70 0.384763L70 1.38476L74 1.38476L74 0.384762L78 0.384762L78 1.38476L82 1.38476L82 0.384762L86 0.384762L86 1.38476L90 1.38476L90 0.384762L94 0.384762L94 1.38476L98 1.38476L98 0.384761L102 0.384761L102 1.38476L106 1.38476L106 0.384761L110 0.384761L110 1.38476L114 1.38476L114 0.384761L118 0.38476L118 1.38476L119 1.38476L119 2.38476L120 2.38476L120 6.38476L119 6.38476L119 10.3848L120 10.3848L120 14.3848L119 14.3848L119 18.3848L120 18.3848L120 22.3848L119 22.3848L119 26.3848L120 26.3848L120 30.3848L119 30.3848L119 34.3848L120 34.3848L120 38.3848L119 38.3848L119 42.3848L120 42.3848L120 46.3848L119 46.3848L119 50.3848L120 50.3848L120 54.3848L119 54.3848L119 58.3848L120 58.3848L120 62.3848L119 62.3848L119 66.3848L120 66.3848L120 70.3848L119 70.3848L119 74.3848L120 74.3848L120 78.3848L119 78.3848L119 82.3848L120 82.3848L120 86.3848L119 86.3848L119 90.3848L120 90.3848L120 94.3848L119 94.3848L119 98.3848L120 98.3848L120 102.385L119 102.385L119 106.385L120 106.385L120 110.385L119 110.385L119 114.385L120 114.385L120 118.385L119 118.385L119 119.385L118 119.385L118 120.385L114 120.385L114 119.385L110 119.385L110 120.385L106 120.385L106 119.385L102 119.385L102 120.385L98 120.385L98 119.385L94 119.385L94 120.385L90 120.385L90 119.385L86 119.385L86 120.385L82 120.385L82 119.385L78 119.385L78 120.385L74 120.385L74 119.385L70 119.385L70 120.385L66 120.385L66 119.385L62 119.385L62 120.385L58 120.385L58 119.385L54 119.385L54 120.385L50 120.385L50 119.385L46 119.385L46 120.385L42 120.385L42 119.385L38 119.385L38 120.385L34 120.385L34 119.385L30 119.385L30 120.385L26 120.385L26 119.385L22 119.385L22 120.385L18 120.385L18 119.385L14 119.385L14 120.385L10 120.385L10 119.385L6 119.385L6 120.385Z" stroke="#000F33" stroke-width="2" stroke-dasharray="4 4"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg width="114" height="3" viewBox="0 0 114 3" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="114" height="2" transform="matrix(1 0 0 -1 0 2.69238)" fill="url(#paint0_linear_232_7113)"/>
|
|
3
|
+
<defs>
|
|
4
|
+
<linearGradient id="paint0_linear_232_7113" x1="-4.24683e-07" y1="1" x2="114" y2="0.99997" gradientUnits="userSpaceOnUse">
|
|
5
|
+
<stop stop-color="#7248BD"/>
|
|
6
|
+
<stop offset="1" stop-color="#33E0BB"/>
|
|
7
|
+
</linearGradient>
|
|
8
|
+
</defs>
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M15 1.72466C16.5083 2.59551 17.7629 3.84518 18.6398 5.34996C19.5167 6.85473 19.9854 8.56243 19.9994 10.304C20.0135 12.0456 19.5725 13.7606 18.72 15.2794C17.8676 16.7981 16.6332 18.0679 15.1392 18.963C13.6452 19.8581 11.9434 20.3475 10.2021 20.3827C8.46083 20.418 6.74055 19.9978 5.21155 19.1639C3.68256 18.33 2.39787 17.1112 1.48467 15.6282C0.571462 14.1452 0.0614093 12.4494 0.00500011 10.7087L0 10.3847L0.00500011 10.0607C0.0610032 8.33365 0.563548 6.65062 1.46364 5.17565C2.36373 3.70068 3.63065 2.48411 5.14089 1.64454C6.65113 0.804971 8.35315 0.371055 10.081 0.385096C11.8089 0.399137 13.5036 0.860656 15 1.72466ZM13.707 7.67766C13.5348 7.50548 13.3057 7.40205 13.0627 7.38677C12.8197 7.37149 12.5794 7.44541 12.387 7.59466L12.293 7.67766L9 10.9697L7.707 9.67766L7.613 9.59466C7.42058 9.44551 7.18037 9.37168 6.9374 9.38701C6.69444 9.40234 6.46541 9.50578 6.29326 9.67792C6.12112 9.85007 6.01768 10.0791 6.00235 10.3221C5.98702 10.565 6.06086 10.8052 6.21 10.9977L6.293 11.0917L8.293 13.0917L8.387 13.1747C8.56237 13.3107 8.77803 13.3846 9 13.3846C9.22197 13.3846 9.43763 13.3107 9.613 13.1747L9.707 13.0917L13.707 9.09166L13.79 8.99766C13.9393 8.80525 14.0132 8.565 13.9979 8.32198C13.9826 8.07895 13.8792 7.84985 13.707 7.67766Z" fill="#4C12A1"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M15 1.72466C16.5083 2.59551 17.7629 3.84518 18.6398 5.34996C19.5167 6.85473 19.9854 8.56243 19.9994 10.304C20.0135 12.0456 19.5725 13.7606 18.72 15.2794C17.8676 16.7981 16.6332 18.0679 15.1392 18.963C13.6452 19.8581 11.9434 20.3475 10.2021 20.3827C8.46083 20.418 6.74055 19.9978 5.21155 19.1639C3.68256 18.33 2.39787 17.1112 1.48467 15.6282C0.571462 14.1452 0.0614093 12.4494 0.00500011 10.7087L0 10.3847L0.00500011 10.0607C0.0610032 8.33365 0.563548 6.65062 1.46364 5.17565C2.36373 3.70068 3.63065 2.48411 5.14089 1.64454C6.65113 0.804971 8.35315 0.371055 10.081 0.385096C11.8089 0.399137 13.5036 0.860656 15 1.72466ZM13.707 7.67766C13.5348 7.50548 13.3057 7.40205 13.0627 7.38677C12.8197 7.37149 12.5794 7.44541 12.387 7.59466L12.293 7.67766L9 10.9697L7.707 9.67766L7.613 9.59466C7.42058 9.44551 7.18037 9.37168 6.9374 9.38701C6.69444 9.40234 6.46541 9.50578 6.29326 9.67792C6.12112 9.85007 6.01768 10.0791 6.00235 10.3221C5.98702 10.565 6.06086 10.8052 6.21 10.9977L6.293 11.0917L8.293 13.0917L8.387 13.1747C8.56237 13.3107 8.77803 13.3846 9 13.3846C9.22197 13.3846 9.43763 13.3107 9.613 13.1747L9.707 13.0917L13.707 9.09166L13.79 8.99766C13.9393 8.80525 14.0132 8.565 13.9979 8.32198C13.9826 8.07895 13.8792 7.84985 13.707 7.67766Z" fill="#8791AB"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_232_40742)">
|
|
3
|
+
<path d="M4 20.3851H8L18.5 9.88507C18.7626 9.62242 18.971 9.31062 19.1131 8.96746C19.2553 8.6243 19.3284 8.2565 19.3284 7.88507C19.3284 7.51363 19.2553 7.14584 19.1131 6.80268C18.971 6.45952 18.7626 6.14771 18.5 5.88507C18.2374 5.62242 17.9256 5.41408 17.5824 5.27194C17.2392 5.1298 16.8714 5.05664 16.5 5.05664C16.1286 5.05664 15.7608 5.1298 15.4176 5.27194C15.0744 5.41408 14.7626 5.62242 14.5 5.88507L4 16.3851V20.3851Z" stroke="#000F33" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M13.5 6.88477L17.5 10.8848" stroke="#000F33" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<clipPath id="clip0_232_40742">
|
|
8
|
+
<rect width="24" height="24" fill="white" transform="translate(0 0.384766)"/>
|
|
9
|
+
</clipPath>
|
|
10
|
+
</defs>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<!-- Creator: CorelDRAW -->
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="0.0251339in" height="0.0251339in" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
|
|
5
|
+
viewBox="0 0 3.22 3.22"
|
|
6
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
7
|
+
xmlns:xodm="http://www.corel.com/coreldraw/odm/2003">
|
|
8
|
+
<defs>
|
|
9
|
+
<style type="text/css">
|
|
10
|
+
<![CDATA[
|
|
11
|
+
.str0 {stroke:white;stroke-width:0.43;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2.61313}
|
|
12
|
+
.fil1 {fill:none}
|
|
13
|
+
.fil0 {fill:#21B584}
|
|
14
|
+
]]>
|
|
15
|
+
</style>
|
|
16
|
+
</defs>
|
|
17
|
+
<g id="design">
|
|
18
|
+
<metadata id="CorelCorpID_0Corel-Layer"/>
|
|
19
|
+
<g id="_2773750994512">
|
|
20
|
+
<rect class="fil0" width="3.22" height="3.22" rx="0.36" ry="0.36"/>
|
|
21
|
+
<g>
|
|
22
|
+
<line class="fil1 str0" x1="0.85" y1="1.5" x2="1.47" y2= "2.08" />
|
|
23
|
+
<line class="fil1 str0" x1="1.47" y1="2.08" x2="2.4" y2= "1.1" />
|
|
24
|
+
</g>
|
|
25
|
+
</g>
|
|
26
|
+
</g>
|
|
27
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12.5 3.5L16.5 7.5M10 6L5 1L1 5L6 10M5 6L3.5 7.5M14 10L19 15L15 19L10 14M14 15L12.5 16.5M1 19.0003H5L18 6.0003C18.5304 5.46987 18.8284 4.75045 18.8284 4.0003C18.8284 3.25016 18.5304 2.53074 18 2.0003C17.4696 1.46987 16.7501 1.17188 16 1.17188C15.2499 1.17188 14.5304 1.46987 14 2.0003L1 15.0003V19.0003Z" stroke="#4C12A1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="18" height="20" viewBox="0 0 18 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M3 15C3.53043 15 4.03914 15.2107 4.41421 15.5858C4.78929 15.9609 5 16.4696 5 17C5 17.5304 4.78929 18.0391 4.41421 18.4142C4.03914 18.7893 3.53043 19 3 19C2.46957 19 1.96086 18.7893 1.58579 18.4142C1.21071 18.0391 1 17.5304 1 17C1 16.4696 1.21071 15.9609 1.58579 15.5858C1.96086 15.2107 2.46957 15 3 15ZM3 15H14M3 15V1H1M14 15C14.5304 15 15.0391 15.2107 15.4142 15.5858C15.7893 15.9609 16 16.4696 16 17C16 17.5304 15.7893 18.0391 15.4142 18.4142C15.0391 18.7893 14.5304 19 14 19C13.4696 19 12.9609 18.7893 12.5858 18.4142C12.2107 18.0391 12 17.5304 12 17C12 16.4696 12.2107 15.9609 12.5858 15.5858C12.9609 15.2107 13.4696 15 14 15ZM3 3L17 4L16 11H3" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_232_89)">
|
|
3
|
+
<path d="M3.33337 8L6.66671 11.3333L13.3334 4.66666" stroke="#4C12A1" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="clip0_232_89">
|
|
7
|
+
<rect width="16" height="16" fill="white"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<!-- Creator: CorelDRAW 2020 (64-Bit) -->
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="0.587909in" height="0.122803in" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
|
|
5
|
+
viewBox="0 0 128.89 26.92"
|
|
6
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
7
|
+
xmlns:xodm="http://www.corel.com/coreldraw/odm/2003">
|
|
8
|
+
<defs>
|
|
9
|
+
<font id="FontID0" horiz-adv-x="657" font-variant="normal" style="fill-rule:nonzero" font-style="normal" font-weight="400">
|
|
10
|
+
<font-face
|
|
11
|
+
font-family="Proxima Nova Rg">
|
|
12
|
+
<font-face-src>
|
|
13
|
+
<font-face-name name="Proxima Nova Regular"/>
|
|
14
|
+
</font-face-src>
|
|
15
|
+
</font-face>
|
|
16
|
+
<missing-glyph><path d="M0 0z"/></missing-glyph>
|
|
17
|
+
<glyph unicode="C" horiz-adv-x="675" d="M394.019 -11.9765c117.993,0 198.002,55.9847 253.986,131.954l-71.0084 39.0476c-37.9846,-57.0477 -107.009,-97.0165 -182.978,-97.0165 -145.985,0 -257.034,112.962 -257.034,270.994 0,159.025 111.048,270.994 257.034,270.994 75.9691,0 144.993,-41.0318 182.978,-97.0165l70.0163 39.0476c-53.0083,74.977 -135.001,131.954 -252.994,131.954 -192.049,0 -342.995,-139.962 -342.995,-344.979 0,-205.017 150.946,-344.979 342.995,-344.979z"/>
|
|
18
|
+
<glyph unicode="D" horiz-adv-x="700" d="M306.002 0c207.002,0 342.003,143.009 342.003,333.003 0,189.001 -135.001,333.995 -342.003,333.995l-227.978 0 0 -666.997 227.978 0zm0 73.9848l-144.993 0 0 519.028 144.993 0c164.978,0 255.971,-116.009 255.971,-260.01 0,-143.009 -93.9692,-259.018 -255.971,-259.018z"/>
|
|
19
|
+
<glyph unicode="a" horiz-adv-x="526" d="M451.988 0l0 332.01c0,117.001 -84.9692,162.993 -187.017,162.993 -78.9455,0 -140.954,-26.0081 -192.97,-80.0085l35.0081 -52.0162c43.0161,45.9925 90.0007,67.0399 147.97,67.0399 70.0163,0 122.032,-36.9924 122.032,-102.048l0 -86.9534c-38.9767,45.0004 -94.0401,65.9769 -160.017,65.9769 -81.9928,0 -169.017,-51.024 -169.017,-159.025 0,-104.954 87.0243,-159.946 169.017,-159.946 64.9848,0 119.977,22.9608 160.017,66.969l0 -54.9926 74.977 0zm-207.994 42.024c-70.0163,0 -118.985,44.0082 -118.985,104.954 0,62.0084 48.9689,106.017 118.985,106.017 53.0083,0 104.032,-19.9844 133.017,-60.0241l0 -90.9928c-28.9845,-39.9688 -80.0085,-59.9532 -133.017,-59.9532z"/>
|
|
20
|
+
<glyph unicode="e" horiz-adv-x="562" d="M293.034 -11.9765c78.9455,0 144.001,26.0081 191.978,73.9848l-36.0003 48.9689c-37.9846,-38.9767 -94.0401,-60.9454 -149.033,-60.9454 -103.961,0 -167.954,75.9691 -173.978,166.962l390.972 0 0 18.9923c0,144.993 -85.9613,259.018 -231.947,259.018 -138.048,0 -238.041,-113.032 -238.041,-252.994 0,-151.017 103.04,-253.986 246.049,-253.986zm149.954 283.963l-316.987 0c3.96854,73.9848 54.9926,161.009 158.033,161.009 109.985,0 157.962,-89.0086 158.954,-161.009z"/>
|
|
21
|
+
<glyph unicode="g" horiz-adv-x="574" d="M269.01 -196.017c117.993,0 229.962,50.0319 229.962,210.049l0 468.996 -74.977 0 0 -72.9927c-38.9767,52.9374 -97.0165,84.9692 -162.001,84.9692 -126.993,0 -215.01,-96.0244 -215.01,-251.01 0,-155.978 89.0086,-250.018 215.01,-250.018 68.032,0 126.993,36.9924 162.001,86.0322l0 -69.0242c0,-106.017 -74.977,-144.993 -154.985,-144.993 -69.0242,0 -117.001,18.0001 -157.041,65.9769l-37.9846 -55.9847c57.0477,-55.9847 113.032,-72.0006 195.025,-72.0006zm10.9843 256.041c-97.0165,0 -154.985,77.9534 -154.985,183.97 0,107.009 57.969,184.041 154.985,184.041 60.0241,0 117.993,-36.0003 144.001,-78.0242l0 -211.041c-26.0081,-41.9531 -83.977,-78.9455 -144.001,-78.9455z"/>
|
|
22
|
+
<glyph unicode="i" horiz-adv-x="225" d="M111.969 551.981c28.0632,0 51.024,22.0395 51.024,50.0319 0,27.9923 -22.9608,50.9532 -51.024,50.9532 -27.0002,0 -49.961,-22.9608 -49.961,-50.9532 0,-27.9923 22.9608,-50.0319 49.961,-50.0319zm38.0554 -551.981l0 483.027 -75.0478 0 0 -483.027 75.0478 0z"/>
|
|
23
|
+
<glyph unicode="l" horiz-adv-x="225" d="M150.025 0l0 666.997 -75.0478 0 0 -666.997 75.0478 0z"/>
|
|
24
|
+
<glyph unicode="n" horiz-adv-x="550" d="M476.012 0l0 339.026c0,104.954 -53.0083,155.978 -153.993,155.978 -72.0006,0 -138.048,-42.024 -171.993,-81.9928l0 70.0163 -75.0478 0 0 -483.027 75.0478 0 0 352.987c27.9923,39.0476 83.977,75.0478 143.009,75.0478 64.9848,0 108.001,-27.0002 108.001,-112.04l0 -315.995 74.977 0z"/>
|
|
25
|
+
<glyph unicode="o" horiz-adv-x="571" d="M286.018 -11.9765c146.978,0 238.963,113.954 238.963,253.986 0,139.962 -91.985,252.994 -238.963,252.994 -147.048,0 -239.033,-113.032 -239.033,-252.994 0,-140.033 91.985,-253.986 239.033,-253.986zm0 66.969c-103.04,0 -161.009,88.0164 -161.009,187.017 0,98.0086 57.969,186.025 161.009,186.025 102.969,0 160.017,-88.0164 160.017,-186.025 0,-99.0008 -57.0477,-187.017 -160.017,-187.017z"/>
|
|
26
|
+
<glyph unicode="r" horiz-adv-x="330" d="M150.025 0l0 342.003c21.9687,38.9767 84.9692,77.0321 130.962,77.0321 12.0473,0 21.0474,-1.063 30.0475,-3.04727l0 77.0321c-66.0478,0 -122.032,-36.9924 -161.009,-88.0164l0 78.0242 -75.0478 0 0 -483.027 75.0478 0z"/>
|
|
27
|
+
<glyph unicode="s" horiz-adv-x="465" d="M227.978 -11.9765c125.009,0 189.994,64.9848 189.994,145.985 0,188.009 -298.987,117.993 -298.987,224.01 0,43.0161 41.0318,75.9691 107.009,75.9691 62.0084,0 115.017,-26.0081 144.001,-61.0162l35.0081 52.0162c-38.9767,39.0476 -97.0165,70.0163 -179.009,70.0163 -115.017,0 -180.001,-63.9926 -180.001,-138.97 0,-179.009 298.987,-107.009 298.987,-224.01 0,-48.0476 -39.9688,-83.0558 -113.954,-83.0558 -66.0478,0 -126.993,32.0317 -159.025,69.0242l-38.9767 -54.0004c48.9689,-52.0162 116.009,-75.9691 194.954,-75.9691z"/>
|
|
28
|
+
<glyph unicode="t" horiz-adv-x="294" d="M197.009 -11.9765c44.0082,0 71.0084,12.9686 90.0007,30.9687l-22.0395 55.9847c-9.9922,-10.9843 -29.9766,-19.9844 -50.9532,-19.9844 -33.0239,0 -49.0398,26.0081 -49.0398,62.0084l0 299.979 98.0086 0 0 66.0478 -98.0086 0 0 131.954 -74.977 0 0 -131.954 -80.0085 0 0 -66.0478 80.0085 0 0 -315.995c0,-72.0006 36.0003,-112.962 107.009,-112.962z"/>
|
|
29
|
+
<glyph unicode="u" horiz-adv-x="550" d="M476.012 0l0 483.027 -74.977 0 0 -355.042c-28.0632,-38.9767 -84.0479,-72.9927 -143.009,-72.9927 -65.0556,0 -108.001,25.0159 -108.001,109.985l0 318.05 -75.0478 0 0 -341.011c0,-105.024 53.0083,-153.993 153.993,-153.993 72.0006,0 135.001,37.9846 172.064,80.0085l0 -68.032 74.977 0z"/>
|
|
30
|
+
</font>
|
|
31
|
+
<style type="text/css">
|
|
32
|
+
<![CDATA[
|
|
33
|
+
@font-face { font-family:"Proxima Nova Rg";font-variant:normal;font-style:normal;font-weight:normal;src:url("#FontID0") format(svg)}
|
|
34
|
+
.fil1 {fill:white}
|
|
35
|
+
.fil0 {fill:#1183B7;fill-opacity:0.800000}
|
|
36
|
+
.fnt0 {font-weight:normal;font-size:12.18px;font-family:'Proxima Nova Rg'}
|
|
37
|
+
]]>
|
|
38
|
+
</style>
|
|
39
|
+
</defs>
|
|
40
|
+
<g id="design">
|
|
41
|
+
<metadata id="CorelCorpID_0Corel-Layer"/>
|
|
42
|
+
<path class="fil0" d="M0.96 0l126.96 0c0.53,0 0.96,0.43 0.96,0.96l0 25c0,0.53 -0.43,0.96 -0.96,0.96l-126.96 0c-0.53,0 -0.96,-0.43 -0.96,-0.96l0 -25c0,-0.53 0.43,-0.96 0.96,-0.96z"/>
|
|
43
|
+
<text x="13.41" y="17.54" class="fil1 fnt0"></text>
|
|
44
|
+
</g>
|
|
45
|
+
</svg>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<!-- Creator: CorelDRAW 2020 (64-Bit) -->
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="0.0781575in" height="0.0782717in" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
|
|
5
|
+
viewBox="0 0 10.58 10.59"
|
|
6
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
7
|
+
xmlns:xodm="http://www.corel.com/coreldraw/odm/2003">
|
|
8
|
+
<defs>
|
|
9
|
+
<style type="text/css">
|
|
10
|
+
<![CDATA[
|
|
11
|
+
.fil1 {fill:#494949}
|
|
12
|
+
.fil0 {fill:#1C1C1C;fill-rule:nonzero;fill-opacity:0.800000}
|
|
13
|
+
]]>
|
|
14
|
+
</style>
|
|
15
|
+
</defs>
|
|
16
|
+
<g id="design">
|
|
17
|
+
<metadata id="CorelCorpID_0Corel-Layer"/>
|
|
18
|
+
<g>
|
|
19
|
+
<path class="fil0" d="M8.51 4.45c0,-0.24 0.19,-0.43 0.43,-0.43 0.24,0 0.43,0.19 0.43,0.43l-0.86 0zm0 4.64l0 -4.64 0.86 0 0 4.64 0 0 -0.86 0zm-0.65 1.51l0 -0.86 0 0 0.03 -0 0.03 -0 0.03 -0 0.03 -0.01 0.03 -0.01 0.03 -0.01 0.03 -0.01 0.03 -0.01 0.03 -0.01 0.03 -0.01 0.03 -0.02 0.03 -0.02 0.03 -0.02 0.03 -0.02 0.02 -0.02 0.02 -0.02 0.02 -0.02 0.02 -0.02 0.02 -0.03 0.02 -0.03 0.02 -0.03 0.02 -0.03 0.01 -0.03 0.01 -0.03 0.01 -0.03 0.01 -0.03 0.01 -0.03 0.01 -0.03 0.01 -0.03 0 -0.03 0 -0.03 0 -0.03 0.86 0 -0 0.08 -0.01 0.08 -0.01 0.07 -0.01 0.07 -0.02 0.08 -0.02 0.07 -0.02 0.07 -0.03 0.07 -0.03 0.07 -0.03 0.06 -0.04 0.06 -0.04 0.06 -0.04 0.06 -0.04 0.06 -0.05 0.06 -0.05 0.05 -0.05 0.05 -0.06 0.05 -0.06 0.04 -0.06 0.04 -0.06 0.04 -0.06 0.04 -0.06 0.03 -0.07 0.03 -0.07 0.03 -0.07 0.02 -0.07 0.02 -0.08 0.02 -0.07 0.01 -0.07 0.01 -0.08 0.01 -0.08 0 0 0zm-6.35 -0.86l6.35 0 0 0.86 -6.35 0 0 0 0 -0.86zm-1.51 -0.65l0.86 0 0 0 0 0.03 0 0.04 0 0.03 0.01 0.03 0.01 0.03 0.01 0.03 0.01 0.03 0.01 0.03 0.01 0.03 0.01 0.03 0.02 0.03 0.02 0.03 0.02 0.03 0.02 0.02 0.02 0.02 0.02 0.02 0.02 0.02 0.02 0.02 0.02 0.02 0.03 0.02 0.03 0.02 0.03 0.02 0.03 0.01 0.03 0.01 0.03 0.01 0.03 0.01 0.03 0.01 0.03 0.01 0.03 0.01 0.03 0 0.04 0 0.03 0 0 0.86 -0.08 -0 -0.07 -0.01 -0.08 -0.01 -0.08 -0.01 -0.07 -0.02 -0.07 -0.02 -0.07 -0.02 -0.07 -0.03 -0.07 -0.03 -0.07 -0.03 -0.06 -0.04 -0.06 -0.04 -0.06 -0.04 -0.06 -0.05 -0.05 -0.05 -0.05 -0.05 -0.05 -0.05 -0.05 -0.05 -0.05 -0.06 -0.04 -0.06 -0.04 -0.06 -0.04 -0.06 -0.03 -0.07 -0.03 -0.07 -0.03 -0.07 -0.02 -0.07 -0.02 -0.07 -0.02 -0.07 -0.01 -0.08 -0.01 -0.08 -0.01 -0.07 -0 -0.08 0 0zm0.86 -6.35l0 6.35 -0.86 0 0 -6.35 0 0 0.86 0zm0.65 -1.51l0 0.86 0 0 -0.03 0 -0.04 0 -0.03 0 -0.03 0.01 -0.03 0.01 -0.03 0.01 -0.03 0.01 -0.03 0.01 -0.03 0.01 -0.03 0.01 -0.03 0.02 -0.03 0.02 -0.03 0.02 -0.02 0.02 -0.02 0.02 -0.02 0.02 -0.02 0.02 -0.02 0.02 -0.02 0.02 -0.02 0.03 -0.02 0.03 -0.02 0.03 -0.01 0.03 -0.01 0.03 -0.01 0.03 -0.01 0.03 -0.01 0.03 -0.01 0.03 -0.01 0.03 -0 0.03 -0 0.04 -0 0.03 -0.86 0 0 -0.08 0.01 -0.07 0.01 -0.08 0.01 -0.08 0.02 -0.07 0.02 -0.07 0.02 -0.07 0.03 -0.07 0.03 -0.07 0.03 -0.07 0.04 -0.06 0.04 -0.06 0.04 -0.06 0.05 -0.06 0.05 -0.05 0.05 -0.05 0.05 -0.05 0.05 -0.05 0.06 -0.05 0.06 -0.04 0.06 -0.04 0.06 -0.04 0.07 -0.03 0.07 -0.03 0.07 -0.03 0.07 -0.02 0.07 -0.02 0.07 -0.02 0.08 -0.01 0.08 -0.01 0.07 -0.01 0.08 -0 0 0zm4.27 0.86l-4.27 0 0 -0.86 4.27 0 0 0.86zm0 -0.86c0.24,0 0.43,0.19 0.43,0.43 0,0.24 -0.19,0.43 -0.43,0.43l0 -0.86z"/>
|
|
20
|
+
</g>
|
|
21
|
+
<g>
|
|
22
|
+
<path class="fil1" d="M8.69 3.29l-3.71 3.71c-0.15,0.15 -0.29,0.29 -0.44,0.44 -0.18,0.18 -0.59,0.29 -0.78,0.34l-0.86 0.23c-0.1,0.03 -0.18,-0.02 -0.24,-0.08l-0 -0c-0.06,-0.06 -0.11,-0.14 -0.08,-0.24l0.23 -0.87c0.05,-0.2 0.16,-0.61 0.34,-0.78 0.14,-0.14 0.29,-0.29 0.44,-0.44l3.71 -3.71 1.4 1.4z"/>
|
|
23
|
+
<path class="fil1" d="M9.73 0.15l0.7 0.7c0.19,0.19 0.19,0.51 0,0.71l-1.5 1.5 -1.4 -1.4 1.5 -1.5c0.19,-0.19 0.51,-0.19 0.71,0z"/>
|
|
24
|
+
</g>
|
|
25
|
+
</g>
|
|
26
|
+
</svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_96_2376)">
|
|
3
|
+
<path d="M9.33032 2V4.66667C9.33032 4.84348 9.40056 5.01305 9.52558 5.13807C9.65061 5.2631 9.82018 5.33333 9.99699 5.33333H12.6637" stroke="#4C12A1" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M11.3303 14H4.66366C4.31003 14 3.9709 13.8595 3.72085 13.6095C3.4708 13.3594 3.33032 13.0203 3.33032 12.6667V3.33333C3.33032 2.97971 3.4708 2.64057 3.72085 2.39052C3.9709 2.14048 4.31003 2 4.66366 2H9.33032L12.6637 5.33333V12.6667C12.6637 13.0203 12.5232 13.3594 12.2731 13.6095C12.0231 13.8595 11.6839 14 11.3303 14Z" stroke="#4C12A1" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M9.33048 7.33334H7.66382C7.3986 7.33334 7.14425 7.43869 6.95671 7.62623C6.76918 7.81377 6.66382 8.06812 6.66382 8.33334C6.66382 8.59855 6.76918 8.85291 6.95671 9.04044C7.14425 9.22798 7.3986 9.33334 7.66382 9.33334H8.33048C8.5957 9.33334 8.85006 9.43869 9.03759 9.62623C9.22513 9.81376 9.33048 10.0681 9.33048 10.3333C9.33048 10.5986 9.22513 10.8529 9.03759 11.0404C8.85006 11.228 8.5957 11.3333 8.33048 11.3333H6.66382" stroke="#4C12A1" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path d="M7.99707 11.3333V12M7.99707 6.66666V7.33333" stroke="#4C12A1" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
</g>
|
|
8
|
+
<defs>
|
|
9
|
+
<clipPath id="clip0_96_2376">
|
|
10
|
+
<rect width="16" height="16" fill="white" transform="translate(-0.00292969)"/>
|
|
11
|
+
</clipPath>
|
|
12
|
+
</defs>
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<!-- Creator: CorelDRAW 2020 (64-Bit) -->
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="0.193335in" height="0.193335in" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
|
|
5
|
+
viewBox="0 0 15.59 15.59"
|
|
6
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
7
|
+
xmlns:xodm="http://www.corel.com/coreldraw/odm/2003">
|
|
8
|
+
<defs>
|
|
9
|
+
<style type="text/css">
|
|
10
|
+
<![CDATA[
|
|
11
|
+
.str0 {stroke:#494949;stroke-width:0.27;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2.61313}
|
|
12
|
+
.fil2 {fill:none}
|
|
13
|
+
.fil1 {fill:#1C1C1C;fill-opacity:0.800000}
|
|
14
|
+
.fil0 {fill:white;fill-opacity:0.800000}
|
|
15
|
+
]]>
|
|
16
|
+
</style>
|
|
17
|
+
</defs>
|
|
18
|
+
<g id="design">
|
|
19
|
+
<metadata id="CorelCorpID_0Corel-Layer"/>
|
|
20
|
+
<g id="_1995302317264">
|
|
21
|
+
<g>
|
|
22
|
+
<path class="fil0" d="M0.56 0l14.48 0c0.31,0 0.56,0.25 0.56,0.56l0 14.48c0,0.31 -0.25,0.56 -0.56,0.56l-14.48 0c-0.31,0 -0.56,-0.25 -0.56,-0.56l0 -14.48c0,-0.31 0.25,-0.56 0.56,-0.56z"/>
|
|
23
|
+
<path id="1" class="fil1" d="M0.56 0l14.48 0c0.31,0 0.56,0.25 0.56,0.56l0 14.48c0,0.31 -0.25,0.56 -0.56,0.56l-14.48 0c-0.31,0 -0.56,-0.25 -0.56,-0.56l0 -14.48c0,-0.31 0.25,-0.56 0.56,-0.56zm14.48 0.27l-14.48 0c-0.08,0 -0.15,0.03 -0.2,0.08l0 0c-0,0 -0,0 -0,0 -0.05,0.05 -0.08,0.12 -0.08,0.2l0 14.48c0,0.08 0.03,0.15 0.08,0.2l0 0c0,0 0,0 0,0 0.05,0.05 0.12,0.08 0.2,0.08l14.48 0c0.08,0 0.15,-0.03 0.2,-0.08l0 0c0,-0 0,-0 0,-0 0.05,-0.05 0.08,-0.12 0.08,-0.2l0 -14.48c0,-0.08 -0.03,-0.15 -0.08,-0.2l0 0c-0,-0 -0,-0 -0,-0 -0.05,-0.05 -0.12,-0.08 -0.2,-0.08z"/>
|
|
24
|
+
</g>
|
|
25
|
+
<g id="_1995302317744">
|
|
26
|
+
<line class="fil2 str0" x1="4.26" y1="4.2" x2="11.34" y2= "4.2" />
|
|
27
|
+
<line class="fil2 str0" x1="4.26" y1="7.8" x2="11.34" y2= "7.8" />
|
|
28
|
+
<line class="fil2 str0" x1="4.26" y1="11.4" x2="11.34" y2= "11.4" />
|
|
29
|
+
</g>
|
|
30
|
+
</g>
|
|
31
|
+
</g>
|
|
32
|
+
</svg>
|