-
-

Visualizer for SMPL human body models. Requires a .npz model file.#

+
+

SMPL model visualizer#

+

Visualizer for SMPL human body models. Requires a .npz model file.

See here for download instructions:

https://github.com/vchoutas/smplx?tab=readme-ov-file#downloading-the-model

diff --git a/latest/examples/09_urdf_visualizer/index.html b/latest/examples/09_urdf_visualizer/index.html index 0f5502575..92c3922b9 100644 --- a/latest/examples/09_urdf_visualizer/index.html +++ b/latest/examples/09_urdf_visualizer/index.html @@ -12,7 +12,7 @@ gtag('js', new Date()); gtag('config', 'G-RRGY51J5ZH'); - + Robot URDF visualizer - viser @@ -260,7 +260,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • @@ -443,7 +443,7 @@

    Robot URDF visualizerPrevious -
    Visualizer for SMPL human body models. Requires a .npz model file.
    +
    SMPL model visualizer
    diff --git a/latest/examples/10_realsense/index.html b/latest/examples/10_realsense/index.html index 3b7d5bda5..b10f6a134 100644 --- a/latest/examples/10_realsense/index.html +++ b/latest/examples/10_realsense/index.html @@ -260,7 +260,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • diff --git a/latest/examples/11_colmap_visualizer/index.html b/latest/examples/11_colmap_visualizer/index.html index 272a69a1d..0ab7c220d 100644 --- a/latest/examples/11_colmap_visualizer/index.html +++ b/latest/examples/11_colmap_visualizer/index.html @@ -260,7 +260,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • diff --git a/latest/examples/12_click_meshes/index.html b/latest/examples/12_click_meshes/index.html index 537e974f2..632b8d391 100644 --- a/latest/examples/12_click_meshes/index.html +++ b/latest/examples/12_click_meshes/index.html @@ -260,7 +260,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • diff --git a/latest/examples/13_theming/index.html b/latest/examples/13_theming/index.html index 3a62980a3..e7cb2ef87 100644 --- a/latest/examples/13_theming/index.html +++ b/latest/examples/13_theming/index.html @@ -260,7 +260,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • diff --git a/latest/examples/14_markdown/index.html b/latest/examples/14_markdown/index.html index 5ec6559f4..8dd0dc191 100644 --- a/latest/examples/14_markdown/index.html +++ b/latest/examples/14_markdown/index.html @@ -260,7 +260,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • diff --git a/latest/examples/15_gui_in_scene/index.html b/latest/examples/15_gui_in_scene/index.html index b52836e53..a6eeb7125 100644 --- a/latest/examples/15_gui_in_scene/index.html +++ b/latest/examples/15_gui_in_scene/index.html @@ -260,7 +260,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • @@ -323,92 +323,93 @@

    3D GUI Elements 6import viser.transforms as tf 7 8server = viser.ViserServer() - 9num_frames = 20 -10 + 9server.gui.configure_theme(dark_mode=True) +10num_frames = 20 11 -12@server.on_client_connect -13def _(client: viser.ClientHandle) -> None: -14 """For each client that connects, we create a set of random frames + a click handler for each frame. -15 -16 When a frame is clicked, we display a 3D gui node. -17 """ -18 -19 rng = onp.random.default_rng(0) -20 -21 displayed_3d_container: Optional[viser.Gui3dContainerHandle] = None -22 -23 def make_frame(i: int) -> None: -24 # Sample a random orientation + position. -25 wxyz = rng.normal(size=4) -26 wxyz /= onp.linalg.norm(wxyz) -27 position = rng.uniform(-3.0, 3.0, size=(3,)) -28 -29 # Create a coordinate frame and label. -30 frame = client.scene.add_frame(f"/frame_{i}", wxyz=wxyz, position=position) -31 -32 # Move the camera when we click a frame. -33 @frame.on_click -34 def _(_): -35 nonlocal displayed_3d_container -36 -37 # Close previously opened GUI. -38 if displayed_3d_container is not None: -39 displayed_3d_container.remove() -40 -41 displayed_3d_container = client.scene.add_3d_gui_container( -42 f"/frame_{i}/gui" -43 ) -44 with displayed_3d_container: -45 go_to = client.gui.add_button("Go to") -46 randomize_orientation = client.gui.add_button("Randomize orientation") -47 close = client.gui.add_button("Close GUI") -48 -49 @go_to.on_click -50 def _(_) -> None: -51 T_world_current = tf.SE3.from_rotation_and_translation( -52 tf.SO3(client.camera.wxyz), client.camera.position -53 ) -54 T_world_target = tf.SE3.from_rotation_and_translation( -55 tf.SO3(frame.wxyz), frame.position -56 ) @ tf.SE3.from_translation(onp.array([0.0, 0.0, -0.5])) -57 -58 T_current_target = T_world_current.inverse() @ T_world_target -59 -60 for j in range(20): -61 T_world_set = T_world_current @ tf.SE3.exp( -62 T_current_target.log() * j / 19.0 -63 ) -64 -65 # Important bit: we atomically set both the orientation and the position -66 # of the camera. -67 with client.atomic(): -68 client.camera.wxyz = T_world_set.rotation().wxyz -69 client.camera.position = T_world_set.translation() -70 time.sleep(1.0 / 60.0) -71 -72 # Mouse interactions should orbit around the frame origin. -73 client.camera.look_at = frame.position -74 -75 @randomize_orientation.on_click -76 def _(_) -> None: -77 wxyz = rng.normal(size=4) -78 wxyz /= onp.linalg.norm(wxyz) -79 frame.wxyz = wxyz -80 -81 @close.on_click -82 def _(_) -> None: -83 nonlocal displayed_3d_container -84 if displayed_3d_container is None: -85 return -86 displayed_3d_container.remove() -87 displayed_3d_container = None -88 -89 for i in range(num_frames): -90 make_frame(i) -91 +12 +13@server.on_client_connect +14def _(client: viser.ClientHandle) -> None: +15 """For each client that connects, we create a set of random frames + a click handler for each frame. +16 +17 When a frame is clicked, we display a 3D gui node. +18 """ +19 +20 rng = onp.random.default_rng(0) +21 +22 displayed_3d_container: Optional[viser.Gui3dContainerHandle] = None +23 +24 def make_frame(i: int) -> None: +25 # Sample a random orientation + position. +26 wxyz = rng.normal(size=4) +27 wxyz /= onp.linalg.norm(wxyz) +28 position = rng.uniform(-3.0, 3.0, size=(3,)) +29 +30 # Create a coordinate frame and label. +31 frame = client.scene.add_frame(f"/frame_{i}", wxyz=wxyz, position=position) +32 +33 # Move the camera when we click a frame. +34 @frame.on_click +35 def _(_): +36 nonlocal displayed_3d_container +37 +38 # Close previously opened GUI. +39 if displayed_3d_container is not None: +40 displayed_3d_container.remove() +41 +42 displayed_3d_container = client.scene.add_3d_gui_container( +43 f"/frame_{i}/gui" +44 ) +45 with displayed_3d_container: +46 go_to = client.gui.add_button("Go to") +47 randomize_orientation = client.gui.add_button("Randomize orientation") +48 close = client.gui.add_button("Close GUI") +49 +50 @go_to.on_click +51 def _(_) -> None: +52 T_world_current = tf.SE3.from_rotation_and_translation( +53 tf.SO3(client.camera.wxyz), client.camera.position +54 ) +55 T_world_target = tf.SE3.from_rotation_and_translation( +56 tf.SO3(frame.wxyz), frame.position +57 ) @ tf.SE3.from_translation(onp.array([0.0, 0.0, -0.5])) +58 +59 T_current_target = T_world_current.inverse() @ T_world_target +60 +61 for j in range(20): +62 T_world_set = T_world_current @ tf.SE3.exp( +63 T_current_target.log() * j / 19.0 +64 ) +65 +66 # Important bit: we atomically set both the orientation and the position +67 # of the camera. +68 with client.atomic(): +69 client.camera.wxyz = T_world_set.rotation().wxyz +70 client.camera.position = T_world_set.translation() +71 time.sleep(1.0 / 60.0) +72 +73 # Mouse interactions should orbit around the frame origin. +74 client.camera.look_at = frame.position +75 +76 @randomize_orientation.on_click +77 def _(_) -> None: +78 wxyz = rng.normal(size=4) +79 wxyz /= onp.linalg.norm(wxyz) +80 frame.wxyz = wxyz +81 +82 @close.on_click +83 def _(_) -> None: +84 nonlocal displayed_3d_container +85 if displayed_3d_container is None: +86 return +87 displayed_3d_container.remove() +88 displayed_3d_container = None +89 +90 for i in range(num_frames): +91 make_frame(i) 92 -93while True: -94 time.sleep(1.0) +93 +94while True: +95 time.sleep(1.0)

    diff --git a/latest/examples/16_modal/index.html b/latest/examples/16_modal/index.html index f6291eedb..50d6eaa0d 100644 --- a/latest/examples/16_modal/index.html +++ b/latest/examples/16_modal/index.html @@ -260,7 +260,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • diff --git a/latest/examples/17_background_composite/index.html b/latest/examples/17_background_composite/index.html index 1e5413e04..a5caf8c4a 100644 --- a/latest/examples/17_background_composite/index.html +++ b/latest/examples/17_background_composite/index.html @@ -260,7 +260,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • diff --git a/latest/examples/18_splines/index.html b/latest/examples/18_splines/index.html index 6c87725ac..b77633976 100644 --- a/latest/examples/18_splines/index.html +++ b/latest/examples/18_splines/index.html @@ -260,7 +260,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • diff --git a/latest/examples/19_get_renders/index.html b/latest/examples/19_get_renders/index.html index eb6c791fb..ffe5af3cc 100644 --- a/latest/examples/19_get_renders/index.html +++ b/latest/examples/19_get_renders/index.html @@ -260,7 +260,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • diff --git a/latest/examples/20_scene_pointer/index.html b/latest/examples/20_scene_pointer/index.html index b56079658..2b59eb961 100644 --- a/latest/examples/20_scene_pointer/index.html +++ b/latest/examples/20_scene_pointer/index.html @@ -260,7 +260,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • @@ -327,147 +327,151 @@

    Scene pointer events. 10import trimesh.ray 11import viser 12import viser.transforms as tf - 13 - 14server = viser.ViserServer() - 15server.gui.configure_theme(brand_color=(130, 0, 150)) - 16server.scene.set_up_direction("+y") - 17 - 18mesh = cast( - 19 trimesh.Trimesh, trimesh.load_mesh(str(Path(__file__).parent / "assets/dragon.obj")) - 20) - 21mesh.apply_scale(0.05) - 22 - 23mesh_handle = server.scene.add_mesh_trimesh( - 24 name="/mesh", - 25 mesh=mesh, - 26 position=(0.0, 0.0, 0.0), - 27) - 28 - 29hit_pos_handles: list[viser.GlbHandle] = [] - 30 - 31 - 32# Buttons + callbacks will operate on a per-client basis, but will modify the global scene! :) - 33@server.on_client_connect - 34def _(client: viser.ClientHandle) -> None: - 35 # Set up the camera -- this gives a nice view of the full mesh. - 36 client.camera.position = onp.array([0.0, 0.0, -10.0]) - 37 client.camera.wxyz = onp.array([0.0, 0.0, 0.0, 1.0]) - 38 - 39 # Tests "click" scenepointerevent. - 40 click_button_handle = client.gui.add_button("Add sphere", icon=viser.Icon.POINTER) - 41 - 42 @click_button_handle.on_click - 43 def _(_): - 44 click_button_handle.disabled = True + 13from viser.theme import TitlebarConfig + 14 + 15server = viser.ViserServer() + 16server.gui.configure_theme( + 17 brand_color=(130, 0, 150), + 18 titlebar_content=TitlebarConfig(buttons=(), image=None), + 19) + 20server.scene.set_up_direction("+y") + 21 + 22mesh = cast( + 23 trimesh.Trimesh, trimesh.load_mesh(str(Path(__file__).parent / "assets/dragon.obj")) + 24) + 25mesh.apply_scale(0.05) + 26 + 27mesh_handle = server.scene.add_mesh_trimesh( + 28 name="/mesh", + 29 mesh=mesh, + 30 position=(0.0, 0.0, 0.0), + 31) + 32 + 33hit_pos_handles: list[viser.GlbHandle] = [] + 34 + 35 + 36# Buttons + callbacks will operate on a per-client basis, but will modify the global scene! :) + 37@server.on_client_connect + 38def _(client: viser.ClientHandle) -> None: + 39 # Set up the camera -- this gives a nice view of the full mesh. + 40 client.camera.position = onp.array([0.0, 0.0, -10.0]) + 41 client.camera.wxyz = onp.array([0.0, 0.0, 0.0, 1.0]) + 42 + 43 # Tests "click" scenepointerevent. + 44 click_button_handle = client.gui.add_button("Add sphere", icon=viser.Icon.POINTER) 45 - 46 @client.scene.on_pointer_event(event_type="click") - 47 def _(event: viser.ScenePointerEvent) -> None: - 48 # Check for intersection with the mesh, using trimesh's ray-mesh intersection. - 49 # Note that mesh is in the mesh frame, so we need to transform the ray. - 50 R_world_mesh = tf.SO3(mesh_handle.wxyz) - 51 R_mesh_world = R_world_mesh.inverse() - 52 origin = (R_mesh_world @ onp.array(event.ray_origin)).reshape(1, 3) - 53 direction = (R_mesh_world @ onp.array(event.ray_direction)).reshape(1, 3) - 54 intersector = trimesh.ray.ray_triangle.RayMeshIntersector(mesh) - 55 hit_pos, _, _ = intersector.intersects_location(origin, direction) - 56 - 57 if len(hit_pos) == 0: - 58 return - 59 client.scene.remove_pointer_callback() + 46 @click_button_handle.on_click + 47 def _(_): + 48 click_button_handle.disabled = True + 49 + 50 @client.scene.on_pointer_event(event_type="click") + 51 def _(event: viser.ScenePointerEvent) -> None: + 52 # Check for intersection with the mesh, using trimesh's ray-mesh intersection. + 53 # Note that mesh is in the mesh frame, so we need to transform the ray. + 54 R_world_mesh = tf.SO3(mesh_handle.wxyz) + 55 R_mesh_world = R_world_mesh.inverse() + 56 origin = (R_mesh_world @ onp.array(event.ray_origin)).reshape(1, 3) + 57 direction = (R_mesh_world @ onp.array(event.ray_direction)).reshape(1, 3) + 58 intersector = trimesh.ray.ray_triangle.RayMeshIntersector(mesh) + 59 hit_pos, _, _ = intersector.intersects_location(origin, direction) 60 - 61 # Get the first hit position (based on distance from the ray origin). - 62 hit_pos = min(hit_pos, key=lambda x: onp.linalg.norm(x - origin)) - 63 - 64 # Create a sphere at the hit location. - 65 hit_pos_mesh = trimesh.creation.icosphere(radius=0.1) - 66 hit_pos_mesh.vertices += R_world_mesh @ hit_pos - 67 hit_pos_mesh.visual.vertex_colors = (0.5, 0.0, 0.7, 1.0) # type: ignore - 68 hit_pos_handle = server.scene.add_mesh_trimesh( - 69 name=f"/hit_pos_{len(hit_pos_handles)}", mesh=hit_pos_mesh - 70 ) - 71 hit_pos_handles.append(hit_pos_handle) - 72 - 73 @client.scene.on_pointer_callback_removed - 74 def _(): - 75 click_button_handle.disabled = False + 61 if len(hit_pos) == 0: + 62 return + 63 client.scene.remove_pointer_callback() + 64 + 65 # Get the first hit position (based on distance from the ray origin). + 66 hit_pos = min(hit_pos, key=lambda x: onp.linalg.norm(x - origin)) + 67 + 68 # Create a sphere at the hit location. + 69 hit_pos_mesh = trimesh.creation.icosphere(radius=0.1) + 70 hit_pos_mesh.vertices += R_world_mesh @ hit_pos + 71 hit_pos_mesh.visual.vertex_colors = (0.5, 0.0, 0.7, 1.0) # type: ignore + 72 hit_pos_handle = server.scene.add_mesh_trimesh( + 73 name=f"/hit_pos_{len(hit_pos_handles)}", mesh=hit_pos_mesh + 74 ) + 75 hit_pos_handles.append(hit_pos_handle) 76 - 77 # Tests "rect-select" scenepointerevent. - 78 paint_button_handle = client.gui.add_button("Paint mesh", icon=viser.Icon.PAINT) - 79 - 80 @paint_button_handle.on_click - 81 def _(_): - 82 paint_button_handle.disabled = True + 77 @client.scene.on_pointer_callback_removed + 78 def _(): + 79 click_button_handle.disabled = False + 80 + 81 # Tests "rect-select" scenepointerevent. + 82 paint_button_handle = client.gui.add_button("Paint mesh", icon=viser.Icon.PAINT) 83 - 84 @client.scene.on_pointer_event(event_type="rect-select") - 85 def _(message: viser.ScenePointerEvent) -> None: - 86 client.scene.remove_pointer_callback() + 84 @paint_button_handle.on_click + 85 def _(_): + 86 paint_button_handle.disabled = True 87 - 88 global mesh_handle - 89 camera = message.client.camera - 90 - 91 # Put the mesh in the camera frame. - 92 R_world_mesh = tf.SO3(mesh_handle.wxyz) - 93 R_mesh_world = R_world_mesh.inverse() - 94 R_camera_world = tf.SE3.from_rotation_and_translation( - 95 tf.SO3(camera.wxyz), camera.position - 96 ).inverse() - 97 vertices = cast(onp.ndarray, mesh.vertices) - 98 vertices = (R_mesh_world.as_matrix() @ vertices.T).T - 99 vertices = ( -100 R_camera_world.as_matrix() -101 @ onp.hstack([vertices, onp.ones((vertices.shape[0], 1))]).T -102 ).T[:, :3] -103 -104 # Get the camera intrinsics, and project the vertices onto the image plane. -105 fov, aspect = camera.fov, camera.aspect -106 vertices_proj = vertices[:, :2] / vertices[:, 2].reshape(-1, 1) -107 vertices_proj /= onp.tan(fov / 2) -108 vertices_proj[:, 0] /= aspect -109 -110 # Move the origin to the upper-left corner, and scale to [0, 1]. -111 # ... make sure to match the OpenCV's image coordinates! -112 vertices_proj = (1 + vertices_proj) / 2 + 88 @client.scene.on_pointer_event(event_type="rect-select") + 89 def _(message: viser.ScenePointerEvent) -> None: + 90 client.scene.remove_pointer_callback() + 91 + 92 global mesh_handle + 93 camera = message.client.camera + 94 + 95 # Put the mesh in the camera frame. + 96 R_world_mesh = tf.SO3(mesh_handle.wxyz) + 97 R_mesh_world = R_world_mesh.inverse() + 98 R_camera_world = tf.SE3.from_rotation_and_translation( + 99 tf.SO3(camera.wxyz), camera.position +100 ).inverse() +101 vertices = cast(onp.ndarray, mesh.vertices) +102 vertices = (R_mesh_world.as_matrix() @ vertices.T).T +103 vertices = ( +104 R_camera_world.as_matrix() +105 @ onp.hstack([vertices, onp.ones((vertices.shape[0], 1))]).T +106 ).T[:, :3] +107 +108 # Get the camera intrinsics, and project the vertices onto the image plane. +109 fov, aspect = camera.fov, camera.aspect +110 vertices_proj = vertices[:, :2] / vertices[:, 2].reshape(-1, 1) +111 vertices_proj /= onp.tan(fov / 2) +112 vertices_proj[:, 0] /= aspect 113 -114 # Select the vertices that lie inside the 2D selected box, once projected. -115 mask = ( -116 (vertices_proj > onp.array(message.screen_pos[0])) -117 & (vertices_proj < onp.array(message.screen_pos[1])) -118 ).all(axis=1)[..., None] -119 -120 # Update the mesh color based on whether the vertices are inside the box -121 mesh.visual.vertex_colors = onp.where( # type: ignore -122 mask, (0.5, 0.0, 0.7, 1.0), (0.9, 0.9, 0.9, 1.0) -123 ) -124 mesh_handle = server.scene.add_mesh_trimesh( -125 name="/mesh", -126 mesh=mesh, -127 position=(0.0, 0.0, 0.0), -128 ) -129 -130 @client.scene.on_pointer_callback_removed -131 def _(): -132 paint_button_handle.disabled = False +114 # Move the origin to the upper-left corner, and scale to [0, 1]. +115 # ... make sure to match the OpenCV's image coordinates! +116 vertices_proj = (1 + vertices_proj) / 2 +117 +118 # Select the vertices that lie inside the 2D selected box, once projected. +119 mask = ( +120 (vertices_proj > onp.array(message.screen_pos[0])) +121 & (vertices_proj < onp.array(message.screen_pos[1])) +122 ).all(axis=1)[..., None] +123 +124 # Update the mesh color based on whether the vertices are inside the box +125 mesh.visual.vertex_colors = onp.where( # type: ignore +126 mask, (0.5, 0.0, 0.7, 1.0), (0.9, 0.9, 0.9, 1.0) +127 ) +128 mesh_handle = server.scene.add_mesh_trimesh( +129 name="/mesh", +130 mesh=mesh, +131 position=(0.0, 0.0, 0.0), +132 ) 133 -134 # Button to clear spheres. -135 clear_button_handle = client.gui.add_button("Clear scene", icon=viser.Icon.X) -136 -137 @clear_button_handle.on_click -138 def _(_): -139 """Reset the mesh color and remove all click-generated spheres.""" -140 global mesh_handle -141 for handle in hit_pos_handles: -142 handle.remove() -143 hit_pos_handles.clear() -144 mesh.visual.vertex_colors = (0.9, 0.9, 0.9, 1.0) # type: ignore -145 mesh_handle = server.scene.add_mesh_trimesh( -146 name="/mesh", -147 mesh=mesh, -148 position=(0.0, 0.0, 0.0), -149 ) -150 -151 -152while True: -153 time.sleep(10.0) +134 @client.scene.on_pointer_callback_removed +135 def _(): +136 paint_button_handle.disabled = False +137 +138 # Button to clear spheres. +139 clear_button_handle = client.gui.add_button("Clear scene", icon=viser.Icon.X) +140 +141 @clear_button_handle.on_click +142 def _(_): +143 """Reset the mesh color and remove all click-generated spheres.""" +144 global mesh_handle +145 for handle in hit_pos_handles: +146 handle.remove() +147 hit_pos_handles.clear() +148 mesh.visual.vertex_colors = (0.9, 0.9, 0.9, 1.0) # type: ignore +149 mesh_handle = server.scene.add_mesh_trimesh( +150 name="/mesh", +151 mesh=mesh, +152 position=(0.0, 0.0, 0.0), +153 ) +154 +155 +156while True: +157 time.sleep(10.0)

    diff --git a/latest/examples/21_set_up_direction/index.html b/latest/examples/21_set_up_direction/index.html index 42910a191..4a3e0bb1f 100644 --- a/latest/examples/21_set_up_direction/index.html +++ b/latest/examples/21_set_up_direction/index.html @@ -260,7 +260,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • diff --git a/latest/examples/22_games/index.html b/latest/examples/22_games/index.html index 7f1b97c28..4b7195e9f 100644 --- a/latest/examples/22_games/index.html +++ b/latest/examples/22_games/index.html @@ -260,7 +260,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • diff --git a/latest/examples/23_plotly/index.html b/latest/examples/23_plotly/index.html index b2fb55564..67d309f75 100644 --- a/latest/examples/23_plotly/index.html +++ b/latest/examples/23_plotly/index.html @@ -260,7 +260,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • diff --git a/latest/extras/index.html b/latest/extras/index.html index fd3b9047d..0899cec4f 100644 --- a/latest/extras/index.html +++ b/latest/extras/index.html @@ -260,7 +260,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • diff --git a/latest/genindex/index.html b/latest/genindex/index.html index 9c2396c76..a6f9e0ef1 100644 --- a/latest/genindex/index.html +++ b/latest/genindex/index.html @@ -258,7 +258,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • diff --git a/latest/gui_api/index.html b/latest/gui_api/index.html index 104e90c9b..2567cb22d 100644 --- a/latest/gui_api/index.html +++ b/latest/gui_api/index.html @@ -260,7 +260,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • diff --git a/latest/gui_handles/index.html b/latest/gui_handles/index.html index 1b22aab5f..113667ecd 100644 --- a/latest/gui_handles/index.html +++ b/latest/gui_handles/index.html @@ -260,7 +260,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • diff --git a/latest/icons/index.html b/latest/icons/index.html index f2efa95e3..2794836a2 100644 --- a/latest/icons/index.html +++ b/latest/icons/index.html @@ -260,7 +260,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • diff --git a/latest/index.html b/latest/index.html index 02b6f57d7..de331221f 100644 --- a/latest/index.html +++ b/latest/index.html @@ -260,7 +260,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • diff --git a/latest/infrastructure/index.html b/latest/infrastructure/index.html index 1ad6e9067..619584511 100644 --- a/latest/infrastructure/index.html +++ b/latest/infrastructure/index.html @@ -260,7 +260,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • diff --git a/latest/objects.inv b/latest/objects.inv index f784300d661d2e706ab3076b96957c36674e04e5..3029117016838f4a4adcfca9ef9a25cd3190b3d7 100644 GIT binary patch delta 558 zcmV+}0@3|}vH{ky0kF1Ke|1siufE(~Zm*Ar{ChY}_|1@?$y|zWKi)pRYD~H~8uFW; zT}CgiAGS9S$J^;x;PZcRT?g&az}~pJyZ&-<_pO8;6S~^gc_FIfA)mx6xI)do&>Rmm zvHoAho4d9Lo&L?t?+W{Jb@TanP{W^pdS&CkjM%qs+8A#)IS%jsf9}%IE7R>4XUClV z_4aHO*t^gnuWsVe{Nn-cYkqp=+Mn;X@_PH_AX~2K-(Fr^9}lMcqf1oK92$@}zmBiA z^bQq&)z}M3I5TzrDHi^S7h?p2Qip z?W1e1;Xiiaoc!Efe}T~58G1CNLy=2Qyv(U%Vq}JlR0YBHduw6QvyH{!d z%P3f9?Oz;?`aimi?vFYrv-U1rlXD#F|N7Ibc$tpRM!3~rPaTdY@2uVb6Aj36dwu7N z(@j9HT*3Ymn0QgIzX_-N)s1NWA3tqriUimw7++T-8b$@*oW<5XbAJf>w_YZKm(frGor<pay0kF1Kf2TXd_0CsyQRT1xd~%t7_3`%d-&bF5FSpkZuU+*2`*d~h zs^j9->zlj(#@}E0D`Q@dlJR>udic#`Jd?TX-G01%eASqAaWsQ(es-mDas9Bpc{tvv z#{yqi7uR*r9u4e`tLW=57kA%E=rN&d8agjTbv)#gcwbj&1~0VTe*;ZyEU)4{~a-j8~x?hj)K>Y3P;d_KP!m&RBcnHwx@s=)G4r z@f`p00QWUNy>gA!_i=f>{c?~k*H3OQFRqUV)BVvUDrgR^&6{7x_h5SOi@%rbg(Mx< zdV}rHm-j#Hm)mdMf9<9(RNwIDpI+7RUqWyU zCqH-hC3F{z9u4VGn$AEHiX?OnK2=Q!5?^`}?y<{h7na0SAiI-F(Rna2Moe;SbG_WI5jr<<)_xq|&C zF!5Gje{D|ps~i6OKYr-$pBe|;Ur803uc*`yqpNlfb;D%CYx|i-xK(GYjMwbE@)zv5 zzYdA&{`x9Rk$%`e)3Jx|pZ0J=|CcXMH&>rxFLmAJNIviW{jvW;=t}+=NX+r*FJD2b zf88?WW}h7HPy87tZg&w-*8qKq?OopSTs@RpB>HlD*k0U!`g1=~@i*T9!`~`5W%(gq nn6VdZyh7tuILiJio*epNbQESJ9nDQ&4cCc0{P6z)|CipHMV3vO diff --git a/latest/py-modindex/index.html b/latest/py-modindex/index.html index 758e3e2bd..1504c7e2f 100644 --- a/latest/py-modindex/index.html +++ b/latest/py-modindex/index.html @@ -258,7 +258,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • diff --git a/latest/scene_api/index.html b/latest/scene_api/index.html index 82079f62f..7adfe038e 100644 --- a/latest/scene_api/index.html +++ b/latest/scene_api/index.html @@ -260,7 +260,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • diff --git a/latest/scene_handles/index.html b/latest/scene_handles/index.html index fec7f98b2..83970009b 100644 --- a/latest/scene_handles/index.html +++ b/latest/scene_handles/index.html @@ -260,7 +260,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • diff --git a/latest/search/index.html b/latest/search/index.html index f0c8914f9..a3a6d7ed5 100644 --- a/latest/search/index.html +++ b/latest/search/index.html @@ -257,7 +257,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • diff --git a/latest/searchindex.js b/latest/searchindex.js index 44d9f62d7..061740fce 100644 --- a/latest/searchindex.js +++ b/latest/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["camera_handles", "client_handles", "conventions", "development", "events", "examples/00_coordinate_frames", "examples/01_image", "examples/02_gui", "examples/03_gui_callbacks", "examples/04_camera_poses", "examples/05_camera_commands", "examples/06_mesh", "examples/07_record3d_visualizer", "examples/08_smpl_visualizer", "examples/09_urdf_visualizer", "examples/10_realsense", "examples/11_colmap_visualizer", "examples/12_click_meshes", "examples/13_theming", "examples/14_markdown", "examples/15_gui_in_scene", "examples/16_modal", "examples/17_background_composite", "examples/18_splines", "examples/19_get_renders", "examples/20_scene_pointer", "examples/21_set_up_direction", "examples/22_games", "examples/23_plotly", "extras", "gui_api", "gui_handles", "icons", "index", "infrastructure", "scene_api", "scene_handles", "server", "transforms"], "filenames": ["camera_handles.md", "client_handles.md", "conventions.md", "development.md", "events.md", "examples/00_coordinate_frames.rst", "examples/01_image.rst", "examples/02_gui.rst", "examples/03_gui_callbacks.rst", "examples/04_camera_poses.rst", "examples/05_camera_commands.rst", "examples/06_mesh.rst", "examples/07_record3d_visualizer.rst", "examples/08_smpl_visualizer.rst", "examples/09_urdf_visualizer.rst", "examples/10_realsense.rst", "examples/11_colmap_visualizer.rst", "examples/12_click_meshes.rst", "examples/13_theming.rst", "examples/14_markdown.rst", "examples/15_gui_in_scene.rst", "examples/16_modal.rst", "examples/17_background_composite.rst", "examples/18_splines.rst", "examples/19_get_renders.rst", "examples/20_scene_pointer.rst", "examples/21_set_up_direction.rst", "examples/22_games.rst", "examples/23_plotly.rst", "extras.md", "gui_api.md", "gui_handles.md", "icons.md", "index.md", "infrastructure.md", "scene_api.md", "scene_handles.md", "server.md", "transforms.md"], "titles": ["Camera Handles", "Client Handles", "Frame Conventions", "Development", "Events", "Coordinate frames", "Images", "GUI basics", "GUI callbacks", "Camera poses", "Camera commands", "Meshes", "Record3D visualizer", "Visualizer for SMPL human body models. Requires a .npz model file.", "Robot URDF visualizer", "RealSense visualizer", "COLMAP visualizer", "Mesh click events", "Theming", "Markdown Demonstration", "3D GUI Elements", "Modal basics", "Depth compositing", "Splines", "Get Renders", "Scene pointer events.", "Set Up Direction", "Games", "Plotly.", "Record3D + URDF Helpers", "GUI API", "GUI Handles", "Icons", "viser", "Communication", "Scene API", "Scene Handles", "Viser Server", "Transforms"], "terms": {"class": [0, 1, 4, 13, 29, 30, 31, 32, 34, 35, 36, 37, 38], "viser": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 38], "camerahandl": [0, 1, 9], "sourc": [0, 1, 3, 4, 29, 30, 31, 32, 34, 35, 36, 37, 38], "A": [0, 1, 3, 14, 15, 29, 30, 31, 35, 36], "read": [0, 1, 7, 9, 10, 13, 15, 31, 35, 36], "write": [0, 1, 3, 7, 10, 31, 32], "state": [0, 1, 31, 35, 36, 37], "particular": [0, 7, 34], "client": [0, 4, 7, 9, 10, 16, 20, 21, 24, 25, 30, 31, 33, 34, 35, 36, 37], "typic": [0, 3, 35, 38], "access": [0, 32, 37], "via": [0, 1, 3, 18, 31, 32, 35, 36, 37, 38], "clienthandl": [0, 1, 2, 4, 9, 10, 20, 21, 25, 29, 31, 36, 37], "properti": [0, 4, 31, 36], "thi": [0, 1, 2, 3, 4, 5, 9, 13, 14, 16, 20, 21, 22, 25, 28, 30, 31, 34, 35, 36, 37, 38], "correspond": [0, 2, 3, 4, 10, 34], "wxyz": [0, 2, 5, 6, 8, 9, 10, 11, 12, 13, 16, 20, 25, 27, 35, 36, 38], "ndarrai": [0, 13, 15, 25, 29, 30, 35, 36, 38], "ani": [0, 1, 3, 8, 14, 29, 34, 35, 37, 38], "dtype": [0, 6, 7, 15, 22, 29, 38], "float64": 0, "r": [0, 2, 15, 28, 32, 36], "p_world": 0, "t": [0, 2, 12, 15, 16, 25, 28, 31, 32, 34, 36, 37], "p_camera": 0, "synchron": [0, 1, 3, 18, 31, 34, 36, 37], "automat": [0, 3, 7, 10, 30, 31, 34, 35, 36, 37], "when": [0, 1, 3, 4, 7, 8, 10, 12, 13, 14, 15, 20, 22, 31, 34, 35, 36, 37], "assign": [0, 2, 31, 36], "posit": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 20, 22, 23, 24, 25, 27, 29, 31, 34, 35, 36, 37], "The": [0, 2, 3, 14, 17, 21, 30, 32, 34, 35], "look_at": [0, 10, 20], "point": [0, 2, 7, 8, 12, 15, 16, 32, 35, 36, 38], "up_direct": [0, 16], "vector": [0, 7, 30, 32, 35, 38], "ar": [0, 1, 2, 3, 4, 5, 7, 8, 10, 13, 17, 25, 30, 31, 32, 34, 35, 37, 38], "maintain": 0, "updat": [0, 1, 4, 7, 8, 9, 12, 13, 14, 25, 28, 29, 31, 34, 37], "which": [0, 2, 3, 4, 30, 31, 35, 37, 38], "mean": [0, 35], "often": [0, 35], "also": [0, 1, 3, 8, 10, 14, 15, 33, 35], "affect": [0, 4, 35], "fov": [0, 9, 12, 16, 25, 35], "float": [0, 4, 13, 14, 18, 28, 29, 30, 31, 32, 35, 36, 38], "vertic": [0, 11, 13, 25, 27, 32, 35], "field": [0, 2, 32, 34, 35, 38], "view": [0, 13, 15, 25, 32, 35], "radian": [0, 35, 38], "aspect": [0, 9, 12, 16, 25, 28, 30, 31, 32, 35], "canva": 0, "width": [0, 8, 16, 18, 24, 30, 32, 35], "divid": [0, 32, 35], "height": [0, 8, 16, 24, 27, 30, 32, 35], "Not": 0, "update_timestamp": [0, 9, 31, 36], "look": [0, 32], "set": [0, 2, 3, 4, 5, 7, 10, 12, 13, 14, 16, 20, 25, 28, 30, 31, 32, 34, 35, 36, 38], "up": [0, 2, 16, 25, 32, 35], "direct": [0, 4, 16, 25, 32, 35], "on_upd": [0, 8, 9, 12, 13, 14, 16, 19, 26, 31, 36], "callback": [0, 4, 7, 17, 25, 31, 34, 35, 36, 37], "callabl": [0, 31, 34, 35, 36, 37], "none": [0, 1, 4, 6, 7, 8, 9, 10, 12, 13, 14, 16, 17, 18, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37], "attach": [0, 8, 31, 34, 35, 36, 37], "run": [0, 3, 9, 32, 33, 34, 35, 37], "new": [0, 9, 17, 30, 32, 34, 35], "messag": [0, 1, 25, 30, 32, 34, 37], "i": [0, 1, 2, 3, 4, 5, 7, 8, 10, 12, 13, 14, 15, 16, 17, 20, 21, 23, 24, 25, 27, 30, 31, 32, 33, 34, 35, 36, 37, 38], "receiv": [0, 34], "paramet": [0, 1, 2, 10, 13, 29, 30, 31, 34, 35, 36, 37, 38], "return": [0, 1, 13, 15, 20, 25, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38], "type": [0, 1, 3, 4, 15, 20, 25, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38], "get_rend": [0, 24], "int": [0, 1, 4, 10, 12, 13, 15, 16, 17, 20, 27, 29, 30, 34, 35, 37, 38], "transport_format": 0, "liter": [0, 4, 27, 30, 31, 35], "png": [0, 6, 18, 28, 32, 35], "jpeg": [0, 6, 35], "request": [0, 32, 37], "render": [0, 6, 22, 29, 33, 35, 36], "from": [0, 1, 2, 3, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 18, 19, 20, 24, 25, 27, 28, 29, 31, 34, 35, 36, 37, 38], "block": [0, 15, 32, 33, 37], "until": [0, 37], "": [0, 1, 8, 13, 16, 24, 25, 29, 32, 34, 35, 37, 38], "done": [0, 3, 15, 24, 35], "numpi": [0, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 20, 22, 23, 24, 25, 27, 28, 35, 38], "arrai": [0, 7, 10, 12, 13, 14, 15, 16, 20, 25, 35, 38], "imag": [0, 4, 12, 16, 18, 22, 24, 25, 28, 30, 35, 36], "should": [0, 1, 2, 3, 10, 13, 14, 20, 30, 31, 32, 34, 35, 37, 38], "browser": [0, 3, 32, 37], "transport": [0, 35], "format": [0, 3, 6, 15, 32, 35], "lossi": 0, "h": [0, 16, 32, 35], "w": [0, 3, 16, 32, 35, 38], "3": [0, 2, 6, 7, 8, 10, 12, 13, 14, 15, 16, 17, 20, 22, 23, 24, 25, 27, 28, 30, 32, 35, 38], "rgb": [0, 12, 15, 16, 29, 30, 35], "lossless": 0, "4": [0, 6, 7, 10, 12, 13, 17, 20, 27, 32, 35, 38], "rgba": [0, 30], "can": [0, 1, 2, 3, 6, 7, 8, 9, 10, 14, 20, 22, 25, 26, 30, 31, 32, 33, 34, 35, 36, 37, 38], "caus": 0, "memori": 0, "issu": 0, "frontend": [0, 3], "call": [0, 2, 8, 31, 32, 35, 37], "too": 0, "quickli": 0, "higher": 0, "resolut": 0, "creat": [1, 7, 10, 14, 20, 25, 27, 28, 31, 35, 36, 37], "each": [1, 2, 10, 20, 27, 30, 31, 35, 36, 38], "connect": [1, 3, 7, 9, 10, 15, 20, 27, 31, 32, 33, 34, 36, 37], "server": [1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 34, 35, 36], "us": [1, 2, 3, 4, 6, 7, 15, 21, 22, 25, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38], "commun": [1, 3, 32], "just": [1, 8, 14, 15], "one": [1, 3, 10, 12, 17, 32, 35, 37], "well": [1, 36, 38], "camera": [1, 15, 16, 20, 24, 25, 32, 33, 35, 36], "similar": [1, 35], "viserserv": [1, 2, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 36, 37], "expos": [1, 2], "scene": [1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 22, 23, 24, 26, 27, 29, 33, 37], "gui": [1, 4, 9, 12, 13, 14, 16, 17, 18, 19, 21, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37], "interfac": [1, 3, 14, 30, 34, 35, 38], "If": [1, 2, 3, 35, 38], "exampl": [1, 3, 5, 6, 7, 9, 20, 21, 22, 24, 25, 28, 29, 33, 34, 36, 37, 38], "sceneapi": [1, 35, 37], "add_point_cloud": [1, 7, 8, 12, 15, 16, 35, 37], "method": [1, 18, 34, 35, 37], "element": [1, 4, 7, 8, 13, 16, 18, 30, 31, 32, 34, 35, 36, 37, 38], "local": [1, 2, 13, 14, 31, 35, 36, 37], "onli": [1, 4, 7, 31, 34], "specif": [1, 31, 34, 35, 36], "interact": [1, 10, 13, 20, 25, 30, 31, 33, 35, 36, 37], "3d": [1, 2, 4, 6, 22, 28, 32, 33, 35, 36, 37, 38], "guiapi": [1, 30, 32, 37], "client_id": [1, 4, 9, 34], "uniqu": [1, 34], "id": [1, 4, 9, 16, 32, 37], "manipul": [1, 35], "viewport": [1, 24, 32], "flush": [1, 10, 12, 27, 34, 37], "outgo": [1, 32, 34, 37], "buffer": [1, 32, 34, 37], "immedi": [1, 34, 37], "sent": [1, 34, 37], "default": [1, 2, 30, 33, 34, 35, 37, 38], "thei": [1, 25, 34, 37], "window": [1, 30, 32, 34, 37], "atom": [1, 10, 12, 20, 32, 34, 37], "contextmanag": [1, 15, 37], "context": [1, 15, 30, 31, 34, 35, 36, 37], "where": [1, 2, 25, 30, 31, 34, 35, 37], "all": [1, 2, 5, 9, 12, 13, 16, 25, 30, 31, 32, 34, 35, 36, 37], "group": [1, 30, 31, 32, 34, 37, 38], "appli": [1, 14, 18, 29, 34, 35, 37, 38], "treat": [1, 34, 37], "soft": [1, 34, 37], "constraint": [1, 34, 37], "help": [1, 14, 26, 32, 34, 35, 37], "thing": [1, 34, 37], "like": [1, 2, 3, 4, 32, 34, 35, 37], "anim": [1, 34, 37], "we": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 20, 22, 25, 30, 31, 32, 34, 35, 37], "want": [1, 22, 34, 35, 37], "orient": [1, 2, 10, 13, 20, 32, 34, 35, 36, 37], "happen": [1, 10, 31, 34, 37], "manag": [1, 15, 34, 37], "send_file_download": [1, 24, 37], "filenam": [1, 37], "str": [1, 9, 11, 14, 25, 29, 30, 31, 32, 34, 35, 37], "content": [1, 7, 18, 19, 21, 30, 31, 32, 35, 37], "byte": [1, 7, 24, 34, 35, 37], "chunk_siz": [1, 37], "1048576": [1, 37], "send": [1, 6, 7, 13, 16, 24, 32, 34, 37], "file": [1, 3, 7, 14, 29, 30, 32, 35, 37], "download": [1, 3, 13, 32, 37], "name": [1, 5, 7, 11, 12, 13, 16, 17, 22, 25, 29, 32, 34, 35, 37, 38], "infer": [1, 31, 37], "mime": [1, 30, 37], "number": [1, 7, 30, 32, 35, 37], "time": [1, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 37], "In": [2, 3, 5, 10, 20, 22, 38], "note": [2, 3, 15, 25, 32, 38], "describ": 2, "object": [2, 29, 30, 34, 35, 36, 37, 38], "add": [2, 5, 6, 7, 8, 12, 14, 25, 29, 30, 31, 32, 35, 37], "instanti": [2, 31, 37], "node": [2, 4, 5, 7, 20, 35, 36], "structur": [2, 13, 27], "determin": [2, 21, 35], "base_link": 2, "shoulder": 2, "wrist": 2, "signifi": 2, "three": [2, 32], "child": [2, 35], "transform": [2, 10, 11, 12, 13, 16, 20, 25, 27, 32, 33, 35, 36], "given": [2, 27, 35], "both": [2, 20, 30, 32, 34, 35], "its": 2, "children": 2, "move": [2, 10, 14, 20, 25, 32, 36], "Its": 2, "parent": [2, 6, 11, 12, 13, 16, 19, 25, 35], "unaffect": 2, "defin": [2, 3, 4, 5, 13, 34, 35], "pair": [2, 15], "unit": [2, 3], "quaternion": [2, 35, 36, 38], "term": [2, 35, 38], "alwai": 2, "4d": [2, 32], "translat": [2, 10, 16, 20, 34, 35, 38], "These": [2, 5, 10, 34, 36], "p_": 2, "mathrm": 2, "begin": 2, "bmatrix": 2, "mid": 2, "end": [2, 30, 32], "form": [2, 32, 35], "so": [2, 13, 25, 32, 38], "matrix": [2, 32, 38], "space": [2, 32, 35, 38], "z": [2, 8, 28, 32, 35, 38], "upward": 2, "overridden": [2, 35], "set_up_direct": [2, 13, 25, 26, 35], "python": [2, 24, 32, 33, 34, 35], "api": [2, 24, 32, 33, 37], "colmap": 2, "opencv": [2, 4, 25, 35], "forward": [2, 13, 32, 35], "y": [2, 8, 13, 17, 25, 28, 32, 35, 38], "right": [2, 4, 32, 35], "x": [2, 8, 13, 17, 25, 27, 28, 32, 35, 38], "confusingli": 2, "differ": [2, 30, 32, 35, 37, 38], "nerfstudio": [2, 18], "adopt": 2, "opengl": [2, 35], "blender": [2, 32, 35], "convers": [2, 35], "between": [2, 3, 14, 17, 30, 31, 36, 37, 38], "two": [2, 3, 15, 27, 30, 32, 37], "simpl": [2, 11, 17, 32], "180": [2, 18], "degre": 2, "rotat": [2, 10, 16, 20, 32, 35, 38], "around": [2, 10, 20, 28], "axi": [2, 8, 25, 32, 35, 38], "outlin": [3, 32], "current": [3, 4, 9, 12, 15, 16, 18, 31, 32, 34, 35], "practic": 3, "tool": [3, 32, 33], "workflow": 3, "assum": 3, "repositori": 3, "clone": 3, "recommend": 3, "an": [3, 4, 7, 13, 27, 29, 30, 32, 33, 34, 35, 37, 38], "edit": [3, 7, 32], "ideal": 3, "virtual": 3, "environ": 3, "eg": 3, "conda": 3, "packag": [3, 14, 30, 32], "cd": 3, "pip": [3, 33], "e": [3, 25, 32, 35], "depend": [3, 33], "after": [3, 31, 33], "script": [3, 29, 32, 33], "runnabl": 3, "few": 3, "them": [3, 9, 17, 20, 35], "requir": [3, 14, 15, 30, 34], "asset": [3, 6, 11, 12, 16, 19, 25, 28, 32, 35], "lint": 3, "check": [3, 18, 25, 32], "first": [3, 13, 25, 30, 32, 37, 38], "dev": 3, "pre": [3, 7], "commit": [3, 32], "It": [3, 13, 14, 35], "would": 3, "hard": [3, 13], "test": [3, 25, 32, 35], "reli": [3, 37], "static": [3, 31, 38], "robust": 3, "To": [3, 11, 12, 16, 25, 33, 34, 37], "your": 3, "code": [3, 32], "you": [3, 33, 34], "follow": [3, 35, 38], "backend": 3, "share": [3, 12, 18, 30, 32, 34, 35, 37], "definit": [3, 34, 38], "On": [3, 37], "dataclass": [3, 13, 34, 38], "src": 3, "_messag": [3, 4], "py": [3, 14], "typescript": [3, 32, 34], "websocketmessag": 3, "tsx": 3, "1": [3, 4, 5, 6, 7, 8, 10, 12, 13, 15, 16, 17, 19, 20, 22, 25, 26, 27, 28, 29, 30, 32, 34, 35, 38], "ones": [3, 13, 22, 25], "manual": [3, 30, 32, 35], "modifi": [3, 25], "instead": [3, 4], "chang": [3, 7, 12, 13, 32], "made": 3, "sync_message_def": 3, "For": [3, 4, 10, 16, 20, 31, 34, 35], "start": [3, 14, 15, 18, 28, 32, 34], "launch": [3, 34, 37], "relev": 3, "good": 3, "place": [3, 12, 31, 35, 36, 38], "05_camera_command": 3, "url": [3, 33, 37], "print": [3, 7, 9, 11, 12, 16, 24, 33, 34], "http": [3, 13, 14, 18, 32, 33, 34], "localhost": [3, 33], "8080": [3, 33], "open": [3, 20, 28, 30, 32], "built": 3, "version": [3, 32], "react": [3, 32], "websocket": [3, 34], "applic": [3, 34, 37], "detect": [3, 9, 30, 31, 34, 36], "startup": 3, "re": [3, 12, 13, 34], "build": [3, 32, 33, 34], "okai": 3, "quick": 3, "faster": [3, 35], "iter": [3, 32], "reflect": [3, 7], "make": [3, 13, 22, 23, 25], "without": 3, "full": [3, 25, 32], "more": [3, 21, 38], "step": [3, 7, 8, 12, 13, 14, 16, 26, 30, 32], "nodej": [3, 32], "yarn": 3, "directori": [3, 16, 30], "web": [3, 33, 34, 37], "address": [3, 32, 37], "need": [3, 13, 25, 31], "tab": [3, 13, 30, 31], "prettier": 3, "npx": 3, "small": [4, 18, 30, 32], "pass": 4, "function": [4, 31, 32, 35], "click": [4, 8, 10, 12, 20, 25, 27, 30, 31, 32, 33, 35, 36], "trigger": [4, 35], "scenepointerev": [4, 25, 35], "pointer": [4, 32, 35], "event_typ": [4, 25, 35], "scenepointereventtyp": 4, "wa": [4, 10, 31], "support": [4, 10, 14, 18, 19, 35, 36], "box": [4, 13, 17, 22, 25, 32, 35], "select": [4, 17, 25, 32, 33, 35], "ray_origin": [4, 25], "tupl": [4, 13, 15, 29, 30, 31, 35, 38], "origin": [4, 10, 20, 25, 35, 37], "rai": [4, 25], "world": [4, 7, 32, 35], "coordin": [4, 10, 15, 17, 20, 25, 35, 36, 38], "ray_direct": [4, 25], "screen_po": [4, 25], "list": [4, 12, 13, 14, 25, 28, 32, 34], "screen": [4, 32], "0": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 34, 35], "upper": [4, 14, 25, 32], "left": [4, 25, 28, 32], "corner": [4, 25, 32], "bottom": [4, 32], "includ": [4, 18, 33], "min": [4, 7, 8, 12, 13, 14, 16, 25, 30, 32], "max": [4, 7, 8, 12, 13, 14, 16, 30, 32, 35], "deprec": 4, "scenenodepointerev": [4, 36], "target": [4, 29, 32, 38], "tscenenodehandl": [4, 36], "guievent": [4, 16, 24, 31], "inform": [4, 34, 35], "associ": [4, 31, 37], "input": [4, 7, 14, 21, 30, 31, 32, 33], "tguihandl": [4, 31], "basic": 5, "visual": [5, 6, 11, 25, 28, 29, 30, 31, 32, 33, 35, 36, 37], "hierarch": 5, "tree": [5, 29, 32, 35], "branch": [5, 32], "rel": [5, 30], "import": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 32], "random": [5, 6, 7, 8, 10, 13, 16, 20, 22, 23, 24, 32], "while": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "true": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 35, 37], "some": [5, 7, 12, 23, 27], "viewer": [5, 6], "add_fram": [5, 8, 10, 12, 16, 20, 35, 36], "2": [5, 6, 9, 11, 12, 13, 14, 15, 16, 19, 23, 25, 27, 28, 30, 32, 35, 38], "leaf": [5, 32], "sleep": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "5": [5, 7, 8, 10, 11, 13, 17, 20, 22, 23, 24, 25, 27, 32, 35], "remov": [5, 14, 15, 19, 20, 25, 27, 31, 32, 35, 36], "backgrond": 6, "displai": [6, 17, 20, 30, 35], "behind": 6, "nerf": [6, 18, 22], "textur": [6, 15, 32], "pathlib": [6, 11, 12, 13, 16, 19, 25], "path": [6, 11, 12, 13, 14, 16, 19, 25, 29, 30, 34, 35], "imageio": [6, 16, 24], "v3": [6, 16, 24], "iio": [6, 16, 24], "onp": [6, 7, 8, 10, 11, 12, 13, 14, 16, 20, 22, 23, 24, 25, 27, 28, 35, 38], "def": [6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28], "main": [6, 7, 8, 12, 13, 14, 15, 16, 17, 18, 21, 23, 24, 26, 27, 28, 30, 37], "background": [6, 22, 35], "set_background_imag": [6, 22, 35], "imread": [6, 16], "__file__": [6, 11, 12, 16, 19, 25], "cal_logo": [6, 28], "add_imag": [6, 35], "img": [6, 16, 18, 22], "nois": 6, "randint": [6, 8, 22], "256": [6, 8], "size": [6, 7, 8, 10, 13, 16, 20, 22, 23, 24, 30, 32, 35], "400": 6, "uint8": [6, 7, 15, 22, 29], "1e": [6, 14, 16], "__name__": [6, 7, 8, 12, 13, 14, 15, 16, 17, 18, 21, 23, 24, 26, 27, 28], "__main__": [6, 7, 8, 12, 13, 14, 15, 16, 17, 18, 21, 23, 24, 26, 27, 28], "common": [7, 32, 35], "slider": [7, 8, 12, 14, 30, 33, 35], "checkbox": [7, 19, 30, 32, 33], "add_fold": [7, 8, 12, 17, 30], "gui_count": 7, "add_numb": [7, 16, 17, 30], "counter": [7, 17, 19, 32], "initial_valu": [7, 8, 9, 12, 13, 14, 16, 17, 18, 19, 21, 26, 30], "disabl": [7, 9, 12, 17, 25, 30, 31, 32, 35], "gui_slid": 7, "add_slid": [7, 8, 12, 13, 14, 16, 30], "100": [7, 12, 16, 23, 38], "gui_vector2": 7, "add_vector2": [7, 30], "gui_vector3": 7, "add_vector3": [7, 13, 26, 30], "25": [7, 27], "text": [7, 10, 18, 30, 32, 33, 35], "toggl": [7, 12, 32, 34], "gui_checkbox_hid": 7, "add_checkbox": [7, 8, 12, 13, 18, 19, 30], "hide": [7, 12, 31, 32, 35], "fals": [7, 12, 13, 16, 25, 30, 35], "gui_text": 7, "add_text": [7, 9, 21, 30], "hello": 7, "gui_button": 7, "add_button": [7, 8, 12, 13, 14, 16, 18, 19, 20, 21, 24, 25, 27, 30, 32, 37], "button": [7, 8, 12, 14, 18, 19, 24, 25, 30, 31, 33], "gui_checkbox_dis": 7, "gui_rgb": [7, 13], "add_rgb": [7, 13, 18, 30], "color": [7, 8, 12, 13, 15, 16, 17, 18, 23, 24, 25, 27, 28, 29, 30, 32, 35], "255": [7, 13, 22, 27, 35], "gui_multi_slid": 7, "add_multi_slid": [7, 30], "multi": [7, 30], "30": [7, 12, 15, 18, 23, 24, 27, 32], "mark": [7, 30, 32], "50": [7, 28, 32], "70": 7, "7": [7, 25, 27, 32, 38], "99": [7, 28], "gui_slider_posit": 7, "10": [7, 8, 11, 12, 14, 15, 17, 18, 22, 23, 24, 25, 27, 28, 32, 35], "gui_upload_button": 7, "add_upload_button": [7, 30], "upload": [7, 30, 32], "icon": [7, 13, 18, 25, 30, 31], "on_upload": 7, "_": [7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27], "valu": [7, 8, 12, 13, 14, 16, 17, 18, 19, 21, 26, 30, 31, 34, 38], "len": [7, 16, 25], "gener": [7, 13, 24, 25, 32, 34, 35, 38], "cloud": [7, 8, 12, 15, 16, 32, 35, 36], "point_posit": 7, "uniform": [7, 10, 20, 23, 24], "low": [7, 32], "high": [7, 32, 37], "5000": 7, "color_coeff": 7, "shape": [7, 11, 12, 13, 15, 16, 25, 32, 35, 38], "point_cloud": [7, 8, 12, 15], "float32": [7, 15, 22, 29], "tile": 7, "reshap": [7, 15, 25], "astyp": [7, 15], "point_shap": [7, 12, 35], "circl": [7, 32, 35], "visibl": [7, 9, 12, 13, 19, 26, 30, 31, 35, 36], "handl": [7, 13, 17, 25, 30, 34, 35, 37], "linspac": [7, 27, 28], "int64": 7, "01": [7, 12, 13, 26, 27, 28], "asynchron": [8, 34], "usag": 8, "soon": 8, "get": [8, 9, 11, 12, 13, 15, 16, 18, 25, 31, 32, 34, 38], "typing_extens": [8, 27], "assert_nev": [8, 27], "gui_reset_scen": 8, "reset": [8, 13, 14, 16, 24, 25, 27, 32, 35], "gui_plan": 8, "add_dropdown": [8, 14, 18, 30], "grid": [8, 17, 32, 35], "plane": [8, 25, 32, 35], "xz": [8, 35], "xy": [8, 32, 35], "yx": [8, 35], "yz": [8, 35], "zx": [8, 35], "zy": [8, 35], "update_plan": 8, "add_grid": [8, 35], "20": [8, 10, 12, 20, 24, 28, 32, 35], "width_seg": [8, 35], "height_seg": [8, 35], "lambda": [8, 14, 18, 21, 25, 27, 32], "control": [8, 12, 13, 16, 18, 30, 31, 32, 33, 35, 36], "gui_show_fram": 8, "show": [8, 9, 18, 20, 21, 22, 25, 30, 31, 32, 35, 37], "frame": [8, 10, 12, 15, 16, 20, 25, 27, 29, 32, 35, 36, 38], "gui_show_everyth": 8, "everyth": [8, 35], "gui_axi": 8, "gui_include_z": 8, "dropdown": [8, 30, 31], "option": [8, 10, 12, 15, 20, 29, 30, 31, 32, 34, 35], "els": [8, 14, 17, 18, 27], "gui_loc": 8, "locat": [8, 25, 32, 35], "05": [8, 11, 12, 13, 16, 25], "gui_num_point": 8, "1000": [8, 22, 34, 35], "200_000": 8, "10_000": 8, "draw_fram": 8, "po": 8, "elif": [8, 27], "show_ax": [8, 12, 35], "axes_length": [8, 12, 16, 35], "draw_point": 8, "num_point": 8, "normal": [8, 10, 13, 20, 23, 24, 38], "here": [8, 13, 19], "whenev": [8, 9, 13], "item": [8, 9, 14], "set_global_vis": [8, 35], "on_click": [8, 10, 12, 13, 14, 16, 17, 18, 19, 20, 21, 24, 25, 27, 31, 36], "final": 8, "let": [8, 31], "initi": [8, 14, 30, 35], "loop": [8, 12, 13, 32, 35], "infinit": 8, "how": [9, 22, 25], "world_ax": [9, 19, 26, 35], "on_client_connect": [9, 10, 20, 21, 25, 34, 37], "f": [9, 10, 11, 12, 13, 16, 17, 18, 19, 20, 23, 24, 25, 27, 32, 35], "gui_info": 9, "get_client": [9, 16, 37], "kei": [9, 25, 32, 34, 35], "twxyz": 9, "tposit": 9, "tfov": 9, "taspect": 9, "tlast": 9, "addit": 10, "sync": 10, "tf": [10, 11, 12, 13, 16, 20, 25, 27], "num_fram": [10, 12, 20, 29], "handler": [10, 20, 34], "rng": [10, 20], "default_rng": [10, 20], "make_fram": [10, 20], "sampl": [10, 13, 20], "linalg": [10, 13, 20, 25], "norm": [10, 13, 20, 25], "label": [10, 13, 14, 17, 18, 20, 28, 30, 31, 35, 36, 37], "frame_": [10, 16, 20], "add_label": [10, 35], "t_world_curr": [10, 20], "se3": [10, 16, 20, 25, 38], "from_rotation_and_transl": [10, 16, 20, 25, 38], "so3": [10, 11, 12, 13, 16, 20, 25, 27, 38], "t_world_target": [10, 20], "from_transl": [10, 20, 38], "t_current_target": [10, 20], "invers": [10, 16, 20, 25, 38], "j": [10, 17, 20, 27, 32], "rang": [10, 12, 13, 15, 17, 20, 23, 24, 27], "t_world_set": [10, 20], "exp": [10, 12, 13, 20, 38], "log": [10, 13, 20, 38], "19": [10, 20], "togeth": 10, "prevent": 10, "jitter": 10, "might": 10, "befor": 10, "other": [10, 34, 38], "60": [10, 12, 20, 32], "mous": [10, 20, 32], "orbit": [10, 20], "demo": [11, 12, 16, 25], "data": [11, 12, 16, 25, 28, 32], "see": [11, 12, 13, 14, 16, 25, 33, 37], "download_dragon_mesh": [11, 25], "sh": [11, 12, 16, 25], "trimesh": [11, 22, 25, 27, 35], "load_mesh": [11, 25], "dragon": [11, 25], "obj": [11, 25], "assert": [11, 13, 15, 16, 24], "isinst": 11, "apply_scal": [11, 25], "face": [11, 13, 27, 32, 35], "load": [11, 12, 13, 14, 16, 29, 32, 35], "add_mesh_simpl": [11, 13, 27, 35], "from_x_radian": [11, 38], "pi": [11, 12, 14, 27, 28, 32], "add_mesh_trimesh": [11, 22, 25, 27, 35], "smooth": [11, 35], "pars": 12, "stream": [12, 15], "captur": [12, 29, 32], "download_record3d_d": 12, "tyro": [12, 13, 14, 16], "extra": [12, 14, 16, 29], "tqdm": [12, 15, 16], "auto": [12, 15, 16, 32], "data_path": 12, "record3d_d": 12, "downsample_factor": [12, 16, 29], "max_fram": 12, "bool": [12, 13, 29, 30, 31, 35, 36, 37], "request_share_url": [12, 37], "loader": [12, 14, 32], "record3dload": [12, 29], "playback": 12, "ui": [12, 32], "gui_timestep": 12, "timestep": 12, "gui_next_fram": 12, "next": [12, 32], "gui_prev_fram": 12, "prev": [12, 32], "gui_plai": 12, "plai": [12, 27, 32], "gui_framer": 12, "fp": [12, 15], "gui_framerate_opt": 12, "add_button_group": [12, 30], "framer": [12, 32], "prev_timestep": 12, "nonloc": [12, 16, 20, 27], "current_timestep": 12, "frame_nod": 12, "framehandl": [12, 16, 35, 36], "get_fram": [12, 29], "get_point_cloud": [12, 29], "base": [12, 17, 25, 33, 34, 35, 36, 38], "append": [12, 13, 14, 24, 25], "point_siz": [12, 15, 16, 35], "round": [12, 32, 35], "frustum": [12, 16, 32, 35, 36], "arctan2": [12, 16], "k": [12, 27, 29, 32], "add_camera_frustum": [12, 16, 35], "scale": [12, 13, 16, 25, 27, 29, 32, 35], "15": [12, 16, 21, 32], "from_matrix": [12, 38], "t_world_camera": [12, 16, 29], "ax": [12, 32, 35, 38], "axes_radiu": [12, 16, 35], "005": [12, 16], "enumer": [12, 13], "cli": [12, 13, 14, 16], "instruct": 13, "github": [13, 14, 18, 32], "com": [13, 14, 18], "vchouta": 13, "smplx": 13, "readm": 13, "ov": 13, "__future__": [13, 14, 15, 25], "annot": [13, 14, 15, 25, 34, 35], "np": [13, 15], "frozen": 13, "smploutput": 13, "t_world_joint": 13, "num_joint": 13, "t_parent_joint": 13, "smplhelper": 13, "helper": [13, 14], "famili": 13, "implement": [13, 27, 34, 38], "__init__": 13, "self": [13, 31, 35, 36, 38], "model_path": 13, "suffix": 13, "lower": [13, 14, 32], "body_dict": 13, "dict": [13, 28, 29, 34, 37], "allow_pickl": 13, "_j_regressor": 13, "j_regressor": 13, "_weight": 13, "weight": [13, 32], "_v_templat": 13, "v_templat": 13, "_posedir": 13, "posedir": 13, "_shapedir": 13, "shapedir": 13, "_face": 13, "num_beta": 13, "parent_idx": 13, "kintree_t": 13, "get_output": 13, "beta": [13, 32], "joint_rotmat": 13, "joint": [13, 14, 29], "pose": [13, 38], "ident": [13, 38], "v_tpose": 13, "einsum": 13, "vxb": 13, "b": [13, 28, 32, 37], "vx": [13, 38], "j_tpose": 13, "jv": 13, "jx": 13, "se": [13, 32, 38], "zero": [13, 32], "ey": [13, 32], "kinemat": [13, 35], "copi": [13, 32, 37], "linear": 13, "blend": 13, "skin": 13, "pose_delta": 13, "flatten": 13, "v_blend": 13, "byn": 13, "n": [13, 15, 32, 35, 38], "v_delta": 13, "v_pose": 13, "jxy": 13, "vj": 13, "vjy": 13, "configure_them": [13, 16, 18, 25, 27, 30], "control_layout": [13, 16, 18, 30], "collaps": [13, 16, 18, 30, 32], "ll": 13, "comput": [13, 15, 30, 32, 38], "mesh": [13, 14, 22, 25, 27, 29, 35, 36], "gui_el": 13, "make_gui_el": 13, "do": [13, 35], "noth": 13, "02": 13, "continu": [13, 16], "output": [13, 16, 38], "smpl_output": 13, "gui_beta": 13, "gui_joint": [13, 14], "as_matrix": [13, 25, 38], "wirefram": [13, 35], "gui_wirefram": 13, "match": [13, 25, 30], "gizmo": [13, 32, 33, 35, 36], "transform_control": 13, "guielement": 13, "contain": [13, 31, 32, 35, 36, 38], "guiinputhandl": [13, 14, 30, 31], "transformcontrolshandl": [13, 35, 36], "flag": [13, 32, 34], "flip": [13, 32], "tab_group": 13, "add_tab_group": [13, 30], "set_chang": 13, "out": [13, 32], "later": 13, "add_tab": [13, 31], "viewfind": [13, 32], "90": [13, 32, 35], "200": [13, 35], "gui_show_control": 13, "gui_reset_shap": 13, "gui_random_shap": 13, "loc": 13, "angl": [13, 14, 29, 32, 38], "gui_reset_joint": 13, "gui_random_joint": 13, "uniformli": 13, "directli": [13, 20, 37], "convert": [13, 34], "quat": 13, "set_callback_in_closur": 13, "prefixed_joint_nam": 13, "prefix": 13, "joint_": 13, "add_transform_control": [13, 35], "depth_test": [13, 35], "75": 13, "count": 13, "disable_ax": [13, 35], "disable_slid": [13, 35], "axisangl": 13, "descript": [13, 14, 18, 32], "__doc__": 13, "yourdfpi": [14, 29], "robot_descript": 14, "work": [14, 30, 31, 37], "clemens": 14, "viserurdf": [14, 29], "lightweight": 14, "take": [14, 38], "load_robot_descript": 14, "subset": 14, "avail": [14, 15], "robot_model_list": 14, "panda_descript": 14, "ur10_descript": 14, "ur3_descript": 14, "ur5_descript": 14, "cassie_descript": 14, "skydio_x2_descript": 14, "allegro_hand_descript": 14, "barrett_hand_descript": 14, "robotiq_2f85_descript": 14, "atlas_drc_descript": 14, "atlas_v4_descript": 14, "draco3_descript": 14, "g1_descript": 14, "h1_descript": 14, "anymal_c_descript": 14, "go2_descript": 14, "mini_cheetah_descript": 14, "logic": [14, 32], "initial_angl": 14, "update_robot_model": 14, "robot_nam": 14, "loading_mod": 14, "add_mod": [14, 21, 30], "add_markdown": [14, 18, 19, 21, 30], "termin": [14, 32], "progress": [14, 32], "ad": [14, 31, 32, 34, 35, 36, 37], "u": [14, 26, 31, 32], "etc": [14, 33, 35], "urdf_or_path": [14, 29], "close": [14, 15, 20, 21, 32, 35, 37], "clear": [14, 25, 32], "joint_nam": 14, "get_actuated_joint_limit": [14, 29], "configur": [14, 15, 29, 30], "update_cfg": [14, 29], "robot_model_nam": 14, "model": [14, 16, 32], "reset_button": 14, "g": [14, 25, 32, 35], "zip": [14, 32], "d": [15, 32], "pyrealsense2": 15, "contextlib": 15, "npt": 15, "ignor": [15, 25, 28, 35], "realsense_pipelin": 15, "yield": 15, "pipelin": 15, "depth": [15, 29, 35], "config": 15, "pipeline_wrapp": 15, "resolv": [15, 30], "enable_stream": 15, "z16": 15, "rgb8": 15, "point_cloud_arrays_from_fram": 15, "depth_fram": 15, "color_fram": 15, "map": [15, 29, 32, 37], "process": 15, "could": [15, 16, 37], "tune": 15, "pointcloud": 15, "decim": [15, 32], "decimation_filt": 15, "set_opt": 15, "filter_magnitud": 15, "downsampl": [15, 16], "calcul": [15, 32], "intrins": [15, 25], "map_to": 15, "texture_uv": 15, "asanyarrai": 15, "get_texture_coordin": 15, "color_imag": 15, "get_data": 15, "color_h": 15, "color_w": 15, "aren": 15, "our": [15, 30, 31, 33, 35, 38], "clamp": 15, "pixel": 15, "clip": 15, "get_vertic": 15, "int32": 15, "10000000": 15, "wait": 15, "coher": 15, "wait_for_fram": 15, "get_depth_fram": 15, "get_color_fram": 15, "spars": 16, "reconstruct": 16, "download_colmap_garden": 16, "read_cameras_binari": 16, "read_images_binari": 16, "read_points3d_binari": 16, "colmap_path": 16, "colmap_garden": 16, "images_path": 16, "images_8": 16, "arg": 16, "factor": [16, 29, 35], "titlebar_cont": [16, 18, 30], "info": [16, 32], "bin": 16, "points3d": 16, "gui_reset_up": 16, "hint": [16, 17, 30], "event": [16, 24, 27, 32, 34, 35, 36], "gui_point": 16, "50_000": 16, "gui_fram": 16, "gui_point_s": 16, "visualize_colmap": 16, "optim": 16, "ton": 16, "p_id": 16, "xyz": [16, 38], "points_select": 16, "choic": [16, 35], "replac": [16, 17, 32], "pcd": 16, "interpret": 16, "img_id": 16, "im": 16, "shuffl": [16, 32], "sort": [16, 32], "attach_callback": 16, "camerafrustumhandl": [16, 35, 36], "cam": 16, "camera_id": 16, "skip": [16, 32], "don": [16, 32, 34], "exist": 16, "image_filenam": 16, "qvec": 16, "tvec": 16, "pinhol": 16, "param": 16, "fx": 16, "fy": 16, "cx": 16, "cy": 16, "expect": 16, "got": 16, "need_upd": 16, "index": [17, 29, 32], "last": [17, 31, 32, 38], "matplotlib": 17, "grid_shap": 17, "x_valu": 17, "y_valu": 17, "add_swappable_mesh": 17, "swap": 17, "grai": [17, 30], "sphere": [17, 25, 27, 32, 35], "chosen": 17, "colormap": 17, "tab20": 17, "create_mesh": 17, "8": [17, 32], "add_box": [17, 27, 35], "sphere_": 17, "dimens": [17, 27, 32, 35, 38], "add_icospher": [17, 27, 35], "radiu": [17, 25, 27, 32, 35], "old": [17, 32], "becaus": 17, "same": [17, 30, 34, 35, 38], "light": [18, 32], "titlebarbutton": 18, "titlebarconfig": [18, 30], "titlebarimag": 18, "href": 18, "studio": [18, 32], "project": [18, 25, 31, 38], "document": 18, "doc": [18, 33], "image_url_light": 18, "_static": 18, "logo": [18, 30], "image_url_dark": 18, "dark": [18, 30], "image_alt": 18, "titlebar_them": 18, "gui_theme_cod": 18, "yet": 18, "titlebar": 18, "dark_mod": [18, 27, 30], "mode": [18, 30], "show_logo": [18, 30], "show_share_button": [18, 30], "brand_color": [18, 25, 30], "brand": [18, 30, 32], "230": 18, "layout": [18, 28, 30, 32], "fix": [18, 30, 35], "control_width": [18, 30], "medium": [18, 30, 32], "larg": [18, 30, 32], "synchronize_them": 18, "ha": 19, "mdx": 19, "markdown_count": 19, "absolut": 19, "blurb": 19, "markdown_sourc": 19, "mdx_exampl": 19, "read_text": 19, "markdown_blurb": 19, "image_root": [19, 30], "add_3d_gui_contain": [20, 35], "allow": [20, 31, 35, 37], "standard": [20, 35, 38], "incorpor": 20, "action": [20, 38], "perform": [20, 32], "displayed_3d_contain": 20, "gui3dcontainerhandl": [20, 35, 36], "previous": [20, 34], "go_to": 20, "go": [20, 28, 30, 31, 32], "randomize_orient": 20, "bit": 20, "below": [21, 30], "titl": [21, 28, 30], "gui_titl": 21, "my": [21, 32], "modal_button": 21, "insid": [21, 25, 35], "2d": [22, 25, 30, 35, 36, 37, 38], "occlud": 22, "geometri": [22, 29, 32], "creation": [22, 25, 27, 35], "squar": [22, 32, 35, 38], "middl": [22, 32], "portal": 22, "250": 22, "750": 22, "cube": [22, 32], "ball": [23, 32], "add_spline_catmull_rom": [23, 24, 27, 35], "catmull_": [23, 24], "tension": [23, 24, 35], "line_width": [23, 24, 35], "segment": [23, 35], "control_point": [23, 35], "add_spline_cubic_bezi": [23, 35], "cubic_bezier_": 23, "gif": [24, 32], "720": 24, "1280": 24, "imwrit": 24, "extens": 24, "specifi": [25, 30, 32], "intersect": [25, 32], "cast": [25, 32], "130": 25, "150": 25, "mesh_handl": 25, "hit_pos_handl": 25, "glbhandl": [25, 35, 36], "oper": [25, 38], "per": 25, "basi": 25, "global": [25, 26, 30, 35], "give": 25, "nice": 25, "click_button_handl": 25, "on_pointer_ev": [25, 35], "r_world_mesh": 25, "r_mesh_world": 25, "intersector": 25, "ray_triangl": 25, "raymeshintersector": 25, "hit_po": 25, "intersects_loc": 25, "remove_pointer_callback": [25, 35], "hit": 25, "distanc": 25, "hit_pos_mesh": 25, "icospher": [25, 35], "vertex_color": 25, "hit_pos_": 25, "on_pointer_callback_remov": [25, 35], "rect": [25, 35], "paint_button_handl": 25, "paint": [25, 32], "put": [25, 32], "r_camera_world": 25, "hstack": 25, "onto": [25, 34], "vertices_proj": 25, "tan": 25, "sure": 25, "lie": [25, 38], "onc": [25, 32, 35], "mask": [25, 29, 32], "whether": [25, 30, 35, 36], "9": [25, 32], "clear_button_handl": 25, "gui_up": 26, "player": [27, 32], "play_connect_4": 27, "tic": [27, 32], "tac": [27, 32], "toe": 27, "play_tic_tac_to": 27, "num_row": 27, "6": [27, 28, 32, 38], "num_col": 27, "whose_turn": 27, "red": [27, 30], "yellow": [27, 30], "pieces_in_col": 27, "board": [27, 32], "col": 27, "row": [27, 32], "annulu": 27, "45": [27, 32], "55": 27, "125": 27, "from_y_radian": [27, 38], "column": [27, 32], "setup_column": 27, "drop": [27, 32], "piec": 27, "cylind": [27, 32], "game_piec": 27, "row_anim": 27, "o": [27, 32], "gridlin": 27, "127": 27, "from_z_radian": [27, 38], "draw_symbol": 27, "symbol": [27, 32], "draw": [27, 35], "cell": [27, 32, 35], "35": 27, "setup_cel": 27, "clickabl": 27, "plot": [28, 30], "express": 28, "px": 28, "graph_object": 28, "pil": 28, "create_sinusoidal_wav": 28, "figur": [28, 30, 31], "sinusoid": 28, "wave": [28, 32], "x_data": 28, "y_data": 28, "sin": [28, 38], "fig": 28, "line": [28, 32, 35], "margin": [28, 32], "tight": [28, 35], "automargin": 28, "update_layout": 28, "l": [28, 32], "reduc": 28, "line_plot_tim": 28, "line_plot": 28, "add_plotli": [28, 30], "imshow": 28, "scatter": 28, "scatter_3d": 28, "iri": 28, "sepal_length": 28, "sepal_width": 28, "petal_width": 28, "speci": 28, "legend": 28, "yanchor": 28, "top": [28, 32, 37], "xanchor": 28, "util": 29, "record3dfram": 29, "singl": [29, 34, 35, 37], "either": [29, 30, 35], "resiz": [29, 32, 35], "root_node_nam": 29, "root": [29, 30, 32, 34], "mesh_color_overrid": 29, "overrid": [29, 34], "order": [29, 30, 31, 32], "actuat": 29, "limit": [29, 35], "get_actuated_joint_nam": 29, "invidividu": [30, 35], "set_panel_label": 30, "appear": 30, "panel": [30, 31, 32, 37], "front": [30, 35], "bar": [30, 32], "boolean": [30, 35], "indic": [30, 35], "enabl": 30, "integ": [30, 37], "repres": [30, 35], "expand_by_default": 30, "guifolderhandl": [30, 31], "folder": [30, 31, 32], "popul": 30, "smallest": 30, "compon": [30, 32, 37], "guimodalhandl": 30, "modal": 30, "popup": 30, "guitabgrouphandl": [30, 31], "guimarkdownhandl": [30, 31], "markdown": [30, 31, 32], "guiplotlyhandl": [30, 31], "plotli": [30, 31], "instal": 30, "ratio": [30, 31, 32, 35], "pink": 30, "grape": 30, "violet": 30, "indigo": 30, "blue": 30, "cyan": 30, "green": [30, 32], "lime": 30, "orang": 30, "teal": 30, "iconnam": [30, 31, 32], "guibuttonhandl": [30, 31], "everi": 30, "back": [30, 32, 35], "hover": 30, "mime_typ": 30, "guiuploadbuttonhandl": 30, "filter": [30, 32], "sequenc": 30, "tliteralstr": 30, "guibuttongrouphandl": [30, 31], "tstring": 30, "intorfloat": 30, "user": [30, 31, 32], "bound": 30, "precis": [30, 38], "minimum": 30, "maximum": 30, "length": [30, 35, 38], "guidropdownhandl": [30, 31], "numer": 30, "provid": [30, 34, 35, 37], "string": [30, 35, 37], "min_rang": 30, "fixed_endpoint": 30, "endpoint": 30, "picker": [30, 32], "add_rgba": 30, "func": [31, 35, 36], "thread": [31, 32, 37], "__post_init__": 31, "regist": [31, 32, 34], "ourself": 31, "construct": [31, 38], "disallow": 31, "dictat": 31, "perman": [31, 36], "timestamp": 31, "temporarili": 31, "press": [31, 32], "cannot": 31, "style": [31, 32], "stringtyp": 31, "care": 31, "about": [31, 35], "consist": 31, "possibl": 31, "most": [31, 35], "flexibl": 31, "declar": 31, "guitabhandl": 31, "enum": 32, "alia": 32, "__new__": 32, "kwarg": 32, "referenc": 32, "tabler": 32, "subclass": [32, 34], "reason": 32, "thousand": [32, 35], "result": 32, "hundr": 32, "millisecond": 32, "icon_123": 32, "123": 32, "icon_24_hour": 32, "24": 32, "hour": 32, "icon_2fa": 32, "2fa": 32, "icon_360": 32, "360": 32, "icon_360_view": 32, "icon_3d_cube_spher": 32, "icon_3d_cube_sphere_off": 32, "off": 32, "icon_3d_rot": 32, "a_b": 32, "a_b_2": 32, "a_b_off": 32, "abacu": 32, "abacus_off": 32, "abc": [32, 34, 38], "access_point": 32, "access_point_off": 32, "accessible_off": 32, "accessible_off_fil": 32, "fill": 32, "activ": [32, 35], "activity_heartbeat": 32, "heartbeat": 32, "ad_2": 32, "ad_circl": 32, "ad_circle_fil": 32, "ad_circle_off": 32, "ad_fil": 32, "ad_off": 32, "address_book": 32, "book": 32, "address_book_off": 32, "adjust": 32, "adjustments_alt": 32, "alt": 32, "adjustments_bolt": 32, "bolt": 32, "adjustments_cancel": 32, "cancel": 32, "adjustments_check": 32, "adjustments_cod": 32, "adjustments_cog": 32, "cog": 32, "adjustments_dollar": 32, "dollar": 32, "adjustments_down": 32, "down": [32, 35], "adjustments_exclam": 32, "exclam": 32, "adjustments_fil": 32, "adjustments_heart": 32, "heart": 32, "adjustments_horizont": 32, "horizont": 32, "adjustments_minu": 32, "minu": 32, "adjustments_off": 32, "adjustments_paus": 32, "paus": 32, "adjustments_pin": 32, "pin": 32, "adjustments_plu": 32, "plu": 32, "adjustments_quest": 32, "question": 32, "adjustments_search": 32, "search": 32, "adjustments_shar": 32, "adjustments_star": 32, "star": 32, "adjustments_up": 32, "adjustments_x": 32, "aerial_lift": 32, "aerial": 32, "lift": 32, "affili": 32, "affiliate_fil": 32, "air_balloon": 32, "air": 32, "balloon": 32, "air_condit": 32, "condit": 32, "air_conditioning_dis": 32, "alarm": 32, "alarm_fil": 32, "alarm_minu": 32, "alarm_minus_fil": 32, "alarm_off": 32, "alarm_plu": 32, "alarm_plus_fil": 32, "alarm_snooz": 32, "snooz": 32, "alarm_snooze_fil": 32, "album": 32, "album_off": 32, "alert_circl": 32, "alert": 32, "alert_circle_fil": 32, "alert_hexagon": 32, "hexagon": 32, "alert_hexagon_fil": 32, "alert_octagon": 32, "octagon": 32, "alert_octagon_fil": 32, "alert_smal": 32, "alert_squar": 32, "alert_square_fil": 32, "alert_square_round": 32, "alert_square_rounded_fil": 32, "alert_triangl": 32, "triangl": 32, "alert_triangle_fil": 32, "alien": 32, "alien_fil": 32, "align_box_bottom_cent": 32, "align": 32, "center": 32, "align_box_bottom_center_fil": 32, "align_box_bottom_left": 32, "align_box_bottom_left_fil": 32, "align_box_bottom_right": 32, "align_box_bottom_right_fil": 32, "align_box_center_bottom": 32, "align_box_center_middl": 32, "align_box_center_middle_fil": 32, "align_box_center_stretch": 32, "stretch": 32, "align_box_center_top": 32, "align_box_left_bottom": 32, "align_box_left_bottom_fil": 32, "align_box_left_middl": 32, "align_box_left_middle_fil": 32, "align_box_left_stretch": 32, "align_box_left_top": 32, "align_box_left_top_fil": 32, "align_box_right_bottom": 32, "align_box_right_bottom_fil": 32, "align_box_right_middl": 32, "align_box_right_middle_fil": 32, "align_box_right_stretch": 32, "align_box_right_top": 32, "align_box_right_top_fil": 32, "align_box_top_cent": 32, "align_box_top_center_fil": 32, "align_box_top_left": 32, "align_box_top_left_fil": 32, "align_box_top_right": 32, "align_box_top_right_fil": 32, "align_cent": 32, "align_justifi": 32, "justifi": 32, "align_left": 32, "align_right": 32, "alpha": 32, "alphabet_cyril": 32, "alphabet": 32, "cyril": 32, "alphabet_greek": 32, "greek": 32, "alphabet_latin": 32, "latin": 32, "ambul": 32, "ampersand": 32, "analyz": 32, "analyze_fil": 32, "analyze_off": 32, "anchor": 32, "anchor_off": 32, "ankh": 32, "antenna": 32, "antenna_bars_1": 32, "antenna_bars_2": 32, "antenna_bars_3": 32, "antenna_bars_4": 32, "antenna_bars_5": 32, "antenna_bars_off": 32, "antenna_off": 32, "apertur": 32, "aperture_off": 32, "api_app": 32, "app": 32, "api_app_off": 32, "api_off": 32, "app_window": 32, "app_window_fil": 32, "appl": 32, "apps_fil": 32, "apps_off": 32, "archiv": 32, "archive_fil": 32, "archive_off": 32, "armchair": 32, "armchair_2": 32, "armchair_2_off": 32, "armchair_off": 32, "arrow_autofit_cont": 32, "arrow": 32, "autofit": 32, "arrow_autofit_content_fil": 32, "arrow_autofit_down": 32, "arrow_autofit_height": 32, "arrow_autofit_left": 32, "arrow_autofit_right": 32, "arrow_autofit_up": 32, "arrow_autofit_width": 32, "arrow_back": 32, "arrow_back_up": 32, "arrow_back_up_doubl": 32, "doubl": [32, 35], "arrow_badge_down": 32, "badg": 32, "arrow_badge_down_fil": 32, "arrow_badge_left": 32, "arrow_badge_left_fil": 32, "arrow_badge_right": 32, "arrow_badge_right_fil": 32, "arrow_badge_up": 32, "arrow_badge_up_fil": 32, "arrow_bar_both": 32, "arrow_bar_down": 32, "arrow_bar_left": 32, "arrow_bar_right": 32, "arrow_bar_to_down": 32, "arrow_bar_to_left": 32, "arrow_bar_to_right": 32, "arrow_bar_to_up": 32, "arrow_bar_up": 32, "arrow_bear_left": 32, "bear": 32, "arrow_bear_left_2": 32, "arrow_bear_right": 32, "arrow_bear_right_2": 32, "arrow_big_down": 32, "big": 32, "arrow_big_down_fil": 32, "arrow_big_down_lin": 32, "arrow_big_down_line_fil": 32, "arrow_big_down_lines_fil": 32, "arrow_big_left": 32, "arrow_big_left_fil": 32, "arrow_big_left_lin": 32, "arrow_big_left_line_fil": 32, "arrow_big_left_lines_fil": 32, "arrow_big_right": 32, "arrow_big_right_fil": 32, "arrow_big_right_lin": 32, "arrow_big_right_line_fil": 32, "arrow_big_right_lines_fil": 32, "arrow_big_up": 32, "arrow_big_up_fil": 32, "arrow_big_up_lin": 32, "arrow_big_up_line_fil": 32, "arrow_big_up_lines_fil": 32, "arrow_bounc": 32, "bounc": 32, "arrow_capsul": 32, "capsul": 32, "arrow_curve_left": 32, "curv": [32, 35], "arrow_curve_right": 32, "arrow_down": 32, "arrow_down_bar": 32, "arrow_down_circl": 32, "arrow_down_left": 32, "arrow_down_left_circl": 32, "arrow_down_rhombu": 32, "rhombu": 32, "arrow_down_right": 32, "arrow_down_right_circl": 32, "arrow_down_squar": 32, "arrow_down_tail": 32, "tail": 32, "arrow_elbow_left": 32, "elbow": 32, "arrow_elbow_right": 32, "arrow_fork": 32, "fork": 32, "arrow_forward": 32, "arrow_forward_up": 32, "arrow_forward_up_doubl": 32, "arrow_guid": 32, "guid": 32, "arrow_iter": 32, "arrow_left": 32, "arrow_left_bar": 32, "arrow_left_circl": 32, "arrow_left_rhombu": 32, "arrow_left_right": 32, "arrow_left_squar": 32, "arrow_left_tail": 32, "arrow_loop_left": 32, "arrow_loop_left_2": 32, "arrow_loop_right": 32, "arrow_loop_right_2": 32, "arrow_merg": 32, "merg": 32, "arrow_merge_both": 32, "arrow_merge_left": 32, "arrow_merge_right": 32, "arrow_move_down": 32, "arrow_move_left": 32, "arrow_move_right": 32, "arrow_move_up": 32, "arrow_narrow_down": 32, "narrow": 32, "arrow_narrow_left": 32, "arrow_narrow_right": 32, "arrow_narrow_up": 32, "arrow_ramp_left": 32, "ramp": 32, "arrow_ramp_left_2": 32, "arrow_ramp_left_3": 32, "arrow_ramp_right": 32, "arrow_ramp_right_2": 32, "arrow_ramp_right_3": 32, "arrow_right": 32, "arrow_right_bar": 32, "arrow_right_circl": 32, "arrow_right_rhombu": 32, "arrow_right_squar": 32, "arrow_right_tail": 32, "arrow_rotary_first_left": 32, "rotari": 32, "arrow_rotary_first_right": 32, "arrow_rotary_last_left": 32, "arrow_rotary_last_right": 32, "arrow_rotary_left": 32, "arrow_rotary_right": 32, "arrow_rotary_straight": 32, "straight": 32, "arrow_roundabout_left": 32, "roundabout": 32, "arrow_roundabout_right": 32, "arrow_sharp_turn_left": 32, "sharp": 32, "turn": 32, "arrow_sharp_turn_right": 32, "arrow_up": 32, "arrow_up_bar": 32, "arrow_up_circl": 32, "arrow_up_left": 32, "arrow_up_left_circl": 32, "arrow_up_rhombu": 32, "arrow_up_right": 32, "arrow_up_right_circl": 32, "arrow_up_squar": 32, "arrow_up_tail": 32, "arrow_wave_left_down": 32, "arrow_wave_left_up": 32, "arrow_wave_right_down": 32, "arrow_wave_right_up": 32, "arrow_zig_zag": 32, "zig": 32, "zag": 32, "arrows_cross": 32, "cross": 32, "arrows_diagon": 32, "diagon": 32, "arrows_diagonal_2": 32, "arrows_diagonal_minim": 32, "minim": 32, "arrows_diagonal_minimize_2": 32, "arrows_diff": 32, "diff": 32, "arrows_double_ne_sw": 32, "ne": 32, "sw": 32, "arrows_double_nw_s": 32, "nw": 32, "arrows_double_se_nw": 32, "arrows_double_sw_n": 32, "arrows_down": 32, "arrows_down_up": 32, "arrows_exchang": 32, "exchang": 32, "arrows_exchange_2": 32, "arrows_horizont": 32, "arrows_join": 32, "join": 32, "arrows_join_2": 32, "arrows_left": 32, "arrows_left_down": 32, "arrows_left_right": 32, "arrows_maxim": 32, "maxim": 32, "arrows_minim": 32, "arrows_mov": 32, "arrows_move_horizont": 32, "arrows_move_vert": 32, "arrows_random": 32, "arrows_right": 32, "arrows_right_down": 32, "arrows_right_left": 32, "arrows_shuffl": 32, "arrows_shuffle_2": 32, "arrows_sort": 32, "arrows_split": 32, "split": 32, "arrows_split_2": 32, "arrows_transfer_down": 32, "transfer": 32, "arrows_transfer_up": 32, "arrows_up": 32, "arrows_up_down": 32, "arrows_up_left": 32, "arrows_up_right": 32, "arrows_vert": 32, "artboard": 32, "artboard_fil": 32, "artboard_off": 32, "articl": 32, "article_filled_fil": 32, "article_off": 32, "aspect_ratio": 32, "aspect_ratio_fil": 32, "aspect_ratio_off": 32, "assembli": 32, "assembly_off": 32, "asterisk": 32, "asterisk_simpl": 32, "AT": 32, "at_off": 32, "atom_2": 32, "atom_2_fil": 32, "atom_off": 32, "augmented_r": 32, "augment": 32, "realiti": 32, "augmented_reality_2": 32, "augmented_reality_off": 32, "award": 32, "award_fil": 32, "award_off": 32, "axis_x": 32, "axis_i": 32, "baby_bottl": 32, "babi": 32, "bottl": 32, "baby_carriag": 32, "carriag": 32, "backho": 32, "backpack": 32, "backpack_off": 32, "backslash": 32, "backspac": 32, "backspace_fil": 32, "badge_3d": 32, "badge_4k": 32, "4k": 32, "badge_8k": 32, "8k": 32, "badge_ad": 32, "badge_ar": 32, "badge_cc": 32, "cc": 32, "badge_fil": 32, "badge_hd": 32, "hd": 32, "badge_off": 32, "badge_sd": 32, "sd": 32, "badge_tm": 32, "tm": 32, "badge_vo": 32, "vo": 32, "badge_vr": 32, "vr": 32, "badge_wc": 32, "wc": 32, "badges_fil": 32, "badges_off": 32, "baguett": 32, "ball_american_footbal": 32, "american": 32, "footbal": 32, "ball_american_football_off": 32, "ball_basebal": 32, "basebal": 32, "ball_basketbal": 32, "basketbal": 32, "ball_bowl": 32, "bowl": 32, "ball_footbal": 32, "ball_football_off": 32, "ball_tenni": 32, "tenni": 32, "ball_volleybal": 32, "volleybal": 32, "balloon_fil": 32, "balloon_off": 32, "ballpen": 32, "ballpen_fil": 32, "ballpen_off": 32, "ban": 32, "bandag": 32, "bandage_fil": 32, "bandage_off": 32, "barbel": 32, "barbell_off": 32, "barcod": 32, "barcode_off": 32, "barrel": 32, "barrel_off": 32, "barrier_block": 32, "barrier": 32, "barrier_block_off": 32, "baselin": 32, "baseline_density_larg": 32, "densiti": 32, "baseline_density_medium": 32, "baseline_density_smal": 32, "basket": 32, "basket_fil": 32, "basket_off": 32, "bat": 32, "bath": 32, "bath_fil": 32, "bath_off": 32, "batteri": 32, "battery_1": 32, "battery_1_fil": 32, "battery_2": 32, "battery_2_fil": 32, "battery_3": 32, "battery_3_fil": 32, "battery_4": 32, "battery_4_fil": 32, "battery_automot": 32, "automot": 32, "battery_charg": 32, "charg": 32, "battery_charging_2": 32, "battery_eco": 32, "eco": 32, "battery_fil": 32, "battery_off": 32, "beach": 32, "beach_off": 32, "bed": 32, "bed_fil": 32, "bed_off": 32, "beer": 32, "beer_fil": 32, "beer_off": 32, "bell": 32, "bell_bolt": 32, "bell_cancel": 32, "bell_check": 32, "bell_cod": 32, "bell_cog": 32, "bell_dollar": 32, "bell_down": 32, "bell_exclam": 32, "bell_fil": 32, "bell_heart": 32, "bell_minu": 32, "bell_minus_fil": 32, "bell_off": 32, "bell_paus": 32, "bell_pin": 32, "bell_plu": 32, "bell_plus_fil": 32, "bell_quest": 32, "bell_ring": 32, "ring": 32, "bell_ringing_2": 32, "bell_ringing_2_fil": 32, "bell_ringing_fil": 32, "bell_school": 32, "school": 32, "bell_search": 32, "bell_shar": 32, "bell_star": 32, "bell_up": 32, "bell_x": 32, "bell_x_fil": 32, "bell_z": 32, "bell_z_fil": 32, "bibl": 32, "bike": 32, "bike_off": 32, "binari": [32, 35], "binary_off": 32, "binary_tre": 32, "binary_tree_2": 32, "biohazard": 32, "biohazard_off": 32, "blade": 32, "blade_fil": 32, "bleach": 32, "bleach_chlorin": 32, "chlorin": 32, "bleach_no_chlorin": 32, "bleach_off": 32, "blockquot": 32, "bluetooth": 32, "bluetooth_connect": 32, "bluetooth_off": 32, "bluetooth_x": 32, "blur": 32, "blur_off": 32, "bmp": 32, "bold": 32, "bold_off": 32, "bolt_off": 32, "bomb": 32, "bomb_fil": 32, "bone": 32, "bone_off": 32, "bong": 32, "bong_off": 32, "book_2": 32, "book_download": 32, "book_fil": 32, "book_off": 32, "book_upload": 32, "bookmark": 32, "bookmark_edit": 32, "bookmark_fil": 32, "bookmark_minu": 32, "bookmark_off": 32, "bookmark_plu": 32, "bookmark_quest": 32, "bookmarks_off": 32, "books_off": 32, "border_al": 32, "border": 32, "border_bottom": 32, "border_corn": 32, "border_horizont": 32, "border_inn": 32, "inner": 32, "border_left": 32, "border_non": 32, "border_out": 32, "outer": 32, "border_radiu": 32, "border_right": 32, "border_sid": 32, "side": [32, 35], "border_styl": 32, "border_style_2": 32, "border_top": 32, "border_vert": 32, "bottle_fil": 32, "bottle_off": 32, "bounce_left": 32, "bounce_right": 32, "bow": 32, "box_align_bottom": 32, "box_align_bottom_fil": 32, "box_align_bottom_left": 32, "box_align_bottom_left_fil": 32, "box_align_bottom_right": 32, "box_align_bottom_right_fil": 32, "box_align_left": 32, "box_align_left_fil": 32, "box_align_right": 32, "box_align_right_fil": 32, "box_align_top": 32, "box_align_top_fil": 32, "box_align_top_left": 32, "box_align_top_left_fil": 32, "box_align_top_right": 32, "box_align_top_right_fil": 32, "box_margin": 32, "box_model": 32, "box_model_2": 32, "box_model_2_off": 32, "box_model_off": 32, "box_multipl": 32, "multipl": [32, 35, 38], "box_multiple_0": 32, "box_multiple_1": 32, "box_multiple_2": 32, "box_multiple_3": 32, "box_multiple_4": 32, "box_multiple_5": 32, "box_multiple_6": 32, "box_multiple_7": 32, "box_multiple_8": 32, "box_multiple_9": 32, "box_off": 32, "box_pad": 32, "pad": 32, "box_seam": 32, "seam": 32, "brace": 32, "braces_off": 32, "bracket": 32, "brackets_contain": 32, "brackets_contain_end": 32, "brackets_contain_start": 32, "brackets_off": 32, "braill": 32, "brain": 32, "brand_4chan": 32, "4chan": 32, "brand_abstract": 32, "abstract": [32, 34, 38], "brand_adob": 32, "adob": 32, "brand_adonis_j": 32, "adoni": 32, "brand_airbnb": 32, "airbnb": 32, "brand_airt": 32, "airtabl": 32, "brand_algolia": 32, "algolia": 32, "brand_alipai": 32, "alipai": 32, "brand_alpine_j": 32, "alpin": 32, "brand_amazon": 32, "amazon": 32, "brand_amd": 32, "amd": 32, "brand_amigo": 32, "amigo": 32, "brand_among_u": 32, "among": 32, "brand_android": 32, "android": 32, "brand_angular": 32, "angular": 32, "brand_ans": 32, "ansibl": 32, "brand_ao3": 32, "ao3": 32, "brand_appgalleri": 32, "appgalleri": 32, "brand_appl": 32, "brand_apple_arcad": 32, "arcad": 32, "brand_apple_podcast": 32, "podcast": 32, "brand_appstor": 32, "appstor": 32, "brand_asana": 32, "asana": 32, "brand_aw": 32, "aw": 32, "brand_azur": 32, "azur": 32, "brand_backbon": 32, "backbon": 32, "brand_badoo": 32, "badoo": 32, "brand_baidu": 32, "baidu": 32, "brand_bandcamp": 32, "bandcamp": 32, "brand_bandlab": 32, "bandlab": 32, "brand_beat": 32, "beat": 32, "brand_beh": 32, "behanc": 32, "brand_bilibili": 32, "bilibili": 32, "brand_bin": 32, "binanc": 32, "brand_b": 32, "bing": 32, "brand_bitbucket": 32, "bitbucket": 32, "brand_blackberri": 32, "blackberri": 32, "brand_blend": 32, "brand_blogg": 32, "blogger": 32, "brand_book": 32, "brand_bootstrap": 32, "bootstrap": 32, "brand_bulma": 32, "bulma": 32, "brand_bumbl": 32, "bumbl": 32, "brand_bunpo": 32, "bunpo": 32, "brand_c_sharp": 32, "c": 32, "brand_cak": 32, "cake": 32, "brand_cakephp": 32, "cakephp": 32, "brand_campaignmonitor": 32, "campaignmonitor": 32, "brand_carbon": 32, "carbon": 32, "brand_cashapp": 32, "cashapp": 32, "brand_chrom": 32, "chrome": 32, "brand_cinema_4d": 32, "cinema": 32, "brand_citymapp": 32, "citymapp": 32, "brand_cloudflar": 32, "cloudflar": 32, "brand_codecov": 32, "codecov": 32, "brand_codepen": 32, "codepen": 32, "brand_codesandbox": 32, "codesandbox": 32, "brand_cohost": 32, "cohost": 32, "brand_coinbas": 32, "coinbas": 32, "brand_comedy_centr": 32, "comedi": 32, "central": 32, "brand_coreo": 32, "coreo": 32, "brand_couchdb": 32, "couchdb": 32, "brand_couchsurf": 32, "couchsurf": 32, "brand_cpp": 32, "cpp": 32, "brand_craft": 32, "craft": 32, "brand_crunchbas": 32, "crunchbas": 32, "brand_css3": 32, "css3": 32, "brand_ctemplar": 32, "ctemplar": 32, "brand_cucumb": 32, "cucumb": 32, "brand_cupra": 32, "cupra": 32, "brand_cypress": 32, "cypress": 32, "brand_d3": 32, "d3": 32, "brand_days_count": 32, "dai": 32, "brand_dco": 32, "dco": 32, "brand_debian": 32, "debian": 32, "brand_deez": 32, "deezer": 32, "brand_deliveroo": 32, "deliveroo": 32, "brand_deno": 32, "deno": 32, "brand_denodo": 32, "denodo": 32, "brand_deviantart": 32, "deviantart": 32, "brand_digg": 32, "digg": 32, "brand_dingtalk": 32, "dingtalk": 32, "brand_discord": 32, "discord": 32, "brand_discord_fil": 32, "brand_disnei": 32, "disnei": 32, "brand_disqu": 32, "disqu": 32, "brand_django": 32, "django": 32, "brand_dock": 32, "docker": 32, "brand_doctrin": 32, "doctrin": 32, "brand_dolby_digit": 32, "dolbi": 32, "digit": 32, "brand_douban": 32, "douban": 32, "brand_dribbbl": 32, "dribbbl": 32, "brand_dribbble_fil": 32, "brand_drop": 32, "brand_drup": 32, "drupal": 32, "brand_edg": 32, "edg": 32, "brand_elast": 32, "elast": 32, "brand_electronic_art": 32, "electron": 32, "art": 32, "brand_emb": 32, "ember": 32, "brand_envato": 32, "envato": 32, "brand_etsi": 32, "etsi": 32, "brand_evernot": 32, "evernot": 32, "brand_facebook": 32, "facebook": 32, "brand_facebook_fil": 32, "brand_feedli": 32, "feedli": 32, "brand_figma": 32, "figma": 32, "brand_filezilla": 32, "filezilla": 32, "brand_find": 32, "finder": 32, "brand_firebas": 32, "firebas": 32, "brand_firefox": 32, "firefox": 32, "brand_fiverr": 32, "fiverr": 32, "brand_flickr": 32, "flickr": 32, "brand_flightradar24": 32, "flightradar24": 32, "brand_flipboard": 32, "flipboard": 32, "brand_flutt": 32, "flutter": 32, "brand_fortnit": 32, "fortnit": 32, "brand_foursquar": 32, "foursquar": 32, "brand_fram": 32, "brand_framer_mot": 32, "motion": 32, "brand_funim": 32, "funim": 32, "brand_gatsbi": 32, "gatsbi": 32, "brand_git": 32, "git": 32, "brand_github": 32, "brand_github_copilot": 32, "copilot": 32, "brand_github_fil": 32, "brand_gitlab": 32, "gitlab": 32, "brand_gmail": 32, "gmail": 32, "brand_golang": 32, "golang": 32, "brand_googl": 32, "googl": 32, "brand_google_analyt": 32, "analyt": 32, "brand_google_big_queri": 32, "queri": 32, "brand_google_dr": 32, "drive": 32, "brand_google_fit": 32, "fit": 32, "brand_google_hom": 32, "home": 32, "brand_google_map": 32, "brand_google_on": 32, "brand_google_photo": 32, "photo": 32, "brand_google_plai": 32, "brand_google_podcast": 32, "brand_grammarli": 32, "grammarli": 32, "brand_graphql": 32, "graphql": 32, "brand_gravatar": 32, "gravatar": 32, "brand_grindr": 32, "grindr": 32, "brand_guardian": 32, "guardian": 32, "brand_gumroad": 32, "gumroad": 32, "brand_hbo": 32, "hbo": 32, "brand_headlessui": 32, "headlessui": 32, "brand_hexo": 32, "hexo": 32, "brand_hipchat": 32, "hipchat": 32, "brand_html5": 32, "html5": 32, "brand_inertia": 32, "inertia": 32, "brand_instagram": 32, "instagram": 32, "brand_intercom": 32, "intercom": 32, "brand_itch": 32, "itch": 32, "brand_javascript": 32, "javascript": 32, "brand_juejin": 32, "juejin": 32, "brand_kbin": 32, "kbin": 32, "brand_kick": 32, "kick": 32, "brand_kickstart": 32, "kickstart": 32, "brand_kotlin": 32, "kotlin": 32, "brand_laravel": 32, "laravel": 32, "brand_lastfm": 32, "lastfm": 32, "brand_leetcod": 32, "leetcod": 32, "brand_letterboxd": 32, "letterboxd": 32, "brand_lin": 32, "brand_linkedin": 32, "linkedin": 32, "brand_linktre": 32, "linktre": 32, "brand_linqpad": 32, "linqpad": 32, "brand_loom": 32, "loom": 32, "brand_mailgun": 32, "mailgun": 32, "brand_mantin": 32, "mantin": 32, "brand_mastercard": 32, "mastercard": 32, "brand_mastodon": 32, "mastodon": 32, "brand_matrix": 32, "brand_mcdonald": 32, "mcdonald": 32, "brand_medium": 32, "brand_merced": 32, "merced": 32, "brand_messeng": 32, "messeng": 32, "brand_meta": 32, "meta": 32, "brand_microsoft_team": 32, "microsoft": 32, "team": 32, "brand_minecraft": 32, "minecraft": 32, "brand_miniprogram": 32, "miniprogram": 32, "brand_mixpanel": 32, "mixpanel": 32, "brand_mondai": 32, "mondai": 32, "brand_mongodb": 32, "mongodb": 32, "brand_my_oppo": 32, "oppo": 32, "brand_mysql": 32, "mysql": 32, "brand_national_geograph": 32, "nation": 32, "geograph": 32, "brand_nem": 32, "nem": 32, "brand_netbean": 32, "netbean": 32, "brand_netease_mus": 32, "neteas": 32, "music": 32, "brand_netflix": 32, "netflix": 32, "brand_nexo": 32, "nexo": 32, "brand_nextcloud": 32, "nextcloud": 32, "brand_nextj": 32, "nextj": 32, "brand_nodej": 32, "brand_nord_vpn": 32, "nord": 32, "vpn": 32, "brand_not": 32, "notion": 32, "brand_npm": 32, "npm": 32, "brand_nuxt": 32, "nuxt": 32, "brand_nytim": 32, "nytim": 32, "brand_oauth": 32, "oauth": 32, "brand_offic": 32, "offic": 32, "brand_ok_ru": 32, "ok": 32, "ru": 32, "brand_onedr": 32, "onedr": 32, "brand_onlyfan": 32, "onlyfan": 32, "brand_open_sourc": 32, "brand_openai": 32, "openai": 32, "brand_openvpn": 32, "openvpn": 32, "brand_opera": 32, "opera": 32, "brand_pagekit": 32, "pagekit": 32, "brand_patreon": 32, "patreon": 32, "brand_payp": 32, "paypal": 32, "brand_paypal_fil": 32, "brand_paypai": 32, "paypai": 32, "brand_peanut": 32, "peanut": 32, "brand_pepsi": 32, "pepsi": 32, "brand_php": 32, "php": 32, "brand_picsart": 32, "picsart": 32, "brand_pinterest": 32, "pinterest": 32, "brand_planetscal": 32, "planetscal": 32, "brand_pocket": 32, "pocket": 32, "brand_polym": 32, "polym": 32, "brand_powershel": 32, "powershel": 32, "brand_prisma": 32, "prisma": 32, "brand_producthunt": 32, "producthunt": 32, "brand_pushbullet": 32, "pushbullet": 32, "brand_pushov": 32, "pushov": 32, "brand_python": 32, "brand_qq": 32, "qq": 32, "brand_radix_ui": 32, "radix": 32, "brand_react": 32, "brand_react_n": 32, "nativ": 32, "brand_reason": 32, "brand_reddit": 32, "reddit": 32, "brand_redhat": 32, "redhat": 32, "brand_redux": 32, "redux": 32, "brand_revolut": 32, "revolut": 32, "brand_rumbl": 32, "rumbl": 32, "brand_rust": 32, "rust": 32, "brand_safari": 32, "safari": 32, "brand_samsungpass": 32, "samsungpass": 32, "brand_sass": 32, "sass": 32, "brand_sentri": 32, "sentri": 32, "brand_sharik": 32, "sharik": 32, "brand_shazam": 32, "shazam": 32, "brand_shope": 32, "shope": 32, "brand_sketch": 32, "sketch": 32, "brand_skyp": 32, "skype": 32, "brand_slack": 32, "slack": 32, "brand_snapchat": 32, "snapchat": 32, "brand_snapse": 32, "snapse": 32, "brand_snowflak": 32, "snowflak": 32, "brand_socket_io": 32, "socket": 32, "io": 32, "brand_solidj": 32, "solidj": 32, "brand_soundcloud": 32, "soundcloud": 32, "brand_spacehei": 32, "spacehei": 32, "brand_speedtest": 32, "speedtest": 32, "brand_spotifi": 32, "spotifi": 32, "brand_stackoverflow": 32, "stackoverflow": 32, "brand_stackshar": 32, "stackshar": 32, "brand_steam": 32, "steam": 32, "brand_storj": 32, "storj": 32, "brand_storybook": 32, "storybook": 32, "brand_storytel": 32, "storytel": 32, "brand_strava": 32, "strava": 32, "brand_strip": 32, "stripe": 32, "brand_sublime_text": 32, "sublim": 32, "brand_sugar": 32, "sugar": 32, "brand_supabas": 32, "supabas": 32, "brand_superhuman": 32, "superhuman": 32, "brand_supernova": 32, "supernova": 32, "brand_surfshark": 32, "surfshark": 32, "brand_svelt": 32, "svelt": 32, "brand_swift": 32, "swift": 32, "brand_symfoni": 32, "symfoni": 32, "brand_tabl": 32, "brand_tailwind": 32, "tailwind": 32, "brand_taobao": 32, "taobao": 32, "brand_t": 32, "ted": 32, "brand_telegram": 32, "telegram": 32, "brand_terraform": 32, "terraform": 32, "brand_teth": 32, "tether": 32, "brand_threej": 32, "threej": 32, "brand_tid": 32, "tidal": 32, "brand_tikto_fil": 32, "tikto": 32, "brand_tiktok": 32, "tiktok": 32, "brand_tind": 32, "tinder": 32, "brand_topbuzz": 32, "topbuzz": 32, "brand_torchain": 32, "torchain": 32, "brand_toyota": 32, "toyota": 32, "brand_trello": 32, "trello": 32, "brand_tripadvisor": 32, "tripadvisor": 32, "brand_tumblr": 32, "tumblr": 32, "brand_twilio": 32, "twilio": 32, "brand_twitch": 32, "twitch": 32, "brand_twitt": 32, "twitter": 32, "brand_twitter_fil": 32, "brand_typescript": 32, "brand_ub": 32, "uber": 32, "brand_ubuntu": 32, "ubuntu": 32, "brand_un": 32, "uniti": 32, "brand_unsplash": 32, "unsplash": 32, "brand_upwork": 32, "upwork": 32, "brand_valor": 32, "valor": 32, "brand_vercel": 32, "vercel": 32, "brand_vimeo": 32, "vimeo": 32, "brand_vint": 32, "vint": 32, "brand_visa": 32, "visa": 32, "brand_visual_studio": 32, "brand_vit": 32, "vite": 32, "brand_vivaldi": 32, "vivaldi": 32, "brand_vk": 32, "vk": 32, "brand_vlc": 32, "vlc": 32, "brand_volkswagen": 32, "volkswagen": 32, "brand_vsco": 32, "vsco": 32, "brand_vscod": 32, "vscode": 32, "brand_vu": 32, "vue": 32, "brand_walmart": 32, "walmart": 32, "brand_waz": 32, "waze": 32, "brand_webflow": 32, "webflow": 32, "brand_wechat": 32, "wechat": 32, "brand_weibo": 32, "weibo": 32, "brand_whatsapp": 32, "whatsapp": 32, "brand_wikipedia": 32, "wikipedia": 32, "brand_window": 32, "brand_windi": 32, "windi": 32, "brand_wish": 32, "wish": 32, "brand_wix": 32, "wix": 32, "brand_wordpress": 32, "wordpress": 32, "brand_xamarin": 32, "xamarin": 32, "brand_xbox": 32, "xbox": 32, "brand_x": 32, "xing": 32, "brand_yahoo": 32, "yahoo": 32, "brand_yandex": 32, "yandex": 32, "brand_yats": 32, "yats": 32, "brand_ycombin": 32, "ycombin": 32, "brand_youtub": 32, "youtub": 32, "brand_youtube_kid": 32, "kid": 32, "brand_zalando": 32, "zalando": 32, "brand_zapi": 32, "zapier": 32, "brand_zeit": 32, "zeit": 32, "brand_zhihu": 32, "zhihu": 32, "brand_zoom": 32, "zoom": 32, "brand_zulip": 32, "zulip": 32, "brand_zwift": 32, "zwift": 32, "bread": 32, "bread_off": 32, "briefcas": 32, "briefcase_off": 32, "bright": 32, "brightness_2": 32, "brightness_down": 32, "brightness_half": 32, "half": 32, "brightness_off": 32, "brightness_up": 32, "broadcast": [32, 34, 38], "broadcast_off": 32, "browser_check": 32, "browser_off": 32, "browser_plu": 32, "browser_x": 32, "brush": 32, "brush_off": 32, "bucket": 32, "bucket_droplet": 32, "droplet": 32, "bucket_off": 32, "bug": 32, "bug_off": 32, "building_arch": 32, "arch": 32, "building_bank": 32, "bank": 32, "building_bridg": 32, "bridg": 32, "building_bridge_2": 32, "building_broadcast_tow": 32, "tower": 32, "building_carousel": 32, "carousel": 32, "building_castl": 32, "castl": 32, "building_church": 32, "church": 32, "building_circu": 32, "circu": 32, "building_commun": 32, "building_cottag": 32, "cottag": 32, "building_est": 32, "estat": 32, "building_factori": 32, "factori": 32, "building_factory_2": 32, "building_fortress": 32, "fortress": 32, "building_hospit": 32, "hospit": 32, "building_lighthous": 32, "lighthous": 32, "building_monu": 32, "monument": 32, "building_mosqu": 32, "mosqu": 32, "building_pavilion": 32, "pavilion": 32, "building_skyscrap": 32, "skyscrap": 32, "building_stadium": 32, "stadium": 32, "building_stor": 32, "store": 32, "building_tunnel": 32, "tunnel": [32, 37], "building_warehous": 32, "warehous": 32, "building_wind_turbin": 32, "wind": 32, "turbin": 32, "bulb": 32, "bulb_fil": 32, "bulb_off": 32, "bulldoz": 32, "bu": 32, "bus_off": 32, "bus_stop": 32, "stop": [32, 34, 37], "businessplan": 32, "butterfli": 32, "cactu": 32, "cactus_off": 32, "cake_off": 32, "calculator_off": 32, "calendar": 32, "calendar_bolt": 32, "calendar_cancel": 32, "calendar_check": 32, "calendar_cod": 32, "calendar_cog": 32, "calendar_dollar": 32, "calendar_down": 32, "calendar_du": 32, "due": 32, "calendar_ev": 32, "calendar_exclam": 32, "calendar_heart": 32, "calendar_minu": 32, "calendar_off": 32, "calendar_paus": 32, "calendar_pin": 32, "calendar_plu": 32, "calendar_quest": 32, "calendar_repeat": 32, "repeat": 32, "calendar_search": 32, "calendar_shar": 32, "calendar_star": 32, "calendar_stat": 32, "stat": 32, "calendar_tim": 32, "calendar_up": 32, "calendar_x": 32, "camera_bolt": 32, "camera_cancel": 32, "camera_check": 32, "camera_cod": 32, "camera_cog": 32, "camera_dollar": 32, "camera_down": 32, "camera_exclam": 32, "camera_fil": 32, "camera_heart": 32, "camera_minu": 32, "camera_off": 32, "camera_paus": 32, "camera_pin": 32, "camera_plu": 32, "camera_quest": 32, "camera_rot": 32, "camera_search": 32, "camera_selfi": 32, "selfi": 32, "camera_shar": 32, "camera_star": 32, "camera_up": 32, "camera_x": 32, "camper": 32, "campfir": 32, "candl": 32, "candi": 32, "candy_off": 32, "cane": 32, "cannabi": 32, "capsule_horizont": 32, "capture_off": 32, "car": 32, "car_cran": 32, "crane": 32, "car_crash": 32, "crash": 32, "car_off": 32, "car_turbin": 32, "caravan": 32, "cardboard": 32, "cardboards_off": 32, "card": 32, "caret_down": 32, "caret": 32, "caret_left": 32, "caret_right": 32, "caret_up": 32, "carousel_horizont": 32, "carousel_horizontal_fil": 32, "carousel_vert": 32, "carousel_vertical_fil": 32, "carrot": 32, "carrot_off": 32, "cash": 32, "cash_banknot": 32, "banknot": 32, "cash_banknote_off": 32, "cash_off": 32, "cast_off": 32, "cat": 32, "categori": 32, "category_2": 32, "ce": 32, "ce_off": 32, "cell_signal_1": 32, "signal": 32, "cell_signal_2": 32, "cell_signal_3": 32, "cell_signal_4": 32, "cell_signal_5": 32, "cell_signal_off": 32, "certif": 32, "certificate_2": 32, "certificate_2_off": 32, "certificate_off": 32, "chair_director": 32, "chair": 32, "director": 32, "chalkboard": 32, "chalkboard_off": 32, "charging_pil": 32, "pile": 32, "chart_arc": 32, "chart": 32, "arc": 32, "chart_arcs_3": 32, "chart_area": 32, "area": 32, "chart_area_fil": 32, "chart_area_lin": 32, "chart_area_line_fil": 32, "chart_arrow": 32, "chart_arrows_vert": 32, "chart_bar": 32, "chart_bar_off": 32, "chart_bubbl": 32, "bubbl": 32, "chart_bubble_fil": 32, "chart_candl": 32, "chart_candle_fil": 32, "chart_circl": 32, "chart_donut": 32, "donut": 32, "chart_donut_2": 32, "chart_donut_3": 32, "chart_donut_4": 32, "chart_donut_fil": 32, "chart_dot": 32, "dot": 32, "chart_dots_2": 32, "chart_dots_3": 32, "chart_grid_dot": 32, "chart_histogram": 32, "histogram": 32, "chart_infograph": 32, "infograph": 32, "chart_lin": 32, "chart_pi": 32, "pie": 32, "chart_pie_2": 32, "chart_pie_3": 32, "chart_pie_4": 32, "chart_pie_fil": 32, "chart_pie_off": 32, "chart_ppf": 32, "ppf": 32, "chart_radar": 32, "radar": 32, "chart_sankei": 32, "sankei": 32, "chart_treemap": 32, "treemap": 32, "checklist": 32, "checkup_list": 32, "checkup": 32, "chees": 32, "chef_hat": 32, "chef": 32, "hat": 32, "chef_hat_off": 32, "cherri": 32, "cherry_fil": 32, "chess": 32, "chess_bishop": 32, "bishop": 32, "chess_bishop_fil": 32, "chess_fil": 32, "chess_k": 32, "king": 32, "chess_king_fil": 32, "chess_knight": 32, "knight": 32, "chess_knight_fil": 32, "chess_queen": 32, "queen": 32, "chess_queen_fil": 32, "chess_rook": 32, "rook": 32, "chess_rook_fil": 32, "chevron_compact_down": 32, "chevron": 32, "compact": 32, "chevron_compact_left": 32, "chevron_compact_right": 32, "chevron_compact_up": 32, "chevron_down": 32, "chevron_down_left": 32, "chevron_down_right": 32, "chevron_left": 32, "chevron_left_pip": 32, "pipe": 32, "chevron_right": 32, "chevron_right_pip": 32, "chevron_up": 32, "chevron_up_left": 32, "chevron_up_right": 32, "chevrons_down": 32, "chevrons_down_left": 32, "chevrons_down_right": 32, "chevrons_left": 32, "chevrons_right": 32, "chevrons_up": 32, "chevrons_up_left": 32, "chevrons_up_right": 32, "chisel": 32, "christmas_tre": 32, "christma": 32, "christmas_tree_off": 32, "circle_0_fil": 32, "circle_1_fil": 32, "circle_2_fil": 32, "circle_3_fil": 32, "circle_4_fil": 32, "circle_5_fil": 32, "circle_6_fil": 32, "circle_7_fil": 32, "circle_8_fil": 32, "circle_9_fil": 32, "circle_arrow_down": 32, "circle_arrow_down_fil": 32, "circle_arrow_down_left": 32, "circle_arrow_down_left_fil": 32, "circle_arrow_down_right": 32, "circle_arrow_down_right_fil": 32, "circle_arrow_left": 32, "circle_arrow_left_fil": 32, "circle_arrow_right": 32, "circle_arrow_right_fil": 32, "circle_arrow_up": 32, "circle_arrow_up_fil": 32, "circle_arrow_up_left": 32, "circle_arrow_up_left_fil": 32, "circle_arrow_up_right": 32, "circle_arrow_up_right_fil": 32, "circle_caret_down": 32, "circle_caret_left": 32, "circle_caret_right": 32, "circle_caret_up": 32, "circle_check": 32, "circle_check_fil": 32, "circle_chevron_down": 32, "circle_chevron_left": 32, "circle_chevron_right": 32, "circle_chevron_up": 32, "circle_chevrons_down": 32, "circle_chevrons_left": 32, "circle_chevrons_right": 32, "circle_chevrons_up": 32, "circle_dash": 32, "dash": 32, "circle_dot": 32, "circle_dot_fil": 32, "circle_fil": 32, "circle_half": 32, "circle_half_2": 32, "circle_half_vert": 32, "circle_kei": 32, "circle_key_fil": 32, "circle_letter_a": 32, "letter": 32, "circle_letter_b": 32, "circle_letter_c": 32, "circle_letter_d": 32, "circle_letter_": 32, "circle_letter_f": 32, "circle_letter_g": 32, "circle_letter_h": 32, "circle_letter_i": 32, "circle_letter_j": 32, "circle_letter_k": 32, "circle_letter_l": 32, "circle_letter_m": 32, "m": 32, "circle_letter_n": 32, "circle_letter_o": 32, "circle_letter_p": 32, "p": 32, "circle_letter_q": 32, "q": 32, "circle_letter_r": 32, "circle_letter_t": 32, "circle_letter_u": 32, "circle_letter_v": 32, "v": [32, 35], "circle_letter_w": 32, "circle_letter_x": 32, "circle_letter_z": 32, "circle_minu": 32, "circle_number_0": 32, "circle_number_1": 32, "circle_number_2": 32, "circle_number_3": 32, "circle_number_4": 32, "circle_number_5": 32, "circle_number_6": 32, "circle_number_7": 32, "circle_number_8": 32, "circle_number_9": 32, "circle_off": 32, "circle_plu": 32, "circle_rectangl": 32, "rectangl": 32, "circle_rectangle_off": 32, "circle_squar": 32, "circle_triangl": 32, "circle_x": 32, "circle_x_fil": 32, "circles_fil": 32, "circles_rel": 32, "relat": 32, "circuit_ammet": 32, "circuit": 32, "ammet": 32, "circuit_batteri": 32, "circuit_bulb": 32, "circuit_capacitor": 32, "capacitor": 32, "circuit_capacitor_polar": 32, "polar": 32, "circuit_cel": 32, "circuit_cell_plu": 32, "circuit_changeov": 32, "changeov": 32, "circuit_diod": 32, "diod": 32, "circuit_diode_zen": 32, "zener": 32, "circuit_ground": 32, "ground": [32, 35], "circuit_ground_digit": 32, "circuit_inductor": 32, "inductor": 32, "circuit_motor": 32, "motor": 32, "circuit_pushbutton": 32, "pushbutton": 32, "circuit_resistor": 32, "resistor": 32, "circuit_switch_clos": 32, "switch": [32, 38], "circuit_switch_open": 32, "circuit_voltmet": 32, "voltmet": 32, "clear_al": 32, "clear_format": 32, "clipboard": 32, "clipboard_check": 32, "clipboard_copi": 32, "clipboard_data": 32, "clipboard_heart": 32, "clipboard_list": 32, "clipboard_off": 32, "clipboard_plu": 32, "clipboard_text": 32, "clipboard_typographi": 32, "typographi": 32, "clipboard_x": 32, "clock": 32, "clock_2": 32, "clock_bolt": 32, "clock_cancel": 32, "clock_check": 32, "clock_cod": 32, "clock_cog": 32, "clock_dollar": 32, "clock_down": 32, "clock_edit": 32, "clock_exclam": 32, "clock_fil": 32, "clock_heart": 32, "clock_hour_1": 32, "clock_hour_10": 32, "clock_hour_11": 32, "11": 32, "clock_hour_12": 32, "12": 32, "clock_hour_2": 32, "clock_hour_3": 32, "clock_hour_4": 32, "clock_hour_5": 32, "clock_hour_6": 32, "clock_hour_7": 32, "clock_hour_8": 32, "clock_hour_9": 32, "clock_minu": 32, "clock_off": 32, "clock_paus": 32, "clock_pin": 32, "clock_plai": 32, "clock_plu": 32, "clock_quest": 32, "clock_record": 32, "record": 32, "clock_search": 32, "clock_shar": 32, "clock_shield": 32, "shield": 32, "clock_star": 32, "clock_stop": 32, "clock_up": 32, "clock_x": 32, "clothes_rack": 32, "cloth": 32, "rack": 32, "clothes_rack_off": 32, "cloud_bolt": 32, "cloud_cancel": 32, "cloud_check": 32, "cloud_cod": 32, "cloud_cog": 32, "cloud_comput": 32, "cloud_data_connect": 32, "cloud_dollar": 32, "cloud_down": 32, "cloud_download": 32, "cloud_exclam": 32, "cloud_fil": 32, "cloud_fog": 32, "fog": 32, "cloud_heart": 32, "cloud_lock": 32, "lock": 32, "cloud_lock_open": 32, "cloud_minu": 32, "cloud_off": 32, "cloud_paus": 32, "cloud_pin": 32, "cloud_plu": 32, "cloud_quest": 32, "cloud_rain": 32, "rain": 32, "cloud_search": 32, "cloud_shar": 32, "cloud_snow": 32, "snow": 32, "cloud_star": 32, "cloud_storm": 32, "storm": 32, "cloud_up": 32, "cloud_upload": 32, "cloud_x": 32, "clover": 32, "clover_2": 32, "club": 32, "clubs_fil": 32, "code_asterix": 32, "asterix": 32, "code_circl": 32, "code_circle_2": 32, "code_dot": 32, "code_minu": 32, "code_off": 32, "code_plu": 32, "coffe": 32, "coffee_off": 32, "coffin": 32, "coin": 32, "coin_bitcoin": 32, "bitcoin": 32, "coin_euro": 32, "euro": 32, "coin_monero": 32, "monero": 32, "coin_off": 32, "coin_pound": 32, "pound": 32, "coin_rupe": 32, "rupe": 32, "coin_yen": 32, "yen": 32, "coin_yuan": 32, "yuan": 32, "color_filt": 32, "color_pick": 32, "color_picker_off": 32, "color_swatch": 32, "swatch": 32, "color_swatch_off": 32, "column_insert_left": 32, "insert": 32, "column_insert_right": 32, "column_remov": 32, "columns_1": 32, "columns_2": 32, "columns_3": 32, "columns_off": 32, "comet": 32, "command": 32, "command_off": 32, "compass": 32, "compass_off": 32, "components_off": 32, "cone": 32, "cone_2": 32, "cone_off": 32, "cone_plu": 32, "confetti": 32, "confetti_off": 32, "confuciu": 32, "container_off": 32, "contrast": 32, "contrast_2": 32, "contrast_2_off": 32, "contrast_off": 32, "cooker": 32, "cooki": 32, "cookie_man": 32, "man": 32, "cookie_off": 32, "copy_off": 32, "copyleft": 32, "copyleft_fil": 32, "copyleft_off": 32, "copyright": 32, "copyright_fil": 32, "copyright_off": 32, "corner_down_left": 32, "corner_down_left_doubl": 32, "corner_down_right": 32, "corner_down_right_doubl": 32, "corner_left_down": 32, "corner_left_down_doubl": 32, "corner_left_up": 32, "corner_left_up_doubl": 32, "corner_right_down": 32, "corner_right_down_doubl": 32, "corner_right_up": 32, "corner_right_up_doubl": 32, "corner_up_left": 32, "corner_up_left_doubl": 32, "corner_up_right": 32, "corner_up_right_doubl": 32, "cpu": 32, "cpu_2": 32, "cpu_off": 32, "crane_off": 32, "creative_common": 32, "creativ": 32, "creative_commons_bi": 32, "creative_commons_nc": 32, "nc": 32, "creative_commons_nd": 32, "nd": 32, "creative_commons_off": 32, "creative_commons_sa": 32, "sa": 32, "creative_commons_zero": 32, "credit_card": 32, "credit": 32, "credit_card_off": 32, "cricket": 32, "crop": 32, "cross_fil": 32, "cross_off": 32, "crosshair": 32, "crown": 32, "crown_off": 32, "crutch": 32, "crutches_off": 32, "crystal_bal": 32, "crystal": 32, "csv": 32, "cube_off": 32, "cube_plu": 32, "cube_send": 32, "cube_unfold": 32, "unfold": 32, "cup": 32, "cup_off": 32, "curl": 32, "curly_loop": 32, "curli": 32, "currenc": 32, "currency_afghani": 32, "afghani": 32, "currency_bahraini": 32, "bahraini": 32, "currency_baht": 32, "baht": 32, "currency_bitcoin": 32, "currency_c": 32, "cent": 32, "currency_dinar": 32, "dinar": 32, "currency_dirham": 32, "dirham": 32, "currency_dogecoin": 32, "dogecoin": 32, "currency_dollar": 32, "currency_dollar_australian": 32, "australian": 32, "currency_dollar_brunei": 32, "brunei": 32, "currency_dollar_canadian": 32, "canadian": 32, "currency_dollar_guyanes": 32, "guyanes": 32, "currency_dollar_off": 32, "currency_dollar_singapor": 32, "singapor": 32, "currency_dollar_zimbabwean": 32, "zimbabwean": 32, "currency_dong": 32, "dong": 32, "currency_dram": 32, "dram": 32, "currency_ethereum": 32, "ethereum": 32, "currency_euro": 32, "currency_euro_off": 32, "currency_florin": 32, "florin": 32, "currency_forint": 32, "forint": 32, "currency_frank": 32, "frank": 32, "currency_guarani": 32, "guarani": 32, "currency_hryvnia": 32, "hryvnia": 32, "currency_iranian_ri": 32, "iranian": 32, "rial": 32, "currency_kip": 32, "kip": 32, "currency_krone_czech": 32, "krone": 32, "czech": 32, "currency_krone_danish": 32, "danish": 32, "currency_krone_swedish": 32, "swedish": 32, "currency_lari": 32, "lari": 32, "currency_leu": 32, "leu": 32, "currency_lira": 32, "lira": 32, "currency_litecoin": 32, "litecoin": 32, "currency_lyd": 32, "lyd": 32, "currency_manat": 32, "manat": 32, "currency_monero": 32, "currency_naira": 32, "naira": 32, "currency_nano": 32, "nano": 32, "currency_off": 32, "currency_paanga": 32, "paanga": 32, "currency_peso": 32, "peso": 32, "currency_pound": 32, "currency_pound_off": 32, "currency_quetz": 32, "quetzal": 32, "currency_r": 32, "real": 32, "currency_renminbi": 32, "renminbi": 32, "currency_rippl": 32, "rippl": 32, "currency_riy": 32, "riyal": 32, "currency_rubel": 32, "rubel": 32, "currency_rufiyaa": 32, "rufiyaa": 32, "currency_rupe": 32, "currency_rupee_nepales": 32, "nepales": 32, "currency_shekel": 32, "shekel": 32, "currency_solana": 32, "solana": 32, "currency_som": 32, "som": 32, "currency_taka": 32, "taka": 32, "currency_teng": 32, "teng": 32, "currency_tugrik": 32, "tugrik": 32, "currency_won": 32, "won": [32, 34], "currency_yen": 32, "currency_yen_off": 32, "currency_yuan": 32, "currency_zloti": 32, "zloti": 32, "current_loc": 32, "current_location_off": 32, "cursor_off": 32, "cursor": 32, "cursor_text": 32, "cut": 32, "cylinder_off": 32, "cylinder_plu": 32, "dashboard": 32, "dashboard_off": 32, "databas": 32, "database_cog": 32, "database_dollar": 32, "database_edit": 32, "database_exclam": 32, "database_export": 32, "export": 32, "database_heart": 32, "database_import": 32, "database_leak": 32, "leak": 32, "database_minu": 32, "database_off": 32, "database_plu": 32, "database_search": 32, "database_shar": 32, "database_star": 32, "database_x": 32, "deer": 32, "delta": 32, "dental": 32, "dental_broken": 32, "broken": 32, "dental_off": 32, "deselect": 32, "detail": 32, "details_off": 32, "device_airpod": 32, "devic": 32, "airpod": 32, "device_airpods_cas": 32, "case": [32, 35], "device_airtag": 32, "airtag": 32, "device_analyt": 32, "device_audio_tap": 32, "audio": 32, "tape": 32, "device_camera_phon": 32, "phone": 32, "device_cctv": 32, "cctv": 32, "device_cctv_off": 32, "device_computer_camera": 32, "device_computer_camera_off": 32, "device_desktop": 32, "desktop": 32, "device_desktop_analyt": 32, "device_desktop_bolt": 32, "device_desktop_cancel": 32, "device_desktop_check": 32, "device_desktop_cod": 32, "device_desktop_cog": 32, "device_desktop_dollar": 32, "device_desktop_down": 32, "device_desktop_exclam": 32, "device_desktop_heart": 32, "device_desktop_minu": 32, "device_desktop_off": 32, "device_desktop_paus": 32, "device_desktop_pin": 32, "device_desktop_plu": 32, "device_desktop_quest": 32, "device_desktop_search": 32, "device_desktop_shar": 32, "device_desktop_star": 32, "device_desktop_up": 32, "device_desktop_x": 32, "device_floppi": 32, "floppi": 32, "device_gamepad": 32, "gamepad": 32, "device_gamepad_2": 32, "device_heart_monitor": 32, "monitor": 32, "device_heart_monitor_fil": 32, "device_imac": 32, "imac": 32, "device_imac_bolt": 32, "device_imac_cancel": 32, "device_imac_check": 32, "device_imac_cod": 32, "device_imac_cog": 32, "device_imac_dollar": 32, "device_imac_down": 32, "device_imac_exclam": 32, "device_imac_heart": 32, "device_imac_minu": 32, "device_imac_off": 32, "device_imac_paus": 32, "device_imac_pin": 32, "device_imac_plu": 32, "device_imac_quest": 32, "device_imac_search": 32, "device_imac_shar": 32, "device_imac_star": 32, "device_imac_up": 32, "device_imac_x": 32, "device_ipad": 32, "ipad": 32, "device_ipad_bolt": 32, "device_ipad_cancel": 32, "device_ipad_check": 32, "device_ipad_cod": 32, "device_ipad_cog": 32, "device_ipad_dollar": 32, "device_ipad_down": 32, "device_ipad_exclam": 32, "device_ipad_heart": 32, "device_ipad_horizont": 32, "device_ipad_horizontal_bolt": 32, "device_ipad_horizontal_cancel": 32, "device_ipad_horizontal_check": 32, "device_ipad_horizontal_cod": 32, "device_ipad_horizontal_cog": 32, "device_ipad_horizontal_dollar": 32, "device_ipad_horizontal_down": 32, "device_ipad_horizontal_exclam": 32, "device_ipad_horizontal_heart": 32, "device_ipad_horizontal_minu": 32, "device_ipad_horizontal_off": 32, "device_ipad_horizontal_paus": 32, "device_ipad_horizontal_pin": 32, "device_ipad_horizontal_plu": 32, "device_ipad_horizontal_quest": 32, "device_ipad_horizontal_search": 32, "device_ipad_horizontal_shar": 32, "device_ipad_horizontal_star": 32, "device_ipad_horizontal_up": 32, "device_ipad_horizontal_x": 32, "device_ipad_minu": 32, "device_ipad_off": 32, "device_ipad_paus": 32, "device_ipad_pin": 32, "device_ipad_plu": 32, "device_ipad_quest": 32, "device_ipad_search": 32, "device_ipad_shar": 32, "device_ipad_star": 32, "device_ipad_up": 32, "device_ipad_x": 32, "device_landline_phon": 32, "landlin": 32, "device_laptop": 32, "laptop": 32, "device_laptop_off": 32, "device_mobil": 32, "mobil": [32, 38], "device_mobile_bolt": 32, "device_mobile_cancel": 32, "device_mobile_charg": 32, "device_mobile_check": 32, "device_mobile_cod": 32, "device_mobile_cog": 32, "device_mobile_dollar": 32, "device_mobile_down": 32, "device_mobile_exclam": 32, "device_mobile_fil": 32, "device_mobile_heart": 32, "device_mobile_messag": 32, "device_mobile_minu": 32, "device_mobile_off": 32, "device_mobile_paus": 32, "device_mobile_pin": 32, "device_mobile_plu": 32, "device_mobile_quest": 32, "device_mobile_rot": 32, "device_mobile_search": 32, "device_mobile_shar": 32, "device_mobile_star": 32, "device_mobile_up": 32, "device_mobile_vibr": 32, "vibrat": 32, "device_mobile_x": 32, "device_nintendo": 32, "nintendo": 32, "device_nintendo_off": 32, "device_remot": 32, "remot": 32, "device_sd_card": 32, "device_sim": 32, "sim": 32, "device_sim_1": 32, "device_sim_2": 32, "device_sim_3": 32, "device_speak": 32, "speaker": 32, "device_speaker_off": 32, "device_tablet": 32, "tablet": 32, "device_tablet_bolt": 32, "device_tablet_cancel": 32, "device_tablet_check": 32, "device_tablet_cod": 32, "device_tablet_cog": 32, "device_tablet_dollar": 32, "device_tablet_down": 32, "device_tablet_exclam": 32, "device_tablet_fil": 32, "device_tablet_heart": 32, "device_tablet_minu": 32, "device_tablet_off": 32, "device_tablet_paus": 32, "device_tablet_pin": 32, "device_tablet_plu": 32, "device_tablet_quest": 32, "device_tablet_search": 32, "device_tablet_shar": 32, "device_tablet_star": 32, "device_tablet_up": 32, "device_tablet_x": 32, "device_tv": 32, "tv": 32, "device_tv_off": 32, "device_tv_old": 32, "device_vision_pro": 32, "vision": 32, "pro": 32, "device_watch": 32, "watch": 32, "device_watch_bolt": 32, "device_watch_cancel": 32, "device_watch_check": 32, "device_watch_cod": 32, "device_watch_cog": 32, "device_watch_dollar": 32, "device_watch_down": 32, "device_watch_exclam": 32, "device_watch_heart": 32, "device_watch_minu": 32, "device_watch_off": 32, "device_watch_paus": 32, "device_watch_pin": 32, "device_watch_plu": 32, "device_watch_quest": 32, "device_watch_search": 32, "device_watch_shar": 32, "device_watch_star": 32, "device_watch_stat": 32, "device_watch_stats_2": 32, "device_watch_up": 32, "device_watch_x": 32, "devices_2": 32, "devices_bolt": 32, "devices_cancel": 32, "devices_check": 32, "devices_cod": 32, "devices_cog": 32, "devices_dollar": 32, "devices_down": 32, "devices_exclam": 32, "devices_heart": 32, "devices_minu": 32, "devices_off": 32, "devices_paus": 32, "devices_pc": 32, "pc": 32, "devices_pc_off": 32, "devices_pin": 32, "devices_plu": 32, "devices_quest": 32, "devices_search": 32, "devices_shar": 32, "devices_star": 32, "devices_up": 32, "devices_x": 32, "diabolo": 32, "diabolo_off": 32, "diabolo_plu": 32, "dialpad": 32, "dialpad_fil": 32, "dialpad_off": 32, "diamond": [32, 35], "diamond_fil": 32, "diamond_off": 32, "diamonds_fil": 32, "dice": 32, "dice_1": 32, "dice_1_fil": 32, "dice_2": 32, "dice_2_fil": 32, "dice_3": 32, "dice_3_fil": 32, "dice_4": 32, "dice_4_fil": 32, "dice_5": 32, "dice_5_fil": 32, "dice_6": 32, "dice_6_fil": 32, "dice_fil": 32, "direction_horizont": 32, "direction_sign": 32, "sign": 32, "direction_sign_fil": 32, "direction_sign_off": 32, "directions_off": 32, "disabled_2": 32, "disabled_off": 32, "disc": 32, "disc_golf": 32, "golf": 32, "disc_off": 32, "discount": 32, "discount_2": 32, "discount_2_off": 32, "discount_check": 32, "discount_check_fil": 32, "discount_off": 32, "dna": 32, "dna_2": 32, "dna_2_off": 32, "dna_off": 32, "dog": 32, "dog_bowl": 32, "door": 32, "door_ent": 32, "enter": 32, "door_exit": 32, "exit": 32, "door_off": 32, "dots_circle_horizont": 32, "dots_diagon": 32, "dots_diagonal_2": 32, "dots_vert": 32, "download_off": 32, "drag_drop": 32, "drag": 32, "drag_drop_2": 32, "drone": 32, "drone_off": 32, "drop_circl": 32, "droplet_bolt": 32, "droplet_cancel": 32, "droplet_check": 32, "droplet_cod": 32, "droplet_cog": 32, "droplet_dollar": 32, "droplet_down": 32, "droplet_exclam": 32, "droplet_fil": 32, "droplet_filled_2": 32, "droplet_half": 32, "droplet_half_2": 32, "droplet_half_fil": 32, "droplet_heart": 32, "droplet_minu": 32, "droplet_off": 32, "droplet_paus": 32, "droplet_pin": 32, "droplet_plu": 32, "droplet_quest": 32, "droplet_search": 32, "droplet_shar": 32, "droplet_star": 32, "droplet_up": 32, "droplet_x": 32, "dual_screen": 32, "dual": 32, "e_passport": 32, "passport": 32, "ear": 32, "ear_off": 32, "ease_in": 32, "eas": 32, "ease_in_control_point": 32, "ease_in_out": 32, "ease_in_out_control_point": 32, "ease_out": 32, "ease_out_control_point": 32, "edit_circl": 32, "edit_circle_off": 32, "edit_off": 32, "egg": 32, "egg_crack": 32, "crack": 32, "egg_fil": 32, "egg_fri": 32, "fri": 32, "egg_off": 32, "elev": 32, "elevator_off": 32, "emergency_b": 32, "emerg": 32, "empath": 32, "empathize_off": 32, "emphasi": 32, "engin": 32, "engine_off": 32, "equal": 32, "equal_doubl": 32, "equal_not": 32, "eras": 32, "eraser_off": 32, "error_404": 32, "error": 32, "404": 32, "error_404_off": 32, "exchange_off": 32, "exclamation_circl": 32, "exclamation_mark": 32, "exclamation_mark_off": 32, "explicit": 32, "explicit_off": 32, "exposur": 32, "exposure_0": 32, "exposure_minus_1": 32, "exposure_minus_2": 32, "exposure_off": 32, "exposure_plus_1": 32, "exposure_plus_2": 32, "external_link": 32, "extern": [32, 37], "link": 32, "external_link_off": 32, "eye_check": 32, "eye_clos": 32, "eye_cog": 32, "eye_edit": 32, "eye_exclam": 32, "eye_fil": 32, "eye_heart": 32, "eye_off": 32, "eye_t": 32, "tabl": 32, "eye_x": 32, "eyeglass": 32, "eyeglass_2": 32, "eyeglass_off": 32, "face_id": 32, "face_id_error": 32, "face_mask": 32, "face_mask_off": 32, "fall": 32, "feather": 32, "feather_off": 32, "fenc": 32, "fence_off": 32, "fidget_spinn": 32, "fidget": 32, "spinner": 32, "file_3d": 32, "file_alert": 32, "file_analyt": 32, "file_arrow_left": 32, "file_arrow_right": 32, "file_barcod": 32, "file_broken": 32, "file_certif": 32, "file_chart": 32, "file_check": 32, "file_cod": 32, "file_code_2": 32, "file_cv": 32, "cv": 32, "file_databas": 32, "file_delta": 32, "file_descript": 32, "file_diff": 32, "file_digit": 32, "file_dislik": 32, "dislik": 32, "file_dollar": 32, "file_dot": 32, "file_download": 32, "file_euro": 32, "file_export": 32, "file_fil": 32, "file_funct": 32, "file_horizont": 32, "file_import": 32, "file_infin": 32, "infin": 32, "file_info": 32, "file_invoic": 32, "invoic": 32, "file_lambda": 32, "file_lik": 32, "file_minu": 32, "file_mus": 32, "file_off": 32, "file_orient": 32, "file_pencil": 32, "pencil": 32, "file_perc": 32, "percent": 32, "file_phon": 32, "file_plu": 32, "file_pow": 32, "power": 32, "file_report": 32, "report": 32, "file_rss": 32, "rss": 32, "file_scissor": 32, "scissor": 32, "file_search": 32, "file_set": 32, "file_shredd": 32, "shredder": 32, "file_sign": 32, "file_spreadsheet": 32, "spreadsheet": 32, "file_stack": 32, "stack": 32, "file_star": 32, "file_symlink": 32, "symlink": 32, "file_text": 32, "file_text_ai": 32, "ai": 32, "file_tim": 32, "file_typographi": 32, "file_unknown": 32, "unknown": 32, "file_upload": 32, "file_vector": 32, "file_x": 32, "file_x_fil": 32, "file_zip": 32, "files_off": 32, "filter_cog": 32, "filter_dollar": 32, "filter_edit": 32, "filter_minu": 32, "filter_off": 32, "filter_plu": 32, "filter_star": 32, "filter_x": 32, "fingerprint": 32, "fingerprint_off": 32, "fire_extinguish": 32, "fire": 32, "extinguish": 32, "fire_hydr": 32, "hydrant": 32, "fire_hydrant_off": 32, "firetruck": 32, "first_aid_kit": 32, "aid": 32, "kit": 32, "first_aid_kit_off": 32, "fish": 32, "fish_bon": 32, "fish_christian": 32, "christian": 32, "fish_hook": 32, "hook": 32, "fish_hook_off": 32, "fish_off": 32, "flag_2": 32, "flag_2_fil": 32, "flag_2_off": 32, "flag_3": 32, "flag_3_fil": 32, "flag_fil": 32, "flag_off": 32, "flame": 32, "flame_off": 32, "flare": 32, "flask": 32, "flask_2": 32, "flask_2_off": 32, "flask_off": 32, "flip_flop": 32, "flop": 32, "flip_horizont": 32, "flip_vert": 32, "float_cent": 32, "float_left": 32, "float_non": 32, "float_right": 32, "flower": 32, "flower_off": 32, "focu": 32, "focus_2": 32, "focus_auto": 32, "focus_cent": 32, "fold": 32, "fold_down": 32, "fold_up": 32, "folder_bolt": 32, "folder_cancel": 32, "folder_check": 32, "folder_cod": 32, "folder_cog": 32, "folder_dollar": 32, "folder_down": 32, "folder_exclam": 32, "folder_fil": 32, "folder_heart": 32, "folder_minu": 32, "folder_off": 32, "folder_open": 32, "folder_paus": 32, "folder_pin": 32, "folder_plu": 32, "folder_quest": 32, "folder_search": 32, "folder_shar": 32, "folder_star": 32, "folder_symlink": 32, "folder_up": 32, "folder_x": 32, "folders_off": 32, "forbid": 32, "forbid_2": 32, "forklift": 32, "fountain": 32, "fountain_off": 32, "frame_off": 32, "free_right": 32, "free": 32, "freeze_column": 32, "freez": 32, "freeze_row": 32, "freeze_row_column": 32, "fridg": 32, "fridge_off": 32, "friend": 32, "friends_off": 32, "frustum_off": 32, "frustum_plu": 32, "function_off": 32, "garden_cart": 32, "garden": 32, "cart": 32, "garden_cart_off": 32, "gas_stat": 32, "ga": 32, "station": 32, "gas_station_off": 32, "gaug": 32, "gauge_off": 32, "gavel": 32, "gender_agend": 32, "gender": 32, "agend": 32, "gender_androgyn": 32, "androgyn": 32, "gender_bigend": 32, "bigend": 32, "gender_demiboi": 32, "demiboi": 32, "gender_demigirl": 32, "demigirl": 32, "gender_epicen": 32, "epicen": 32, "gender_femal": 32, "femal": 32, "gender_femm": 32, "femm": 32, "gender_genderfluid": 32, "genderfluid": 32, "gender_genderless": 32, "genderless": 32, "gender_genderqu": 32, "genderqu": 32, "gender_hermaphrodit": 32, "hermaphrodit": 32, "gender_intergend": 32, "intergend": 32, "gender_mal": 32, "male": 32, "gender_neutroi": 32, "neutroi": 32, "gender_third": 32, "third": 32, "gender_transgend": 32, "transgend": 32, "gender_trasvesti": 32, "trasvesti": 32, "ghost": 32, "ghost_2": 32, "ghost_2_fil": 32, "ghost_fil": 32, "ghost_off": 32, "gift": 32, "gift_card": 32, "gift_off": 32, "git_branch": 32, "git_branch_delet": 32, "delet": 32, "git_cherry_pick": 32, "pick": 32, "git_commit": 32, "git_compar": 32, "compar": 32, "git_fork": 32, "git_merg": 32, "git_pull_request": 32, "pull": 32, "git_pull_request_clos": 32, "git_pull_request_draft": 32, "draft": 32, "glass": 32, "glass_ful": 32, "glass_off": 32, "globe": 32, "globe_off": 32, "go_gam": 32, "game": 32, "golf_off": 32, "gp": 32, "gradient": 32, "grain": 32, "graph": 32, "graph_off": 32, "grave": 32, "grave_2": 32, "grid_dot": 32, "grid_pattern": 32, "pattern": 32, "grill": 32, "grill_fork": 32, "grill_off": 32, "grill_spatula": 32, "spatula": 32, "grip_horizont": 32, "grip": 32, "grip_vert": 32, "growth": 32, "guitar_pick": 32, "guitar": 32, "guitar_pick_fil": 32, "h_1": 32, "h_2": 32, "h_3": 32, "h_4": 32, "h_5": 32, "h_6": 32, "hammer": 32, "hammer_off": 32, "hand_click": 32, "hand": 32, "hand_fing": 32, "finger": 32, "hand_finger_off": 32, "hand_grab": 32, "grab": [32, 38], "hand_little_fing": 32, "littl": 32, "hand_middle_fing": 32, "hand_mov": 32, "hand_off": 32, "hand_ring_fing": 32, "hand_rock": 32, "rock": 32, "hand_sanit": 32, "sanit": 32, "hand_stop": 32, "hand_three_fing": 32, "hand_two_fing": 32, "hanger": 32, "hanger_2": 32, "hanger_off": 32, "hash": 32, "haze": 32, "haze_moon": 32, "moon": 32, "hdr": 32, "head": 32, "heading_off": 32, "headphon": 32, "headphones_fil": 32, "headphones_off": 32, "headset": 32, "headset_off": 32, "health_recognit": 32, "health": 32, "recognit": 32, "heart_broken": 32, "heart_fil": 32, "heart_handshak": 32, "handshak": 32, "heart_minu": 32, "heart_off": 32, "heart_plu": 32, "heart_rate_monitor": 32, "rate": 32, "hearts_off": 32, "helicopt": 32, "helicopter_land": 32, "land": 32, "helmet": 32, "helmet_off": 32, "help_circl": 32, "help_circle_fil": 32, "help_hexagon": 32, "help_hexagon_fil": 32, "help_octagon": 32, "help_octagon_fil": 32, "help_off": 32, "help_smal": 32, "help_squar": 32, "help_square_fil": 32, "help_square_round": 32, "help_square_rounded_fil": 32, "help_triangl": 32, "help_triangle_fil": 32, "hemispher": 32, "hemisphere_off": 32, "hemisphere_plu": 32, "hexagon_0_fil": 32, "hexagon_1_fil": 32, "hexagon_2_fil": 32, "hexagon_3_fil": 32, "hexagon_3d": 32, "hexagon_4_fil": 32, "hexagon_5_fil": 32, "hexagon_6_fil": 32, "hexagon_7_fil": 32, "hexagon_8_fil": 32, "hexagon_9_fil": 32, "hexagon_fil": 32, "hexagon_letter_a": 32, "hexagon_letter_b": 32, "hexagon_letter_c": 32, "hexagon_letter_d": 32, "hexagon_letter_": 32, "hexagon_letter_f": 32, "hexagon_letter_g": 32, "hexagon_letter_h": 32, "hexagon_letter_i": 32, "hexagon_letter_j": 32, "hexagon_letter_k": 32, "hexagon_letter_l": 32, "hexagon_letter_m": 32, "hexagon_letter_n": 32, "hexagon_letter_o": 32, "hexagon_letter_p": 32, "hexagon_letter_q": 32, "hexagon_letter_r": 32, "hexagon_letter_t": 32, "hexagon_letter_u": 32, "hexagon_letter_v": 32, "hexagon_letter_w": 32, "hexagon_letter_x": 32, "hexagon_letter_z": 32, "hexagon_number_0": 32, "hexagon_number_1": 32, "hexagon_number_2": 32, "hexagon_number_3": 32, "hexagon_number_4": 32, "hexagon_number_5": 32, "hexagon_number_6": 32, "hexagon_number_7": 32, "hexagon_number_8": 32, "hexagon_number_9": 32, "hexagon_off": 32, "hexagonal_pr": 32, "prism": 32, "hexagonal_prism_off": 32, "hexagonal_prism_plu": 32, "hexagonal_pyramid": 32, "pyramid": 32, "hexagonal_pyramid_off": 32, "hexagonal_pyramid_plu": 32, "hexagons_off": 32, "hierarchi": 32, "hierarchy_2": 32, "hierarchy_3": 32, "hierarchy_off": 32, "highlight": 32, "highlight_off": 32, "histori": 32, "history_off": 32, "history_toggl": 32, "home_2": 32, "home_bolt": 32, "home_cancel": 32, "home_check": 32, "home_cog": 32, "home_dollar": 32, "home_dot": 32, "home_down": 32, "home_eco": 32, "home_edit": 32, "home_exclam": 32, "home_hand": 32, "home_heart": 32, "home_infin": 32, "home_link": 32, "home_minu": 32, "home_mov": 32, "home_off": 32, "home_plu": 32, "home_quest": 32, "home_ribbon": 32, "ribbon": 32, "home_search": 32, "home_shar": 32, "home_shield": 32, "home_sign": 32, "home_star": 32, "home_stat": 32, "home_up": 32, "home_x": 32, "horse_toi": 32, "hors": 32, "toi": 32, "hotel_servic": 32, "hotel": 32, "servic": 32, "hourglass": 32, "hourglass_empti": 32, "empti": 32, "hourglass_fil": 32, "hourglass_high": 32, "hourglass_low": 32, "hourglass_off": 32, "html": 32, "http_connect": 32, "http_delet": 32, "http_get": 32, "http_head": 32, "http_option": 32, "http_patch": 32, "patch": 32, "http_post": 32, "post": 32, "http_put": 32, "http_que": 32, "que": 32, "http_trace": 32, "trace": 32, "ice_cream": 32, "ic": 32, "cream": 32, "ice_cream_2": 32, "ice_cream_off": 32, "ice_sk": 32, "skate": 32, "icons_off": 32, "id_badg": 32, "id_badge_2": 32, "id_badge_off": 32, "id_off": 32, "inbox": 32, "inbox_off": 32, "indent_decreas": 32, "indent": 32, "decreas": 32, "indent_increas": 32, "increas": 32, "infinity_off": 32, "info_circl": 32, "info_circle_fil": 32, "info_hexagon": 32, "info_hexagon_fil": 32, "info_octagon": 32, "info_octagon_fil": 32, "info_smal": 32, "info_squar": 32, "info_square_fil": 32, "info_square_round": 32, "info_square_rounded_fil": 32, "info_triangl": 32, "info_triangle_fil": 32, "inner_shadow_bottom": 32, "shadow": 32, "inner_shadow_bottom_fil": 32, "inner_shadow_bottom_left": 32, "inner_shadow_bottom_left_fil": 32, "inner_shadow_bottom_right": 32, "inner_shadow_bottom_right_fil": 32, "inner_shadow_left": 32, "inner_shadow_left_fil": 32, "inner_shadow_right": 32, "inner_shadow_right_fil": 32, "inner_shadow_top": 32, "inner_shadow_top_fil": 32, "inner_shadow_top_left": 32, "inner_shadow_top_left_fil": 32, "inner_shadow_top_right": 32, "inner_shadow_top_right_fil": 32, "input_search": 32, "iron": 32, "ironing_1": 32, "ironing_2": 32, "ironing_3": 32, "ironing_off": 32, "ironing_steam": 32, "ironing_steam_off": 32, "irregular_polyhedron": 32, "irregular": 32, "polyhedron": 32, "irregular_polyhedron_off": 32, "irregular_polyhedron_plu": 32, "ital": 32, "jacket": 32, "jetpack": 32, "jewish_star": 32, "jewish": 32, "jewish_star_fil": 32, "jpg": 32, "json": 32, "jump_rop": 32, "jump": 32, "rope": 32, "karat": 32, "kayak": 32, "kere": 32, "key_off": 32, "keyboard": 32, "keyboard_hid": 32, "keyboard_off": 32, "keyboard_show": 32, "keyfram": 32, "keyframe_align_cent": 32, "keyframe_align_horizont": 32, "keyframe_align_vert": 32, "ladder": 32, "ladder_off": 32, "lamp": 32, "lamp_2": 32, "lamp_off": 32, "lane": 32, "languag": 32, "language_hiragana": 32, "hiragana": 32, "language_katakana": 32, "katakana": 32, "language_off": 32, "lasso": 32, "lasso_off": 32, "lasso_polygon": 32, "polygon": 32, "layers_differ": 32, "layer": 32, "layers_intersect": 32, "layers_intersect_2": 32, "layers_link": 32, "layers_off": 32, "layers_subtract": 32, "subtract": 32, "layers_union": 32, "union": 32, "layout_2": 32, "layout_align_bottom": 32, "layout_align_cent": 32, "layout_align_left": 32, "layout_align_middl": 32, "layout_align_right": 32, "layout_align_top": 32, "layout_board": 32, "layout_board_split": 32, "layout_bottombar": 32, "bottombar": 32, "layout_bottombar_collaps": 32, "layout_bottombar_expand": 32, "expand": 32, "layout_card": 32, "layout_collag": 32, "collag": 32, "layout_column": 32, "layout_dashboard": 32, "layout_distribute_horizont": 32, "distribut": 32, "layout_distribute_vert": 32, "layout_grid": 32, "layout_grid_add": 32, "layout_grid_remov": 32, "layout_kanban": 32, "kanban": 32, "layout_list": 32, "layout_navbar": 32, "navbar": 32, "layout_navbar_collaps": 32, "layout_navbar_expand": 32, "layout_off": 32, "layout_row": 32, "layout_sidebar": 32, "sidebar": 32, "layout_sidebar_left_collaps": 32, "layout_sidebar_left_expand": 32, "layout_sidebar_right": 32, "layout_sidebar_right_collaps": 32, "layout_sidebar_right_expand": 32, "leaf_off": 32, "lego": 32, "lego_off": 32, "lemon": 32, "lemon_2": 32, "letter_a": 32, "letter_b": 32, "letter_c": 32, "letter_cas": 32, "letter_case_low": 32, "letter_case_toggl": 32, "letter_case_upp": 32, "letter_d": 32, "letter_": 32, "letter_f": 32, "letter_g": 32, "letter_h": 32, "letter_i": 32, "letter_j": 32, "letter_k": 32, "letter_l": 32, "letter_m": 32, "letter_n": 32, "letter_o": 32, "letter_p": 32, "letter_q": 32, "letter_r": 32, "letter_spac": 32, "letter_t": 32, "letter_u": 32, "letter_v": 32, "letter_w": 32, "letter_x": 32, "letter_z": 32, "licens": 32, "license_off": 32, "lifebuoi": 32, "lifebuoy_off": 32, "lighter": 32, "line_dash": 32, "line_dot": 32, "line_height": 32, "link_off": 32, "list_check": 32, "list_detail": 32, "list_numb": 32, "list_search": 32, "list_tre": 32, "live_photo": 32, "live": 32, "live_photo_off": 32, "live_view": 32, "load_balanc": 32, "balanc": 32, "loader_2": 32, "loader_3": 32, "loader_quart": 32, "quarter": 32, "location_broken": 32, "location_fil": 32, "location_off": 32, "lock_access": 32, "lock_access_off": 32, "lock_bolt": 32, "lock_cancel": 32, "lock_check": 32, "lock_cod": 32, "lock_cog": 32, "lock_dollar": 32, "lock_down": 32, "lock_exclam": 32, "lock_heart": 32, "lock_minu": 32, "lock_off": 32, "lock_open": 32, "lock_open_off": 32, "lock_paus": 32, "lock_pin": 32, "lock_plu": 32, "lock_quest": 32, "lock_search": 32, "lock_shar": 32, "lock_squar": 32, "lock_square_round": 32, "lock_square_rounded_fil": 32, "lock_star": 32, "lock_up": 32, "lock_x": 32, "logic_and": 32, "logic_buff": 32, "logic_nand": 32, "nand": 32, "logic_nor": 32, "nor": 32, "logic_not": 32, "logic_or": 32, "logic_xnor": 32, "xnor": 32, "logic_xor": 32, "xor": 32, "login": 32, "logout": 32, "logout_2": 32, "lollipop": 32, "lollipop_off": 32, "luggag": 32, "luggage_off": 32, "lung": 32, "lungs_off": 32, "macro": 32, "macro_off": 32, "magnet": 32, "magnet_off": 32, "mail": 32, "mail_ai": 32, "mail_bolt": 32, "mail_cancel": 32, "mail_check": 32, "mail_cod": 32, "mail_cog": 32, "mail_dollar": 32, "mail_down": 32, "mail_exclam": 32, "mail_fast": 32, "fast": 32, "mail_fil": 32, "mail_forward": 32, "mail_heart": 32, "mail_minu": 32, "mail_off": 32, "mail_open": 32, "mail_opened_fil": 32, "mail_paus": 32, "mail_pin": 32, "mail_plu": 32, "mail_quest": 32, "mail_search": 32, "mail_shar": 32, "mail_star": 32, "mail_up": 32, "mail_x": 32, "mailbox": 32, "mailbox_off": 32, "manual_gearbox": 32, "gearbox": 32, "map_2": 32, "map_off": 32, "map_pin": 32, "map_pin_bolt": 32, "map_pin_cancel": 32, "map_pin_check": 32, "map_pin_cod": 32, "map_pin_cog": 32, "map_pin_dollar": 32, "map_pin_down": 32, "map_pin_exclam": 32, "map_pin_fil": 32, "map_pin_heart": 32, "map_pin_minu": 32, "map_pin_off": 32, "map_pin_paus": 32, "map_pin_pin": 32, "map_pin_plu": 32, "map_pin_quest": 32, "map_pin_search": 32, "map_pin_shar": 32, "map_pin_star": 32, "map_pin_up": 32, "map_pin_x": 32, "map_search": 32, "markdown_off": 32, "marque": 32, "marquee_2": 32, "marquee_off": 32, "mar": 32, "mask_off": 32, "masks_theat": 32, "theater": 32, "masks_theater_off": 32, "massag": 32, "matchstick": 32, "math": 32, "math_1_divide_2": 32, "math_1_divide_3": 32, "math_avg": 32, "avg": 32, "math_equal_great": 32, "greater": 32, "math_equal_low": 32, "math_funct": 32, "math_function_off": 32, "math_function_i": 32, "math_great": 32, "math_integr": 32, "integr": [32, 38], "math_integral_x": 32, "math_low": 32, "math_max": 32, "math_min": 32, "math_not": 32, "math_off": 32, "math_pi": 32, "math_pi_divide_2": 32, "math_symbol": 32, "math_x_divide_2": 32, "math_x_divide_i": 32, "math_x_divide_y_2": 32, "math_x_minus_x": 32, "math_x_minus_i": 32, "math_x_plus_x": 32, "math_x_plus_i": 32, "math_xi": 32, "math_y_minus_i": 32, "math_y_plus_i": 32, "maximize_off": 32, "meat": 32, "meat_off": 32, "medal": 32, "medal_2": 32, "medical_cross": 32, "medic": 32, "medical_cross_circl": 32, "medical_cross_fil": 32, "medical_cross_off": 32, "medicine_syrup": 32, "medicin": 32, "syrup": 32, "meepl": 32, "menorah": 32, "menu": 32, "menu_2": 32, "menu_deep": 32, "deep": 32, "menu_ord": 32, "message_2": 32, "message_2_bolt": 32, "message_2_cancel": 32, "message_2_check": 32, "message_2_cod": 32, "message_2_cog": 32, "message_2_dollar": 32, "message_2_down": 32, "message_2_exclam": 32, "message_2_heart": 32, "message_2_minu": 32, "message_2_off": 32, "message_2_paus": 32, "message_2_pin": 32, "message_2_plu": 32, "message_2_quest": 32, "message_2_search": 32, "message_2_shar": 32, "message_2_star": 32, "message_2_up": 32, "message_2_x": 32, "message_bolt": 32, "message_cancel": 32, "message_chatbot": 32, "chatbot": 32, "message_check": 32, "message_circl": 32, "message_circle_2": 32, "message_circle_2_fil": 32, "message_circle_bolt": 32, "message_circle_cancel": 32, "message_circle_check": 32, "message_circle_cod": 32, "message_circle_cog": 32, "message_circle_dollar": 32, "message_circle_down": 32, "message_circle_exclam": 32, "message_circle_heart": 32, "message_circle_minu": 32, "message_circle_off": 32, "message_circle_paus": 32, "message_circle_pin": 32, "message_circle_plu": 32, "message_circle_quest": 32, "message_circle_search": 32, "message_circle_shar": 32, "message_circle_star": 32, "message_circle_up": 32, "message_circle_x": 32, "message_cod": 32, "message_cog": 32, "message_dollar": 32, "message_dot": 32, "message_down": 32, "message_exclam": 32, "message_forward": 32, "message_heart": 32, "message_languag": 32, "message_minu": 32, "message_off": 32, "message_paus": 32, "message_pin": 32, "message_plu": 32, "message_quest": 32, "message_report": 32, "message_search": 32, "message_shar": 32, "message_star": 32, "message_up": 32, "message_x": 32, "messages_off": 32, "meteor": 32, "meteor_off": 32, "michelin_bib_gourmand": 32, "michelin": 32, "bib": 32, "gourmand": 32, "michelin_star": 32, "michelin_star_green": 32, "mickei": 32, "mickey_fil": 32, "microphon": 32, "microphone_2": 32, "microphone_2_off": 32, "microphone_off": 32, "microscop": 32, "microscope_off": 32, "microwav": 32, "microwave_off": 32, "military_award": 32, "militari": 32, "military_rank": 32, "rank": 32, "milk": 32, "milk_off": 32, "milkshak": 32, "minus_vert": 32, "mist": 32, "mist_off": 32, "mobiledata": 32, "mobiledata_off": 32, "moneybag": 32, "mood_angri": 32, "mood": 32, "angri": 32, "mood_annoi": 32, "annoi": 32, "mood_annoyed_2": 32, "mood_boi": 32, "boi": 32, "mood_check": 32, "mood_cog": 32, "mood_confuz": 32, "confuz": 32, "mood_confuzed_fil": 32, "mood_crazy_happi": 32, "crazi": 32, "happi": 32, "mood_cri": 32, "cry": 32, "mood_dollar": 32, "mood_edit": 32, "mood_empti": 32, "mood_empty_fil": 32, "mood_happi": 32, "mood_happy_fil": 32, "mood_heart": 32, "mood_kid": 32, "mood_kid_fil": 32, "mood_look_left": 32, "mood_look_right": 32, "mood_minu": 32, "mood_nerd": 32, "nerd": 32, "mood_nerv": 32, "nervou": 32, "mood_neutr": 32, "neutral": 32, "mood_neutral_fil": 32, "mood_off": 32, "mood_pin": 32, "mood_plu": 32, "mood_sad": 32, "sad": 32, "mood_sad_2": 32, "mood_sad_dizzi": 32, "dizzi": 32, "mood_sad_fil": 32, "mood_sad_squint": 32, "squint": 32, "mood_search": 32, "mood_shar": 32, "mood_sick": 32, "sick": 32, "mood_sil": 32, "silenc": 32, "mood_s": 32, "sing": 32, "mood_smil": 32, "smile": 32, "mood_smile_beam": 32, "beam": 32, "mood_smile_dizzi": 32, "mood_smile_fil": 32, "mood_supris": 32, "supris": 32, "mood_tongu": 32, "tongu": 32, "mood_tongue_wink": 32, "wink": 32, "mood_tongue_wink_2": 32, "mood_unamus": 32, "unamus": 32, "mood_up": 32, "mood_wink": 32, "mood_wink_2": 32, "mood_wrrr": 32, "wrrr": 32, "mood_x": 32, "mood_xd": 32, "xd": 32, "moon_2": 32, "moon_fil": 32, "moon_off": 32, "moon_star": 32, "mope": 32, "motorbik": 32, "mountain": 32, "mountain_off": 32, "mouse_2": 32, "mouse_off": 32, "moustach": 32, "movi": 32, "movie_off": 32, "mug": 32, "mug_off": 32, "multiplier_0_5x": 32, "multipli": [32, 38], "5x": 32, "multiplier_1_5x": 32, "multiplier_1x": 32, "1x": 32, "multiplier_2x": 32, "2x": 32, "mushroom": 32, "mushroom_fil": 32, "mushroom_off": 32, "music_off": 32, "navig": [32, 33], "navigation_fil": 32, "navigation_north": 32, "north": 32, "navigation_off": 32, "needl": 32, "needle_thread": 32, "network": 32, "network_off": 32, "new_sect": 32, "section": [32, 35], "news_off": 32, "nfc": 32, "nfc_off": 32, "no_copyright": 32, "no_creative_common": 32, "no_deriv": 32, "deriv": 32, "north_star": 32, "note_off": 32, "notebook": 32, "notebook_off": 32, "notes_off": 32, "notif": 32, "notification_off": 32, "number_0": 32, "number_1": 32, "number_2": 32, "number_3": 32, "number_4": 32, "number_5": 32, "number_6": 32, "number_7": 32, "number_8": 32, "number_9": 32, "nurs": 32, "octagon_fil": 32, "octagon_off": 32, "octahedron": 32, "octahedron_off": 32, "octahedron_plu": 32, "olymp": 32, "olympics_off": 32, "om": 32, "omega": [32, 38], "outbound": 32, "outlet": 32, "oval": 32, "oval_fil": 32, "oval_vert": 32, "oval_vertical_fil": 32, "overlin": 32, "package_export": 32, "package_import": 32, "package_off": 32, "pacman": 32, "page_break": 32, "page": 32, "break": 32, "paint_fil": 32, "paint_off": 32, "palett": 32, "palette_off": 32, "panorama_horizont": 32, "panorama": 32, "panorama_horizontal_off": 32, "panorama_vert": 32, "panorama_vertical_off": 32, "paper_bag": 32, "paper": 32, "bag": 32, "paper_bag_off": 32, "paperclip": 32, "parachut": 32, "parachute_off": 32, "parenthes": 32, "parentheses_off": 32, "park": 32, "parking_off": 32, "password": 32, "paw": 32, "paw_fil": 32, "paw_off": 32, "pdf": 32, "peac": 32, "pencil_minu": 32, "pencil_off": 32, "pencil_plu": 32, "pennant": 32, "pennant_2": 32, "pennant_2_fil": 32, "pennant_fil": 32, "pennant_off": 32, "pentagon": 32, "pentagon_fil": 32, "pentagon_off": 32, "pentagram": 32, "pepper": 32, "pepper_off": 32, "percentag": 32, "perfum": 32, "perspect": [32, 35], "perspective_off": 32, "phone_cal": 32, "phone_check": 32, "phone_fil": 32, "phone_incom": 32, "incom": [32, 34], "phone_off": 32, "phone_outgo": 32, "phone_paus": 32, "phone_plu": 32, "phone_x": 32, "photo_ai": 32, "photo_bolt": 32, "photo_cancel": 32, "photo_check": 32, "photo_cod": 32, "photo_cog": 32, "photo_dollar": 32, "photo_down": 32, "photo_edit": 32, "photo_exclam": 32, "photo_fil": 32, "photo_heart": 32, "photo_minu": 32, "photo_off": 32, "photo_paus": 32, "photo_pin": 32, "photo_plu": 32, "photo_quest": 32, "photo_search": 32, "photo_sensor": 32, "sensor": 32, "photo_sensor_2": 32, "photo_sensor_3": 32, "photo_shar": 32, "photo_shield": 32, "photo_star": 32, "photo_up": 32, "photo_x": 32, "physotherapist": 32, "piano": 32, "picture_in_pictur": 32, "pictur": 32, "picture_in_picture_off": 32, "picture_in_picture_on": 32, "picture_in_picture_top": 32, "pig": 32, "pig_monei": 32, "monei": 32, "pig_off": 32, "pilcrow": 32, "pill": 32, "pill_off": 32, "pin_fil": 32, "ping_pong": 32, "ping": 32, "pong": 32, "pinned_fil": 32, "pinned_off": 32, "pizza": 32, "pizza_off": 32, "placehold": 32, "plane_arriv": 32, "arriv": 32, "plane_departur": 32, "departur": 32, "plane_inflight": 32, "inflight": 32, "plane_off": 32, "plane_tilt": 32, "tilt": 32, "planet": 32, "planet_off": 32, "plant": 32, "plant_2": 32, "plant_2_off": 32, "plant_off": 32, "play_basketbal": 32, "play_card": 32, "play_card_off": 32, "play_footbal": 32, "play_handbal": 32, "handbal": 32, "play_volleybal": 32, "player_eject": 32, "eject": 32, "player_eject_fil": 32, "player_paus": 32, "player_pause_fil": 32, "player_plai": 32, "player_play_fil": 32, "player_record": 32, "player_record_fil": 32, "player_skip_back": 32, "player_skip_back_fil": 32, "player_skip_forward": 32, "player_skip_forward_fil": 32, "player_stop": 32, "player_stop_fil": 32, "player_track_next": 32, "track": 32, "player_track_next_fil": 32, "player_track_prev": 32, "player_track_prev_fil": 32, "playlist": 32, "playlist_add": 32, "playlist_off": 32, "playlist_x": 32, "playstation_circl": 32, "playstat": 32, "playstation_squar": 32, "playstation_triangl": 32, "playstation_x": 32, "plug": 32, "plug_connect": 32, "plug_connected_x": 32, "plug_off": 32, "plug_x": 32, "plus_equ": 32, "plus_minu": 32, "podium": 32, "podium_off": 32, "point_fil": 32, "point_off": 32, "pointer_bolt": 32, "pointer_cancel": 32, "pointer_check": 32, "pointer_cod": 32, "pointer_cog": 32, "pointer_dollar": 32, "pointer_down": 32, "pointer_exclam": 32, "pointer_heart": 32, "pointer_minu": 32, "pointer_off": 32, "pointer_paus": 32, "pointer_pin": 32, "pointer_plu": 32, "pointer_quest": 32, "pointer_search": 32, "pointer_shar": 32, "pointer_star": 32, "pointer_up": 32, "pointer_x": 32, "pokebal": 32, "pokeball_off": 32, "poker_chip": 32, "poker": 32, "chip": 32, "polaroid": 32, "polaroid_fil": 32, "polygon_off": 32, "poo": 32, "pool": 32, "pool_off": 32, "prai": 32, "premium_right": 32, "premium": 32, "prescript": 32, "present": 32, "presentation_analyt": 32, "presentation_off": 32, "printer": 32, "printer_off": 32, "prism_off": 32, "prism_plu": 32, "prison": 32, "progress_alert": 32, "progress_bolt": 32, "progress_check": 32, "progress_down": 32, "progress_help": 32, "progress_x": 32, "prompt": 32, "propel": 32, "propeller_off": 32, "pumpkin_scari": 32, "pumpkin": 32, "scari": 32, "puzzl": 32, "puzzle_2": 32, "puzzle_fil": 32, "puzzle_off": 32, "pyramid_off": 32, "pyramid_plu": 32, "qrcode": 32, "qrcode_off": 32, "question_mark": 32, "quot": 32, "quote_off": 32, "radar_2": 32, "radar_off": 32, "radio": 32, "radio_off": 32, "radioact": 32, "radioactive_fil": 32, "radioactive_off": 32, "radius_bottom_left": 32, "radius_bottom_right": 32, "radius_top_left": 32, "radius_top_right": 32, "rainbow": 32, "rainbow_off": 32, "rating_12_plu": 32, "rating_14_plu": 32, "14": 32, "rating_16_plu": 32, "16": 32, "rating_18_plu": 32, "18": 32, "rating_21_plu": 32, "21": 32, "razor": 32, "razor_electr": 32, "electr": 32, "receipt": 32, "receipt_2": 32, "receipt_off": 32, "receipt_refund": 32, "refund": 32, "receipt_tax": 32, "tax": 32, "recharg": 32, "record_mail": 32, "record_mail_off": 32, "rectangle_fil": 32, "rectangle_rounded_bottom": 32, "rectangle_rounded_top": 32, "rectangle_vert": 32, "rectangle_vertical_fil": 32, "rectangular_pr": 32, "rectangular": 32, "rectangular_prism_off": 32, "rectangular_prism_plu": 32, "recycl": 32, "recycle_off": 32, "refresh": 32, "refresh_alert": 32, "refresh_dot": 32, "refresh_off": 32, "regex": 32, "regex_off": 32, "relation_many_to_mani": 32, "mani": [32, 35], "relation_one_to_mani": 32, "relation_one_to_on": 32, "reload": 32, "repeat_off": 32, "repeat_onc": 32, "replace_fil": 32, "replace_off": 32, "report_analyt": 32, "report_med": 32, "report_monei": 32, "report_off": 32, "report_search": 32, "reserved_lin": 32, "reserv": 32, "restor": 32, "rewind_backward_10": 32, "rewind": 32, "backward": [32, 34], "rewind_backward_15": 32, "rewind_backward_20": 32, "rewind_backward_30": 32, "rewind_backward_40": 32, "40": 32, "rewind_backward_5": 32, "rewind_backward_50": 32, "rewind_backward_60": 32, "rewind_forward_10": 32, "rewind_forward_15": 32, "rewind_forward_20": 32, "rewind_forward_30": 32, "rewind_forward_40": 32, "rewind_forward_5": 32, "rewind_forward_50": 32, "rewind_forward_60": 32, "ribbon_health": 32, "ripple_off": 32, "road": 32, "road_off": 32, "road_sign": 32, "robot": [32, 38], "robot_off": 32, "rocket": 32, "rocket_off": 32, "roller_sk": 32, "roller": 32, "rollercoast": 32, "rollercoaster_off": 32, "rosett": 32, "rosette_fil": 32, "rosette_number_0": 32, "rosette_number_1": 32, "rosette_number_2": 32, "rosette_number_3": 32, "rosette_number_4": 32, "rosette_number_5": 32, "rosette_number_6": 32, "rosette_number_7": 32, "rosette_number_8": 32, "rosette_number_9": 32, "rotate_2": 32, "rotate_360": 32, "rotate_clockwis": 32, "clockwis": 32, "rotate_clockwise_2": 32, "rotate_dot": 32, "rotate_rectangl": 32, "rout": 32, "route_2": 32, "route_off": 32, "router": 32, "router_off": 32, "row_insert_bottom": 32, "row_insert_top": 32, "row_remov": 32, "rubber_stamp": 32, "rubber": 32, "stamp": 32, "rubber_stamp_off": 32, "ruler": 32, "ruler_2": 32, "ruler_2_off": 32, "ruler_3": 32, "ruler_measur": 32, "measur": 32, "ruler_off": 32, "s_turn_down": 32, "s_turn_left": 32, "s_turn_right": 32, "s_turn_up": 32, "sailboat": 32, "sailboat_2": 32, "sailboat_off": 32, "salad": 32, "salt": 32, "satellit": 32, "satellite_off": 32, "sausag": 32, "scale_off": 32, "scale_outlin": 32, "scale_outline_off": 32, "scan": 32, "scan_ey": 32, "schema": 32, "schema_off": 32, "school_bel": 32, "school_off": 32, "scissors_off": 32, "scooter": 32, "scooter_electr": 32, "scoreboard": 32, "screen_shar": 32, "screen_share_off": 32, "screenshot": 32, "scribbl": 32, "scribble_off": 32, "script_minu": 32, "script_plu": 32, "script_x": 32, "scuba_mask": 32, "scuba": 32, "scuba_mask_off": 32, "sdk": 32, "search_off": 32, "section_sign": 32, "seed": 32, "seeding_off": 32, "select_al": 32, "selector": 32, "send_off": 32, "seo": 32, "separ": 32, "separator_horizont": 32, "separator_vert": 32, "server_2": 32, "server_bolt": 32, "server_cog": 32, "server_off": 32, "servicemark": 32, "settings_2": 32, "settings_autom": 32, "autom": 32, "settings_bolt": 32, "settings_cancel": 32, "settings_check": 32, "settings_cod": 32, "settings_cog": 32, "settings_dollar": 32, "settings_down": 32, "settings_exclam": 32, "settings_fil": 32, "settings_heart": 32, "settings_minu": 32, "settings_off": 32, "settings_paus": 32, "settings_pin": 32, "settings_plu": 32, "settings_quest": 32, "settings_search": 32, "settings_shar": 32, "settings_star": 32, "settings_up": 32, "settings_x": 32, "shadow_off": 32, "shape_2": 32, "shape_3": 32, "shape_off": 32, "share_2": 32, "share_3": 32, "share_off": 32, "shi_jump": 32, "shi": 32, "shield_bolt": 32, "shield_cancel": 32, "shield_check": 32, "shield_check_fil": 32, "checker": 32, "shield_checkered_fil": 32, "shield_chevron": 32, "shield_cod": 32, "shield_cog": 32, "shield_dollar": 32, "shield_down": 32, "shield_exclam": 32, "shield_fil": 32, "shield_half": 32, "shield_half_fil": 32, "shield_heart": 32, "shield_lock": 32, "shield_lock_fil": 32, "shield_minu": 32, "shield_off": 32, "shield_paus": 32, "shield_pin": 32, "shield_plu": 32, "shield_quest": 32, "shield_search": 32, "shield_shar": 32, "shield_star": 32, "shield_up": 32, "shield_x": 32, "ship": 32, "ship_off": 32, "shirt": 32, "shirt_fil": 32, "shirt_off": 32, "shirt_sport": 32, "sport": 32, "shoe": 32, "shoe_off": 32, "shopping_bag": 32, "shop": 32, "shopping_cart": 32, "shopping_cart_discount": 32, "shopping_cart_off": 32, "shopping_cart_plu": 32, "shopping_cart_x": 32, "shovel": 32, "sign_left": 32, "sign_left_fil": 32, "sign_right": 32, "sign_right_fil": 32, "signal_2g": 32, "2g": 32, "signal_3g": 32, "3g": 32, "signal_4g": 32, "4g": 32, "signal_4g_plu": 32, "signal_5g": 32, "5g": 32, "signal_6g": 32, "6g": 32, "signal_": 32, "signal_g": 32, "signal_h": 32, "signal_h_plu": 32, "signal_lt": 32, "lte": 32, "signatur": 32, "signature_off": 32, "sitemap": 32, "sitemap_off": 32, "skateboard": 32, "skateboard_off": 32, "skull": 32, "slash": 32, "sleigh": 32, "slice": 32, "slideshow": 32, "smart_hom": 32, "smart": 32, "smart_home_off": 32, "smoke": 32, "smoking_no": 32, "snowflake_off": 32, "snowman": 32, "soccer_field": 32, "soccer": 32, "social": 32, "social_off": 32, "sock": 32, "sofa": 32, "sofa_off": 32, "solar_panel": 32, "solar": 32, "solar_panel_2": 32, "sort_0_9": 32, "sort_9_0": 32, "sort_a_z": 32, "sort_ascend": 32, "ascend": 32, "sort_ascending_2": 32, "sort_ascending_lett": 32, "sort_ascending_numb": 32, "sort_descend": 32, "descend": 32, "sort_descending_2": 32, "sort_descending_lett": 32, "sort_descending_numb": 32, "sort_z_a": 32, "soup": 32, "soup_off": 32, "source_cod": 32, "space_off": 32, "spacing_horizont": 32, "spacing_vert": 32, "spade": 32, "spade_fil": 32, "sparkl": [32, 35], "speakerphon": 32, "speedboat": 32, "sphere_off": 32, "sphere_plu": 32, "spider": 32, "spiral": 32, "spiral_off": 32, "sport_billard": 32, "billard": 32, "sprai": 32, "spy": 32, "spy_off": 32, "sql": 32, "square_0_fil": 32, "square_1_fil": 32, "square_2_fil": 32, "square_3_fil": 32, "square_4_fil": 32, "square_5_fil": 32, "square_6_fil": 32, "square_7_fil": 32, "square_8_fil": 32, "square_9_fil": 32, "square_arrow_down": 32, "square_arrow_left": 32, "square_arrow_right": 32, "square_arrow_up": 32, "square_asterisk": 32, "square_check": 32, "square_check_fil": 32, "square_chevron_down": 32, "square_chevron_left": 32, "square_chevron_right": 32, "square_chevron_up": 32, "square_chevrons_down": 32, "square_chevrons_left": 32, "square_chevrons_right": 32, "square_chevrons_up": 32, "square_dot": 32, "square_f0": 32, "f0": 32, "square_f0_fil": 32, "square_f1": 32, "f1": 32, "square_f1_fil": 32, "square_f2": 32, "f2": 32, "square_f2_fil": 32, "square_f3": 32, "f3": 32, "square_f3_fil": 32, "square_f4": 32, "f4": 32, "square_f4_fil": 32, "square_f5": 32, "f5": 32, "square_f5_fil": 32, "square_f6": 32, "f6": 32, "square_f6_fil": 32, "square_f7": 32, "f7": 32, "square_f7_fil": 32, "square_f8": 32, "f8": 32, "square_f8_fil": 32, "square_f9": 32, "f9": 32, "square_f9_fil": 32, "square_forbid": 32, "square_forbid_2": 32, "square_half": 32, "square_kei": 32, "square_letter_a": 32, "square_letter_b": 32, "square_letter_c": 32, "square_letter_d": 32, "square_letter_": 32, "square_letter_f": 32, "square_letter_g": 32, "square_letter_h": 32, "square_letter_i": 32, "square_letter_j": 32, "square_letter_k": 32, "square_letter_l": 32, "square_letter_m": 32, "square_letter_n": 32, "square_letter_o": 32, "square_letter_p": 32, "square_letter_q": 32, "square_letter_r": 32, "square_letter_t": 32, "square_letter_u": 32, "square_letter_v": 32, "square_letter_w": 32, "square_letter_x": 32, "square_letter_z": 32, "square_minu": 32, "square_number_0": 32, "square_number_1": 32, "square_number_2": 32, "square_number_3": 32, "square_number_4": 32, "square_number_5": 32, "square_number_6": 32, "square_number_7": 32, "square_number_8": 32, "square_number_9": 32, "square_off": 32, "square_plu": 32, "square_root": 32, "square_root_2": 32, "square_rot": 32, "square_rotated_fil": 32, "square_rotated_forbid": 32, "square_rotated_forbid_2": 32, "square_rotated_off": 32, "square_round": 32, "square_rounded_arrow_down": 32, "square_rounded_arrow_down_fil": 32, "square_rounded_arrow_left": 32, "square_rounded_arrow_left_fil": 32, "square_rounded_arrow_right": 32, "square_rounded_arrow_right_fil": 32, "square_rounded_arrow_up": 32, "square_rounded_arrow_up_fil": 32, "square_rounded_check": 32, "square_rounded_check_fil": 32, "square_rounded_chevron_down": 32, "square_rounded_chevron_down_fil": 32, "square_rounded_chevron_left": 32, "square_rounded_chevron_left_fil": 32, "square_rounded_chevron_right": 32, "square_rounded_chevron_right_fil": 32, "square_rounded_chevron_up": 32, "square_rounded_chevron_up_fil": 32, "square_rounded_chevrons_down": 32, "square_rounded_chevrons_down_fil": 32, "square_rounded_chevrons_left": 32, "square_rounded_chevrons_left_fil": 32, "square_rounded_chevrons_right": 32, "square_rounded_chevrons_right_fil": 32, "square_rounded_chevrons_up": 32, "square_rounded_chevrons_up_fil": 32, "square_rounded_fil": 32, "square_rounded_letter_a": 32, "square_rounded_letter_b": 32, "square_rounded_letter_c": 32, "square_rounded_letter_d": 32, "square_rounded_letter_": 32, "square_rounded_letter_f": 32, "square_rounded_letter_g": 32, "square_rounded_letter_h": 32, "square_rounded_letter_i": 32, "square_rounded_letter_j": 32, "square_rounded_letter_k": 32, "square_rounded_letter_l": 32, "square_rounded_letter_m": 32, "square_rounded_letter_n": 32, "square_rounded_letter_o": 32, "square_rounded_letter_p": 32, "square_rounded_letter_q": 32, "square_rounded_letter_r": 32, "square_rounded_letter_t": 32, "square_rounded_letter_u": 32, "square_rounded_letter_v": 32, "square_rounded_letter_w": 32, "square_rounded_letter_x": 32, "square_rounded_letter_z": 32, "square_rounded_minu": 32, "square_rounded_number_0": 32, "square_rounded_number_0_fil": 32, "square_rounded_number_1": 32, "square_rounded_number_1_fil": 32, "square_rounded_number_2": 32, "square_rounded_number_2_fil": 32, "square_rounded_number_3": 32, "square_rounded_number_3_fil": 32, "square_rounded_number_4": 32, "square_rounded_number_4_fil": 32, "square_rounded_number_5": 32, "square_rounded_number_5_fil": 32, "square_rounded_number_6": 32, "square_rounded_number_6_fil": 32, "square_rounded_number_7": 32, "square_rounded_number_7_fil": 32, "square_rounded_number_8": 32, "square_rounded_number_8_fil": 32, "square_rounded_number_9": 32, "square_rounded_number_9_fil": 32, "square_rounded_plu": 32, "square_rounded_plus_fil": 32, "square_rounded_x": 32, "square_rounded_x_fil": 32, "square_toggl": 32, "square_toggle_horizont": 32, "square_x": 32, "squares_diagon": 32, "squares_fil": 32, "stack_2": 32, "stack_3": 32, "stack_pop": 32, "pop": 32, "stack_push": 32, "push": [32, 34], "stair": 32, "stairs_down": 32, "stairs_up": 32, "star_fil": 32, "star_half": 32, "star_half_fil": 32, "star_off": 32, "stars_fil": 32, "stars_off": 32, "status_chang": 32, "statu": 32, "steering_wheel": 32, "steer": 32, "wheel": 32, "steering_wheel_off": 32, "step_into": 32, "step_out": 32, "stereo_glass": 32, "stereo": 32, "stethoscop": 32, "stethoscope_off": 32, "sticker": 32, "storm_off": 32, "stretching_2": 32, "strikethrough": 32, "submarin": 32, "subscript": 32, "subtask": 32, "sum": 32, "sum_off": 32, "sun": 32, "sun_fil": 32, "sun_high": 32, "sun_low": 32, "sun_moon": 32, "sun_off": 32, "sun_wind": 32, "sunglass": 32, "sunris": 32, "sunset": 32, "sunset_2": 32, "superscript": 32, "svg": 32, "swim": 32, "swipe": 32, "switch_2": 32, "switch_3": 32, "switch_horizont": 32, "switch_vert": 32, "sword": 32, "sword_off": 32, "table_alia": 32, "table_column": 32, "table_down": 32, "table_export": 32, "table_fil": 32, "table_heart": 32, "table_import": 32, "table_minu": 32, "table_off": 32, "table_opt": 32, "table_plu": 32, "table_row": 32, "table_shar": 32, "table_shortcut": 32, "shortcut": 32, "tag": 32, "tag_off": 32, "tags_off": 32, "tallymark_1": 32, "tallymark": 32, "tallymark_2": 32, "tallymark_3": 32, "tallymark_4": 32, "tank": 32, "target_arrow": 32, "target_off": 32, "teapot": 32, "telescop": 32, "telescope_off": 32, "temperatur": 32, "temperature_celsiu": 32, "celsiu": 32, "temperature_fahrenheit": 32, "fahrenheit": 32, "temperature_minu": 32, "temperature_off": 32, "temperature_plu": 32, "templat": 32, "template_off": 32, "tent": 32, "tent_off": 32, "terminal_2": 32, "test_pip": 32, "test_pipe_2": 32, "test_pipe_off": 32, "tex": 32, "text_capt": 32, "caption": 32, "text_color": 32, "text_decreas": 32, "text_direction_ltr": 32, "ltr": 32, "text_direction_rtl": 32, "rtl": 32, "text_increas": 32, "text_orient": 32, "text_plu": 32, "text_recognit": 32, "text_res": 32, "text_siz": 32, "text_spellcheck": 32, "spellcheck": 32, "text_wrap": 32, "wrap": [32, 34], "text_wrap_dis": 32, "thermomet": 32, "thumb_down": 32, "thumb": 32, "thumb_down_fil": 32, "thumb_down_off": 32, "thumb_up": 32, "thumb_up_fil": 32, "thumb_up_off": 32, "tic_tac": 32, "ticket": 32, "ticket_off": 32, "tie": 32, "tild": 32, "tilt_shift": 32, "shift": 32, "tilt_shift_off": 32, "time_duration_0": 32, "durat": 32, "time_duration_10": 32, "time_duration_15": 32, "time_duration_30": 32, "time_duration_45": 32, "time_duration_5": 32, "time_duration_60": 32, "time_duration_90": 32, "time_duration_off": 32, "timelin": 32, "timeline_ev": 32, "timeline_event_exclam": 32, "timeline_event_minu": 32, "timeline_event_plu": 32, "timeline_event_text": 32, "timeline_event_x": 32, "tir": 32, "toggle_left": 32, "toggle_right": 32, "toilet_pap": 32, "toilet": 32, "toilet_paper_off": 32, "toml": 32, "tools_kitchen": 32, "kitchen": 32, "tools_kitchen_2": 32, "tools_kitchen_2_off": 32, "tools_kitchen_off": 32, "tools_off": 32, "tooltip": 32, "topology_bu": 32, "topologi": 32, "topology_complex": 32, "complex": [32, 35], "topology_ful": 32, "topology_full_hierarchi": 32, "topology_r": 32, "topology_ring_2": 32, "topology_ring_3": 32, "topology_star": 32, "topology_star_2": 32, "topology_star_3": 32, "topology_star_r": 32, "topology_star_ring_2": 32, "topology_star_ring_3": 32, "torii": 32, "tornado": 32, "tournament": 32, "tower_off": 32, "tractor": 32, "trademark": 32, "traffic_con": 32, "traffic": 32, "traffic_cone_off": 32, "traffic_light": 32, "traffic_lights_off": 32, "train": 32, "transfer_in": 32, "transfer_out": 32, "transform_fil": 32, "transition_bottom": 32, "transit": 32, "transition_left": 32, "transition_right": 32, "transition_top": 32, "trash": 32, "trash_fil": 32, "trash_off": 32, "trash_x": 32, "trash_x_fil": 32, "treadmil": 32, "trekk": 32, "trending_down": 32, "trend": 32, "trending_down_2": 32, "trending_down_3": 32, "trending_up": 32, "trending_up_2": 32, "trending_up_3": 32, "triangle_fil": 32, "triangle_invert": 32, "invert": 32, "triangle_inverted_fil": 32, "triangle_off": 32, "triangle_square_circl": 32, "trident": 32, "trollei": 32, "trophi": 32, "trophy_fil": 32, "trophy_off": 32, "trowel": 32, "truck": 32, "truck_deliveri": 32, "deliveri": 32, "truck_load": 32, "truck_off": 32, "truck_return": 32, "txt": 32, "typography_off": 32, "ufo": 32, "ufo_off": 32, "umbrella": 32, "umbrella_fil": 32, "umbrella_off": 32, "underlin": 32, "unlink": 32, "urgent": 32, "usb": 32, "user_bolt": 32, "user_cancel": 32, "user_check": 32, "user_circl": 32, "user_cod": 32, "user_cog": 32, "user_dollar": 32, "user_down": 32, "user_edit": 32, "user_exclam": 32, "user_heart": 32, "user_minu": 32, "user_off": 32, "user_paus": 32, "user_pin": 32, "user_plu": 32, "user_quest": 32, "user_search": 32, "user_shar": 32, "user_shield": 32, "user_star": 32, "user_up": 32, "user_x": 32, "users_group": 32, "users_minu": 32, "users_plu": 32, "uv_index": 32, "uv": 32, "ux_circl": 32, "ux": 32, "vaccin": 32, "vaccine_bottl": 32, "vaccine_bottle_off": 32, "vaccine_off": 32, "vacuum_clean": 32, "vacuum": 32, "cleaner": 32, "variabl": 32, "variable_minu": 32, "variable_off": 32, "variable_plu": 32, "vector_bezi": 32, "bezier": [32, 35], "vector_bezier_2": 32, "vector_bezier_arc": 32, "vector_bezier_circl": 32, "vector_off": 32, "vector_splin": 32, "spline": [32, 35], "vector_triangl": 32, "vector_triangle_off": 32, "venu": 32, "versions_fil": 32, "versions_off": 32, "video": 32, "video_minu": 32, "video_off": 32, "video_plu": 32, "view_360": 32, "view_360_off": 32, "viewfinder_off": 32, "viewport_narrow": 32, "viewport_wid": 32, "wide": 32, "vinyl": 32, "vip": 32, "vip_off": 32, "viru": 32, "virus_off": 32, "virus_search": 32, "vocabulari": 32, "vocabulary_off": 32, "volcano": 32, "volum": 32, "volume_2": 32, "volume_3": 32, "volume_off": 32, "walk": 32, "wall": 32, "wall_off": 32, "wallet": 32, "wallet_off": 32, "wallpap": 32, "wallpaper_off": 32, "wand": 32, "wand_off": 32, "wash": 32, "wash_dri": 32, "dry": 32, "wash_dry_1": 32, "wash_dry_2": 32, "wash_dry_3": 32, "wash_dry_a": 32, "wash_dry_dip": 32, "dip": 32, "wash_dry_f": 32, "wash_dry_flat": 32, "flat": [32, 35], "wash_dry_hang": 32, "hang": 32, "wash_dry_off": 32, "wash_dry_p": 32, "wash_dry_shad": 32, "shade": [32, 35], "wash_dry_w": 32, "wash_dryclean": 32, "dryclean": 32, "wash_dryclean_off": 32, "wash_eco": 32, "wash_gentl": 32, "gentl": 32, "wash_hand": 32, "wash_machin": 32, "machin": 32, "wash_off": 32, "wash_press": 32, "wash_temperature_1": 32, "wash_temperature_2": 32, "wash_temperature_3": 32, "wash_temperature_4": 32, "wash_temperature_5": 32, "wash_temperature_6": 32, "wash_tumble_dri": 32, "tumbl": 32, "wash_tumble_off": 32, "waterpolo": 32, "wave_saw_tool": 32, "saw": 32, "wave_sin": 32, "sine": 32, "wave_squar": 32, "webhook": 32, "webhook_off": 32, "wheelchair": 32, "wheelchair_off": 32, "whirl": 32, "wifi": 32, "wifi_0": 32, "wifi_1": 32, "wifi_2": 32, "wifi_off": 32, "wind_off": 32, "windmil": 32, "windmill_fil": 32, "windmill_off": 32, "window_maxim": 32, "window_minim": 32, "window_off": 32, "windsock": 32, "wiper": 32, "wiper_wash": 32, "woman": 32, "wood": 32, "world_bolt": 32, "world_cancel": 32, "world_check": 32, "world_cod": 32, "world_cog": 32, "world_dollar": 32, "world_down": 32, "world_download": 32, "world_exclam": 32, "world_heart": 32, "world_latitud": 32, "latitud": 32, "world_longitud": 32, "longitud": 32, "world_minu": 32, "world_off": 32, "world_paus": 32, "world_pin": 32, "world_plu": 32, "world_quest": 32, "world_search": 32, "world_shar": 32, "world_star": 32, "world_up": 32, "world_upload": 32, "world_www": 32, "www": 32, "world_x": 32, "wrecking_bal": 32, "wreck": 32, "writing_off": 32, "writing_sign": 32, "writing_sign_off": 32, "xbox_a": 32, "xbox_b": 32, "xbox_x": 32, "xbox_i": 32, "yin_yang": 32, "yin": 32, "yang": 32, "yin_yang_fil": 32, "yoga": 32, "zeppelin": 32, "zeppelin_off": 32, "zodiac_aquariu": 32, "zodiac": 32, "aquariu": 32, "zodiac_ari": 32, "ari": 32, "zodiac_canc": 32, "cancer": 32, "zodiac_capricorn": 32, "capricorn": 32, "zodiac_gemini": 32, "gemini": 32, "zodiac_leo": 32, "leo": 32, "zodiac_libra": 32, "libra": 32, "zodiac_pisc": 32, "pisc": 32, "zodiac_sagittariu": 32, "sagittariu": 32, "zodiac_scorpio": 32, "scorpio": 32, "zodiac_tauru": 32, "tauru": 32, "zodiac_virgo": 32, "virgo": 32, "zoom_cancel": 32, "zoom_check": 32, "zoom_check_fil": 32, "zoom_cod": 32, "zoom_exclam": 32, "zoom_fil": 32, "zoom_in": 32, "zoom_in_area": 32, "zoom_in_area_fil": 32, "zoom_in_fil": 32, "zoom_monei": 32, "zoom_out": 32, "zoom_out_area": 32, "zoom_out_fil": 32, "zoom_pan": 32, "pan": 32, "zoom_quest": 32, "zoom_replac": 32, "zoom_reset": 32, "zzz": 32, "zzz_off": 32, "librari": [33, 35], "featur": [33, 35, 37], "primit": [33, 35, 37], "programmat": 33, "entir": 33, "easi": 33, "over": [33, 35, 38], "ssh": 33, "develop": 33, "infra": 34, "infrastructur": 34, "port": [34, 37, 38], "individu": 34, "what": 34, "under": [34, 35], "hood": [34, 35], "unless": 34, "scratch": 34, "websockclientconnect": 34, "websockmessagehandl": 34, "listen": [34, 35], "unsafe_send_messag": 34, "queue_messag": 34, "safe": 34, "register_handl": 34, "message_cl": 34, "tmessag": 34, "clientid": 34, "unregister_handl": 34, "unregist": 34, "mix": 34, "websockserv": 34, "By": [34, 35], "retriev": 34, "host": [34, 37], "bind": [34, 37], "message_class": 34, "have": [34, 35, 37], "argument": [34, 35], "futur": 34, "http_server_root": 34, "verbos": [34, 37], "client_api_vers": 34, "compat": 34, "cb": [34, 37], "newli": [34, 37], "on_client_disconnect": [34, 37], "disconnect": [34, 37], "queue": 34, "persist": 34, "cull": 34, "redundancy_kei": 34, "flush_client": 34, "excluded_self_cli": 34, "as_serializable_dict": 34, "classmethod": [34, 38], "deseri": 34, "get_subclass": 34, "recurs": 34, "redund": 34, "keep": 34, "latest": 34, "typescriptannotationoverrid": 34, "generate_typescript_interfac": 34, "ro": 35, "altern": 35, "maya": 35, "hidden": 35, "ve": 35, "except": 35, "add_glb": 35, "glb_data": 35, "gltf": 35, "glb": [35, 36], "simpler": 35, "programat": 35, "pygltflib": 35, "payload": 35, "r_pl": 35, "t_pl": 35, "curve_typ": 35, "centripet": 35, "chordal": 35, "catmullrom": 35, "scenenodehandl": [35, 36], "catmul": 35, "rom": 35, "interpol": 35, "algorithm": 35, "cubic": 35, "jpeg_qual": 35, "represent": [35, 36, 38], "understand": 35, "coverag": 35, "convent": [35, 38], "qualiti": 35, "025": 35, "origin_radiu": 35, "trajectori": 35, "ten": 35, "batch": [35, 36, 38], "add_batched_ax": 35, "mai": 35, "better": 35, "than": 35, "batched_wxyz": 35, "batched_posit": 35, "batchedaxeshandl": [35, 36], "overlap": 35, "significantli": 35, "primari": 35, "wxyzs_batch": 35, "nx4": 35, "positions_batch": 35, "nx3": 35, "instanc": 35, "much": 35, "cell_color": 35, "cell_thick": 35, "cell_siz": 35, "section_color": 35, "140": 35, "section_thick": 35, "section_s": 35, "refer": [35, 38], "along": 35, "thick": 35, "labelhandl": [35, 36], "pointcloudhandl": [35, 36], "opac": 35, "materi": 35, "toon3": 35, "toon5": 35, "flat_shad": 35, "meshhandl": [35, 36], "vertex": 35, "opaqu": 35, "surfac": 35, "intern": [35, 38], "subdivis": 35, "composit": 35, "render_width": 35, "render_height": 35, "imagehandl": [35, 36], "auto_transform": 35, "active_ax": 35, "disable_rot": 35, "translation_limit": 35, "rotation_limit": 35, "exactli": 35, "anoth": [35, 38], "on_scene_pointer_remov": 35, "p_parent": 36, "p_local": 36, "equival": 36, "doe": 36, "level": 37, "core": 37, "shown": 37, "belong": 37, "get_host": 37, "get_port": 37, "public": 37, "establish": 37, "afterward": 37, "experiment": 37, "shouldn": 37, "critic": 37, "fail": 37, "disconnect_share_url": 37, "dictionari": 37, "rigid": 38, "jaxli": 38, "parameter": 38, "matrixliegroup": 38, "matrix_dim": 38, "classvar": 38, "parameters_dim": 38, "underli": 38, "tangent_dim": 38, "tangent": 38, "space_dim": 38, "__matmul__": 38, "overload": 38, "batch_ax": 38, "lead": 38, "member": 38, "representaiton": 38, "homogen": 38, "compos": 38, "expm": 38, "wedg": 38, "exponenti": 38, "vee": 38, "logm": 38, "adjoint": 38, "grouptyp": 38, "adj_t": 38, "twist": 38, "wrench": 38, "jacobian": 38, "across": 38, "get_batch_ax": 38, "sebas": 38, "containedsotyp": 38, "special": 38, "euclidean": 38, "dimension": 38, "from_rot": 38, "sobas": 38, "orthogon": 38, "se2": 38, "so2": 38, "proper": 38, "rule": 38, "co": 38, "vy": 38, "unit_complex_xi": 38, "from_xy_theta": 38, "theta": 38, "qw": 38, "qx": 38, "qy": 38, "qz": 38, "vz": 38, "omega_x": 38, "omega_i": 38, "omega_z": 38, "wxyz_xyz": 38, "onpt": 38, "unit_complex": 38, "from_radian": 38, "scalar": 38, "as_radian": 38, "from_rpy_radian": 38, "roll": 38, "pitch": 38, "yaw": 38, "euler": 38, "zyx": 38, "second": 38, "from_quaternion_xyzw": 38, "xyzw": 38, "constructor": 38, "as_quaternion_xyzw": 38, "as_rpy_radian": 38, "rollpitchyaw": 38, "compute_roll_radian": 38, "compute_pitch_radian": 38, "compute_yaw_radian": 38}, "objects": {"viser": [[36, 0, 1, "", "BatchedAxesHandle"], [36, 0, 1, "", "CameraFrustumHandle"], [0, 0, 1, "", "CameraHandle"], [1, 0, 1, "", "ClientHandle"], [36, 0, 1, "", "FrameHandle"], [36, 0, 1, "", "GlbHandle"], [36, 0, 1, "", "Gui3dContainerHandle"], [30, 0, 1, "", "GuiApi"], [31, 0, 1, "", "GuiButtonGroupHandle"], [31, 0, 1, "", "GuiButtonHandle"], [31, 0, 1, "", "GuiDropdownHandle"], [4, 0, 1, "", "GuiEvent"], [31, 0, 1, "", "GuiFolderHandle"], [31, 0, 1, "", "GuiInputHandle"], [31, 0, 1, "", "GuiMarkdownHandle"], [31, 0, 1, "", "GuiPlotlyHandle"], [31, 0, 1, "", "GuiTabGroupHandle"], [31, 0, 1, "", "GuiTabHandle"], [32, 0, 1, "", "Icon"], [32, 0, 1, "", "IconName"], [36, 0, 1, "", "ImageHandle"], [36, 0, 1, "", "LabelHandle"], [36, 0, 1, "", "MeshHandle"], [36, 0, 1, "", "PointCloudHandle"], [35, 0, 1, "", "SceneApi"], [36, 0, 1, "", "SceneNodeHandle"], [4, 0, 1, "", "SceneNodePointerEvent"], [4, 0, 1, "", "ScenePointerEvent"], [36, 0, 1, "", "TransformControlsHandle"], [37, 0, 1, "", "ViserServer"], [29, 4, 0, "-", "extras"], [34, 4, 0, "-", "infra"], [38, 4, 0, "-", "transforms"]], "viser.BatchedAxesHandle": [[36, 1, 1, "", "on_click"], [36, 2, 1, "", "position"], [36, 1, 1, "", "remove"], [36, 2, 1, "", "visible"], [36, 2, 1, "", "wxyz"]], "viser.CameraFrustumHandle": [[36, 1, 1, "", "on_click"], [36, 2, 1, "", "position"], [36, 1, 1, "", "remove"], [36, 2, 1, "", "visible"], [36, 2, 1, "", "wxyz"]], "viser.CameraHandle": [[0, 2, 1, "", "aspect"], [0, 2, 1, "", "client"], [0, 2, 1, "", "fov"], [0, 1, 1, "", "get_render"], [0, 2, 1, "", "look_at"], [0, 1, 1, "", "on_update"], [0, 2, 1, "", "position"], [0, 2, 1, "", "up_direction"], [0, 2, 1, "", "update_timestamp"], [0, 2, 1, "", "wxyz"]], "viser.ClientHandle": [[1, 1, 1, "", "atomic"], [1, 3, 1, "", "camera"], [1, 3, 1, "", "client_id"], [1, 1, 1, "", "flush"], [1, 3, 1, "", "gui"], [1, 3, 1, "", "scene"], [1, 1, 1, "", "send_file_download"]], "viser.FrameHandle": [[36, 1, 1, "", "on_click"], [36, 2, 1, "", "position"], [36, 1, 1, "", "remove"], [36, 2, 1, "", "visible"], [36, 2, 1, "", "wxyz"]], "viser.GlbHandle": [[36, 1, 1, "", "on_click"], [36, 2, 1, "", "position"], [36, 1, 1, "", "remove"], [36, 2, 1, "", "visible"], [36, 2, 1, "", "wxyz"]], "viser.Gui3dContainerHandle": [[36, 2, 1, "", "position"], [36, 1, 1, "", "remove"], [36, 2, 1, "", "visible"], [36, 2, 1, "", "wxyz"]], "viser.GuiApi": [[30, 1, 1, "", "add_button"], [30, 1, 1, "", "add_button_group"], [30, 1, 1, "", "add_checkbox"], [30, 1, 1, "", "add_dropdown"], [30, 1, 1, "", "add_folder"], [30, 1, 1, "", "add_markdown"], [30, 1, 1, "", "add_modal"], [30, 1, 1, "", "add_multi_slider"], [30, 1, 1, "", "add_number"], [30, 1, 1, "", "add_plotly"], [30, 1, 1, "", "add_rgb"], [30, 1, 1, "", "add_rgba"], [30, 1, 1, "", "add_slider"], [30, 1, 1, "", "add_tab_group"], [30, 1, 1, "", "add_text"], [30, 1, 1, "", "add_upload_button"], [30, 1, 1, "", "add_vector2"], [30, 1, 1, "", "add_vector3"], [30, 1, 1, "", "configure_theme"], [30, 1, 1, "", "set_panel_label"]], "viser.GuiButtonGroupHandle": [[31, 1, 1, "", "__post_init__"], [31, 2, 1, "", "disabled"], [31, 1, 1, "", "on_click"], [31, 2, 1, "", "order"], [31, 1, 1, "", "remove"], [31, 2, 1, "", "update_timestamp"], [31, 2, 1, "", "value"], [31, 2, 1, "", "visible"]], "viser.GuiButtonHandle": [[31, 1, 1, "", "__post_init__"], [31, 2, 1, "", "disabled"], [31, 1, 1, "", "on_click"], [31, 2, 1, "", "order"], [31, 1, 1, "", "remove"], [31, 2, 1, "", "update_timestamp"], [31, 2, 1, "", "value"], [31, 2, 1, "", "visible"]], "viser.GuiDropdownHandle": [[31, 1, 1, "", "__post_init__"], [31, 2, 1, "", "disabled"], [31, 1, 1, "", "on_update"], [31, 2, 1, "", "options"], [31, 2, 1, "", "order"], [31, 1, 1, "", "remove"], [31, 2, 1, "", "update_timestamp"], [31, 2, 1, "", "value"], [31, 2, 1, "", "visible"]], "viser.GuiEvent": [[4, 3, 1, "", "client"], [4, 3, 1, "", "client_id"], [4, 3, 1, "", "target"]], "viser.GuiFolderHandle": [[31, 2, 1, "", "order"], [31, 1, 1, "", "remove"]], "viser.GuiInputHandle": [[31, 1, 1, "", "__post_init__"], [31, 2, 1, "", "disabled"], [31, 1, 1, "", "on_update"], [31, 2, 1, "", "order"], [31, 1, 1, "", "remove"], [31, 2, 1, "", "update_timestamp"], [31, 2, 1, "", "value"], [31, 2, 1, "", "visible"]], "viser.GuiMarkdownHandle": [[31, 1, 1, "", "__post_init__"], [31, 2, 1, "", "content"], [31, 2, 1, "", "order"], [31, 1, 1, "", "remove"], [31, 2, 1, "", "visible"]], "viser.GuiPlotlyHandle": [[31, 1, 1, "", "__post_init__"], [31, 2, 1, "", "aspect"], [31, 2, 1, "", "figure"], [31, 2, 1, "", "order"], [31, 1, 1, "", "remove"], [31, 2, 1, "", "visible"]], "viser.GuiTabGroupHandle": [[31, 1, 1, "", "add_tab"], [31, 2, 1, "", "order"], [31, 1, 1, "", "remove"]], "viser.GuiTabHandle": [[31, 1, 1, "", "remove"]], "viser.Icon": [[32, 3, 1, "", "ABACUS"], [32, 3, 1, "", "ABACUS_OFF"], [32, 3, 1, "", "ABC"], [32, 3, 1, "", "ACCESSIBLE"], [32, 3, 1, "", "ACCESSIBLE_OFF"], [32, 3, 1, "", "ACCESSIBLE_OFF_FILLED"], [32, 3, 1, "", "ACCESS_POINT"], [32, 3, 1, "", "ACCESS_POINT_OFF"], [32, 3, 1, "", "ACTIVITY"], [32, 3, 1, "", "ACTIVITY_HEARTBEAT"], [32, 3, 1, "", "AD"], [32, 3, 1, "", "ADDRESS_BOOK"], [32, 3, 1, "", "ADDRESS_BOOK_OFF"], [32, 3, 1, "", "ADJUSTMENTS"], [32, 3, 1, "", "ADJUSTMENTS_ALT"], [32, 3, 1, "", "ADJUSTMENTS_BOLT"], [32, 3, 1, "", "ADJUSTMENTS_CANCEL"], [32, 3, 1, "", "ADJUSTMENTS_CHECK"], [32, 3, 1, "", "ADJUSTMENTS_CODE"], [32, 3, 1, "", "ADJUSTMENTS_COG"], [32, 3, 1, "", "ADJUSTMENTS_DOLLAR"], [32, 3, 1, "", "ADJUSTMENTS_DOWN"], [32, 3, 1, "", "ADJUSTMENTS_EXCLAMATION"], [32, 3, 1, "", "ADJUSTMENTS_FILLED"], [32, 3, 1, "", "ADJUSTMENTS_HEART"], [32, 3, 1, "", "ADJUSTMENTS_HORIZONTAL"], [32, 3, 1, "", "ADJUSTMENTS_MINUS"], [32, 3, 1, "", "ADJUSTMENTS_OFF"], [32, 3, 1, "", "ADJUSTMENTS_PAUSE"], [32, 3, 1, "", "ADJUSTMENTS_PIN"], [32, 3, 1, "", "ADJUSTMENTS_PLUS"], [32, 3, 1, "", "ADJUSTMENTS_QUESTION"], [32, 3, 1, "", "ADJUSTMENTS_SEARCH"], [32, 3, 1, "", "ADJUSTMENTS_SHARE"], [32, 3, 1, "", "ADJUSTMENTS_STAR"], [32, 3, 1, "", "ADJUSTMENTS_UP"], [32, 3, 1, "", "ADJUSTMENTS_X"], [32, 3, 1, "", "AD_2"], [32, 3, 1, "", "AD_CIRCLE"], [32, 3, 1, "", "AD_CIRCLE_FILLED"], [32, 3, 1, "", "AD_CIRCLE_OFF"], [32, 3, 1, "", "AD_FILLED"], [32, 3, 1, "", "AD_OFF"], [32, 3, 1, "", "AERIAL_LIFT"], [32, 3, 1, "", "AFFILIATE"], [32, 3, 1, "", "AFFILIATE_FILLED"], [32, 3, 1, "", "AIR_BALLOON"], [32, 3, 1, "", "AIR_CONDITIONING"], [32, 3, 1, "", "AIR_CONDITIONING_DISABLED"], [32, 3, 1, "", "ALARM"], [32, 3, 1, "", "ALARM_FILLED"], [32, 3, 1, "", "ALARM_MINUS"], [32, 3, 1, "", "ALARM_MINUS_FILLED"], [32, 3, 1, "", "ALARM_OFF"], [32, 3, 1, "", "ALARM_PLUS"], [32, 3, 1, "", "ALARM_PLUS_FILLED"], [32, 3, 1, "", "ALARM_SNOOZE"], [32, 3, 1, "", "ALARM_SNOOZE_FILLED"], [32, 3, 1, "", "ALBUM"], [32, 3, 1, "", "ALBUM_OFF"], [32, 3, 1, "", "ALERT_CIRCLE"], [32, 3, 1, "", "ALERT_CIRCLE_FILLED"], [32, 3, 1, "", "ALERT_HEXAGON"], [32, 3, 1, "", "ALERT_HEXAGON_FILLED"], [32, 3, 1, "", "ALERT_OCTAGON"], [32, 3, 1, "", "ALERT_OCTAGON_FILLED"], [32, 3, 1, "", "ALERT_SMALL"], [32, 3, 1, "", "ALERT_SQUARE"], [32, 3, 1, "", "ALERT_SQUARE_FILLED"], [32, 3, 1, "", "ALERT_SQUARE_ROUNDED"], [32, 3, 1, "", "ALERT_SQUARE_ROUNDED_FILLED"], [32, 3, 1, "", "ALERT_TRIANGLE"], [32, 3, 1, "", "ALERT_TRIANGLE_FILLED"], [32, 3, 1, "", "ALIEN"], [32, 3, 1, "", "ALIEN_FILLED"], [32, 3, 1, "", "ALIGN_BOX_BOTTOM_CENTER"], [32, 3, 1, "", "ALIGN_BOX_BOTTOM_CENTER_FILLED"], [32, 3, 1, "", "ALIGN_BOX_BOTTOM_LEFT"], [32, 3, 1, "", "ALIGN_BOX_BOTTOM_LEFT_FILLED"], [32, 3, 1, "", "ALIGN_BOX_BOTTOM_RIGHT"], [32, 3, 1, "", "ALIGN_BOX_BOTTOM_RIGHT_FILLED"], [32, 3, 1, "", "ALIGN_BOX_CENTER_BOTTOM"], [32, 3, 1, "", "ALIGN_BOX_CENTER_MIDDLE"], [32, 3, 1, "", "ALIGN_BOX_CENTER_MIDDLE_FILLED"], [32, 3, 1, "", "ALIGN_BOX_CENTER_STRETCH"], [32, 3, 1, "", "ALIGN_BOX_CENTER_TOP"], [32, 3, 1, "", "ALIGN_BOX_LEFT_BOTTOM"], [32, 3, 1, "", "ALIGN_BOX_LEFT_BOTTOM_FILLED"], [32, 3, 1, "", "ALIGN_BOX_LEFT_MIDDLE"], [32, 3, 1, "", "ALIGN_BOX_LEFT_MIDDLE_FILLED"], [32, 3, 1, "", "ALIGN_BOX_LEFT_STRETCH"], [32, 3, 1, "", "ALIGN_BOX_LEFT_TOP"], [32, 3, 1, "", "ALIGN_BOX_LEFT_TOP_FILLED"], [32, 3, 1, "", "ALIGN_BOX_RIGHT_BOTTOM"], [32, 3, 1, "", "ALIGN_BOX_RIGHT_BOTTOM_FILLED"], [32, 3, 1, "", "ALIGN_BOX_RIGHT_MIDDLE"], [32, 3, 1, "", "ALIGN_BOX_RIGHT_MIDDLE_FILLED"], [32, 3, 1, "", "ALIGN_BOX_RIGHT_STRETCH"], [32, 3, 1, "", "ALIGN_BOX_RIGHT_TOP"], [32, 3, 1, "", "ALIGN_BOX_RIGHT_TOP_FILLED"], [32, 3, 1, "", "ALIGN_BOX_TOP_CENTER"], [32, 3, 1, "", "ALIGN_BOX_TOP_CENTER_FILLED"], [32, 3, 1, "", "ALIGN_BOX_TOP_LEFT"], [32, 3, 1, "", "ALIGN_BOX_TOP_LEFT_FILLED"], [32, 3, 1, "", "ALIGN_BOX_TOP_RIGHT"], [32, 3, 1, "", "ALIGN_BOX_TOP_RIGHT_FILLED"], [32, 3, 1, "", "ALIGN_CENTER"], [32, 3, 1, "", "ALIGN_JUSTIFIED"], [32, 3, 1, "", "ALIGN_LEFT"], [32, 3, 1, "", "ALIGN_RIGHT"], [32, 3, 1, "", "ALPHA"], [32, 3, 1, "", "ALPHABET_CYRILLIC"], [32, 3, 1, "", "ALPHABET_GREEK"], [32, 3, 1, "", "ALPHABET_LATIN"], [32, 3, 1, "", "AMBULANCE"], [32, 3, 1, "", "AMPERSAND"], [32, 3, 1, "", "ANALYZE"], [32, 3, 1, "", "ANALYZE_FILLED"], [32, 3, 1, "", "ANALYZE_OFF"], [32, 3, 1, "", "ANCHOR"], [32, 3, 1, "", "ANCHOR_OFF"], [32, 3, 1, "", "ANGLE"], [32, 3, 1, "", "ANKH"], [32, 3, 1, "", "ANTENNA"], [32, 3, 1, "", "ANTENNA_BARS_1"], [32, 3, 1, "", "ANTENNA_BARS_2"], [32, 3, 1, "", "ANTENNA_BARS_3"], [32, 3, 1, "", "ANTENNA_BARS_4"], [32, 3, 1, "", "ANTENNA_BARS_5"], [32, 3, 1, "", "ANTENNA_BARS_OFF"], [32, 3, 1, "", "ANTENNA_OFF"], [32, 3, 1, "", "APERTURE"], [32, 3, 1, "", "APERTURE_OFF"], [32, 3, 1, "", "API"], [32, 3, 1, "", "API_APP"], [32, 3, 1, "", "API_APP_OFF"], [32, 3, 1, "", "API_OFF"], [32, 3, 1, "", "APPLE"], [32, 3, 1, "", "APPS"], [32, 3, 1, "", "APPS_FILLED"], [32, 3, 1, "", "APPS_OFF"], [32, 3, 1, "", "APP_WINDOW"], [32, 3, 1, "", "APP_WINDOW_FILLED"], [32, 3, 1, "", "ARCHIVE"], [32, 3, 1, "", "ARCHIVE_FILLED"], [32, 3, 1, "", "ARCHIVE_OFF"], [32, 3, 1, "", "ARMCHAIR"], [32, 3, 1, "", "ARMCHAIR_2"], [32, 3, 1, "", "ARMCHAIR_2_OFF"], [32, 3, 1, "", "ARMCHAIR_OFF"], [32, 3, 1, "", "ARROWS_CROSS"], [32, 3, 1, "", "ARROWS_DIAGONAL"], [32, 3, 1, "", "ARROWS_DIAGONAL_2"], [32, 3, 1, "", "ARROWS_DIAGONAL_MINIMIZE"], [32, 3, 1, "", "ARROWS_DIAGONAL_MINIMIZE_2"], [32, 3, 1, "", "ARROWS_DIFF"], [32, 3, 1, "", "ARROWS_DOUBLE_NE_SW"], [32, 3, 1, "", "ARROWS_DOUBLE_NW_SE"], [32, 3, 1, "", "ARROWS_DOUBLE_SE_NW"], [32, 3, 1, "", "ARROWS_DOUBLE_SW_NE"], [32, 3, 1, "", "ARROWS_DOWN"], [32, 3, 1, "", "ARROWS_DOWN_UP"], [32, 3, 1, "", "ARROWS_EXCHANGE"], [32, 3, 1, "", "ARROWS_EXCHANGE_2"], [32, 3, 1, "", "ARROWS_HORIZONTAL"], [32, 3, 1, "", "ARROWS_JOIN"], [32, 3, 1, "", "ARROWS_JOIN_2"], [32, 3, 1, "", "ARROWS_LEFT"], [32, 3, 1, "", "ARROWS_LEFT_DOWN"], [32, 3, 1, "", "ARROWS_LEFT_RIGHT"], [32, 3, 1, "", "ARROWS_MAXIMIZE"], [32, 3, 1, "", "ARROWS_MINIMIZE"], [32, 3, 1, "", "ARROWS_MOVE"], [32, 3, 1, "", "ARROWS_MOVE_HORIZONTAL"], [32, 3, 1, "", "ARROWS_MOVE_VERTICAL"], [32, 3, 1, "", "ARROWS_RANDOM"], [32, 3, 1, "", "ARROWS_RIGHT"], [32, 3, 1, "", "ARROWS_RIGHT_DOWN"], [32, 3, 1, "", "ARROWS_RIGHT_LEFT"], [32, 3, 1, "", "ARROWS_SHUFFLE"], [32, 3, 1, "", "ARROWS_SHUFFLE_2"], [32, 3, 1, "", "ARROWS_SORT"], [32, 3, 1, "", "ARROWS_SPLIT"], [32, 3, 1, "", "ARROWS_SPLIT_2"], [32, 3, 1, "", "ARROWS_TRANSFER_DOWN"], [32, 3, 1, "", "ARROWS_TRANSFER_UP"], [32, 3, 1, "", "ARROWS_UP"], [32, 3, 1, "", "ARROWS_UP_DOWN"], [32, 3, 1, "", "ARROWS_UP_LEFT"], [32, 3, 1, "", "ARROWS_UP_RIGHT"], [32, 3, 1, "", "ARROWS_VERTICAL"], [32, 3, 1, "", "ARROW_AUTOFIT_CONTENT"], [32, 3, 1, "", "ARROW_AUTOFIT_CONTENT_FILLED"], [32, 3, 1, "", "ARROW_AUTOFIT_DOWN"], [32, 3, 1, "", "ARROW_AUTOFIT_HEIGHT"], [32, 3, 1, "", "ARROW_AUTOFIT_LEFT"], [32, 3, 1, "", "ARROW_AUTOFIT_RIGHT"], [32, 3, 1, "", "ARROW_AUTOFIT_UP"], [32, 3, 1, "", "ARROW_AUTOFIT_WIDTH"], [32, 3, 1, "", "ARROW_BACK"], [32, 3, 1, "", "ARROW_BACK_UP"], [32, 3, 1, "", "ARROW_BACK_UP_DOUBLE"], [32, 3, 1, "", "ARROW_BADGE_DOWN"], [32, 3, 1, "", "ARROW_BADGE_DOWN_FILLED"], [32, 3, 1, "", "ARROW_BADGE_LEFT"], [32, 3, 1, "", "ARROW_BADGE_LEFT_FILLED"], [32, 3, 1, "", "ARROW_BADGE_RIGHT"], [32, 3, 1, "", "ARROW_BADGE_RIGHT_FILLED"], [32, 3, 1, "", "ARROW_BADGE_UP"], [32, 3, 1, "", "ARROW_BADGE_UP_FILLED"], [32, 3, 1, "", "ARROW_BAR_BOTH"], [32, 3, 1, "", "ARROW_BAR_DOWN"], [32, 3, 1, "", "ARROW_BAR_LEFT"], [32, 3, 1, "", "ARROW_BAR_RIGHT"], [32, 3, 1, "", "ARROW_BAR_TO_DOWN"], [32, 3, 1, "", "ARROW_BAR_TO_LEFT"], [32, 3, 1, "", "ARROW_BAR_TO_RIGHT"], [32, 3, 1, "", "ARROW_BAR_TO_UP"], [32, 3, 1, "", "ARROW_BAR_UP"], [32, 3, 1, "", "ARROW_BEAR_LEFT"], [32, 3, 1, "", "ARROW_BEAR_LEFT_2"], [32, 3, 1, "", "ARROW_BEAR_RIGHT"], [32, 3, 1, "", "ARROW_BEAR_RIGHT_2"], [32, 3, 1, "", "ARROW_BIG_DOWN"], [32, 3, 1, "", "ARROW_BIG_DOWN_FILLED"], [32, 3, 1, "", "ARROW_BIG_DOWN_LINE"], [32, 3, 1, "", "ARROW_BIG_DOWN_LINES"], [32, 3, 1, "", "ARROW_BIG_DOWN_LINES_FILLED"], [32, 3, 1, "", "ARROW_BIG_DOWN_LINE_FILLED"], [32, 3, 1, "", "ARROW_BIG_LEFT"], [32, 3, 1, "", "ARROW_BIG_LEFT_FILLED"], [32, 3, 1, "", "ARROW_BIG_LEFT_LINE"], [32, 3, 1, "", "ARROW_BIG_LEFT_LINES"], [32, 3, 1, "", "ARROW_BIG_LEFT_LINES_FILLED"], [32, 3, 1, "", "ARROW_BIG_LEFT_LINE_FILLED"], [32, 3, 1, "", "ARROW_BIG_RIGHT"], [32, 3, 1, "", "ARROW_BIG_RIGHT_FILLED"], [32, 3, 1, "", "ARROW_BIG_RIGHT_LINE"], [32, 3, 1, "", "ARROW_BIG_RIGHT_LINES"], [32, 3, 1, "", "ARROW_BIG_RIGHT_LINES_FILLED"], [32, 3, 1, "", "ARROW_BIG_RIGHT_LINE_FILLED"], [32, 3, 1, "", "ARROW_BIG_UP"], [32, 3, 1, "", "ARROW_BIG_UP_FILLED"], [32, 3, 1, "", "ARROW_BIG_UP_LINE"], [32, 3, 1, "", "ARROW_BIG_UP_LINES"], [32, 3, 1, "", "ARROW_BIG_UP_LINES_FILLED"], [32, 3, 1, "", "ARROW_BIG_UP_LINE_FILLED"], [32, 3, 1, "", "ARROW_BOUNCE"], [32, 3, 1, "", "ARROW_CAPSULE"], [32, 3, 1, "", "ARROW_CURVE_LEFT"], [32, 3, 1, "", "ARROW_CURVE_RIGHT"], [32, 3, 1, "", "ARROW_DOWN"], [32, 3, 1, "", "ARROW_DOWN_BAR"], [32, 3, 1, "", "ARROW_DOWN_CIRCLE"], [32, 3, 1, "", "ARROW_DOWN_LEFT"], [32, 3, 1, "", "ARROW_DOWN_LEFT_CIRCLE"], [32, 3, 1, "", "ARROW_DOWN_RHOMBUS"], [32, 3, 1, "", "ARROW_DOWN_RIGHT"], [32, 3, 1, "", "ARROW_DOWN_RIGHT_CIRCLE"], [32, 3, 1, "", "ARROW_DOWN_SQUARE"], [32, 3, 1, "", "ARROW_DOWN_TAIL"], [32, 3, 1, "", "ARROW_ELBOW_LEFT"], [32, 3, 1, "", "ARROW_ELBOW_RIGHT"], [32, 3, 1, "", "ARROW_FORK"], [32, 3, 1, "", "ARROW_FORWARD"], [32, 3, 1, "", "ARROW_FORWARD_UP"], [32, 3, 1, "", "ARROW_FORWARD_UP_DOUBLE"], [32, 3, 1, "", "ARROW_GUIDE"], [32, 3, 1, "", "ARROW_ITERATION"], [32, 3, 1, "", "ARROW_LEFT"], [32, 3, 1, "", "ARROW_LEFT_BAR"], [32, 3, 1, "", "ARROW_LEFT_CIRCLE"], [32, 3, 1, "", "ARROW_LEFT_RHOMBUS"], [32, 3, 1, "", "ARROW_LEFT_RIGHT"], [32, 3, 1, "", "ARROW_LEFT_SQUARE"], [32, 3, 1, "", "ARROW_LEFT_TAIL"], [32, 3, 1, "", "ARROW_LOOP_LEFT"], [32, 3, 1, "", "ARROW_LOOP_LEFT_2"], [32, 3, 1, "", "ARROW_LOOP_RIGHT"], [32, 3, 1, "", "ARROW_LOOP_RIGHT_2"], [32, 3, 1, "", "ARROW_MERGE"], [32, 3, 1, "", "ARROW_MERGE_BOTH"], [32, 3, 1, "", "ARROW_MERGE_LEFT"], [32, 3, 1, "", "ARROW_MERGE_RIGHT"], [32, 3, 1, "", "ARROW_MOVE_DOWN"], [32, 3, 1, "", "ARROW_MOVE_LEFT"], [32, 3, 1, "", "ARROW_MOVE_RIGHT"], [32, 3, 1, "", "ARROW_MOVE_UP"], [32, 3, 1, "", "ARROW_NARROW_DOWN"], [32, 3, 1, "", "ARROW_NARROW_LEFT"], [32, 3, 1, "", "ARROW_NARROW_RIGHT"], [32, 3, 1, "", "ARROW_NARROW_UP"], [32, 3, 1, "", "ARROW_RAMP_LEFT"], [32, 3, 1, "", "ARROW_RAMP_LEFT_2"], [32, 3, 1, "", "ARROW_RAMP_LEFT_3"], [32, 3, 1, "", "ARROW_RAMP_RIGHT"], [32, 3, 1, "", "ARROW_RAMP_RIGHT_2"], [32, 3, 1, "", "ARROW_RAMP_RIGHT_3"], [32, 3, 1, "", "ARROW_RIGHT"], [32, 3, 1, "", "ARROW_RIGHT_BAR"], [32, 3, 1, "", "ARROW_RIGHT_CIRCLE"], [32, 3, 1, "", "ARROW_RIGHT_RHOMBUS"], [32, 3, 1, "", "ARROW_RIGHT_SQUARE"], [32, 3, 1, "", "ARROW_RIGHT_TAIL"], [32, 3, 1, "", "ARROW_ROTARY_FIRST_LEFT"], [32, 3, 1, "", "ARROW_ROTARY_FIRST_RIGHT"], [32, 3, 1, "", "ARROW_ROTARY_LAST_LEFT"], [32, 3, 1, "", "ARROW_ROTARY_LAST_RIGHT"], [32, 3, 1, "", "ARROW_ROTARY_LEFT"], [32, 3, 1, "", "ARROW_ROTARY_RIGHT"], [32, 3, 1, "", "ARROW_ROTARY_STRAIGHT"], [32, 3, 1, "", "ARROW_ROUNDABOUT_LEFT"], [32, 3, 1, "", "ARROW_ROUNDABOUT_RIGHT"], [32, 3, 1, "", "ARROW_SHARP_TURN_LEFT"], [32, 3, 1, "", "ARROW_SHARP_TURN_RIGHT"], [32, 3, 1, "", "ARROW_UP"], [32, 3, 1, "", "ARROW_UP_BAR"], [32, 3, 1, "", "ARROW_UP_CIRCLE"], [32, 3, 1, "", "ARROW_UP_LEFT"], [32, 3, 1, "", "ARROW_UP_LEFT_CIRCLE"], [32, 3, 1, "", "ARROW_UP_RHOMBUS"], [32, 3, 1, "", "ARROW_UP_RIGHT"], [32, 3, 1, "", "ARROW_UP_RIGHT_CIRCLE"], [32, 3, 1, "", "ARROW_UP_SQUARE"], [32, 3, 1, "", "ARROW_UP_TAIL"], [32, 3, 1, "", "ARROW_WAVE_LEFT_DOWN"], [32, 3, 1, "", "ARROW_WAVE_LEFT_UP"], [32, 3, 1, "", "ARROW_WAVE_RIGHT_DOWN"], [32, 3, 1, "", "ARROW_WAVE_RIGHT_UP"], [32, 3, 1, "", "ARROW_ZIG_ZAG"], [32, 3, 1, "", "ARTBOARD"], [32, 3, 1, "", "ARTBOARD_FILLED"], [32, 3, 1, "", "ARTBOARD_OFF"], [32, 3, 1, "", "ARTICLE"], [32, 3, 1, "", "ARTICLE_FILLED_FILLED"], [32, 3, 1, "", "ARTICLE_OFF"], [32, 3, 1, "", "ASPECT_RATIO"], [32, 3, 1, "", "ASPECT_RATIO_FILLED"], [32, 3, 1, "", "ASPECT_RATIO_OFF"], [32, 3, 1, "", "ASSEMBLY"], [32, 3, 1, "", "ASSEMBLY_OFF"], [32, 3, 1, "", "ASSET"], [32, 3, 1, "", "ASTERISK"], [32, 3, 1, "", "ASTERISK_SIMPLE"], [32, 3, 1, "", "AT"], [32, 3, 1, "", "ATOM"], [32, 3, 1, "", "ATOM_2"], [32, 3, 1, "", "ATOM_2_FILLED"], [32, 3, 1, "", "ATOM_OFF"], [32, 3, 1, "", "AT_OFF"], [32, 3, 1, "", "AUGMENTED_REALITY"], [32, 3, 1, "", "AUGMENTED_REALITY_2"], [32, 3, 1, "", "AUGMENTED_REALITY_OFF"], [32, 3, 1, "", "AWARD"], [32, 3, 1, "", "AWARD_FILLED"], [32, 3, 1, "", "AWARD_OFF"], [32, 3, 1, "", "AXE"], [32, 3, 1, "", "AXIS_X"], [32, 3, 1, "", "AXIS_Y"], [32, 3, 1, "", "A_B"], [32, 3, 1, "", "A_B_2"], [32, 3, 1, "", "A_B_OFF"], [32, 3, 1, "", "BABY_BOTTLE"], [32, 3, 1, "", "BABY_CARRIAGE"], [32, 3, 1, "", "BACKHOE"], [32, 3, 1, "", "BACKPACK"], [32, 3, 1, "", "BACKPACK_OFF"], [32, 3, 1, "", "BACKSLASH"], [32, 3, 1, "", "BACKSPACE"], [32, 3, 1, "", "BACKSPACE_FILLED"], [32, 3, 1, "", "BADGE"], [32, 3, 1, "", "BADGES"], [32, 3, 1, "", "BADGES_FILLED"], [32, 3, 1, "", "BADGES_OFF"], [32, 3, 1, "", "BADGE_3D"], [32, 3, 1, "", "BADGE_4K"], [32, 3, 1, "", "BADGE_8K"], [32, 3, 1, "", "BADGE_AD"], [32, 3, 1, "", "BADGE_AR"], [32, 3, 1, "", "BADGE_CC"], [32, 3, 1, "", "BADGE_FILLED"], [32, 3, 1, "", "BADGE_HD"], [32, 3, 1, "", "BADGE_OFF"], [32, 3, 1, "", "BADGE_SD"], [32, 3, 1, "", "BADGE_TM"], [32, 3, 1, "", "BADGE_VO"], [32, 3, 1, "", "BADGE_VR"], [32, 3, 1, "", "BADGE_WC"], [32, 3, 1, "", "BAGUETTE"], [32, 3, 1, "", "BALLOON"], [32, 3, 1, "", "BALLOON_FILLED"], [32, 3, 1, "", "BALLOON_OFF"], [32, 3, 1, "", "BALLPEN"], [32, 3, 1, "", "BALLPEN_FILLED"], [32, 3, 1, "", "BALLPEN_OFF"], [32, 3, 1, "", "BALL_AMERICAN_FOOTBALL"], [32, 3, 1, "", "BALL_AMERICAN_FOOTBALL_OFF"], [32, 3, 1, "", "BALL_BASEBALL"], [32, 3, 1, "", "BALL_BASKETBALL"], [32, 3, 1, "", "BALL_BOWLING"], [32, 3, 1, "", "BALL_FOOTBALL"], [32, 3, 1, "", "BALL_FOOTBALL_OFF"], [32, 3, 1, "", "BALL_TENNIS"], [32, 3, 1, "", "BALL_VOLLEYBALL"], [32, 3, 1, "", "BAN"], [32, 3, 1, "", "BANDAGE"], [32, 3, 1, "", "BANDAGE_FILLED"], [32, 3, 1, "", "BANDAGE_OFF"], [32, 3, 1, "", "BARBELL"], [32, 3, 1, "", "BARBELL_OFF"], [32, 3, 1, "", "BARCODE"], [32, 3, 1, "", "BARCODE_OFF"], [32, 3, 1, "", "BARREL"], [32, 3, 1, "", "BARREL_OFF"], [32, 3, 1, "", "BARRIER_BLOCK"], [32, 3, 1, "", "BARRIER_BLOCK_OFF"], [32, 3, 1, "", "BASELINE"], [32, 3, 1, "", "BASELINE_DENSITY_LARGE"], [32, 3, 1, "", "BASELINE_DENSITY_MEDIUM"], [32, 3, 1, "", "BASELINE_DENSITY_SMALL"], [32, 3, 1, "", "BASKET"], [32, 3, 1, "", "BASKET_FILLED"], [32, 3, 1, "", "BASKET_OFF"], [32, 3, 1, "", "BAT"], [32, 3, 1, "", "BATH"], [32, 3, 1, "", "BATH_FILLED"], [32, 3, 1, "", "BATH_OFF"], [32, 3, 1, "", "BATTERY"], [32, 3, 1, "", "BATTERY_1"], [32, 3, 1, "", "BATTERY_1_FILLED"], [32, 3, 1, "", "BATTERY_2"], [32, 3, 1, "", "BATTERY_2_FILLED"], [32, 3, 1, "", "BATTERY_3"], [32, 3, 1, "", "BATTERY_3_FILLED"], [32, 3, 1, "", "BATTERY_4"], [32, 3, 1, "", "BATTERY_4_FILLED"], [32, 3, 1, "", "BATTERY_AUTOMOTIVE"], [32, 3, 1, "", "BATTERY_CHARGING"], [32, 3, 1, "", "BATTERY_CHARGING_2"], [32, 3, 1, "", "BATTERY_ECO"], [32, 3, 1, "", "BATTERY_FILLED"], [32, 3, 1, "", "BATTERY_OFF"], [32, 3, 1, "", "BEACH"], [32, 3, 1, "", "BEACH_OFF"], [32, 3, 1, "", "BED"], [32, 3, 1, "", "BED_FILLED"], [32, 3, 1, "", "BED_OFF"], [32, 3, 1, "", "BEER"], [32, 3, 1, "", "BEER_FILLED"], [32, 3, 1, "", "BEER_OFF"], [32, 3, 1, "", "BELL"], [32, 3, 1, "", "BELL_BOLT"], [32, 3, 1, "", "BELL_CANCEL"], [32, 3, 1, "", "BELL_CHECK"], [32, 3, 1, "", "BELL_CODE"], [32, 3, 1, "", "BELL_COG"], [32, 3, 1, "", "BELL_DOLLAR"], [32, 3, 1, "", "BELL_DOWN"], [32, 3, 1, "", "BELL_EXCLAMATION"], [32, 3, 1, "", "BELL_FILLED"], [32, 3, 1, "", "BELL_HEART"], [32, 3, 1, "", "BELL_MINUS"], [32, 3, 1, "", "BELL_MINUS_FILLED"], [32, 3, 1, "", "BELL_OFF"], [32, 3, 1, "", "BELL_PAUSE"], [32, 3, 1, "", "BELL_PIN"], [32, 3, 1, "", "BELL_PLUS"], [32, 3, 1, "", "BELL_PLUS_FILLED"], [32, 3, 1, "", "BELL_QUESTION"], [32, 3, 1, "", "BELL_RINGING"], [32, 3, 1, "", "BELL_RINGING_2"], [32, 3, 1, "", "BELL_RINGING_2_FILLED"], [32, 3, 1, "", "BELL_RINGING_FILLED"], [32, 3, 1, "", "BELL_SCHOOL"], [32, 3, 1, "", "BELL_SEARCH"], [32, 3, 1, "", "BELL_SHARE"], [32, 3, 1, "", "BELL_STAR"], [32, 3, 1, "", "BELL_UP"], [32, 3, 1, "", "BELL_X"], [32, 3, 1, "", "BELL_X_FILLED"], [32, 3, 1, "", "BELL_Z"], [32, 3, 1, "", "BELL_Z_FILLED"], [32, 3, 1, "", "BETA"], [32, 3, 1, "", "BIBLE"], [32, 3, 1, "", "BIKE"], [32, 3, 1, "", "BIKE_OFF"], [32, 3, 1, "", "BINARY"], [32, 3, 1, "", "BINARY_OFF"], [32, 3, 1, "", "BINARY_TREE"], [32, 3, 1, "", "BINARY_TREE_2"], [32, 3, 1, "", "BIOHAZARD"], [32, 3, 1, "", "BIOHAZARD_OFF"], [32, 3, 1, "", "BLADE"], [32, 3, 1, "", "BLADE_FILLED"], [32, 3, 1, "", "BLEACH"], [32, 3, 1, "", "BLEACH_CHLORINE"], [32, 3, 1, "", "BLEACH_NO_CHLORINE"], [32, 3, 1, "", "BLEACH_OFF"], [32, 3, 1, "", "BLOCKQUOTE"], [32, 3, 1, "", "BLUETOOTH"], [32, 3, 1, "", "BLUETOOTH_CONNECTED"], [32, 3, 1, "", "BLUETOOTH_OFF"], [32, 3, 1, "", "BLUETOOTH_X"], [32, 3, 1, "", "BLUR"], [32, 3, 1, "", "BLUR_OFF"], [32, 3, 1, "", "BMP"], [32, 3, 1, "", "BOLD"], [32, 3, 1, "", "BOLD_OFF"], [32, 3, 1, "", "BOLT"], [32, 3, 1, "", "BOLT_OFF"], [32, 3, 1, "", "BOMB"], [32, 3, 1, "", "BOMB_FILLED"], [32, 3, 1, "", "BONE"], [32, 3, 1, "", "BONE_OFF"], [32, 3, 1, "", "BONG"], [32, 3, 1, "", "BONG_OFF"], [32, 3, 1, "", "BOOK"], [32, 3, 1, "", "BOOKMARK"], [32, 3, 1, "", "BOOKMARKS"], [32, 3, 1, "", "BOOKMARKS_OFF"], [32, 3, 1, "", "BOOKMARK_EDIT"], [32, 3, 1, "", "BOOKMARK_FILLED"], [32, 3, 1, "", "BOOKMARK_MINUS"], [32, 3, 1, "", "BOOKMARK_OFF"], [32, 3, 1, "", "BOOKMARK_PLUS"], [32, 3, 1, "", "BOOKMARK_QUESTION"], [32, 3, 1, "", "BOOKS"], [32, 3, 1, "", "BOOKS_OFF"], [32, 3, 1, "", "BOOK_2"], [32, 3, 1, "", "BOOK_DOWNLOAD"], [32, 3, 1, "", "BOOK_FILLED"], [32, 3, 1, "", "BOOK_OFF"], [32, 3, 1, "", "BOOK_UPLOAD"], [32, 3, 1, "", "BORDER_ALL"], [32, 3, 1, "", "BORDER_BOTTOM"], [32, 3, 1, "", "BORDER_CORNERS"], [32, 3, 1, "", "BORDER_HORIZONTAL"], [32, 3, 1, "", "BORDER_INNER"], [32, 3, 1, "", "BORDER_LEFT"], [32, 3, 1, "", "BORDER_NONE"], [32, 3, 1, "", "BORDER_OUTER"], [32, 3, 1, "", "BORDER_RADIUS"], [32, 3, 1, "", "BORDER_RIGHT"], [32, 3, 1, "", "BORDER_SIDES"], [32, 3, 1, "", "BORDER_STYLE"], [32, 3, 1, "", "BORDER_STYLE_2"], [32, 3, 1, "", "BORDER_TOP"], [32, 3, 1, "", "BORDER_VERTICAL"], [32, 3, 1, "", "BOTTLE"], [32, 3, 1, "", "BOTTLE_FILLED"], [32, 3, 1, "", "BOTTLE_OFF"], [32, 3, 1, "", "BOUNCE_LEFT"], [32, 3, 1, "", "BOUNCE_RIGHT"], [32, 3, 1, "", "BOW"], [32, 3, 1, "", "BOWL"], [32, 3, 1, "", "BOX"], [32, 3, 1, "", "BOX_ALIGN_BOTTOM"], [32, 3, 1, "", "BOX_ALIGN_BOTTOM_FILLED"], [32, 3, 1, "", "BOX_ALIGN_BOTTOM_LEFT"], [32, 3, 1, "", "BOX_ALIGN_BOTTOM_LEFT_FILLED"], [32, 3, 1, "", "BOX_ALIGN_BOTTOM_RIGHT"], [32, 3, 1, "", "BOX_ALIGN_BOTTOM_RIGHT_FILLED"], [32, 3, 1, "", "BOX_ALIGN_LEFT"], [32, 3, 1, "", "BOX_ALIGN_LEFT_FILLED"], [32, 3, 1, "", "BOX_ALIGN_RIGHT"], [32, 3, 1, "", "BOX_ALIGN_RIGHT_FILLED"], [32, 3, 1, "", "BOX_ALIGN_TOP"], [32, 3, 1, "", "BOX_ALIGN_TOP_FILLED"], [32, 3, 1, "", "BOX_ALIGN_TOP_LEFT"], [32, 3, 1, "", "BOX_ALIGN_TOP_LEFT_FILLED"], [32, 3, 1, "", "BOX_ALIGN_TOP_RIGHT"], [32, 3, 1, "", "BOX_ALIGN_TOP_RIGHT_FILLED"], [32, 3, 1, "", "BOX_MARGIN"], [32, 3, 1, "", "BOX_MODEL"], [32, 3, 1, "", "BOX_MODEL_2"], [32, 3, 1, "", "BOX_MODEL_2_OFF"], [32, 3, 1, "", "BOX_MODEL_OFF"], [32, 3, 1, "", "BOX_MULTIPLE"], [32, 3, 1, "", "BOX_MULTIPLE_0"], [32, 3, 1, "", "BOX_MULTIPLE_1"], [32, 3, 1, "", "BOX_MULTIPLE_2"], [32, 3, 1, "", "BOX_MULTIPLE_3"], [32, 3, 1, "", "BOX_MULTIPLE_4"], [32, 3, 1, "", "BOX_MULTIPLE_5"], [32, 3, 1, "", "BOX_MULTIPLE_6"], [32, 3, 1, "", "BOX_MULTIPLE_7"], [32, 3, 1, "", "BOX_MULTIPLE_8"], [32, 3, 1, "", "BOX_MULTIPLE_9"], [32, 3, 1, "", "BOX_OFF"], [32, 3, 1, "", "BOX_PADDING"], [32, 3, 1, "", "BOX_SEAM"], [32, 3, 1, "", "BRACES"], [32, 3, 1, "", "BRACES_OFF"], [32, 3, 1, "", "BRACKETS"], [32, 3, 1, "", "BRACKETS_CONTAIN"], [32, 3, 1, "", "BRACKETS_CONTAIN_END"], [32, 3, 1, "", "BRACKETS_CONTAIN_START"], [32, 3, 1, "", "BRACKETS_OFF"], [32, 3, 1, "", "BRAILLE"], [32, 3, 1, "", "BRAIN"], [32, 3, 1, "", "BRAND_4CHAN"], [32, 3, 1, "", "BRAND_ABSTRACT"], [32, 3, 1, "", "BRAND_ADOBE"], [32, 3, 1, "", "BRAND_ADONIS_JS"], [32, 3, 1, "", "BRAND_AIRBNB"], [32, 3, 1, "", "BRAND_AIRTABLE"], [32, 3, 1, "", "BRAND_ALGOLIA"], [32, 3, 1, "", "BRAND_ALIPAY"], [32, 3, 1, "", "BRAND_ALPINE_JS"], [32, 3, 1, "", "BRAND_AMAZON"], [32, 3, 1, "", "BRAND_AMD"], [32, 3, 1, "", "BRAND_AMIGO"], [32, 3, 1, "", "BRAND_AMONG_US"], [32, 3, 1, "", "BRAND_ANDROID"], [32, 3, 1, "", "BRAND_ANGULAR"], [32, 3, 1, "", "BRAND_ANSIBLE"], [32, 3, 1, "", "BRAND_AO3"], [32, 3, 1, "", "BRAND_APPGALLERY"], [32, 3, 1, "", "BRAND_APPLE"], [32, 3, 1, "", "BRAND_APPLE_ARCADE"], [32, 3, 1, "", "BRAND_APPLE_PODCAST"], [32, 3, 1, "", "BRAND_APPSTORE"], [32, 3, 1, "", "BRAND_ASANA"], [32, 3, 1, "", "BRAND_AWS"], [32, 3, 1, "", "BRAND_AZURE"], [32, 3, 1, "", "BRAND_BACKBONE"], [32, 3, 1, "", "BRAND_BADOO"], [32, 3, 1, "", "BRAND_BAIDU"], [32, 3, 1, "", "BRAND_BANDCAMP"], [32, 3, 1, "", "BRAND_BANDLAB"], [32, 3, 1, "", "BRAND_BEATS"], [32, 3, 1, "", "BRAND_BEHANCE"], [32, 3, 1, "", "BRAND_BILIBILI"], [32, 3, 1, "", "BRAND_BINANCE"], [32, 3, 1, "", "BRAND_BING"], [32, 3, 1, "", "BRAND_BITBUCKET"], [32, 3, 1, "", "BRAND_BLACKBERRY"], [32, 3, 1, "", "BRAND_BLENDER"], [32, 3, 1, "", "BRAND_BLOGGER"], [32, 3, 1, "", "BRAND_BOOKING"], [32, 3, 1, "", "BRAND_BOOTSTRAP"], [32, 3, 1, "", "BRAND_BULMA"], [32, 3, 1, "", "BRAND_BUMBLE"], [32, 3, 1, "", "BRAND_BUNPO"], [32, 3, 1, "", "BRAND_CAKE"], [32, 3, 1, "", "BRAND_CAKEPHP"], [32, 3, 1, "", "BRAND_CAMPAIGNMONITOR"], [32, 3, 1, "", "BRAND_CARBON"], [32, 3, 1, "", "BRAND_CASHAPP"], [32, 3, 1, "", "BRAND_CHROME"], [32, 3, 1, "", "BRAND_CINEMA_4D"], [32, 3, 1, "", "BRAND_CITYMAPPER"], [32, 3, 1, "", "BRAND_CLOUDFLARE"], [32, 3, 1, "", "BRAND_CODECOV"], [32, 3, 1, "", "BRAND_CODEPEN"], [32, 3, 1, "", "BRAND_CODESANDBOX"], [32, 3, 1, "", "BRAND_COHOST"], [32, 3, 1, "", "BRAND_COINBASE"], [32, 3, 1, "", "BRAND_COMEDY_CENTRAL"], [32, 3, 1, "", "BRAND_COREOS"], [32, 3, 1, "", "BRAND_COUCHDB"], [32, 3, 1, "", "BRAND_COUCHSURFING"], [32, 3, 1, "", "BRAND_CPP"], [32, 3, 1, "", "BRAND_CRAFT"], [32, 3, 1, "", "BRAND_CRUNCHBASE"], [32, 3, 1, "", "BRAND_CSS3"], [32, 3, 1, "", "BRAND_CTEMPLAR"], [32, 3, 1, "", "BRAND_CUCUMBER"], [32, 3, 1, "", "BRAND_CUPRA"], [32, 3, 1, "", "BRAND_CYPRESS"], [32, 3, 1, "", "BRAND_C_SHARP"], [32, 3, 1, "", "BRAND_D3"], [32, 3, 1, "", "BRAND_DAYS_COUNTER"], [32, 3, 1, "", "BRAND_DCOS"], [32, 3, 1, "", "BRAND_DEBIAN"], [32, 3, 1, "", "BRAND_DEEZER"], [32, 3, 1, "", "BRAND_DELIVEROO"], [32, 3, 1, "", "BRAND_DENO"], [32, 3, 1, "", "BRAND_DENODO"], [32, 3, 1, "", "BRAND_DEVIANTART"], [32, 3, 1, "", "BRAND_DIGG"], [32, 3, 1, "", "BRAND_DINGTALK"], [32, 3, 1, "", "BRAND_DISCORD"], [32, 3, 1, "", "BRAND_DISCORD_FILLED"], [32, 3, 1, "", "BRAND_DISNEY"], [32, 3, 1, "", "BRAND_DISQUS"], [32, 3, 1, "", "BRAND_DJANGO"], [32, 3, 1, "", "BRAND_DOCKER"], [32, 3, 1, "", "BRAND_DOCTRINE"], [32, 3, 1, "", "BRAND_DOLBY_DIGITAL"], [32, 3, 1, "", "BRAND_DOUBAN"], [32, 3, 1, "", "BRAND_DRIBBBLE"], [32, 3, 1, "", "BRAND_DRIBBBLE_FILLED"], [32, 3, 1, "", "BRAND_DROPS"], [32, 3, 1, "", "BRAND_DRUPAL"], [32, 3, 1, "", "BRAND_EDGE"], [32, 3, 1, "", "BRAND_ELASTIC"], [32, 3, 1, "", "BRAND_ELECTRONIC_ARTS"], [32, 3, 1, "", "BRAND_EMBER"], [32, 3, 1, "", "BRAND_ENVATO"], [32, 3, 1, "", "BRAND_ETSY"], [32, 3, 1, "", "BRAND_EVERNOTE"], [32, 3, 1, "", "BRAND_FACEBOOK"], [32, 3, 1, "", "BRAND_FACEBOOK_FILLED"], [32, 3, 1, "", "BRAND_FEEDLY"], [32, 3, 1, "", "BRAND_FIGMA"], [32, 3, 1, "", "BRAND_FILEZILLA"], [32, 3, 1, "", "BRAND_FINDER"], [32, 3, 1, "", "BRAND_FIREBASE"], [32, 3, 1, "", "BRAND_FIREFOX"], [32, 3, 1, "", "BRAND_FIVERR"], [32, 3, 1, "", "BRAND_FLICKR"], [32, 3, 1, "", "BRAND_FLIGHTRADAR24"], [32, 3, 1, "", "BRAND_FLIPBOARD"], [32, 3, 1, "", "BRAND_FLUTTER"], [32, 3, 1, "", "BRAND_FORTNITE"], [32, 3, 1, "", "BRAND_FOURSQUARE"], [32, 3, 1, "", "BRAND_FRAMER"], [32, 3, 1, "", "BRAND_FRAMER_MOTION"], [32, 3, 1, "", "BRAND_FUNIMATION"], [32, 3, 1, "", "BRAND_GATSBY"], [32, 3, 1, "", "BRAND_GIT"], [32, 3, 1, "", "BRAND_GITHUB"], [32, 3, 1, "", "BRAND_GITHUB_COPILOT"], [32, 3, 1, "", "BRAND_GITHUB_FILLED"], [32, 3, 1, "", "BRAND_GITLAB"], [32, 3, 1, "", "BRAND_GMAIL"], [32, 3, 1, "", "BRAND_GOLANG"], [32, 3, 1, "", "BRAND_GOOGLE"], [32, 3, 1, "", "BRAND_GOOGLE_ANALYTICS"], [32, 3, 1, "", "BRAND_GOOGLE_BIG_QUERY"], [32, 3, 1, "", "BRAND_GOOGLE_DRIVE"], [32, 3, 1, "", "BRAND_GOOGLE_FIT"], [32, 3, 1, "", "BRAND_GOOGLE_HOME"], [32, 3, 1, "", "BRAND_GOOGLE_MAPS"], [32, 3, 1, "", "BRAND_GOOGLE_ONE"], [32, 3, 1, "", "BRAND_GOOGLE_PHOTOS"], [32, 3, 1, "", "BRAND_GOOGLE_PLAY"], [32, 3, 1, "", "BRAND_GOOGLE_PODCASTS"], [32, 3, 1, "", "BRAND_GRAMMARLY"], [32, 3, 1, "", "BRAND_GRAPHQL"], [32, 3, 1, "", "BRAND_GRAVATAR"], [32, 3, 1, "", "BRAND_GRINDR"], [32, 3, 1, "", "BRAND_GUARDIAN"], [32, 3, 1, "", "BRAND_GUMROAD"], [32, 3, 1, "", "BRAND_HBO"], [32, 3, 1, "", "BRAND_HEADLESSUI"], [32, 3, 1, "", "BRAND_HEXO"], [32, 3, 1, "", "BRAND_HIPCHAT"], [32, 3, 1, "", "BRAND_HTML5"], [32, 3, 1, "", "BRAND_INERTIA"], [32, 3, 1, "", "BRAND_INSTAGRAM"], [32, 3, 1, "", "BRAND_INTERCOM"], [32, 3, 1, "", "BRAND_ITCH"], [32, 3, 1, "", "BRAND_JAVASCRIPT"], [32, 3, 1, "", "BRAND_JUEJIN"], [32, 3, 1, "", "BRAND_KBIN"], [32, 3, 1, "", "BRAND_KICK"], [32, 3, 1, "", "BRAND_KICKSTARTER"], [32, 3, 1, "", "BRAND_KOTLIN"], [32, 3, 1, "", "BRAND_LARAVEL"], [32, 3, 1, "", "BRAND_LASTFM"], [32, 3, 1, "", "BRAND_LEETCODE"], [32, 3, 1, "", "BRAND_LETTERBOXD"], [32, 3, 1, "", "BRAND_LINE"], [32, 3, 1, "", "BRAND_LINKEDIN"], [32, 3, 1, "", "BRAND_LINKTREE"], [32, 3, 1, "", "BRAND_LINQPAD"], [32, 3, 1, "", "BRAND_LOOM"], [32, 3, 1, "", "BRAND_MAILGUN"], [32, 3, 1, "", "BRAND_MANTINE"], [32, 3, 1, "", "BRAND_MASTERCARD"], [32, 3, 1, "", "BRAND_MASTODON"], [32, 3, 1, "", "BRAND_MATRIX"], [32, 3, 1, "", "BRAND_MCDONALDS"], [32, 3, 1, "", "BRAND_MEDIUM"], [32, 3, 1, "", "BRAND_MERCEDES"], [32, 3, 1, "", "BRAND_MESSENGER"], [32, 3, 1, "", "BRAND_META"], [32, 3, 1, "", "BRAND_MICROSOFT_TEAMS"], [32, 3, 1, "", "BRAND_MINECRAFT"], [32, 3, 1, "", "BRAND_MINIPROGRAM"], [32, 3, 1, "", "BRAND_MIXPANEL"], [32, 3, 1, "", "BRAND_MONDAY"], [32, 3, 1, "", "BRAND_MONGODB"], [32, 3, 1, "", "BRAND_MYSQL"], [32, 3, 1, "", "BRAND_MY_OPPO"], [32, 3, 1, "", "BRAND_NATIONAL_GEOGRAPHIC"], [32, 3, 1, "", "BRAND_NEM"], [32, 3, 1, "", "BRAND_NETBEANS"], [32, 3, 1, "", "BRAND_NETEASE_MUSIC"], [32, 3, 1, "", "BRAND_NETFLIX"], [32, 3, 1, "", "BRAND_NEXO"], [32, 3, 1, "", "BRAND_NEXTCLOUD"], [32, 3, 1, "", "BRAND_NEXTJS"], [32, 3, 1, "", "BRAND_NODEJS"], [32, 3, 1, "", "BRAND_NORD_VPN"], [32, 3, 1, "", "BRAND_NOTION"], [32, 3, 1, "", "BRAND_NPM"], [32, 3, 1, "", "BRAND_NUXT"], [32, 3, 1, "", "BRAND_NYTIMES"], [32, 3, 1, "", "BRAND_OAUTH"], [32, 3, 1, "", "BRAND_OFFICE"], [32, 3, 1, "", "BRAND_OK_RU"], [32, 3, 1, "", "BRAND_ONEDRIVE"], [32, 3, 1, "", "BRAND_ONLYFANS"], [32, 3, 1, "", "BRAND_OPENAI"], [32, 3, 1, "", "BRAND_OPENVPN"], [32, 3, 1, "", "BRAND_OPEN_SOURCE"], [32, 3, 1, "", "BRAND_OPERA"], [32, 3, 1, "", "BRAND_PAGEKIT"], [32, 3, 1, "", "BRAND_PATREON"], [32, 3, 1, "", "BRAND_PAYPAL"], [32, 3, 1, "", "BRAND_PAYPAL_FILLED"], [32, 3, 1, "", "BRAND_PAYPAY"], [32, 3, 1, "", "BRAND_PEANUT"], [32, 3, 1, "", "BRAND_PEPSI"], [32, 3, 1, "", "BRAND_PHP"], [32, 3, 1, "", "BRAND_PICSART"], [32, 3, 1, "", "BRAND_PINTEREST"], [32, 3, 1, "", "BRAND_PLANETSCALE"], [32, 3, 1, "", "BRAND_POCKET"], [32, 3, 1, "", "BRAND_POLYMER"], [32, 3, 1, "", "BRAND_POWERSHELL"], [32, 3, 1, "", "BRAND_PRISMA"], [32, 3, 1, "", "BRAND_PRODUCTHUNT"], [32, 3, 1, "", "BRAND_PUSHBULLET"], [32, 3, 1, "", "BRAND_PUSHOVER"], [32, 3, 1, "", "BRAND_PYTHON"], [32, 3, 1, "", "BRAND_QQ"], [32, 3, 1, "", "BRAND_RADIX_UI"], [32, 3, 1, "", "BRAND_REACT"], [32, 3, 1, "", "BRAND_REACT_NATIVE"], [32, 3, 1, "", "BRAND_REASON"], [32, 3, 1, "", "BRAND_REDDIT"], [32, 3, 1, "", "BRAND_REDHAT"], [32, 3, 1, "", "BRAND_REDUX"], [32, 3, 1, "", "BRAND_REVOLUT"], [32, 3, 1, "", "BRAND_RUMBLE"], [32, 3, 1, "", "BRAND_RUST"], [32, 3, 1, "", "BRAND_SAFARI"], [32, 3, 1, "", "BRAND_SAMSUNGPASS"], [32, 3, 1, "", "BRAND_SASS"], [32, 3, 1, "", "BRAND_SENTRY"], [32, 3, 1, "", "BRAND_SHARIK"], [32, 3, 1, "", "BRAND_SHAZAM"], [32, 3, 1, "", "BRAND_SHOPEE"], [32, 3, 1, "", "BRAND_SKETCH"], [32, 3, 1, "", "BRAND_SKYPE"], [32, 3, 1, "", "BRAND_SLACK"], [32, 3, 1, "", "BRAND_SNAPCHAT"], [32, 3, 1, "", "BRAND_SNAPSEED"], [32, 3, 1, "", "BRAND_SNOWFLAKE"], [32, 3, 1, "", "BRAND_SOCKET_IO"], [32, 3, 1, "", "BRAND_SOLIDJS"], [32, 3, 1, "", "BRAND_SOUNDCLOUD"], [32, 3, 1, "", "BRAND_SPACEHEY"], [32, 3, 1, "", "BRAND_SPEEDTEST"], [32, 3, 1, "", "BRAND_SPOTIFY"], [32, 3, 1, "", "BRAND_STACKOVERFLOW"], [32, 3, 1, "", "BRAND_STACKSHARE"], [32, 3, 1, "", "BRAND_STEAM"], [32, 3, 1, "", "BRAND_STORJ"], [32, 3, 1, "", "BRAND_STORYBOOK"], [32, 3, 1, "", "BRAND_STORYTEL"], [32, 3, 1, "", "BRAND_STRAVA"], [32, 3, 1, "", "BRAND_STRIPE"], [32, 3, 1, "", "BRAND_SUBLIME_TEXT"], [32, 3, 1, "", "BRAND_SUGARIZER"], [32, 3, 1, "", "BRAND_SUPABASE"], [32, 3, 1, "", "BRAND_SUPERHUMAN"], [32, 3, 1, "", "BRAND_SUPERNOVA"], [32, 3, 1, "", "BRAND_SURFSHARK"], [32, 3, 1, "", "BRAND_SVELTE"], [32, 3, 1, "", "BRAND_SWIFT"], [32, 3, 1, "", "BRAND_SYMFONY"], [32, 3, 1, "", "BRAND_TABLER"], [32, 3, 1, "", "BRAND_TAILWIND"], [32, 3, 1, "", "BRAND_TAOBAO"], [32, 3, 1, "", "BRAND_TED"], [32, 3, 1, "", "BRAND_TELEGRAM"], [32, 3, 1, "", "BRAND_TERRAFORM"], [32, 3, 1, "", "BRAND_TETHER"], [32, 3, 1, "", "BRAND_THREEJS"], [32, 3, 1, "", "BRAND_TIDAL"], [32, 3, 1, "", "BRAND_TIKTOK"], [32, 3, 1, "", "BRAND_TIKTO_FILLED"], [32, 3, 1, "", "BRAND_TINDER"], [32, 3, 1, "", "BRAND_TOPBUZZ"], [32, 3, 1, "", "BRAND_TORCHAIN"], [32, 3, 1, "", "BRAND_TOYOTA"], [32, 3, 1, "", "BRAND_TRELLO"], [32, 3, 1, "", "BRAND_TRIPADVISOR"], [32, 3, 1, "", "BRAND_TUMBLR"], [32, 3, 1, "", "BRAND_TWILIO"], [32, 3, 1, "", "BRAND_TWITCH"], [32, 3, 1, "", "BRAND_TWITTER"], [32, 3, 1, "", "BRAND_TWITTER_FILLED"], [32, 3, 1, "", "BRAND_TYPESCRIPT"], [32, 3, 1, "", "BRAND_UBER"], [32, 3, 1, "", "BRAND_UBUNTU"], [32, 3, 1, "", "BRAND_UNITY"], [32, 3, 1, "", "BRAND_UNSPLASH"], [32, 3, 1, "", "BRAND_UPWORK"], [32, 3, 1, "", "BRAND_VALORANT"], [32, 3, 1, "", "BRAND_VERCEL"], [32, 3, 1, "", "BRAND_VIMEO"], [32, 3, 1, "", "BRAND_VINTED"], [32, 3, 1, "", "BRAND_VISA"], [32, 3, 1, "", "BRAND_VISUAL_STUDIO"], [32, 3, 1, "", "BRAND_VITE"], [32, 3, 1, "", "BRAND_VIVALDI"], [32, 3, 1, "", "BRAND_VK"], [32, 3, 1, "", "BRAND_VLC"], [32, 3, 1, "", "BRAND_VOLKSWAGEN"], [32, 3, 1, "", "BRAND_VSCO"], [32, 3, 1, "", "BRAND_VSCODE"], [32, 3, 1, "", "BRAND_VUE"], [32, 3, 1, "", "BRAND_WALMART"], [32, 3, 1, "", "BRAND_WAZE"], [32, 3, 1, "", "BRAND_WEBFLOW"], [32, 3, 1, "", "BRAND_WECHAT"], [32, 3, 1, "", "BRAND_WEIBO"], [32, 3, 1, "", "BRAND_WHATSAPP"], [32, 3, 1, "", "BRAND_WIKIPEDIA"], [32, 3, 1, "", "BRAND_WINDOWS"], [32, 3, 1, "", "BRAND_WINDY"], [32, 3, 1, "", "BRAND_WISH"], [32, 3, 1, "", "BRAND_WIX"], [32, 3, 1, "", "BRAND_WORDPRESS"], [32, 3, 1, "", "BRAND_XAMARIN"], [32, 3, 1, "", "BRAND_XBOX"], [32, 3, 1, "", "BRAND_XING"], [32, 3, 1, "", "BRAND_YAHOO"], [32, 3, 1, "", "BRAND_YANDEX"], [32, 3, 1, "", "BRAND_YATSE"], [32, 3, 1, "", "BRAND_YCOMBINATOR"], [32, 3, 1, "", "BRAND_YOUTUBE"], [32, 3, 1, "", "BRAND_YOUTUBE_KIDS"], [32, 3, 1, "", "BRAND_ZALANDO"], [32, 3, 1, "", "BRAND_ZAPIER"], [32, 3, 1, "", "BRAND_ZEIT"], [32, 3, 1, "", "BRAND_ZHIHU"], [32, 3, 1, "", "BRAND_ZOOM"], [32, 3, 1, "", "BRAND_ZULIP"], [32, 3, 1, "", "BRAND_ZWIFT"], [32, 3, 1, "", "BREAD"], [32, 3, 1, "", "BREAD_OFF"], [32, 3, 1, "", "BRIEFCASE"], [32, 3, 1, "", "BRIEFCASE_OFF"], [32, 3, 1, "", "BRIGHTNESS"], [32, 3, 1, "", "BRIGHTNESS_2"], [32, 3, 1, "", "BRIGHTNESS_DOWN"], [32, 3, 1, "", "BRIGHTNESS_HALF"], [32, 3, 1, "", "BRIGHTNESS_OFF"], [32, 3, 1, "", "BRIGHTNESS_UP"], [32, 3, 1, "", "BROADCAST"], [32, 3, 1, "", "BROADCAST_OFF"], [32, 3, 1, "", "BROWSER"], [32, 3, 1, "", "BROWSER_CHECK"], [32, 3, 1, "", "BROWSER_OFF"], [32, 3, 1, "", "BROWSER_PLUS"], [32, 3, 1, "", "BROWSER_X"], [32, 3, 1, "", "BRUSH"], [32, 3, 1, "", "BRUSH_OFF"], [32, 3, 1, "", "BUCKET"], [32, 3, 1, "", "BUCKET_DROPLET"], [32, 3, 1, "", "BUCKET_OFF"], [32, 3, 1, "", "BUG"], [32, 3, 1, "", "BUG_OFF"], [32, 3, 1, "", "BUILDING"], [32, 3, 1, "", "BUILDING_ARCH"], [32, 3, 1, "", "BUILDING_BANK"], [32, 3, 1, "", "BUILDING_BRIDGE"], [32, 3, 1, "", "BUILDING_BRIDGE_2"], [32, 3, 1, "", "BUILDING_BROADCAST_TOWER"], [32, 3, 1, "", "BUILDING_CAROUSEL"], [32, 3, 1, "", "BUILDING_CASTLE"], [32, 3, 1, "", "BUILDING_CHURCH"], [32, 3, 1, "", "BUILDING_CIRCUS"], [32, 3, 1, "", "BUILDING_COMMUNITY"], [32, 3, 1, "", "BUILDING_COTTAGE"], [32, 3, 1, "", "BUILDING_ESTATE"], [32, 3, 1, "", "BUILDING_FACTORY"], [32, 3, 1, "", "BUILDING_FACTORY_2"], [32, 3, 1, "", "BUILDING_FORTRESS"], [32, 3, 1, "", "BUILDING_HOSPITAL"], [32, 3, 1, "", "BUILDING_LIGHTHOUSE"], [32, 3, 1, "", "BUILDING_MONUMENT"], [32, 3, 1, "", "BUILDING_MOSQUE"], [32, 3, 1, "", "BUILDING_PAVILION"], [32, 3, 1, "", "BUILDING_SKYSCRAPER"], [32, 3, 1, "", "BUILDING_STADIUM"], [32, 3, 1, "", "BUILDING_STORE"], [32, 3, 1, "", "BUILDING_TUNNEL"], [32, 3, 1, "", "BUILDING_WAREHOUSE"], [32, 3, 1, "", "BUILDING_WIND_TURBINE"], [32, 3, 1, "", "BULB"], [32, 3, 1, "", "BULB_FILLED"], [32, 3, 1, "", "BULB_OFF"], [32, 3, 1, "", "BULLDOZER"], [32, 3, 1, "", "BUS"], [32, 3, 1, "", "BUSINESSPLAN"], [32, 3, 1, "", "BUS_OFF"], [32, 3, 1, "", "BUS_STOP"], [32, 3, 1, "", "BUTTERFLY"], [32, 3, 1, "", "CACTUS"], [32, 3, 1, "", "CACTUS_OFF"], [32, 3, 1, "", "CAKE"], [32, 3, 1, "", "CAKE_OFF"], [32, 3, 1, "", "CALCULATOR"], [32, 3, 1, "", "CALCULATOR_OFF"], [32, 3, 1, "", "CALENDAR"], [32, 3, 1, "", "CALENDAR_BOLT"], [32, 3, 1, "", "CALENDAR_CANCEL"], [32, 3, 1, "", "CALENDAR_CHECK"], [32, 3, 1, "", "CALENDAR_CODE"], [32, 3, 1, "", "CALENDAR_COG"], [32, 3, 1, "", "CALENDAR_DOLLAR"], [32, 3, 1, "", "CALENDAR_DOWN"], [32, 3, 1, "", "CALENDAR_DUE"], [32, 3, 1, "", "CALENDAR_EVENT"], [32, 3, 1, "", "CALENDAR_EXCLAMATION"], [32, 3, 1, "", "CALENDAR_HEART"], [32, 3, 1, "", "CALENDAR_MINUS"], [32, 3, 1, "", "CALENDAR_OFF"], [32, 3, 1, "", "CALENDAR_PAUSE"], [32, 3, 1, "", "CALENDAR_PIN"], [32, 3, 1, "", "CALENDAR_PLUS"], [32, 3, 1, "", "CALENDAR_QUESTION"], [32, 3, 1, "", "CALENDAR_REPEAT"], [32, 3, 1, "", "CALENDAR_SEARCH"], [32, 3, 1, "", "CALENDAR_SHARE"], [32, 3, 1, "", "CALENDAR_STAR"], [32, 3, 1, "", "CALENDAR_STATS"], [32, 3, 1, "", "CALENDAR_TIME"], [32, 3, 1, "", "CALENDAR_UP"], [32, 3, 1, "", "CALENDAR_X"], [32, 3, 1, "", "CAMERA"], [32, 3, 1, "", "CAMERA_BOLT"], [32, 3, 1, "", "CAMERA_CANCEL"], [32, 3, 1, "", "CAMERA_CHECK"], [32, 3, 1, "", "CAMERA_CODE"], [32, 3, 1, "", "CAMERA_COG"], [32, 3, 1, "", "CAMERA_DOLLAR"], [32, 3, 1, "", "CAMERA_DOWN"], [32, 3, 1, "", "CAMERA_EXCLAMATION"], [32, 3, 1, "", "CAMERA_FILLED"], [32, 3, 1, "", "CAMERA_HEART"], [32, 3, 1, "", "CAMERA_MINUS"], [32, 3, 1, "", "CAMERA_OFF"], [32, 3, 1, "", "CAMERA_PAUSE"], [32, 3, 1, "", "CAMERA_PIN"], [32, 3, 1, "", "CAMERA_PLUS"], [32, 3, 1, "", "CAMERA_QUESTION"], [32, 3, 1, "", "CAMERA_ROTATE"], [32, 3, 1, "", "CAMERA_SEARCH"], [32, 3, 1, "", "CAMERA_SELFIE"], [32, 3, 1, "", "CAMERA_SHARE"], [32, 3, 1, "", "CAMERA_STAR"], [32, 3, 1, "", "CAMERA_UP"], [32, 3, 1, "", "CAMERA_X"], [32, 3, 1, "", "CAMPER"], [32, 3, 1, "", "CAMPFIRE"], [32, 3, 1, "", "CANDLE"], [32, 3, 1, "", "CANDY"], [32, 3, 1, "", "CANDY_OFF"], [32, 3, 1, "", "CANE"], [32, 3, 1, "", "CANNABIS"], [32, 3, 1, "", "CAPSULE"], [32, 3, 1, "", "CAPSULE_HORIZONTAL"], [32, 3, 1, "", "CAPTURE"], [32, 3, 1, "", "CAPTURE_OFF"], [32, 3, 1, "", "CAR"], [32, 3, 1, "", "CARAVAN"], [32, 3, 1, "", "CARDBOARDS"], [32, 3, 1, "", "CARDBOARDS_OFF"], [32, 3, 1, "", "CARDS"], [32, 3, 1, "", "CARET_DOWN"], [32, 3, 1, "", "CARET_LEFT"], [32, 3, 1, "", "CARET_RIGHT"], [32, 3, 1, "", "CARET_UP"], [32, 3, 1, "", "CAROUSEL_HORIZONTAL"], [32, 3, 1, "", "CAROUSEL_HORIZONTAL_FILLED"], [32, 3, 1, "", "CAROUSEL_VERTICAL"], [32, 3, 1, "", "CAROUSEL_VERTICAL_FILLED"], [32, 3, 1, "", "CARROT"], [32, 3, 1, "", "CARROT_OFF"], [32, 3, 1, "", "CAR_CRANE"], [32, 3, 1, "", "CAR_CRASH"], [32, 3, 1, "", "CAR_OFF"], [32, 3, 1, "", "CAR_TURBINE"], [32, 3, 1, "", "CASH"], [32, 3, 1, "", "CASH_BANKNOTE"], [32, 3, 1, "", "CASH_BANKNOTE_OFF"], [32, 3, 1, "", "CASH_OFF"], [32, 3, 1, "", "CAST"], [32, 3, 1, "", "CAST_OFF"], [32, 3, 1, "", "CAT"], [32, 3, 1, "", "CATEGORY"], [32, 3, 1, "", "CATEGORY_2"], [32, 3, 1, "", "CE"], [32, 3, 1, "", "CELL"], [32, 3, 1, "", "CELL_SIGNAL_1"], [32, 3, 1, "", "CELL_SIGNAL_2"], [32, 3, 1, "", "CELL_SIGNAL_3"], [32, 3, 1, "", "CELL_SIGNAL_4"], [32, 3, 1, "", "CELL_SIGNAL_5"], [32, 3, 1, "", "CELL_SIGNAL_OFF"], [32, 3, 1, "", "CERTIFICATE"], [32, 3, 1, "", "CERTIFICATE_2"], [32, 3, 1, "", "CERTIFICATE_2_OFF"], [32, 3, 1, "", "CERTIFICATE_OFF"], [32, 3, 1, "", "CE_OFF"], [32, 3, 1, "", "CHAIR_DIRECTOR"], [32, 3, 1, "", "CHALKBOARD"], [32, 3, 1, "", "CHALKBOARD_OFF"], [32, 3, 1, "", "CHARGING_PILE"], [32, 3, 1, "", "CHART_ARCS"], [32, 3, 1, "", "CHART_ARCS_3"], [32, 3, 1, "", "CHART_AREA"], [32, 3, 1, "", "CHART_AREA_FILLED"], [32, 3, 1, "", "CHART_AREA_LINE"], [32, 3, 1, "", "CHART_AREA_LINE_FILLED"], [32, 3, 1, "", "CHART_ARROWS"], [32, 3, 1, "", "CHART_ARROWS_VERTICAL"], [32, 3, 1, "", "CHART_BAR"], [32, 3, 1, "", "CHART_BAR_OFF"], [32, 3, 1, "", "CHART_BUBBLE"], [32, 3, 1, "", "CHART_BUBBLE_FILLED"], [32, 3, 1, "", "CHART_CANDLE"], [32, 3, 1, "", "CHART_CANDLE_FILLED"], [32, 3, 1, "", "CHART_CIRCLES"], [32, 3, 1, "", "CHART_DONUT"], [32, 3, 1, "", "CHART_DONUT_2"], [32, 3, 1, "", "CHART_DONUT_3"], [32, 3, 1, "", "CHART_DONUT_4"], [32, 3, 1, "", "CHART_DONUT_FILLED"], [32, 3, 1, "", "CHART_DOTS"], [32, 3, 1, "", "CHART_DOTS_2"], [32, 3, 1, "", "CHART_DOTS_3"], [32, 3, 1, "", "CHART_GRID_DOTS"], [32, 3, 1, "", "CHART_HISTOGRAM"], [32, 3, 1, "", "CHART_INFOGRAPHIC"], [32, 3, 1, "", "CHART_LINE"], [32, 3, 1, "", "CHART_PIE"], [32, 3, 1, "", "CHART_PIE_2"], [32, 3, 1, "", "CHART_PIE_3"], [32, 3, 1, "", "CHART_PIE_4"], [32, 3, 1, "", "CHART_PIE_FILLED"], [32, 3, 1, "", "CHART_PIE_OFF"], [32, 3, 1, "", "CHART_PPF"], [32, 3, 1, "", "CHART_RADAR"], [32, 3, 1, "", "CHART_SANKEY"], [32, 3, 1, "", "CHART_TREEMAP"], [32, 3, 1, "", "CHECK"], [32, 3, 1, "", "CHECKBOX"], [32, 3, 1, "", "CHECKLIST"], [32, 3, 1, "", "CHECKS"], [32, 3, 1, "", "CHECKUP_LIST"], [32, 3, 1, "", "CHEESE"], [32, 3, 1, "", "CHEF_HAT"], [32, 3, 1, "", "CHEF_HAT_OFF"], [32, 3, 1, "", "CHERRY"], [32, 3, 1, "", "CHERRY_FILLED"], [32, 3, 1, "", "CHESS"], [32, 3, 1, "", "CHESS_BISHOP"], [32, 3, 1, "", "CHESS_BISHOP_FILLED"], [32, 3, 1, "", "CHESS_FILLED"], [32, 3, 1, "", "CHESS_KING"], [32, 3, 1, "", "CHESS_KING_FILLED"], [32, 3, 1, "", "CHESS_KNIGHT"], [32, 3, 1, "", "CHESS_KNIGHT_FILLED"], [32, 3, 1, "", "CHESS_QUEEN"], [32, 3, 1, "", "CHESS_QUEEN_FILLED"], [32, 3, 1, "", "CHESS_ROOK"], [32, 3, 1, "", "CHESS_ROOK_FILLED"], [32, 3, 1, "", "CHEVRONS_DOWN"], [32, 3, 1, "", "CHEVRONS_DOWN_LEFT"], [32, 3, 1, "", "CHEVRONS_DOWN_RIGHT"], [32, 3, 1, "", "CHEVRONS_LEFT"], [32, 3, 1, "", "CHEVRONS_RIGHT"], [32, 3, 1, "", "CHEVRONS_UP"], [32, 3, 1, "", "CHEVRONS_UP_LEFT"], [32, 3, 1, "", "CHEVRONS_UP_RIGHT"], [32, 3, 1, "", "CHEVRON_COMPACT_DOWN"], [32, 3, 1, "", "CHEVRON_COMPACT_LEFT"], [32, 3, 1, "", "CHEVRON_COMPACT_RIGHT"], [32, 3, 1, "", "CHEVRON_COMPACT_UP"], [32, 3, 1, "", "CHEVRON_DOWN"], [32, 3, 1, "", "CHEVRON_DOWN_LEFT"], [32, 3, 1, "", "CHEVRON_DOWN_RIGHT"], [32, 3, 1, "", "CHEVRON_LEFT"], [32, 3, 1, "", "CHEVRON_LEFT_PIPE"], [32, 3, 1, "", "CHEVRON_RIGHT"], [32, 3, 1, "", "CHEVRON_RIGHT_PIPE"], [32, 3, 1, "", "CHEVRON_UP"], [32, 3, 1, "", "CHEVRON_UP_LEFT"], [32, 3, 1, "", "CHEVRON_UP_RIGHT"], [32, 3, 1, "", "CHISEL"], [32, 3, 1, "", "CHRISTMAS_TREE"], [32, 3, 1, "", "CHRISTMAS_TREE_OFF"], [32, 3, 1, "", "CIRCLE"], [32, 3, 1, "", "CIRCLES"], [32, 3, 1, "", "CIRCLES_FILLED"], [32, 3, 1, "", "CIRCLES_RELATION"], [32, 3, 1, "", "CIRCLE_0_FILLED"], [32, 3, 1, "", "CIRCLE_1_FILLED"], [32, 3, 1, "", "CIRCLE_2_FILLED"], [32, 3, 1, "", "CIRCLE_3_FILLED"], [32, 3, 1, "", "CIRCLE_4_FILLED"], [32, 3, 1, "", "CIRCLE_5_FILLED"], [32, 3, 1, "", "CIRCLE_6_FILLED"], [32, 3, 1, "", "CIRCLE_7_FILLED"], [32, 3, 1, "", "CIRCLE_8_FILLED"], [32, 3, 1, "", "CIRCLE_9_FILLED"], [32, 3, 1, "", "CIRCLE_ARROW_DOWN"], [32, 3, 1, "", "CIRCLE_ARROW_DOWN_FILLED"], [32, 3, 1, "", "CIRCLE_ARROW_DOWN_LEFT"], [32, 3, 1, "", "CIRCLE_ARROW_DOWN_LEFT_FILLED"], [32, 3, 1, "", "CIRCLE_ARROW_DOWN_RIGHT"], [32, 3, 1, "", "CIRCLE_ARROW_DOWN_RIGHT_FILLED"], [32, 3, 1, "", "CIRCLE_ARROW_LEFT"], [32, 3, 1, "", "CIRCLE_ARROW_LEFT_FILLED"], [32, 3, 1, "", "CIRCLE_ARROW_RIGHT"], [32, 3, 1, "", "CIRCLE_ARROW_RIGHT_FILLED"], [32, 3, 1, "", "CIRCLE_ARROW_UP"], [32, 3, 1, "", "CIRCLE_ARROW_UP_FILLED"], [32, 3, 1, "", "CIRCLE_ARROW_UP_LEFT"], [32, 3, 1, "", "CIRCLE_ARROW_UP_LEFT_FILLED"], [32, 3, 1, "", "CIRCLE_ARROW_UP_RIGHT"], [32, 3, 1, "", "CIRCLE_ARROW_UP_RIGHT_FILLED"], [32, 3, 1, "", "CIRCLE_CARET_DOWN"], [32, 3, 1, "", "CIRCLE_CARET_LEFT"], [32, 3, 1, "", "CIRCLE_CARET_RIGHT"], [32, 3, 1, "", "CIRCLE_CARET_UP"], [32, 3, 1, "", "CIRCLE_CHECK"], [32, 3, 1, "", "CIRCLE_CHECK_FILLED"], [32, 3, 1, "", "CIRCLE_CHEVRONS_DOWN"], [32, 3, 1, "", "CIRCLE_CHEVRONS_LEFT"], [32, 3, 1, "", "CIRCLE_CHEVRONS_RIGHT"], [32, 3, 1, "", "CIRCLE_CHEVRONS_UP"], [32, 3, 1, "", "CIRCLE_CHEVRON_DOWN"], [32, 3, 1, "", "CIRCLE_CHEVRON_LEFT"], [32, 3, 1, "", "CIRCLE_CHEVRON_RIGHT"], [32, 3, 1, "", "CIRCLE_CHEVRON_UP"], [32, 3, 1, "", "CIRCLE_DASHED"], [32, 3, 1, "", "CIRCLE_DOT"], [32, 3, 1, "", "CIRCLE_DOTTED"], [32, 3, 1, "", "CIRCLE_DOT_FILLED"], [32, 3, 1, "", "CIRCLE_FILLED"], [32, 3, 1, "", "CIRCLE_HALF"], [32, 3, 1, "", "CIRCLE_HALF_2"], [32, 3, 1, "", "CIRCLE_HALF_VERTICAL"], [32, 3, 1, "", "CIRCLE_KEY"], [32, 3, 1, "", "CIRCLE_KEY_FILLED"], [32, 3, 1, "", "CIRCLE_LETTER_A"], [32, 3, 1, "", "CIRCLE_LETTER_B"], [32, 3, 1, "", "CIRCLE_LETTER_C"], [32, 3, 1, "", "CIRCLE_LETTER_D"], [32, 3, 1, "", "CIRCLE_LETTER_E"], [32, 3, 1, "", "CIRCLE_LETTER_F"], [32, 3, 1, "", "CIRCLE_LETTER_G"], [32, 3, 1, "", "CIRCLE_LETTER_H"], [32, 3, 1, "", "CIRCLE_LETTER_I"], [32, 3, 1, "", "CIRCLE_LETTER_J"], [32, 3, 1, "", "CIRCLE_LETTER_K"], [32, 3, 1, "", "CIRCLE_LETTER_L"], [32, 3, 1, "", "CIRCLE_LETTER_M"], [32, 3, 1, "", "CIRCLE_LETTER_N"], [32, 3, 1, "", "CIRCLE_LETTER_O"], [32, 3, 1, "", "CIRCLE_LETTER_P"], [32, 3, 1, "", "CIRCLE_LETTER_Q"], [32, 3, 1, "", "CIRCLE_LETTER_R"], [32, 3, 1, "", "CIRCLE_LETTER_S"], [32, 3, 1, "", "CIRCLE_LETTER_T"], [32, 3, 1, "", "CIRCLE_LETTER_U"], [32, 3, 1, "", "CIRCLE_LETTER_V"], [32, 3, 1, "", "CIRCLE_LETTER_W"], [32, 3, 1, "", "CIRCLE_LETTER_X"], [32, 3, 1, "", "CIRCLE_LETTER_Y"], [32, 3, 1, "", "CIRCLE_LETTER_Z"], [32, 3, 1, "", "CIRCLE_MINUS"], [32, 3, 1, "", "CIRCLE_NUMBER_0"], [32, 3, 1, "", "CIRCLE_NUMBER_1"], [32, 3, 1, "", "CIRCLE_NUMBER_2"], [32, 3, 1, "", "CIRCLE_NUMBER_3"], [32, 3, 1, "", "CIRCLE_NUMBER_4"], [32, 3, 1, "", "CIRCLE_NUMBER_5"], [32, 3, 1, "", "CIRCLE_NUMBER_6"], [32, 3, 1, "", "CIRCLE_NUMBER_7"], [32, 3, 1, "", "CIRCLE_NUMBER_8"], [32, 3, 1, "", "CIRCLE_NUMBER_9"], [32, 3, 1, "", "CIRCLE_OFF"], [32, 3, 1, "", "CIRCLE_PLUS"], [32, 3, 1, "", "CIRCLE_RECTANGLE"], [32, 3, 1, "", "CIRCLE_RECTANGLE_OFF"], [32, 3, 1, "", "CIRCLE_SQUARE"], [32, 3, 1, "", "CIRCLE_TRIANGLE"], [32, 3, 1, "", "CIRCLE_X"], [32, 3, 1, "", "CIRCLE_X_FILLED"], [32, 3, 1, "", "CIRCUIT_AMMETER"], [32, 3, 1, "", "CIRCUIT_BATTERY"], [32, 3, 1, "", "CIRCUIT_BULB"], [32, 3, 1, "", "CIRCUIT_CAPACITOR"], [32, 3, 1, "", "CIRCUIT_CAPACITOR_POLARIZED"], [32, 3, 1, "", "CIRCUIT_CELL"], [32, 3, 1, "", "CIRCUIT_CELL_PLUS"], [32, 3, 1, "", "CIRCUIT_CHANGEOVER"], [32, 3, 1, "", "CIRCUIT_DIODE"], [32, 3, 1, "", "CIRCUIT_DIODE_ZENER"], [32, 3, 1, "", "CIRCUIT_GROUND"], [32, 3, 1, "", "CIRCUIT_GROUND_DIGITAL"], [32, 3, 1, "", "CIRCUIT_INDUCTOR"], [32, 3, 1, "", "CIRCUIT_MOTOR"], [32, 3, 1, "", "CIRCUIT_PUSHBUTTON"], [32, 3, 1, "", "CIRCUIT_RESISTOR"], [32, 3, 1, "", "CIRCUIT_SWITCH_CLOSED"], [32, 3, 1, "", "CIRCUIT_SWITCH_OPEN"], [32, 3, 1, "", "CIRCUIT_VOLTMETER"], [32, 3, 1, "", "CLEAR_ALL"], [32, 3, 1, "", "CLEAR_FORMATTING"], [32, 3, 1, "", "CLICK"], [32, 3, 1, "", "CLIPBOARD"], [32, 3, 1, "", "CLIPBOARD_CHECK"], [32, 3, 1, "", "CLIPBOARD_COPY"], [32, 3, 1, "", "CLIPBOARD_DATA"], [32, 3, 1, "", "CLIPBOARD_HEART"], [32, 3, 1, "", "CLIPBOARD_LIST"], [32, 3, 1, "", "CLIPBOARD_OFF"], [32, 3, 1, "", "CLIPBOARD_PLUS"], [32, 3, 1, "", "CLIPBOARD_TEXT"], [32, 3, 1, "", "CLIPBOARD_TYPOGRAPHY"], [32, 3, 1, "", "CLIPBOARD_X"], [32, 3, 1, "", "CLOCK"], [32, 3, 1, "", "CLOCK_2"], [32, 3, 1, "", "CLOCK_BOLT"], [32, 3, 1, "", "CLOCK_CANCEL"], [32, 3, 1, "", "CLOCK_CHECK"], [32, 3, 1, "", "CLOCK_CODE"], [32, 3, 1, "", "CLOCK_COG"], [32, 3, 1, "", "CLOCK_DOLLAR"], [32, 3, 1, "", "CLOCK_DOWN"], [32, 3, 1, "", "CLOCK_EDIT"], [32, 3, 1, "", "CLOCK_EXCLAMATION"], [32, 3, 1, "", "CLOCK_FILLED"], [32, 3, 1, "", "CLOCK_HEART"], [32, 3, 1, "", "CLOCK_HOUR_1"], [32, 3, 1, "", "CLOCK_HOUR_10"], [32, 3, 1, "", "CLOCK_HOUR_11"], [32, 3, 1, "", "CLOCK_HOUR_12"], [32, 3, 1, "", "CLOCK_HOUR_2"], [32, 3, 1, "", "CLOCK_HOUR_3"], [32, 3, 1, "", "CLOCK_HOUR_4"], [32, 3, 1, "", "CLOCK_HOUR_5"], [32, 3, 1, "", "CLOCK_HOUR_6"], [32, 3, 1, "", "CLOCK_HOUR_7"], [32, 3, 1, "", "CLOCK_HOUR_8"], [32, 3, 1, "", "CLOCK_HOUR_9"], [32, 3, 1, "", "CLOCK_MINUS"], [32, 3, 1, "", "CLOCK_OFF"], [32, 3, 1, "", "CLOCK_PAUSE"], [32, 3, 1, "", "CLOCK_PIN"], [32, 3, 1, "", "CLOCK_PLAY"], [32, 3, 1, "", "CLOCK_PLUS"], [32, 3, 1, "", "CLOCK_QUESTION"], [32, 3, 1, "", "CLOCK_RECORD"], [32, 3, 1, "", "CLOCK_SEARCH"], [32, 3, 1, "", "CLOCK_SHARE"], [32, 3, 1, "", "CLOCK_SHIELD"], [32, 3, 1, "", "CLOCK_STAR"], [32, 3, 1, "", "CLOCK_STOP"], [32, 3, 1, "", "CLOCK_UP"], [32, 3, 1, "", "CLOCK_X"], [32, 3, 1, "", "CLOTHES_RACK"], [32, 3, 1, "", "CLOTHES_RACK_OFF"], [32, 3, 1, "", "CLOUD"], [32, 3, 1, "", "CLOUD_BOLT"], [32, 3, 1, "", "CLOUD_CANCEL"], [32, 3, 1, "", "CLOUD_CHECK"], [32, 3, 1, "", "CLOUD_CODE"], [32, 3, 1, "", "CLOUD_COG"], [32, 3, 1, "", "CLOUD_COMPUTING"], [32, 3, 1, "", "CLOUD_DATA_CONNECTION"], [32, 3, 1, "", "CLOUD_DOLLAR"], [32, 3, 1, "", "CLOUD_DOWN"], [32, 3, 1, "", "CLOUD_DOWNLOAD"], [32, 3, 1, "", "CLOUD_EXCLAMATION"], [32, 3, 1, "", "CLOUD_FILLED"], [32, 3, 1, "", "CLOUD_FOG"], [32, 3, 1, "", "CLOUD_HEART"], [32, 3, 1, "", "CLOUD_LOCK"], [32, 3, 1, "", "CLOUD_LOCK_OPEN"], [32, 3, 1, "", "CLOUD_MINUS"], [32, 3, 1, "", "CLOUD_OFF"], [32, 3, 1, "", "CLOUD_PAUSE"], [32, 3, 1, "", "CLOUD_PIN"], [32, 3, 1, "", "CLOUD_PLUS"], [32, 3, 1, "", "CLOUD_QUESTION"], [32, 3, 1, "", "CLOUD_RAIN"], [32, 3, 1, "", "CLOUD_SEARCH"], [32, 3, 1, "", "CLOUD_SHARE"], [32, 3, 1, "", "CLOUD_SNOW"], [32, 3, 1, "", "CLOUD_STAR"], [32, 3, 1, "", "CLOUD_STORM"], [32, 3, 1, "", "CLOUD_UP"], [32, 3, 1, "", "CLOUD_UPLOAD"], [32, 3, 1, "", "CLOUD_X"], [32, 3, 1, "", "CLOVER"], [32, 3, 1, "", "CLOVER_2"], [32, 3, 1, "", "CLUBS"], [32, 3, 1, "", "CLUBS_FILLED"], [32, 3, 1, "", "CODE"], [32, 3, 1, "", "CODE_ASTERIX"], [32, 3, 1, "", "CODE_CIRCLE"], [32, 3, 1, "", "CODE_CIRCLE_2"], [32, 3, 1, "", "CODE_DOTS"], [32, 3, 1, "", "CODE_MINUS"], [32, 3, 1, "", "CODE_OFF"], [32, 3, 1, "", "CODE_PLUS"], [32, 3, 1, "", "COFFEE"], [32, 3, 1, "", "COFFEE_OFF"], [32, 3, 1, "", "COFFIN"], [32, 3, 1, "", "COIN"], [32, 3, 1, "", "COINS"], [32, 3, 1, "", "COIN_BITCOIN"], [32, 3, 1, "", "COIN_EURO"], [32, 3, 1, "", "COIN_MONERO"], [32, 3, 1, "", "COIN_OFF"], [32, 3, 1, "", "COIN_POUND"], [32, 3, 1, "", "COIN_RUPEE"], [32, 3, 1, "", "COIN_YEN"], [32, 3, 1, "", "COIN_YUAN"], [32, 3, 1, "", "COLOR_FILTER"], [32, 3, 1, "", "COLOR_PICKER"], [32, 3, 1, "", "COLOR_PICKER_OFF"], [32, 3, 1, "", "COLOR_SWATCH"], [32, 3, 1, "", "COLOR_SWATCH_OFF"], [32, 3, 1, "", "COLUMNS"], [32, 3, 1, "", "COLUMNS_1"], [32, 3, 1, "", "COLUMNS_2"], [32, 3, 1, "", "COLUMNS_3"], [32, 3, 1, "", "COLUMNS_OFF"], [32, 3, 1, "", "COLUMN_INSERT_LEFT"], [32, 3, 1, "", "COLUMN_INSERT_RIGHT"], [32, 3, 1, "", "COLUMN_REMOVE"], [32, 3, 1, "", "COMET"], [32, 3, 1, "", "COMMAND"], [32, 3, 1, "", "COMMAND_OFF"], [32, 3, 1, "", "COMPASS"], [32, 3, 1, "", "COMPASS_OFF"], [32, 3, 1, "", "COMPONENTS"], [32, 3, 1, "", "COMPONENTS_OFF"], [32, 3, 1, "", "CONE"], [32, 3, 1, "", "CONE_2"], [32, 3, 1, "", "CONE_OFF"], [32, 3, 1, "", "CONE_PLUS"], [32, 3, 1, "", "CONFETTI"], [32, 3, 1, "", "CONFETTI_OFF"], [32, 3, 1, "", "CONFUCIUS"], [32, 3, 1, "", "CONTAINER"], [32, 3, 1, "", "CONTAINER_OFF"], [32, 3, 1, "", "CONTRAST"], [32, 3, 1, "", "CONTRAST_2"], [32, 3, 1, "", "CONTRAST_2_OFF"], [32, 3, 1, "", "CONTRAST_OFF"], [32, 3, 1, "", "COOKER"], [32, 3, 1, "", "COOKIE"], [32, 3, 1, "", "COOKIE_MAN"], [32, 3, 1, "", "COOKIE_OFF"], [32, 3, 1, "", "COPY"], [32, 3, 1, "", "COPYLEFT"], [32, 3, 1, "", "COPYLEFT_FILLED"], [32, 3, 1, "", "COPYLEFT_OFF"], [32, 3, 1, "", "COPYRIGHT"], [32, 3, 1, "", "COPYRIGHT_FILLED"], [32, 3, 1, "", "COPYRIGHT_OFF"], [32, 3, 1, "", "COPY_OFF"], [32, 3, 1, "", "CORNER_DOWN_LEFT"], [32, 3, 1, "", "CORNER_DOWN_LEFT_DOUBLE"], [32, 3, 1, "", "CORNER_DOWN_RIGHT"], [32, 3, 1, "", "CORNER_DOWN_RIGHT_DOUBLE"], [32, 3, 1, "", "CORNER_LEFT_DOWN"], [32, 3, 1, "", "CORNER_LEFT_DOWN_DOUBLE"], [32, 3, 1, "", "CORNER_LEFT_UP"], [32, 3, 1, "", "CORNER_LEFT_UP_DOUBLE"], [32, 3, 1, "", "CORNER_RIGHT_DOWN"], [32, 3, 1, "", "CORNER_RIGHT_DOWN_DOUBLE"], [32, 3, 1, "", "CORNER_RIGHT_UP"], [32, 3, 1, "", "CORNER_RIGHT_UP_DOUBLE"], [32, 3, 1, "", "CORNER_UP_LEFT"], [32, 3, 1, "", "CORNER_UP_LEFT_DOUBLE"], [32, 3, 1, "", "CORNER_UP_RIGHT"], [32, 3, 1, "", "CORNER_UP_RIGHT_DOUBLE"], [32, 3, 1, "", "CPU"], [32, 3, 1, "", "CPU_2"], [32, 3, 1, "", "CPU_OFF"], [32, 3, 1, "", "CRANE"], [32, 3, 1, "", "CRANE_OFF"], [32, 3, 1, "", "CREATIVE_COMMONS"], [32, 3, 1, "", "CREATIVE_COMMONS_BY"], [32, 3, 1, "", "CREATIVE_COMMONS_NC"], [32, 3, 1, "", "CREATIVE_COMMONS_ND"], [32, 3, 1, "", "CREATIVE_COMMONS_OFF"], [32, 3, 1, "", "CREATIVE_COMMONS_SA"], [32, 3, 1, "", "CREATIVE_COMMONS_ZERO"], [32, 3, 1, "", "CREDIT_CARD"], [32, 3, 1, "", "CREDIT_CARD_OFF"], [32, 3, 1, "", "CRICKET"], [32, 3, 1, "", "CROP"], [32, 3, 1, "", "CROSS"], [32, 3, 1, "", "CROSSHAIR"], [32, 3, 1, "", "CROSS_FILLED"], [32, 3, 1, "", "CROSS_OFF"], [32, 3, 1, "", "CROWN"], [32, 3, 1, "", "CROWN_OFF"], [32, 3, 1, "", "CRUTCHES"], [32, 3, 1, "", "CRUTCHES_OFF"], [32, 3, 1, "", "CRYSTAL_BALL"], [32, 3, 1, "", "CSV"], [32, 3, 1, "", "CUBE"], [32, 3, 1, "", "CUBE_OFF"], [32, 3, 1, "", "CUBE_PLUS"], [32, 3, 1, "", "CUBE_SEND"], [32, 3, 1, "", "CUBE_UNFOLDED"], [32, 3, 1, "", "CUP"], [32, 3, 1, "", "CUP_OFF"], [32, 3, 1, "", "CURLING"], [32, 3, 1, "", "CURLY_LOOP"], [32, 3, 1, "", "CURRENCY"], [32, 3, 1, "", "CURRENCY_AFGHANI"], [32, 3, 1, "", "CURRENCY_BAHRAINI"], [32, 3, 1, "", "CURRENCY_BAHT"], [32, 3, 1, "", "CURRENCY_BITCOIN"], [32, 3, 1, "", "CURRENCY_CENT"], [32, 3, 1, "", "CURRENCY_DINAR"], [32, 3, 1, "", "CURRENCY_DIRHAM"], [32, 3, 1, "", "CURRENCY_DOGECOIN"], [32, 3, 1, "", "CURRENCY_DOLLAR"], [32, 3, 1, "", "CURRENCY_DOLLAR_AUSTRALIAN"], [32, 3, 1, "", "CURRENCY_DOLLAR_BRUNEI"], [32, 3, 1, "", "CURRENCY_DOLLAR_CANADIAN"], [32, 3, 1, "", "CURRENCY_DOLLAR_GUYANESE"], [32, 3, 1, "", "CURRENCY_DOLLAR_OFF"], [32, 3, 1, "", "CURRENCY_DOLLAR_SINGAPORE"], [32, 3, 1, "", "CURRENCY_DOLLAR_ZIMBABWEAN"], [32, 3, 1, "", "CURRENCY_DONG"], [32, 3, 1, "", "CURRENCY_DRAM"], [32, 3, 1, "", "CURRENCY_ETHEREUM"], [32, 3, 1, "", "CURRENCY_EURO"], [32, 3, 1, "", "CURRENCY_EURO_OFF"], [32, 3, 1, "", "CURRENCY_FLORIN"], [32, 3, 1, "", "CURRENCY_FORINT"], [32, 3, 1, "", "CURRENCY_FRANK"], [32, 3, 1, "", "CURRENCY_GUARANI"], [32, 3, 1, "", "CURRENCY_HRYVNIA"], [32, 3, 1, "", "CURRENCY_IRANIAN_RIAL"], [32, 3, 1, "", "CURRENCY_KIP"], [32, 3, 1, "", "CURRENCY_KRONE_CZECH"], [32, 3, 1, "", "CURRENCY_KRONE_DANISH"], [32, 3, 1, "", "CURRENCY_KRONE_SWEDISH"], [32, 3, 1, "", "CURRENCY_LARI"], [32, 3, 1, "", "CURRENCY_LEU"], [32, 3, 1, "", "CURRENCY_LIRA"], [32, 3, 1, "", "CURRENCY_LITECOIN"], [32, 3, 1, "", "CURRENCY_LYD"], [32, 3, 1, "", "CURRENCY_MANAT"], [32, 3, 1, "", "CURRENCY_MONERO"], [32, 3, 1, "", "CURRENCY_NAIRA"], [32, 3, 1, "", "CURRENCY_NANO"], [32, 3, 1, "", "CURRENCY_OFF"], [32, 3, 1, "", "CURRENCY_PAANGA"], [32, 3, 1, "", "CURRENCY_PESO"], [32, 3, 1, "", "CURRENCY_POUND"], [32, 3, 1, "", "CURRENCY_POUND_OFF"], [32, 3, 1, "", "CURRENCY_QUETZAL"], [32, 3, 1, "", "CURRENCY_REAL"], [32, 3, 1, "", "CURRENCY_RENMINBI"], [32, 3, 1, "", "CURRENCY_RIPPLE"], [32, 3, 1, "", "CURRENCY_RIYAL"], [32, 3, 1, "", "CURRENCY_RUBEL"], [32, 3, 1, "", "CURRENCY_RUFIYAA"], [32, 3, 1, "", "CURRENCY_RUPEE"], [32, 3, 1, "", "CURRENCY_RUPEE_NEPALESE"], [32, 3, 1, "", "CURRENCY_SHEKEL"], [32, 3, 1, "", "CURRENCY_SOLANA"], [32, 3, 1, "", "CURRENCY_SOM"], [32, 3, 1, "", "CURRENCY_TAKA"], [32, 3, 1, "", "CURRENCY_TENGE"], [32, 3, 1, "", "CURRENCY_TUGRIK"], [32, 3, 1, "", "CURRENCY_WON"], [32, 3, 1, "", "CURRENCY_YEN"], [32, 3, 1, "", "CURRENCY_YEN_OFF"], [32, 3, 1, "", "CURRENCY_YUAN"], [32, 3, 1, "", "CURRENCY_ZLOTY"], [32, 3, 1, "", "CURRENT_LOCATION"], [32, 3, 1, "", "CURRENT_LOCATION_OFF"], [32, 3, 1, "", "CURSOR_OFF"], [32, 3, 1, "", "CURSOR_TEXT"], [32, 3, 1, "", "CUT"], [32, 3, 1, "", "CYLINDER"], [32, 3, 1, "", "CYLINDER_OFF"], [32, 3, 1, "", "CYLINDER_PLUS"], [32, 3, 1, "", "DASHBOARD"], [32, 3, 1, "", "DASHBOARD_OFF"], [32, 3, 1, "", "DATABASE"], [32, 3, 1, "", "DATABASE_COG"], [32, 3, 1, "", "DATABASE_DOLLAR"], [32, 3, 1, "", "DATABASE_EDIT"], [32, 3, 1, "", "DATABASE_EXCLAMATION"], [32, 3, 1, "", "DATABASE_EXPORT"], [32, 3, 1, "", "DATABASE_HEART"], [32, 3, 1, "", "DATABASE_IMPORT"], [32, 3, 1, "", "DATABASE_LEAK"], [32, 3, 1, "", "DATABASE_MINUS"], [32, 3, 1, "", "DATABASE_OFF"], [32, 3, 1, "", "DATABASE_PLUS"], [32, 3, 1, "", "DATABASE_SEARCH"], [32, 3, 1, "", "DATABASE_SHARE"], [32, 3, 1, "", "DATABASE_STAR"], [32, 3, 1, "", "DATABASE_X"], [32, 3, 1, "", "DECIMAL"], [32, 3, 1, "", "DEER"], [32, 3, 1, "", "DELTA"], [32, 3, 1, "", "DENTAL"], [32, 3, 1, "", "DENTAL_BROKEN"], [32, 3, 1, "", "DENTAL_OFF"], [32, 3, 1, "", "DESELECT"], [32, 3, 1, "", "DETAILS"], [32, 3, 1, "", "DETAILS_OFF"], [32, 3, 1, "", "DEVICES"], [32, 3, 1, "", "DEVICES_2"], [32, 3, 1, "", "DEVICES_BOLT"], [32, 3, 1, "", "DEVICES_CANCEL"], [32, 3, 1, "", "DEVICES_CHECK"], [32, 3, 1, "", "DEVICES_CODE"], [32, 3, 1, "", "DEVICES_COG"], [32, 3, 1, "", "DEVICES_DOLLAR"], [32, 3, 1, "", "DEVICES_DOWN"], [32, 3, 1, "", "DEVICES_EXCLAMATION"], [32, 3, 1, "", "DEVICES_HEART"], [32, 3, 1, "", "DEVICES_MINUS"], [32, 3, 1, "", "DEVICES_OFF"], [32, 3, 1, "", "DEVICES_PAUSE"], [32, 3, 1, "", "DEVICES_PC"], [32, 3, 1, "", "DEVICES_PC_OFF"], [32, 3, 1, "", "DEVICES_PIN"], [32, 3, 1, "", "DEVICES_PLUS"], [32, 3, 1, "", "DEVICES_QUESTION"], [32, 3, 1, "", "DEVICES_SEARCH"], [32, 3, 1, "", "DEVICES_SHARE"], [32, 3, 1, "", "DEVICES_STAR"], [32, 3, 1, "", "DEVICES_UP"], [32, 3, 1, "", "DEVICES_X"], [32, 3, 1, "", "DEVICE_AIRPODS"], [32, 3, 1, "", "DEVICE_AIRPODS_CASE"], [32, 3, 1, "", "DEVICE_AIRTAG"], [32, 3, 1, "", "DEVICE_ANALYTICS"], [32, 3, 1, "", "DEVICE_AUDIO_TAPE"], [32, 3, 1, "", "DEVICE_CAMERA_PHONE"], [32, 3, 1, "", "DEVICE_CCTV"], [32, 3, 1, "", "DEVICE_CCTV_OFF"], [32, 3, 1, "", "DEVICE_COMPUTER_CAMERA"], [32, 3, 1, "", "DEVICE_COMPUTER_CAMERA_OFF"], [32, 3, 1, "", "DEVICE_DESKTOP"], [32, 3, 1, "", "DEVICE_DESKTOP_ANALYTICS"], [32, 3, 1, "", "DEVICE_DESKTOP_BOLT"], [32, 3, 1, "", "DEVICE_DESKTOP_CANCEL"], [32, 3, 1, "", "DEVICE_DESKTOP_CHECK"], [32, 3, 1, "", "DEVICE_DESKTOP_CODE"], [32, 3, 1, "", "DEVICE_DESKTOP_COG"], [32, 3, 1, "", "DEVICE_DESKTOP_DOLLAR"], [32, 3, 1, "", "DEVICE_DESKTOP_DOWN"], [32, 3, 1, "", "DEVICE_DESKTOP_EXCLAMATION"], [32, 3, 1, "", "DEVICE_DESKTOP_HEART"], [32, 3, 1, "", "DEVICE_DESKTOP_MINUS"], [32, 3, 1, "", "DEVICE_DESKTOP_OFF"], [32, 3, 1, "", "DEVICE_DESKTOP_PAUSE"], [32, 3, 1, "", "DEVICE_DESKTOP_PIN"], [32, 3, 1, "", "DEVICE_DESKTOP_PLUS"], [32, 3, 1, "", "DEVICE_DESKTOP_QUESTION"], [32, 3, 1, "", "DEVICE_DESKTOP_SEARCH"], [32, 3, 1, "", "DEVICE_DESKTOP_SHARE"], [32, 3, 1, "", "DEVICE_DESKTOP_STAR"], [32, 3, 1, "", "DEVICE_DESKTOP_UP"], [32, 3, 1, "", "DEVICE_DESKTOP_X"], [32, 3, 1, "", "DEVICE_FLOPPY"], [32, 3, 1, "", "DEVICE_GAMEPAD"], [32, 3, 1, "", "DEVICE_GAMEPAD_2"], [32, 3, 1, "", "DEVICE_HEART_MONITOR"], [32, 3, 1, "", "DEVICE_HEART_MONITOR_FILLED"], [32, 3, 1, "", "DEVICE_IMAC"], [32, 3, 1, "", "DEVICE_IMAC_BOLT"], [32, 3, 1, "", "DEVICE_IMAC_CANCEL"], [32, 3, 1, "", "DEVICE_IMAC_CHECK"], [32, 3, 1, "", "DEVICE_IMAC_CODE"], [32, 3, 1, "", "DEVICE_IMAC_COG"], [32, 3, 1, "", "DEVICE_IMAC_DOLLAR"], [32, 3, 1, "", "DEVICE_IMAC_DOWN"], [32, 3, 1, "", "DEVICE_IMAC_EXCLAMATION"], [32, 3, 1, "", "DEVICE_IMAC_HEART"], [32, 3, 1, "", "DEVICE_IMAC_MINUS"], [32, 3, 1, "", "DEVICE_IMAC_OFF"], [32, 3, 1, "", "DEVICE_IMAC_PAUSE"], [32, 3, 1, "", "DEVICE_IMAC_PIN"], [32, 3, 1, "", "DEVICE_IMAC_PLUS"], [32, 3, 1, "", "DEVICE_IMAC_QUESTION"], [32, 3, 1, "", "DEVICE_IMAC_SEARCH"], [32, 3, 1, "", "DEVICE_IMAC_SHARE"], [32, 3, 1, "", "DEVICE_IMAC_STAR"], [32, 3, 1, "", "DEVICE_IMAC_UP"], [32, 3, 1, "", "DEVICE_IMAC_X"], [32, 3, 1, "", "DEVICE_IPAD"], [32, 3, 1, "", "DEVICE_IPAD_BOLT"], [32, 3, 1, "", "DEVICE_IPAD_CANCEL"], [32, 3, 1, "", "DEVICE_IPAD_CHECK"], [32, 3, 1, "", "DEVICE_IPAD_CODE"], [32, 3, 1, "", "DEVICE_IPAD_COG"], [32, 3, 1, "", "DEVICE_IPAD_DOLLAR"], [32, 3, 1, "", "DEVICE_IPAD_DOWN"], [32, 3, 1, "", "DEVICE_IPAD_EXCLAMATION"], [32, 3, 1, "", "DEVICE_IPAD_HEART"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_BOLT"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_CANCEL"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_CHECK"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_CODE"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_COG"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_DOLLAR"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_DOWN"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_EXCLAMATION"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_HEART"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_MINUS"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_OFF"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_PAUSE"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_PIN"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_PLUS"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_QUESTION"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_SEARCH"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_SHARE"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_STAR"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_UP"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_X"], [32, 3, 1, "", "DEVICE_IPAD_MINUS"], [32, 3, 1, "", "DEVICE_IPAD_OFF"], [32, 3, 1, "", "DEVICE_IPAD_PAUSE"], [32, 3, 1, "", "DEVICE_IPAD_PIN"], [32, 3, 1, "", "DEVICE_IPAD_PLUS"], [32, 3, 1, "", "DEVICE_IPAD_QUESTION"], [32, 3, 1, "", "DEVICE_IPAD_SEARCH"], [32, 3, 1, "", "DEVICE_IPAD_SHARE"], [32, 3, 1, "", "DEVICE_IPAD_STAR"], [32, 3, 1, "", "DEVICE_IPAD_UP"], [32, 3, 1, "", "DEVICE_IPAD_X"], [32, 3, 1, "", "DEVICE_LANDLINE_PHONE"], [32, 3, 1, "", "DEVICE_LAPTOP"], [32, 3, 1, "", "DEVICE_LAPTOP_OFF"], [32, 3, 1, "", "DEVICE_MOBILE"], [32, 3, 1, "", "DEVICE_MOBILE_BOLT"], [32, 3, 1, "", "DEVICE_MOBILE_CANCEL"], [32, 3, 1, "", "DEVICE_MOBILE_CHARGING"], [32, 3, 1, "", "DEVICE_MOBILE_CHECK"], [32, 3, 1, "", "DEVICE_MOBILE_CODE"], [32, 3, 1, "", "DEVICE_MOBILE_COG"], [32, 3, 1, "", "DEVICE_MOBILE_DOLLAR"], [32, 3, 1, "", "DEVICE_MOBILE_DOWN"], [32, 3, 1, "", "DEVICE_MOBILE_EXCLAMATION"], [32, 3, 1, "", "DEVICE_MOBILE_FILLED"], [32, 3, 1, "", "DEVICE_MOBILE_HEART"], [32, 3, 1, "", "DEVICE_MOBILE_MESSAGE"], [32, 3, 1, "", "DEVICE_MOBILE_MINUS"], [32, 3, 1, "", "DEVICE_MOBILE_OFF"], [32, 3, 1, "", "DEVICE_MOBILE_PAUSE"], [32, 3, 1, "", "DEVICE_MOBILE_PIN"], [32, 3, 1, "", "DEVICE_MOBILE_PLUS"], [32, 3, 1, "", "DEVICE_MOBILE_QUESTION"], [32, 3, 1, "", "DEVICE_MOBILE_ROTATED"], [32, 3, 1, "", "DEVICE_MOBILE_SEARCH"], [32, 3, 1, "", "DEVICE_MOBILE_SHARE"], [32, 3, 1, "", "DEVICE_MOBILE_STAR"], [32, 3, 1, "", "DEVICE_MOBILE_UP"], [32, 3, 1, "", "DEVICE_MOBILE_VIBRATION"], [32, 3, 1, "", "DEVICE_MOBILE_X"], [32, 3, 1, "", "DEVICE_NINTENDO"], [32, 3, 1, "", "DEVICE_NINTENDO_OFF"], [32, 3, 1, "", "DEVICE_REMOTE"], [32, 3, 1, "", "DEVICE_SD_CARD"], [32, 3, 1, "", "DEVICE_SIM"], [32, 3, 1, "", "DEVICE_SIM_1"], [32, 3, 1, "", "DEVICE_SIM_2"], [32, 3, 1, "", "DEVICE_SIM_3"], [32, 3, 1, "", "DEVICE_SPEAKER"], [32, 3, 1, "", "DEVICE_SPEAKER_OFF"], [32, 3, 1, "", "DEVICE_TABLET"], [32, 3, 1, "", "DEVICE_TABLET_BOLT"], [32, 3, 1, "", "DEVICE_TABLET_CANCEL"], [32, 3, 1, "", "DEVICE_TABLET_CHECK"], [32, 3, 1, "", "DEVICE_TABLET_CODE"], [32, 3, 1, "", "DEVICE_TABLET_COG"], [32, 3, 1, "", "DEVICE_TABLET_DOLLAR"], [32, 3, 1, "", "DEVICE_TABLET_DOWN"], [32, 3, 1, "", "DEVICE_TABLET_EXCLAMATION"], [32, 3, 1, "", "DEVICE_TABLET_FILLED"], [32, 3, 1, "", "DEVICE_TABLET_HEART"], [32, 3, 1, "", "DEVICE_TABLET_MINUS"], [32, 3, 1, "", "DEVICE_TABLET_OFF"], [32, 3, 1, "", "DEVICE_TABLET_PAUSE"], [32, 3, 1, "", "DEVICE_TABLET_PIN"], [32, 3, 1, "", "DEVICE_TABLET_PLUS"], [32, 3, 1, "", "DEVICE_TABLET_QUESTION"], [32, 3, 1, "", "DEVICE_TABLET_SEARCH"], [32, 3, 1, "", "DEVICE_TABLET_SHARE"], [32, 3, 1, "", "DEVICE_TABLET_STAR"], [32, 3, 1, "", "DEVICE_TABLET_UP"], [32, 3, 1, "", "DEVICE_TABLET_X"], [32, 3, 1, "", "DEVICE_TV"], [32, 3, 1, "", "DEVICE_TV_OFF"], [32, 3, 1, "", "DEVICE_TV_OLD"], [32, 3, 1, "", "DEVICE_VISION_PRO"], [32, 3, 1, "", "DEVICE_WATCH"], [32, 3, 1, "", "DEVICE_WATCH_BOLT"], [32, 3, 1, "", "DEVICE_WATCH_CANCEL"], [32, 3, 1, "", "DEVICE_WATCH_CHECK"], [32, 3, 1, "", "DEVICE_WATCH_CODE"], [32, 3, 1, "", "DEVICE_WATCH_COG"], [32, 3, 1, "", "DEVICE_WATCH_DOLLAR"], [32, 3, 1, "", "DEVICE_WATCH_DOWN"], [32, 3, 1, "", "DEVICE_WATCH_EXCLAMATION"], [32, 3, 1, "", "DEVICE_WATCH_HEART"], [32, 3, 1, "", "DEVICE_WATCH_MINUS"], [32, 3, 1, "", "DEVICE_WATCH_OFF"], [32, 3, 1, "", "DEVICE_WATCH_PAUSE"], [32, 3, 1, "", "DEVICE_WATCH_PIN"], [32, 3, 1, "", "DEVICE_WATCH_PLUS"], [32, 3, 1, "", "DEVICE_WATCH_QUESTION"], [32, 3, 1, "", "DEVICE_WATCH_SEARCH"], [32, 3, 1, "", "DEVICE_WATCH_SHARE"], [32, 3, 1, "", "DEVICE_WATCH_STAR"], [32, 3, 1, "", "DEVICE_WATCH_STATS"], [32, 3, 1, "", "DEVICE_WATCH_STATS_2"], [32, 3, 1, "", "DEVICE_WATCH_UP"], [32, 3, 1, "", "DEVICE_WATCH_X"], [32, 3, 1, "", "DIABOLO"], [32, 3, 1, "", "DIABOLO_OFF"], [32, 3, 1, "", "DIABOLO_PLUS"], [32, 3, 1, "", "DIALPAD"], [32, 3, 1, "", "DIALPAD_FILLED"], [32, 3, 1, "", "DIALPAD_OFF"], [32, 3, 1, "", "DIAMOND"], [32, 3, 1, "", "DIAMONDS"], [32, 3, 1, "", "DIAMONDS_FILLED"], [32, 3, 1, "", "DIAMOND_FILLED"], [32, 3, 1, "", "DIAMOND_OFF"], [32, 3, 1, "", "DICE"], [32, 3, 1, "", "DICE_1"], [32, 3, 1, "", "DICE_1_FILLED"], [32, 3, 1, "", "DICE_2"], [32, 3, 1, "", "DICE_2_FILLED"], [32, 3, 1, "", "DICE_3"], [32, 3, 1, "", "DICE_3_FILLED"], [32, 3, 1, "", "DICE_4"], [32, 3, 1, "", "DICE_4_FILLED"], [32, 3, 1, "", "DICE_5"], [32, 3, 1, "", "DICE_5_FILLED"], [32, 3, 1, "", "DICE_6"], [32, 3, 1, "", "DICE_6_FILLED"], [32, 3, 1, "", "DICE_FILLED"], [32, 3, 1, "", "DIMENSIONS"], [32, 3, 1, "", "DIRECTION"], [32, 3, 1, "", "DIRECTIONS"], [32, 3, 1, "", "DIRECTIONS_OFF"], [32, 3, 1, "", "DIRECTION_HORIZONTAL"], [32, 3, 1, "", "DIRECTION_SIGN"], [32, 3, 1, "", "DIRECTION_SIGN_FILLED"], [32, 3, 1, "", "DIRECTION_SIGN_OFF"], [32, 3, 1, "", "DISABLED"], [32, 3, 1, "", "DISABLED_2"], [32, 3, 1, "", "DISABLED_OFF"], [32, 3, 1, "", "DISC"], [32, 3, 1, "", "DISCOUNT"], [32, 3, 1, "", "DISCOUNT_2"], [32, 3, 1, "", "DISCOUNT_2_OFF"], [32, 3, 1, "", "DISCOUNT_CHECK"], [32, 3, 1, "", "DISCOUNT_CHECK_FILLED"], [32, 3, 1, "", "DISCOUNT_OFF"], [32, 3, 1, "", "DISC_GOLF"], [32, 3, 1, "", "DISC_OFF"], [32, 3, 1, "", "DIVIDE"], [32, 3, 1, "", "DNA"], [32, 3, 1, "", "DNA_2"], [32, 3, 1, "", "DNA_2_OFF"], [32, 3, 1, "", "DNA_OFF"], [32, 3, 1, "", "DOG"], [32, 3, 1, "", "DOG_BOWL"], [32, 3, 1, "", "DOOR"], [32, 3, 1, "", "DOOR_ENTER"], [32, 3, 1, "", "DOOR_EXIT"], [32, 3, 1, "", "DOOR_OFF"], [32, 3, 1, "", "DOTS"], [32, 3, 1, "", "DOTS_CIRCLE_HORIZONTAL"], [32, 3, 1, "", "DOTS_DIAGONAL"], [32, 3, 1, "", "DOTS_DIAGONAL_2"], [32, 3, 1, "", "DOTS_VERTICAL"], [32, 3, 1, "", "DOWNLOAD"], [32, 3, 1, "", "DOWNLOAD_OFF"], [32, 3, 1, "", "DRAG_DROP"], [32, 3, 1, "", "DRAG_DROP_2"], [32, 3, 1, "", "DRONE"], [32, 3, 1, "", "DRONE_OFF"], [32, 3, 1, "", "DROPLET"], [32, 3, 1, "", "DROPLET_BOLT"], [32, 3, 1, "", "DROPLET_CANCEL"], [32, 3, 1, "", "DROPLET_CHECK"], [32, 3, 1, "", "DROPLET_CODE"], [32, 3, 1, "", "DROPLET_COG"], [32, 3, 1, "", "DROPLET_DOLLAR"], [32, 3, 1, "", "DROPLET_DOWN"], [32, 3, 1, "", "DROPLET_EXCLAMATION"], [32, 3, 1, "", "DROPLET_FILLED"], [32, 3, 1, "", "DROPLET_FILLED_2"], [32, 3, 1, "", "DROPLET_HALF"], [32, 3, 1, "", "DROPLET_HALF_2"], [32, 3, 1, "", "DROPLET_HALF_FILLED"], [32, 3, 1, "", "DROPLET_HEART"], [32, 3, 1, "", "DROPLET_MINUS"], [32, 3, 1, "", "DROPLET_OFF"], [32, 3, 1, "", "DROPLET_PAUSE"], [32, 3, 1, "", "DROPLET_PIN"], [32, 3, 1, "", "DROPLET_PLUS"], [32, 3, 1, "", "DROPLET_QUESTION"], [32, 3, 1, "", "DROPLET_SEARCH"], [32, 3, 1, "", "DROPLET_SHARE"], [32, 3, 1, "", "DROPLET_STAR"], [32, 3, 1, "", "DROPLET_UP"], [32, 3, 1, "", "DROPLET_X"], [32, 3, 1, "", "DROP_CIRCLE"], [32, 3, 1, "", "DUAL_SCREEN"], [32, 3, 1, "", "EAR"], [32, 3, 1, "", "EAR_OFF"], [32, 3, 1, "", "EASE_IN"], [32, 3, 1, "", "EASE_IN_CONTROL_POINT"], [32, 3, 1, "", "EASE_IN_OUT"], [32, 3, 1, "", "EASE_IN_OUT_CONTROL_POINTS"], [32, 3, 1, "", "EASE_OUT"], [32, 3, 1, "", "EASE_OUT_CONTROL_POINT"], [32, 3, 1, "", "EDIT"], [32, 3, 1, "", "EDIT_CIRCLE"], [32, 3, 1, "", "EDIT_CIRCLE_OFF"], [32, 3, 1, "", "EDIT_OFF"], [32, 3, 1, "", "EGG"], [32, 3, 1, "", "EGGS"], [32, 3, 1, "", "EGG_CRACKED"], [32, 3, 1, "", "EGG_FILLED"], [32, 3, 1, "", "EGG_FRIED"], [32, 3, 1, "", "EGG_OFF"], [32, 3, 1, "", "ELEVATOR"], [32, 3, 1, "", "ELEVATOR_OFF"], [32, 3, 1, "", "EMERGENCY_BED"], [32, 3, 1, "", "EMPATHIZE"], [32, 3, 1, "", "EMPATHIZE_OFF"], [32, 3, 1, "", "EMPHASIS"], [32, 3, 1, "", "ENGINE"], [32, 3, 1, "", "ENGINE_OFF"], [32, 3, 1, "", "EQUAL"], [32, 3, 1, "", "EQUAL_DOUBLE"], [32, 3, 1, "", "EQUAL_NOT"], [32, 3, 1, "", "ERASER"], [32, 3, 1, "", "ERASER_OFF"], [32, 3, 1, "", "ERROR_404"], [32, 3, 1, "", "ERROR_404_OFF"], [32, 3, 1, "", "EXCHANGE"], [32, 3, 1, "", "EXCHANGE_OFF"], [32, 3, 1, "", "EXCLAMATION_CIRCLE"], [32, 3, 1, "", "EXCLAMATION_MARK"], [32, 3, 1, "", "EXCLAMATION_MARK_OFF"], [32, 3, 1, "", "EXPLICIT"], [32, 3, 1, "", "EXPLICIT_OFF"], [32, 3, 1, "", "EXPOSURE"], [32, 3, 1, "", "EXPOSURE_0"], [32, 3, 1, "", "EXPOSURE_MINUS_1"], [32, 3, 1, "", "EXPOSURE_MINUS_2"], [32, 3, 1, "", "EXPOSURE_OFF"], [32, 3, 1, "", "EXPOSURE_PLUS_1"], [32, 3, 1, "", "EXPOSURE_PLUS_2"], [32, 3, 1, "", "EXTERNAL_LINK"], [32, 3, 1, "", "EXTERNAL_LINK_OFF"], [32, 3, 1, "", "EYE"], [32, 3, 1, "", "EYEGLASS"], [32, 3, 1, "", "EYEGLASS_2"], [32, 3, 1, "", "EYEGLASS_OFF"], [32, 3, 1, "", "EYE_CHECK"], [32, 3, 1, "", "EYE_CLOSED"], [32, 3, 1, "", "EYE_COG"], [32, 3, 1, "", "EYE_EDIT"], [32, 3, 1, "", "EYE_EXCLAMATION"], [32, 3, 1, "", "EYE_FILLED"], [32, 3, 1, "", "EYE_HEART"], [32, 3, 1, "", "EYE_OFF"], [32, 3, 1, "", "EYE_TABLE"], [32, 3, 1, "", "EYE_X"], [32, 3, 1, "", "E_PASSPORT"], [32, 3, 1, "", "FACE_ID"], [32, 3, 1, "", "FACE_ID_ERROR"], [32, 3, 1, "", "FACE_MASK"], [32, 3, 1, "", "FACE_MASK_OFF"], [32, 3, 1, "", "FALL"], [32, 3, 1, "", "FEATHER"], [32, 3, 1, "", "FEATHER_OFF"], [32, 3, 1, "", "FENCE"], [32, 3, 1, "", "FENCE_OFF"], [32, 3, 1, "", "FIDGET_SPINNER"], [32, 3, 1, "", "FILE"], [32, 3, 1, "", "FILES"], [32, 3, 1, "", "FILES_OFF"], [32, 3, 1, "", "FILE_3D"], [32, 3, 1, "", "FILE_ALERT"], [32, 3, 1, "", "FILE_ANALYTICS"], [32, 3, 1, "", "FILE_ARROW_LEFT"], [32, 3, 1, "", "FILE_ARROW_RIGHT"], [32, 3, 1, "", "FILE_BARCODE"], [32, 3, 1, "", "FILE_BROKEN"], [32, 3, 1, "", "FILE_CERTIFICATE"], [32, 3, 1, "", "FILE_CHART"], [32, 3, 1, "", "FILE_CHECK"], [32, 3, 1, "", "FILE_CODE"], [32, 3, 1, "", "FILE_CODE_2"], [32, 3, 1, "", "FILE_CV"], [32, 3, 1, "", "FILE_DATABASE"], [32, 3, 1, "", "FILE_DELTA"], [32, 3, 1, "", "FILE_DESCRIPTION"], [32, 3, 1, "", "FILE_DIFF"], [32, 3, 1, "", "FILE_DIGIT"], [32, 3, 1, "", "FILE_DISLIKE"], [32, 3, 1, "", "FILE_DOLLAR"], [32, 3, 1, "", "FILE_DOTS"], [32, 3, 1, "", "FILE_DOWNLOAD"], [32, 3, 1, "", "FILE_EURO"], [32, 3, 1, "", "FILE_EXPORT"], [32, 3, 1, "", "FILE_FILLED"], [32, 3, 1, "", "FILE_FUNCTION"], [32, 3, 1, "", "FILE_HORIZONTAL"], [32, 3, 1, "", "FILE_IMPORT"], [32, 3, 1, "", "FILE_INFINITY"], [32, 3, 1, "", "FILE_INFO"], [32, 3, 1, "", "FILE_INVOICE"], [32, 3, 1, "", "FILE_LAMBDA"], [32, 3, 1, "", "FILE_LIKE"], [32, 3, 1, "", "FILE_MINUS"], [32, 3, 1, "", "FILE_MUSIC"], [32, 3, 1, "", "FILE_OFF"], [32, 3, 1, "", "FILE_ORIENTATION"], [32, 3, 1, "", "FILE_PENCIL"], [32, 3, 1, "", "FILE_PERCENT"], [32, 3, 1, "", "FILE_PHONE"], [32, 3, 1, "", "FILE_PLUS"], [32, 3, 1, "", "FILE_POWER"], [32, 3, 1, "", "FILE_REPORT"], [32, 3, 1, "", "FILE_RSS"], [32, 3, 1, "", "FILE_SCISSORS"], [32, 3, 1, "", "FILE_SEARCH"], [32, 3, 1, "", "FILE_SETTINGS"], [32, 3, 1, "", "FILE_SHREDDER"], [32, 3, 1, "", "FILE_SIGNAL"], [32, 3, 1, "", "FILE_SPREADSHEET"], [32, 3, 1, "", "FILE_STACK"], [32, 3, 1, "", "FILE_STAR"], [32, 3, 1, "", "FILE_SYMLINK"], [32, 3, 1, "", "FILE_TEXT"], [32, 3, 1, "", "FILE_TEXT_AI"], [32, 3, 1, "", "FILE_TIME"], [32, 3, 1, "", "FILE_TYPOGRAPHY"], [32, 3, 1, "", "FILE_UNKNOWN"], [32, 3, 1, "", "FILE_UPLOAD"], [32, 3, 1, "", "FILE_VECTOR"], [32, 3, 1, "", "FILE_X"], [32, 3, 1, "", "FILE_X_FILLED"], [32, 3, 1, "", "FILE_ZIP"], [32, 3, 1, "", "FILTER"], [32, 3, 1, "", "FILTERS"], [32, 3, 1, "", "FILTER_COG"], [32, 3, 1, "", "FILTER_DOLLAR"], [32, 3, 1, "", "FILTER_EDIT"], [32, 3, 1, "", "FILTER_MINUS"], [32, 3, 1, "", "FILTER_OFF"], [32, 3, 1, "", "FILTER_PLUS"], [32, 3, 1, "", "FILTER_STAR"], [32, 3, 1, "", "FILTER_X"], [32, 3, 1, "", "FINGERPRINT"], [32, 3, 1, "", "FINGERPRINT_OFF"], [32, 3, 1, "", "FIRETRUCK"], [32, 3, 1, "", "FIRE_EXTINGUISHER"], [32, 3, 1, "", "FIRE_HYDRANT"], [32, 3, 1, "", "FIRE_HYDRANT_OFF"], [32, 3, 1, "", "FIRST_AID_KIT"], [32, 3, 1, "", "FIRST_AID_KIT_OFF"], [32, 3, 1, "", "FISH"], [32, 3, 1, "", "FISH_BONE"], [32, 3, 1, "", "FISH_CHRISTIANITY"], [32, 3, 1, "", "FISH_HOOK"], [32, 3, 1, "", "FISH_HOOK_OFF"], [32, 3, 1, "", "FISH_OFF"], [32, 3, 1, "", "FLAG"], [32, 3, 1, "", "FLAG_2"], [32, 3, 1, "", "FLAG_2_FILLED"], [32, 3, 1, "", "FLAG_2_OFF"], [32, 3, 1, "", "FLAG_3"], [32, 3, 1, "", "FLAG_3_FILLED"], [32, 3, 1, "", "FLAG_FILLED"], [32, 3, 1, "", "FLAG_OFF"], [32, 3, 1, "", "FLAME"], [32, 3, 1, "", "FLAME_OFF"], [32, 3, 1, "", "FLARE"], [32, 3, 1, "", "FLASK"], [32, 3, 1, "", "FLASK_2"], [32, 3, 1, "", "FLASK_2_OFF"], [32, 3, 1, "", "FLASK_OFF"], [32, 3, 1, "", "FLIP_FLOPS"], [32, 3, 1, "", "FLIP_HORIZONTAL"], [32, 3, 1, "", "FLIP_VERTICAL"], [32, 3, 1, "", "FLOAT_CENTER"], [32, 3, 1, "", "FLOAT_LEFT"], [32, 3, 1, "", "FLOAT_NONE"], [32, 3, 1, "", "FLOAT_RIGHT"], [32, 3, 1, "", "FLOWER"], [32, 3, 1, "", "FLOWER_OFF"], [32, 3, 1, "", "FOCUS"], [32, 3, 1, "", "FOCUS_2"], [32, 3, 1, "", "FOCUS_AUTO"], [32, 3, 1, "", "FOCUS_CENTERED"], [32, 3, 1, "", "FOLD"], [32, 3, 1, "", "FOLDER"], [32, 3, 1, "", "FOLDERS"], [32, 3, 1, "", "FOLDERS_OFF"], [32, 3, 1, "", "FOLDER_BOLT"], [32, 3, 1, "", "FOLDER_CANCEL"], [32, 3, 1, "", "FOLDER_CHECK"], [32, 3, 1, "", "FOLDER_CODE"], [32, 3, 1, "", "FOLDER_COG"], [32, 3, 1, "", "FOLDER_DOLLAR"], [32, 3, 1, "", "FOLDER_DOWN"], [32, 3, 1, "", "FOLDER_EXCLAMATION"], [32, 3, 1, "", "FOLDER_FILLED"], [32, 3, 1, "", "FOLDER_HEART"], [32, 3, 1, "", "FOLDER_MINUS"], [32, 3, 1, "", "FOLDER_OFF"], [32, 3, 1, "", "FOLDER_OPEN"], [32, 3, 1, "", "FOLDER_PAUSE"], [32, 3, 1, "", "FOLDER_PIN"], [32, 3, 1, "", "FOLDER_PLUS"], [32, 3, 1, "", "FOLDER_QUESTION"], [32, 3, 1, "", "FOLDER_SEARCH"], [32, 3, 1, "", "FOLDER_SHARE"], [32, 3, 1, "", "FOLDER_STAR"], [32, 3, 1, "", "FOLDER_SYMLINK"], [32, 3, 1, "", "FOLDER_UP"], [32, 3, 1, "", "FOLDER_X"], [32, 3, 1, "", "FOLD_DOWN"], [32, 3, 1, "", "FOLD_UP"], [32, 3, 1, "", "FORBID"], [32, 3, 1, "", "FORBID_2"], [32, 3, 1, "", "FORKLIFT"], [32, 3, 1, "", "FORMS"], [32, 3, 1, "", "FOUNTAIN"], [32, 3, 1, "", "FOUNTAIN_OFF"], [32, 3, 1, "", "FRAME"], [32, 3, 1, "", "FRAME_OFF"], [32, 3, 1, "", "FREEZE_COLUMN"], [32, 3, 1, "", "FREEZE_ROW"], [32, 3, 1, "", "FREEZE_ROW_COLUMN"], [32, 3, 1, "", "FREE_RIGHTS"], [32, 3, 1, "", "FRIDGE"], [32, 3, 1, "", "FRIDGE_OFF"], [32, 3, 1, "", "FRIENDS"], [32, 3, 1, "", "FRIENDS_OFF"], [32, 3, 1, "", "FRUSTUM"], [32, 3, 1, "", "FRUSTUM_OFF"], [32, 3, 1, "", "FRUSTUM_PLUS"], [32, 3, 1, "", "FUNCTION"], [32, 3, 1, "", "FUNCTION_OFF"], [32, 3, 1, "", "GARDEN_CART"], [32, 3, 1, "", "GARDEN_CART_OFF"], [32, 3, 1, "", "GAS_STATION"], [32, 3, 1, "", "GAS_STATION_OFF"], [32, 3, 1, "", "GAUGE"], [32, 3, 1, "", "GAUGE_OFF"], [32, 3, 1, "", "GAVEL"], [32, 3, 1, "", "GENDER_AGENDER"], [32, 3, 1, "", "GENDER_ANDROGYNE"], [32, 3, 1, "", "GENDER_BIGENDER"], [32, 3, 1, "", "GENDER_DEMIBOY"], [32, 3, 1, "", "GENDER_DEMIGIRL"], [32, 3, 1, "", "GENDER_EPICENE"], [32, 3, 1, "", "GENDER_FEMALE"], [32, 3, 1, "", "GENDER_FEMME"], [32, 3, 1, "", "GENDER_GENDERFLUID"], [32, 3, 1, "", "GENDER_GENDERLESS"], [32, 3, 1, "", "GENDER_GENDERQUEER"], [32, 3, 1, "", "GENDER_HERMAPHRODITE"], [32, 3, 1, "", "GENDER_INTERGENDER"], [32, 3, 1, "", "GENDER_MALE"], [32, 3, 1, "", "GENDER_NEUTROIS"], [32, 3, 1, "", "GENDER_THIRD"], [32, 3, 1, "", "GENDER_TRANSGENDER"], [32, 3, 1, "", "GENDER_TRASVESTI"], [32, 3, 1, "", "GEOMETRY"], [32, 3, 1, "", "GHOST"], [32, 3, 1, "", "GHOST_2"], [32, 3, 1, "", "GHOST_2_FILLED"], [32, 3, 1, "", "GHOST_FILLED"], [32, 3, 1, "", "GHOST_OFF"], [32, 3, 1, "", "GIF"], [32, 3, 1, "", "GIFT"], [32, 3, 1, "", "GIFT_CARD"], [32, 3, 1, "", "GIFT_OFF"], [32, 3, 1, "", "GIT_BRANCH"], [32, 3, 1, "", "GIT_BRANCH_DELETED"], [32, 3, 1, "", "GIT_CHERRY_PICK"], [32, 3, 1, "", "GIT_COMMIT"], [32, 3, 1, "", "GIT_COMPARE"], [32, 3, 1, "", "GIT_FORK"], [32, 3, 1, "", "GIT_MERGE"], [32, 3, 1, "", "GIT_PULL_REQUEST"], [32, 3, 1, "", "GIT_PULL_REQUEST_CLOSED"], [32, 3, 1, "", "GIT_PULL_REQUEST_DRAFT"], [32, 3, 1, "", "GIZMO"], [32, 3, 1, "", "GLASS"], [32, 3, 1, "", "GLASS_FULL"], [32, 3, 1, "", "GLASS_OFF"], [32, 3, 1, "", "GLOBE"], [32, 3, 1, "", "GLOBE_OFF"], [32, 3, 1, "", "GOLF"], [32, 3, 1, "", "GOLF_OFF"], [32, 3, 1, "", "GO_GAME"], [32, 3, 1, "", "GPS"], [32, 3, 1, "", "GRADIENTER"], [32, 3, 1, "", "GRAIN"], [32, 3, 1, "", "GRAPH"], [32, 3, 1, "", "GRAPH_OFF"], [32, 3, 1, "", "GRAVE"], [32, 3, 1, "", "GRAVE_2"], [32, 3, 1, "", "GRID_DOTS"], [32, 3, 1, "", "GRID_PATTERN"], [32, 3, 1, "", "GRILL"], [32, 3, 1, "", "GRILL_FORK"], [32, 3, 1, "", "GRILL_OFF"], [32, 3, 1, "", "GRILL_SPATULA"], [32, 3, 1, "", "GRIP_HORIZONTAL"], [32, 3, 1, "", "GRIP_VERTICAL"], [32, 3, 1, "", "GROWTH"], [32, 3, 1, "", "GUITAR_PICK"], [32, 3, 1, "", "GUITAR_PICK_FILLED"], [32, 3, 1, "", "HAMMER"], [32, 3, 1, "", "HAMMER_OFF"], [32, 3, 1, "", "HAND_CLICK"], [32, 3, 1, "", "HAND_FINGER"], [32, 3, 1, "", "HAND_FINGER_OFF"], [32, 3, 1, "", "HAND_GRAB"], [32, 3, 1, "", "HAND_LITTLE_FINGER"], [32, 3, 1, "", "HAND_MIDDLE_FINGER"], [32, 3, 1, "", "HAND_MOVE"], [32, 3, 1, "", "HAND_OFF"], [32, 3, 1, "", "HAND_RING_FINGER"], [32, 3, 1, "", "HAND_ROCK"], [32, 3, 1, "", "HAND_SANITIZER"], [32, 3, 1, "", "HAND_STOP"], [32, 3, 1, "", "HAND_THREE_FINGERS"], [32, 3, 1, "", "HAND_TWO_FINGERS"], [32, 3, 1, "", "HANGER"], [32, 3, 1, "", "HANGER_2"], [32, 3, 1, "", "HANGER_OFF"], [32, 3, 1, "", "HASH"], [32, 3, 1, "", "HAZE"], [32, 3, 1, "", "HAZE_MOON"], [32, 3, 1, "", "HDR"], [32, 3, 1, "", "HEADING"], [32, 3, 1, "", "HEADING_OFF"], [32, 3, 1, "", "HEADPHONES"], [32, 3, 1, "", "HEADPHONES_FILLED"], [32, 3, 1, "", "HEADPHONES_OFF"], [32, 3, 1, "", "HEADSET"], [32, 3, 1, "", "HEADSET_OFF"], [32, 3, 1, "", "HEALTH_RECOGNITION"], [32, 3, 1, "", "HEART"], [32, 3, 1, "", "HEARTBEAT"], [32, 3, 1, "", "HEARTS"], [32, 3, 1, "", "HEARTS_OFF"], [32, 3, 1, "", "HEART_BROKEN"], [32, 3, 1, "", "HEART_FILLED"], [32, 3, 1, "", "HEART_HANDSHAKE"], [32, 3, 1, "", "HEART_MINUS"], [32, 3, 1, "", "HEART_OFF"], [32, 3, 1, "", "HEART_PLUS"], [32, 3, 1, "", "HEART_RATE_MONITOR"], [32, 3, 1, "", "HELICOPTER"], [32, 3, 1, "", "HELICOPTER_LANDING"], [32, 3, 1, "", "HELMET"], [32, 3, 1, "", "HELMET_OFF"], [32, 3, 1, "", "HELP"], [32, 3, 1, "", "HELP_CIRCLE"], [32, 3, 1, "", "HELP_CIRCLE_FILLED"], [32, 3, 1, "", "HELP_HEXAGON"], [32, 3, 1, "", "HELP_HEXAGON_FILLED"], [32, 3, 1, "", "HELP_OCTAGON"], [32, 3, 1, "", "HELP_OCTAGON_FILLED"], [32, 3, 1, "", "HELP_OFF"], [32, 3, 1, "", "HELP_SMALL"], [32, 3, 1, "", "HELP_SQUARE"], [32, 3, 1, "", "HELP_SQUARE_FILLED"], [32, 3, 1, "", "HELP_SQUARE_ROUNDED"], [32, 3, 1, "", "HELP_SQUARE_ROUNDED_FILLED"], [32, 3, 1, "", "HELP_TRIANGLE"], [32, 3, 1, "", "HELP_TRIANGLE_FILLED"], [32, 3, 1, "", "HEMISPHERE"], [32, 3, 1, "", "HEMISPHERE_OFF"], [32, 3, 1, "", "HEMISPHERE_PLUS"], [32, 3, 1, "", "HEXAGON"], [32, 3, 1, "", "HEXAGONAL_PRISM"], [32, 3, 1, "", "HEXAGONAL_PRISM_OFF"], [32, 3, 1, "", "HEXAGONAL_PRISM_PLUS"], [32, 3, 1, "", "HEXAGONAL_PYRAMID"], [32, 3, 1, "", "HEXAGONAL_PYRAMID_OFF"], [32, 3, 1, "", "HEXAGONAL_PYRAMID_PLUS"], [32, 3, 1, "", "HEXAGONS"], [32, 3, 1, "", "HEXAGONS_OFF"], [32, 3, 1, "", "HEXAGON_0_FILLED"], [32, 3, 1, "", "HEXAGON_1_FILLED"], [32, 3, 1, "", "HEXAGON_2_FILLED"], [32, 3, 1, "", "HEXAGON_3D"], [32, 3, 1, "", "HEXAGON_3_FILLED"], [32, 3, 1, "", "HEXAGON_4_FILLED"], [32, 3, 1, "", "HEXAGON_5_FILLED"], [32, 3, 1, "", "HEXAGON_6_FILLED"], [32, 3, 1, "", "HEXAGON_7_FILLED"], [32, 3, 1, "", "HEXAGON_8_FILLED"], [32, 3, 1, "", "HEXAGON_9_FILLED"], [32, 3, 1, "", "HEXAGON_FILLED"], [32, 3, 1, "", "HEXAGON_LETTER_A"], [32, 3, 1, "", "HEXAGON_LETTER_B"], [32, 3, 1, "", "HEXAGON_LETTER_C"], [32, 3, 1, "", "HEXAGON_LETTER_D"], [32, 3, 1, "", "HEXAGON_LETTER_E"], [32, 3, 1, "", "HEXAGON_LETTER_F"], [32, 3, 1, "", "HEXAGON_LETTER_G"], [32, 3, 1, "", "HEXAGON_LETTER_H"], [32, 3, 1, "", "HEXAGON_LETTER_I"], [32, 3, 1, "", "HEXAGON_LETTER_J"], [32, 3, 1, "", "HEXAGON_LETTER_K"], [32, 3, 1, "", "HEXAGON_LETTER_L"], [32, 3, 1, "", "HEXAGON_LETTER_M"], [32, 3, 1, "", "HEXAGON_LETTER_N"], [32, 3, 1, "", "HEXAGON_LETTER_O"], [32, 3, 1, "", "HEXAGON_LETTER_P"], [32, 3, 1, "", "HEXAGON_LETTER_Q"], [32, 3, 1, "", "HEXAGON_LETTER_R"], [32, 3, 1, "", "HEXAGON_LETTER_S"], [32, 3, 1, "", "HEXAGON_LETTER_T"], [32, 3, 1, "", "HEXAGON_LETTER_U"], [32, 3, 1, "", "HEXAGON_LETTER_V"], [32, 3, 1, "", "HEXAGON_LETTER_W"], [32, 3, 1, "", "HEXAGON_LETTER_X"], [32, 3, 1, "", "HEXAGON_LETTER_Y"], [32, 3, 1, "", "HEXAGON_LETTER_Z"], [32, 3, 1, "", "HEXAGON_NUMBER_0"], [32, 3, 1, "", "HEXAGON_NUMBER_1"], [32, 3, 1, "", "HEXAGON_NUMBER_2"], [32, 3, 1, "", "HEXAGON_NUMBER_3"], [32, 3, 1, "", "HEXAGON_NUMBER_4"], [32, 3, 1, "", "HEXAGON_NUMBER_5"], [32, 3, 1, "", "HEXAGON_NUMBER_6"], [32, 3, 1, "", "HEXAGON_NUMBER_7"], [32, 3, 1, "", "HEXAGON_NUMBER_8"], [32, 3, 1, "", "HEXAGON_NUMBER_9"], [32, 3, 1, "", "HEXAGON_OFF"], [32, 3, 1, "", "HIERARCHY"], [32, 3, 1, "", "HIERARCHY_2"], [32, 3, 1, "", "HIERARCHY_3"], [32, 3, 1, "", "HIERARCHY_OFF"], [32, 3, 1, "", "HIGHLIGHT"], [32, 3, 1, "", "HIGHLIGHT_OFF"], [32, 3, 1, "", "HISTORY"], [32, 3, 1, "", "HISTORY_OFF"], [32, 3, 1, "", "HISTORY_TOGGLE"], [32, 3, 1, "", "HOME"], [32, 3, 1, "", "HOME_2"], [32, 3, 1, "", "HOME_BOLT"], [32, 3, 1, "", "HOME_CANCEL"], [32, 3, 1, "", "HOME_CHECK"], [32, 3, 1, "", "HOME_COG"], [32, 3, 1, "", "HOME_DOLLAR"], [32, 3, 1, "", "HOME_DOT"], [32, 3, 1, "", "HOME_DOWN"], [32, 3, 1, "", "HOME_ECO"], [32, 3, 1, "", "HOME_EDIT"], [32, 3, 1, "", "HOME_EXCLAMATION"], [32, 3, 1, "", "HOME_HAND"], [32, 3, 1, "", "HOME_HEART"], [32, 3, 1, "", "HOME_INFINITY"], [32, 3, 1, "", "HOME_LINK"], [32, 3, 1, "", "HOME_MINUS"], [32, 3, 1, "", "HOME_MOVE"], [32, 3, 1, "", "HOME_OFF"], [32, 3, 1, "", "HOME_PLUS"], [32, 3, 1, "", "HOME_QUESTION"], [32, 3, 1, "", "HOME_RIBBON"], [32, 3, 1, "", "HOME_SEARCH"], [32, 3, 1, "", "HOME_SHARE"], [32, 3, 1, "", "HOME_SHIELD"], [32, 3, 1, "", "HOME_SIGNAL"], [32, 3, 1, "", "HOME_STAR"], [32, 3, 1, "", "HOME_STATS"], [32, 3, 1, "", "HOME_UP"], [32, 3, 1, "", "HOME_X"], [32, 3, 1, "", "HORSE_TOY"], [32, 3, 1, "", "HOTEL_SERVICE"], [32, 3, 1, "", "HOURGLASS"], [32, 3, 1, "", "HOURGLASS_EMPTY"], [32, 3, 1, "", "HOURGLASS_FILLED"], [32, 3, 1, "", "HOURGLASS_HIGH"], [32, 3, 1, "", "HOURGLASS_LOW"], [32, 3, 1, "", "HOURGLASS_OFF"], [32, 3, 1, "", "HTML"], [32, 3, 1, "", "HTTP_CONNECT"], [32, 3, 1, "", "HTTP_DELETE"], [32, 3, 1, "", "HTTP_GET"], [32, 3, 1, "", "HTTP_HEAD"], [32, 3, 1, "", "HTTP_OPTIONS"], [32, 3, 1, "", "HTTP_PATCH"], [32, 3, 1, "", "HTTP_POST"], [32, 3, 1, "", "HTTP_PUT"], [32, 3, 1, "", "HTTP_QUE"], [32, 3, 1, "", "HTTP_TRACE"], [32, 3, 1, "", "H_1"], [32, 3, 1, "", "H_2"], [32, 3, 1, "", "H_3"], [32, 3, 1, "", "H_4"], [32, 3, 1, "", "H_5"], [32, 3, 1, "", "H_6"], [32, 3, 1, "", "ICE_CREAM"], [32, 3, 1, "", "ICE_CREAM_2"], [32, 3, 1, "", "ICE_CREAM_OFF"], [32, 3, 1, "", "ICE_SKATING"], [32, 3, 1, "", "ICONS"], [32, 3, 1, "", "ICONS_OFF"], [32, 3, 1, "", "ICON_123"], [32, 3, 1, "", "ICON_24_HOURS"], [32, 3, 1, "", "ICON_2FA"], [32, 3, 1, "", "ICON_360"], [32, 3, 1, "", "ICON_360_VIEW"], [32, 3, 1, "", "ICON_3D_CUBE_SPHERE"], [32, 3, 1, "", "ICON_3D_CUBE_SPHERE_OFF"], [32, 3, 1, "", "ICON_3D_ROTATE"], [32, 3, 1, "", "ID"], [32, 3, 1, "", "ID_BADGE"], [32, 3, 1, "", "ID_BADGE_2"], [32, 3, 1, "", "ID_BADGE_OFF"], [32, 3, 1, "", "ID_OFF"], [32, 3, 1, "", "INBOX"], [32, 3, 1, "", "INBOX_OFF"], [32, 3, 1, "", "INDENT_DECREASE"], [32, 3, 1, "", "INDENT_INCREASE"], [32, 3, 1, "", "INFINITY"], [32, 3, 1, "", "INFINITY_OFF"], [32, 3, 1, "", "INFO_CIRCLE"], [32, 3, 1, "", "INFO_CIRCLE_FILLED"], [32, 3, 1, "", "INFO_HEXAGON"], [32, 3, 1, "", "INFO_HEXAGON_FILLED"], [32, 3, 1, "", "INFO_OCTAGON"], [32, 3, 1, "", "INFO_OCTAGON_FILLED"], [32, 3, 1, "", "INFO_SMALL"], [32, 3, 1, "", "INFO_SQUARE"], [32, 3, 1, "", "INFO_SQUARE_FILLED"], [32, 3, 1, "", "INFO_SQUARE_ROUNDED"], [32, 3, 1, "", "INFO_SQUARE_ROUNDED_FILLED"], [32, 3, 1, "", "INFO_TRIANGLE"], [32, 3, 1, "", "INFO_TRIANGLE_FILLED"], [32, 3, 1, "", "INNER_SHADOW_BOTTOM"], [32, 3, 1, "", "INNER_SHADOW_BOTTOM_FILLED"], [32, 3, 1, "", "INNER_SHADOW_BOTTOM_LEFT"], [32, 3, 1, "", "INNER_SHADOW_BOTTOM_LEFT_FILLED"], [32, 3, 1, "", "INNER_SHADOW_BOTTOM_RIGHT"], [32, 3, 1, "", "INNER_SHADOW_BOTTOM_RIGHT_FILLED"], [32, 3, 1, "", "INNER_SHADOW_LEFT"], [32, 3, 1, "", "INNER_SHADOW_LEFT_FILLED"], [32, 3, 1, "", "INNER_SHADOW_RIGHT"], [32, 3, 1, "", "INNER_SHADOW_RIGHT_FILLED"], [32, 3, 1, "", "INNER_SHADOW_TOP"], [32, 3, 1, "", "INNER_SHADOW_TOP_FILLED"], [32, 3, 1, "", "INNER_SHADOW_TOP_LEFT"], [32, 3, 1, "", "INNER_SHADOW_TOP_LEFT_FILLED"], [32, 3, 1, "", "INNER_SHADOW_TOP_RIGHT"], [32, 3, 1, "", "INNER_SHADOW_TOP_RIGHT_FILLED"], [32, 3, 1, "", "INPUT_SEARCH"], [32, 3, 1, "", "IRONING"], [32, 3, 1, "", "IRONING_1"], [32, 3, 1, "", "IRONING_2"], [32, 3, 1, "", "IRONING_3"], [32, 3, 1, "", "IRONING_OFF"], [32, 3, 1, "", "IRONING_STEAM"], [32, 3, 1, "", "IRONING_STEAM_OFF"], [32, 3, 1, "", "IRREGULAR_POLYHEDRON"], [32, 3, 1, "", "IRREGULAR_POLYHEDRON_OFF"], [32, 3, 1, "", "IRREGULAR_POLYHEDRON_PLUS"], [32, 3, 1, "", "ITALIC"], [32, 3, 1, "", "JACKET"], [32, 3, 1, "", "JETPACK"], [32, 3, 1, "", "JEWISH_STAR"], [32, 3, 1, "", "JEWISH_STAR_FILLED"], [32, 3, 1, "", "JPG"], [32, 3, 1, "", "JSON"], [32, 3, 1, "", "JUMP_ROPE"], [32, 3, 1, "", "KARATE"], [32, 3, 1, "", "KAYAK"], [32, 3, 1, "", "KERING"], [32, 3, 1, "", "KEY"], [32, 3, 1, "", "KEYBOARD"], [32, 3, 1, "", "KEYBOARD_HIDE"], [32, 3, 1, "", "KEYBOARD_OFF"], [32, 3, 1, "", "KEYBOARD_SHOW"], [32, 3, 1, "", "KEYFRAME"], [32, 3, 1, "", "KEYFRAMES"], [32, 3, 1, "", "KEYFRAME_ALIGN_CENTER"], [32, 3, 1, "", "KEYFRAME_ALIGN_HORIZONTAL"], [32, 3, 1, "", "KEYFRAME_ALIGN_VERTICAL"], [32, 3, 1, "", "KEY_OFF"], [32, 3, 1, "", "LADDER"], [32, 3, 1, "", "LADDER_OFF"], [32, 3, 1, "", "LAMBDA"], [32, 3, 1, "", "LAMP"], [32, 3, 1, "", "LAMP_2"], [32, 3, 1, "", "LAMP_OFF"], [32, 3, 1, "", "LANE"], [32, 3, 1, "", "LANGUAGE"], [32, 3, 1, "", "LANGUAGE_HIRAGANA"], [32, 3, 1, "", "LANGUAGE_KATAKANA"], [32, 3, 1, "", "LANGUAGE_OFF"], [32, 3, 1, "", "LASSO"], [32, 3, 1, "", "LASSO_OFF"], [32, 3, 1, "", "LASSO_POLYGON"], [32, 3, 1, "", "LAYERS_DIFFERENCE"], [32, 3, 1, "", "LAYERS_INTERSECT"], [32, 3, 1, "", "LAYERS_INTERSECT_2"], [32, 3, 1, "", "LAYERS_LINKED"], [32, 3, 1, "", "LAYERS_OFF"], [32, 3, 1, "", "LAYERS_SUBTRACT"], [32, 3, 1, "", "LAYERS_UNION"], [32, 3, 1, "", "LAYOUT"], [32, 3, 1, "", "LAYOUT_2"], [32, 3, 1, "", "LAYOUT_ALIGN_BOTTOM"], [32, 3, 1, "", "LAYOUT_ALIGN_CENTER"], [32, 3, 1, "", "LAYOUT_ALIGN_LEFT"], [32, 3, 1, "", "LAYOUT_ALIGN_MIDDLE"], [32, 3, 1, "", "LAYOUT_ALIGN_RIGHT"], [32, 3, 1, "", "LAYOUT_ALIGN_TOP"], [32, 3, 1, "", "LAYOUT_BOARD"], [32, 3, 1, "", "LAYOUT_BOARD_SPLIT"], [32, 3, 1, "", "LAYOUT_BOTTOMBAR"], [32, 3, 1, "", "LAYOUT_BOTTOMBAR_COLLAPSE"], [32, 3, 1, "", "LAYOUT_BOTTOMBAR_EXPAND"], [32, 3, 1, "", "LAYOUT_CARDS"], [32, 3, 1, "", "LAYOUT_COLLAGE"], [32, 3, 1, "", "LAYOUT_COLUMNS"], [32, 3, 1, "", "LAYOUT_DASHBOARD"], [32, 3, 1, "", "LAYOUT_DISTRIBUTE_HORIZONTAL"], [32, 3, 1, "", "LAYOUT_DISTRIBUTE_VERTICAL"], [32, 3, 1, "", "LAYOUT_GRID"], [32, 3, 1, "", "LAYOUT_GRID_ADD"], [32, 3, 1, "", "LAYOUT_GRID_REMOVE"], [32, 3, 1, "", "LAYOUT_KANBAN"], [32, 3, 1, "", "LAYOUT_LIST"], [32, 3, 1, "", "LAYOUT_NAVBAR"], [32, 3, 1, "", "LAYOUT_NAVBAR_COLLAPSE"], [32, 3, 1, "", "LAYOUT_NAVBAR_EXPAND"], [32, 3, 1, "", "LAYOUT_OFF"], [32, 3, 1, "", "LAYOUT_ROWS"], [32, 3, 1, "", "LAYOUT_SIDEBAR"], [32, 3, 1, "", "LAYOUT_SIDEBAR_LEFT_COLLAPSE"], [32, 3, 1, "", "LAYOUT_SIDEBAR_LEFT_EXPAND"], [32, 3, 1, "", "LAYOUT_SIDEBAR_RIGHT"], [32, 3, 1, "", "LAYOUT_SIDEBAR_RIGHT_COLLAPSE"], [32, 3, 1, "", "LAYOUT_SIDEBAR_RIGHT_EXPAND"], [32, 3, 1, "", "LEAF"], [32, 3, 1, "", "LEAF_OFF"], [32, 3, 1, "", "LEGO"], [32, 3, 1, "", "LEGO_OFF"], [32, 3, 1, "", "LEMON"], [32, 3, 1, "", "LEMON_2"], [32, 3, 1, "", "LETTER_A"], [32, 3, 1, "", "LETTER_B"], [32, 3, 1, "", "LETTER_C"], [32, 3, 1, "", "LETTER_CASE"], [32, 3, 1, "", "LETTER_CASE_LOWER"], [32, 3, 1, "", "LETTER_CASE_TOGGLE"], [32, 3, 1, "", "LETTER_CASE_UPPER"], [32, 3, 1, "", "LETTER_D"], [32, 3, 1, "", "LETTER_E"], [32, 3, 1, "", "LETTER_F"], [32, 3, 1, "", "LETTER_G"], [32, 3, 1, "", "LETTER_H"], [32, 3, 1, "", "LETTER_I"], [32, 3, 1, "", "LETTER_J"], [32, 3, 1, "", "LETTER_K"], [32, 3, 1, "", "LETTER_L"], [32, 3, 1, "", "LETTER_M"], [32, 3, 1, "", "LETTER_N"], [32, 3, 1, "", "LETTER_O"], [32, 3, 1, "", "LETTER_P"], [32, 3, 1, "", "LETTER_Q"], [32, 3, 1, "", "LETTER_R"], [32, 3, 1, "", "LETTER_S"], [32, 3, 1, "", "LETTER_SPACING"], [32, 3, 1, "", "LETTER_T"], [32, 3, 1, "", "LETTER_U"], [32, 3, 1, "", "LETTER_V"], [32, 3, 1, "", "LETTER_W"], [32, 3, 1, "", "LETTER_X"], [32, 3, 1, "", "LETTER_Y"], [32, 3, 1, "", "LETTER_Z"], [32, 3, 1, "", "LICENSE"], [32, 3, 1, "", "LICENSE_OFF"], [32, 3, 1, "", "LIFEBUOY"], [32, 3, 1, "", "LIFEBUOY_OFF"], [32, 3, 1, "", "LIGHTER"], [32, 3, 1, "", "LINE"], [32, 3, 1, "", "LINE_DASHED"], [32, 3, 1, "", "LINE_DOTTED"], [32, 3, 1, "", "LINE_HEIGHT"], [32, 3, 1, "", "LINK"], [32, 3, 1, "", "LINK_OFF"], [32, 3, 1, "", "LIST"], [32, 3, 1, "", "LIST_CHECK"], [32, 3, 1, "", "LIST_DETAILS"], [32, 3, 1, "", "LIST_NUMBERS"], [32, 3, 1, "", "LIST_SEARCH"], [32, 3, 1, "", "LIST_TREE"], [32, 3, 1, "", "LIVE_PHOTO"], [32, 3, 1, "", "LIVE_PHOTO_OFF"], [32, 3, 1, "", "LIVE_VIEW"], [32, 3, 1, "", "LOADER"], [32, 3, 1, "", "LOADER_2"], [32, 3, 1, "", "LOADER_3"], [32, 3, 1, "", "LOADER_QUARTER"], [32, 3, 1, "", "LOAD_BALANCER"], [32, 3, 1, "", "LOCATION"], [32, 3, 1, "", "LOCATION_BROKEN"], [32, 3, 1, "", "LOCATION_FILLED"], [32, 3, 1, "", "LOCATION_OFF"], [32, 3, 1, "", "LOCK"], [32, 3, 1, "", "LOCK_ACCESS"], [32, 3, 1, "", "LOCK_ACCESS_OFF"], [32, 3, 1, "", "LOCK_BOLT"], [32, 3, 1, "", "LOCK_CANCEL"], [32, 3, 1, "", "LOCK_CHECK"], [32, 3, 1, "", "LOCK_CODE"], [32, 3, 1, "", "LOCK_COG"], [32, 3, 1, "", "LOCK_DOLLAR"], [32, 3, 1, "", "LOCK_DOWN"], [32, 3, 1, "", "LOCK_EXCLAMATION"], [32, 3, 1, "", "LOCK_HEART"], [32, 3, 1, "", "LOCK_MINUS"], [32, 3, 1, "", "LOCK_OFF"], [32, 3, 1, "", "LOCK_OPEN"], [32, 3, 1, "", "LOCK_OPEN_OFF"], [32, 3, 1, "", "LOCK_PAUSE"], [32, 3, 1, "", "LOCK_PIN"], [32, 3, 1, "", "LOCK_PLUS"], [32, 3, 1, "", "LOCK_QUESTION"], [32, 3, 1, "", "LOCK_SEARCH"], [32, 3, 1, "", "LOCK_SHARE"], [32, 3, 1, "", "LOCK_SQUARE"], [32, 3, 1, "", "LOCK_SQUARE_ROUNDED"], [32, 3, 1, "", "LOCK_SQUARE_ROUNDED_FILLED"], [32, 3, 1, "", "LOCK_STAR"], [32, 3, 1, "", "LOCK_UP"], [32, 3, 1, "", "LOCK_X"], [32, 3, 1, "", "LOGIC_AND"], [32, 3, 1, "", "LOGIC_BUFFER"], [32, 3, 1, "", "LOGIC_NAND"], [32, 3, 1, "", "LOGIC_NOR"], [32, 3, 1, "", "LOGIC_NOT"], [32, 3, 1, "", "LOGIC_OR"], [32, 3, 1, "", "LOGIC_XNOR"], [32, 3, 1, "", "LOGIC_XOR"], [32, 3, 1, "", "LOGIN"], [32, 3, 1, "", "LOGOUT"], [32, 3, 1, "", "LOGOUT_2"], [32, 3, 1, "", "LOLLIPOP"], [32, 3, 1, "", "LOLLIPOP_OFF"], [32, 3, 1, "", "LUGGAGE"], [32, 3, 1, "", "LUGGAGE_OFF"], [32, 3, 1, "", "LUNGS"], [32, 3, 1, "", "LUNGS_OFF"], [32, 3, 1, "", "MACRO"], [32, 3, 1, "", "MACRO_OFF"], [32, 3, 1, "", "MAGNET"], [32, 3, 1, "", "MAGNET_OFF"], [32, 3, 1, "", "MAIL"], [32, 3, 1, "", "MAILBOX"], [32, 3, 1, "", "MAILBOX_OFF"], [32, 3, 1, "", "MAIL_AI"], [32, 3, 1, "", "MAIL_BOLT"], [32, 3, 1, "", "MAIL_CANCEL"], [32, 3, 1, "", "MAIL_CHECK"], [32, 3, 1, "", "MAIL_CODE"], [32, 3, 1, "", "MAIL_COG"], [32, 3, 1, "", "MAIL_DOLLAR"], [32, 3, 1, "", "MAIL_DOWN"], [32, 3, 1, "", "MAIL_EXCLAMATION"], [32, 3, 1, "", "MAIL_FAST"], [32, 3, 1, "", "MAIL_FILLED"], [32, 3, 1, "", "MAIL_FORWARD"], [32, 3, 1, "", "MAIL_HEART"], [32, 3, 1, "", "MAIL_MINUS"], [32, 3, 1, "", "MAIL_OFF"], [32, 3, 1, "", "MAIL_OPENED"], [32, 3, 1, "", "MAIL_OPENED_FILLED"], [32, 3, 1, "", "MAIL_PAUSE"], [32, 3, 1, "", "MAIL_PIN"], [32, 3, 1, "", "MAIL_PLUS"], [32, 3, 1, "", "MAIL_QUESTION"], [32, 3, 1, "", "MAIL_SEARCH"], [32, 3, 1, "", "MAIL_SHARE"], [32, 3, 1, "", "MAIL_STAR"], [32, 3, 1, "", "MAIL_UP"], [32, 3, 1, "", "MAIL_X"], [32, 3, 1, "", "MAN"], [32, 3, 1, "", "MANUAL_GEARBOX"], [32, 3, 1, "", "MAP"], [32, 3, 1, "", "MAP_2"], [32, 3, 1, "", "MAP_OFF"], [32, 3, 1, "", "MAP_PIN"], [32, 3, 1, "", "MAP_PINS"], [32, 3, 1, "", "MAP_PIN_BOLT"], [32, 3, 1, "", "MAP_PIN_CANCEL"], [32, 3, 1, "", "MAP_PIN_CHECK"], [32, 3, 1, "", "MAP_PIN_CODE"], [32, 3, 1, "", "MAP_PIN_COG"], [32, 3, 1, "", "MAP_PIN_DOLLAR"], [32, 3, 1, "", "MAP_PIN_DOWN"], [32, 3, 1, "", "MAP_PIN_EXCLAMATION"], [32, 3, 1, "", "MAP_PIN_FILLED"], [32, 3, 1, "", "MAP_PIN_HEART"], [32, 3, 1, "", "MAP_PIN_MINUS"], [32, 3, 1, "", "MAP_PIN_OFF"], [32, 3, 1, "", "MAP_PIN_PAUSE"], [32, 3, 1, "", "MAP_PIN_PIN"], [32, 3, 1, "", "MAP_PIN_PLUS"], [32, 3, 1, "", "MAP_PIN_QUESTION"], [32, 3, 1, "", "MAP_PIN_SEARCH"], [32, 3, 1, "", "MAP_PIN_SHARE"], [32, 3, 1, "", "MAP_PIN_STAR"], [32, 3, 1, "", "MAP_PIN_UP"], [32, 3, 1, "", "MAP_PIN_X"], [32, 3, 1, "", "MAP_SEARCH"], [32, 3, 1, "", "MARKDOWN"], [32, 3, 1, "", "MARKDOWN_OFF"], [32, 3, 1, "", "MARQUEE"], [32, 3, 1, "", "MARQUEE_2"], [32, 3, 1, "", "MARQUEE_OFF"], [32, 3, 1, "", "MARS"], [32, 3, 1, "", "MASK"], [32, 3, 1, "", "MASKS_THEATER"], [32, 3, 1, "", "MASKS_THEATER_OFF"], [32, 3, 1, "", "MASK_OFF"], [32, 3, 1, "", "MASSAGE"], [32, 3, 1, "", "MATCHSTICK"], [32, 3, 1, "", "MATH"], [32, 3, 1, "", "MATH_1_DIVIDE_2"], [32, 3, 1, "", "MATH_1_DIVIDE_3"], [32, 3, 1, "", "MATH_AVG"], [32, 3, 1, "", "MATH_EQUAL_GREATER"], [32, 3, 1, "", "MATH_EQUAL_LOWER"], [32, 3, 1, "", "MATH_FUNCTION"], [32, 3, 1, "", "MATH_FUNCTION_OFF"], [32, 3, 1, "", "MATH_FUNCTION_Y"], [32, 3, 1, "", "MATH_GREATER"], [32, 3, 1, "", "MATH_INTEGRAL"], [32, 3, 1, "", "MATH_INTEGRALS"], [32, 3, 1, "", "MATH_INTEGRAL_X"], [32, 3, 1, "", "MATH_LOWER"], [32, 3, 1, "", "MATH_MAX"], [32, 3, 1, "", "MATH_MIN"], [32, 3, 1, "", "MATH_NOT"], [32, 3, 1, "", "MATH_OFF"], [32, 3, 1, "", "MATH_PI"], [32, 3, 1, "", "MATH_PI_DIVIDE_2"], [32, 3, 1, "", "MATH_SYMBOLS"], [32, 3, 1, "", "MATH_XY"], [32, 3, 1, "", "MATH_X_DIVIDE_2"], [32, 3, 1, "", "MATH_X_DIVIDE_Y"], [32, 3, 1, "", "MATH_X_DIVIDE_Y_2"], [32, 3, 1, "", "MATH_X_MINUS_X"], [32, 3, 1, "", "MATH_X_MINUS_Y"], [32, 3, 1, "", "MATH_X_PLUS_X"], [32, 3, 1, "", "MATH_X_PLUS_Y"], [32, 3, 1, "", "MATH_Y_MINUS_Y"], [32, 3, 1, "", "MATH_Y_PLUS_Y"], [32, 3, 1, "", "MAXIMIZE"], [32, 3, 1, "", "MAXIMIZE_OFF"], [32, 3, 1, "", "MEAT"], [32, 3, 1, "", "MEAT_OFF"], [32, 3, 1, "", "MEDAL"], [32, 3, 1, "", "MEDAL_2"], [32, 3, 1, "", "MEDICAL_CROSS"], [32, 3, 1, "", "MEDICAL_CROSS_CIRCLE"], [32, 3, 1, "", "MEDICAL_CROSS_FILLED"], [32, 3, 1, "", "MEDICAL_CROSS_OFF"], [32, 3, 1, "", "MEDICINE_SYRUP"], [32, 3, 1, "", "MEEPLE"], [32, 3, 1, "", "MENORAH"], [32, 3, 1, "", "MENU"], [32, 3, 1, "", "MENU_2"], [32, 3, 1, "", "MENU_DEEP"], [32, 3, 1, "", "MENU_ORDER"], [32, 3, 1, "", "MESSAGE"], [32, 3, 1, "", "MESSAGES"], [32, 3, 1, "", "MESSAGES_OFF"], [32, 3, 1, "", "MESSAGE_2"], [32, 3, 1, "", "MESSAGE_2_BOLT"], [32, 3, 1, "", "MESSAGE_2_CANCEL"], [32, 3, 1, "", "MESSAGE_2_CHECK"], [32, 3, 1, "", "MESSAGE_2_CODE"], [32, 3, 1, "", "MESSAGE_2_COG"], [32, 3, 1, "", "MESSAGE_2_DOLLAR"], [32, 3, 1, "", "MESSAGE_2_DOWN"], [32, 3, 1, "", "MESSAGE_2_EXCLAMATION"], [32, 3, 1, "", "MESSAGE_2_HEART"], [32, 3, 1, "", "MESSAGE_2_MINUS"], [32, 3, 1, "", "MESSAGE_2_OFF"], [32, 3, 1, "", "MESSAGE_2_PAUSE"], [32, 3, 1, "", "MESSAGE_2_PIN"], [32, 3, 1, "", "MESSAGE_2_PLUS"], [32, 3, 1, "", "MESSAGE_2_QUESTION"], [32, 3, 1, "", "MESSAGE_2_SEARCH"], [32, 3, 1, "", "MESSAGE_2_SHARE"], [32, 3, 1, "", "MESSAGE_2_STAR"], [32, 3, 1, "", "MESSAGE_2_UP"], [32, 3, 1, "", "MESSAGE_2_X"], [32, 3, 1, "", "MESSAGE_BOLT"], [32, 3, 1, "", "MESSAGE_CANCEL"], [32, 3, 1, "", "MESSAGE_CHATBOT"], [32, 3, 1, "", "MESSAGE_CHECK"], [32, 3, 1, "", "MESSAGE_CIRCLE"], [32, 3, 1, "", "MESSAGE_CIRCLE_2"], [32, 3, 1, "", "MESSAGE_CIRCLE_2_FILLED"], [32, 3, 1, "", "MESSAGE_CIRCLE_BOLT"], [32, 3, 1, "", "MESSAGE_CIRCLE_CANCEL"], [32, 3, 1, "", "MESSAGE_CIRCLE_CHECK"], [32, 3, 1, "", "MESSAGE_CIRCLE_CODE"], [32, 3, 1, "", "MESSAGE_CIRCLE_COG"], [32, 3, 1, "", "MESSAGE_CIRCLE_DOLLAR"], [32, 3, 1, "", "MESSAGE_CIRCLE_DOWN"], [32, 3, 1, "", "MESSAGE_CIRCLE_EXCLAMATION"], [32, 3, 1, "", "MESSAGE_CIRCLE_HEART"], [32, 3, 1, "", "MESSAGE_CIRCLE_MINUS"], [32, 3, 1, "", "MESSAGE_CIRCLE_OFF"], [32, 3, 1, "", "MESSAGE_CIRCLE_PAUSE"], [32, 3, 1, "", "MESSAGE_CIRCLE_PIN"], [32, 3, 1, "", "MESSAGE_CIRCLE_PLUS"], [32, 3, 1, "", "MESSAGE_CIRCLE_QUESTION"], [32, 3, 1, "", "MESSAGE_CIRCLE_SEARCH"], [32, 3, 1, "", "MESSAGE_CIRCLE_SHARE"], [32, 3, 1, "", "MESSAGE_CIRCLE_STAR"], [32, 3, 1, "", "MESSAGE_CIRCLE_UP"], [32, 3, 1, "", "MESSAGE_CIRCLE_X"], [32, 3, 1, "", "MESSAGE_CODE"], [32, 3, 1, "", "MESSAGE_COG"], [32, 3, 1, "", "MESSAGE_DOLLAR"], [32, 3, 1, "", "MESSAGE_DOTS"], [32, 3, 1, "", "MESSAGE_DOWN"], [32, 3, 1, "", "MESSAGE_EXCLAMATION"], [32, 3, 1, "", "MESSAGE_FORWARD"], [32, 3, 1, "", "MESSAGE_HEART"], [32, 3, 1, "", "MESSAGE_LANGUAGE"], [32, 3, 1, "", "MESSAGE_MINUS"], [32, 3, 1, "", "MESSAGE_OFF"], [32, 3, 1, "", "MESSAGE_PAUSE"], [32, 3, 1, "", "MESSAGE_PIN"], [32, 3, 1, "", "MESSAGE_PLUS"], [32, 3, 1, "", "MESSAGE_QUESTION"], [32, 3, 1, "", "MESSAGE_REPORT"], [32, 3, 1, "", "MESSAGE_SEARCH"], [32, 3, 1, "", "MESSAGE_SHARE"], [32, 3, 1, "", "MESSAGE_STAR"], [32, 3, 1, "", "MESSAGE_UP"], [32, 3, 1, "", "MESSAGE_X"], [32, 3, 1, "", "METEOR"], [32, 3, 1, "", "METEOR_OFF"], [32, 3, 1, "", "MICHELIN_BIB_GOURMAND"], [32, 3, 1, "", "MICHELIN_STAR"], [32, 3, 1, "", "MICHELIN_STAR_GREEN"], [32, 3, 1, "", "MICKEY"], [32, 3, 1, "", "MICKEY_FILLED"], [32, 3, 1, "", "MICROPHONE"], [32, 3, 1, "", "MICROPHONE_2"], [32, 3, 1, "", "MICROPHONE_2_OFF"], [32, 3, 1, "", "MICROPHONE_OFF"], [32, 3, 1, "", "MICROSCOPE"], [32, 3, 1, "", "MICROSCOPE_OFF"], [32, 3, 1, "", "MICROWAVE"], [32, 3, 1, "", "MICROWAVE_OFF"], [32, 3, 1, "", "MILITARY_AWARD"], [32, 3, 1, "", "MILITARY_RANK"], [32, 3, 1, "", "MILK"], [32, 3, 1, "", "MILKSHAKE"], [32, 3, 1, "", "MILK_OFF"], [32, 3, 1, "", "MINIMIZE"], [32, 3, 1, "", "MINUS"], [32, 3, 1, "", "MINUS_VERTICAL"], [32, 3, 1, "", "MIST"], [32, 3, 1, "", "MIST_OFF"], [32, 3, 1, "", "MOBILEDATA"], [32, 3, 1, "", "MOBILEDATA_OFF"], [32, 3, 1, "", "MONEYBAG"], [32, 3, 1, "", "MOOD_ANGRY"], [32, 3, 1, "", "MOOD_ANNOYED"], [32, 3, 1, "", "MOOD_ANNOYED_2"], [32, 3, 1, "", "MOOD_BOY"], [32, 3, 1, "", "MOOD_CHECK"], [32, 3, 1, "", "MOOD_COG"], [32, 3, 1, "", "MOOD_CONFUZED"], [32, 3, 1, "", "MOOD_CONFUZED_FILLED"], [32, 3, 1, "", "MOOD_CRAZY_HAPPY"], [32, 3, 1, "", "MOOD_CRY"], [32, 3, 1, "", "MOOD_DOLLAR"], [32, 3, 1, "", "MOOD_EDIT"], [32, 3, 1, "", "MOOD_EMPTY"], [32, 3, 1, "", "MOOD_EMPTY_FILLED"], [32, 3, 1, "", "MOOD_HAPPY"], [32, 3, 1, "", "MOOD_HAPPY_FILLED"], [32, 3, 1, "", "MOOD_HEART"], [32, 3, 1, "", "MOOD_KID"], [32, 3, 1, "", "MOOD_KID_FILLED"], [32, 3, 1, "", "MOOD_LOOK_LEFT"], [32, 3, 1, "", "MOOD_LOOK_RIGHT"], [32, 3, 1, "", "MOOD_MINUS"], [32, 3, 1, "", "MOOD_NERD"], [32, 3, 1, "", "MOOD_NERVOUS"], [32, 3, 1, "", "MOOD_NEUTRAL"], [32, 3, 1, "", "MOOD_NEUTRAL_FILLED"], [32, 3, 1, "", "MOOD_OFF"], [32, 3, 1, "", "MOOD_PIN"], [32, 3, 1, "", "MOOD_PLUS"], [32, 3, 1, "", "MOOD_SAD"], [32, 3, 1, "", "MOOD_SAD_2"], [32, 3, 1, "", "MOOD_SAD_DIZZY"], [32, 3, 1, "", "MOOD_SAD_FILLED"], [32, 3, 1, "", "MOOD_SAD_SQUINT"], [32, 3, 1, "", "MOOD_SEARCH"], [32, 3, 1, "", "MOOD_SHARE"], [32, 3, 1, "", "MOOD_SICK"], [32, 3, 1, "", "MOOD_SILENCE"], [32, 3, 1, "", "MOOD_SING"], [32, 3, 1, "", "MOOD_SMILE"], [32, 3, 1, "", "MOOD_SMILE_BEAM"], [32, 3, 1, "", "MOOD_SMILE_DIZZY"], [32, 3, 1, "", "MOOD_SMILE_FILLED"], [32, 3, 1, "", "MOOD_SUPRISED"], [32, 3, 1, "", "MOOD_TONGUE"], [32, 3, 1, "", "MOOD_TONGUE_WINK"], [32, 3, 1, "", "MOOD_TONGUE_WINK_2"], [32, 3, 1, "", "MOOD_UNAMUSED"], [32, 3, 1, "", "MOOD_UP"], [32, 3, 1, "", "MOOD_WINK"], [32, 3, 1, "", "MOOD_WINK_2"], [32, 3, 1, "", "MOOD_WRRR"], [32, 3, 1, "", "MOOD_X"], [32, 3, 1, "", "MOOD_XD"], [32, 3, 1, "", "MOON"], [32, 3, 1, "", "MOON_2"], [32, 3, 1, "", "MOON_FILLED"], [32, 3, 1, "", "MOON_OFF"], [32, 3, 1, "", "MOON_STARS"], [32, 3, 1, "", "MOPED"], [32, 3, 1, "", "MOTORBIKE"], [32, 3, 1, "", "MOUNTAIN"], [32, 3, 1, "", "MOUNTAIN_OFF"], [32, 3, 1, "", "MOUSE"], [32, 3, 1, "", "MOUSE_2"], [32, 3, 1, "", "MOUSE_OFF"], [32, 3, 1, "", "MOUSTACHE"], [32, 3, 1, "", "MOVIE"], [32, 3, 1, "", "MOVIE_OFF"], [32, 3, 1, "", "MUG"], [32, 3, 1, "", "MUG_OFF"], [32, 3, 1, "", "MULTIPLIER_0_5X"], [32, 3, 1, "", "MULTIPLIER_1X"], [32, 3, 1, "", "MULTIPLIER_1_5X"], [32, 3, 1, "", "MULTIPLIER_2X"], [32, 3, 1, "", "MUSHROOM"], [32, 3, 1, "", "MUSHROOM_FILLED"], [32, 3, 1, "", "MUSHROOM_OFF"], [32, 3, 1, "", "MUSIC"], [32, 3, 1, "", "MUSIC_OFF"], [32, 3, 1, "", "NAVIGATION"], [32, 3, 1, "", "NAVIGATION_FILLED"], [32, 3, 1, "", "NAVIGATION_NORTH"], [32, 3, 1, "", "NAVIGATION_OFF"], [32, 3, 1, "", "NEEDLE"], [32, 3, 1, "", "NEEDLE_THREAD"], [32, 3, 1, "", "NETWORK"], [32, 3, 1, "", "NETWORK_OFF"], [32, 3, 1, "", "NEWS"], [32, 3, 1, "", "NEWS_OFF"], [32, 3, 1, "", "NEW_SECTION"], [32, 3, 1, "", "NFC"], [32, 3, 1, "", "NFC_OFF"], [32, 3, 1, "", "NORTH_STAR"], [32, 3, 1, "", "NOTE"], [32, 3, 1, "", "NOTEBOOK"], [32, 3, 1, "", "NOTEBOOK_OFF"], [32, 3, 1, "", "NOTES"], [32, 3, 1, "", "NOTES_OFF"], [32, 3, 1, "", "NOTE_OFF"], [32, 3, 1, "", "NOTIFICATION"], [32, 3, 1, "", "NOTIFICATION_OFF"], [32, 3, 1, "", "NO_COPYRIGHT"], [32, 3, 1, "", "NO_CREATIVE_COMMONS"], [32, 3, 1, "", "NO_DERIVATIVES"], [32, 3, 1, "", "NUMBER"], [32, 3, 1, "", "NUMBERS"], [32, 3, 1, "", "NUMBER_0"], [32, 3, 1, "", "NUMBER_1"], [32, 3, 1, "", "NUMBER_2"], [32, 3, 1, "", "NUMBER_3"], [32, 3, 1, "", "NUMBER_4"], [32, 3, 1, "", "NUMBER_5"], [32, 3, 1, "", "NUMBER_6"], [32, 3, 1, "", "NUMBER_7"], [32, 3, 1, "", "NUMBER_8"], [32, 3, 1, "", "NUMBER_9"], [32, 3, 1, "", "NURSE"], [32, 3, 1, "", "OCTAGON"], [32, 3, 1, "", "OCTAGON_FILLED"], [32, 3, 1, "", "OCTAGON_OFF"], [32, 3, 1, "", "OCTAHEDRON"], [32, 3, 1, "", "OCTAHEDRON_OFF"], [32, 3, 1, "", "OCTAHEDRON_PLUS"], [32, 3, 1, "", "OLD"], [32, 3, 1, "", "OLYMPICS"], [32, 3, 1, "", "OLYMPICS_OFF"], [32, 3, 1, "", "OM"], [32, 3, 1, "", "OMEGA"], [32, 3, 1, "", "OUTBOUND"], [32, 3, 1, "", "OUTLET"], [32, 3, 1, "", "OVAL"], [32, 3, 1, "", "OVAL_FILLED"], [32, 3, 1, "", "OVAL_VERTICAL"], [32, 3, 1, "", "OVAL_VERTICAL_FILLED"], [32, 3, 1, "", "OVERLINE"], [32, 3, 1, "", "PACKAGE"], [32, 3, 1, "", "PACKAGES"], [32, 3, 1, "", "PACKAGE_EXPORT"], [32, 3, 1, "", "PACKAGE_IMPORT"], [32, 3, 1, "", "PACKAGE_OFF"], [32, 3, 1, "", "PACMAN"], [32, 3, 1, "", "PAGE_BREAK"], [32, 3, 1, "", "PAINT"], [32, 3, 1, "", "PAINT_FILLED"], [32, 3, 1, "", "PAINT_OFF"], [32, 3, 1, "", "PALETTE"], [32, 3, 1, "", "PALETTE_OFF"], [32, 3, 1, "", "PANORAMA_HORIZONTAL"], [32, 3, 1, "", "PANORAMA_HORIZONTAL_OFF"], [32, 3, 1, "", "PANORAMA_VERTICAL"], [32, 3, 1, "", "PANORAMA_VERTICAL_OFF"], [32, 3, 1, "", "PAPERCLIP"], [32, 3, 1, "", "PAPER_BAG"], [32, 3, 1, "", "PAPER_BAG_OFF"], [32, 3, 1, "", "PARACHUTE"], [32, 3, 1, "", "PARACHUTE_OFF"], [32, 3, 1, "", "PARENTHESES"], [32, 3, 1, "", "PARENTHESES_OFF"], [32, 3, 1, "", "PARKING"], [32, 3, 1, "", "PARKING_OFF"], [32, 3, 1, "", "PASSWORD"], [32, 3, 1, "", "PAW"], [32, 3, 1, "", "PAW_FILLED"], [32, 3, 1, "", "PAW_OFF"], [32, 3, 1, "", "PDF"], [32, 3, 1, "", "PEACE"], [32, 3, 1, "", "PENCIL"], [32, 3, 1, "", "PENCIL_MINUS"], [32, 3, 1, "", "PENCIL_OFF"], [32, 3, 1, "", "PENCIL_PLUS"], [32, 3, 1, "", "PENNANT"], [32, 3, 1, "", "PENNANT_2"], [32, 3, 1, "", "PENNANT_2_FILLED"], [32, 3, 1, "", "PENNANT_FILLED"], [32, 3, 1, "", "PENNANT_OFF"], [32, 3, 1, "", "PENTAGON"], [32, 3, 1, "", "PENTAGON_FILLED"], [32, 3, 1, "", "PENTAGON_OFF"], [32, 3, 1, "", "PENTAGRAM"], [32, 3, 1, "", "PEPPER"], [32, 3, 1, "", "PEPPER_OFF"], [32, 3, 1, "", "PERCENTAGE"], [32, 3, 1, "", "PERFUME"], [32, 3, 1, "", "PERSPECTIVE"], [32, 3, 1, "", "PERSPECTIVE_OFF"], [32, 3, 1, "", "PHONE"], [32, 3, 1, "", "PHONE_CALL"], [32, 3, 1, "", "PHONE_CALLING"], [32, 3, 1, "", "PHONE_CHECK"], [32, 3, 1, "", "PHONE_FILLED"], [32, 3, 1, "", "PHONE_INCOMING"], [32, 3, 1, "", "PHONE_OFF"], [32, 3, 1, "", "PHONE_OUTGOING"], [32, 3, 1, "", "PHONE_PAUSE"], [32, 3, 1, "", "PHONE_PLUS"], [32, 3, 1, "", "PHONE_X"], [32, 3, 1, "", "PHOTO"], [32, 3, 1, "", "PHOTO_AI"], [32, 3, 1, "", "PHOTO_BOLT"], [32, 3, 1, "", "PHOTO_CANCEL"], [32, 3, 1, "", "PHOTO_CHECK"], [32, 3, 1, "", "PHOTO_CODE"], [32, 3, 1, "", "PHOTO_COG"], [32, 3, 1, "", "PHOTO_DOLLAR"], [32, 3, 1, "", "PHOTO_DOWN"], [32, 3, 1, "", "PHOTO_EDIT"], [32, 3, 1, "", "PHOTO_EXCLAMATION"], [32, 3, 1, "", "PHOTO_FILLED"], [32, 3, 1, "", "PHOTO_HEART"], [32, 3, 1, "", "PHOTO_MINUS"], [32, 3, 1, "", "PHOTO_OFF"], [32, 3, 1, "", "PHOTO_PAUSE"], [32, 3, 1, "", "PHOTO_PIN"], [32, 3, 1, "", "PHOTO_PLUS"], [32, 3, 1, "", "PHOTO_QUESTION"], [32, 3, 1, "", "PHOTO_SEARCH"], [32, 3, 1, "", "PHOTO_SENSOR"], [32, 3, 1, "", "PHOTO_SENSOR_2"], [32, 3, 1, "", "PHOTO_SENSOR_3"], [32, 3, 1, "", "PHOTO_SHARE"], [32, 3, 1, "", "PHOTO_SHIELD"], [32, 3, 1, "", "PHOTO_STAR"], [32, 3, 1, "", "PHOTO_UP"], [32, 3, 1, "", "PHOTO_X"], [32, 3, 1, "", "PHYSOTHERAPIST"], [32, 3, 1, "", "PIANO"], [32, 3, 1, "", "PICK"], [32, 3, 1, "", "PICTURE_IN_PICTURE"], [32, 3, 1, "", "PICTURE_IN_PICTURE_OFF"], [32, 3, 1, "", "PICTURE_IN_PICTURE_ON"], [32, 3, 1, "", "PICTURE_IN_PICTURE_TOP"], [32, 3, 1, "", "PIG"], [32, 3, 1, "", "PIG_MONEY"], [32, 3, 1, "", "PIG_OFF"], [32, 3, 1, "", "PILCROW"], [32, 3, 1, "", "PILL"], [32, 3, 1, "", "PILLS"], [32, 3, 1, "", "PILL_OFF"], [32, 3, 1, "", "PIN"], [32, 3, 1, "", "PING_PONG"], [32, 3, 1, "", "PINNED"], [32, 3, 1, "", "PINNED_FILLED"], [32, 3, 1, "", "PINNED_OFF"], [32, 3, 1, "", "PIN_FILLED"], [32, 3, 1, "", "PIZZA"], [32, 3, 1, "", "PIZZA_OFF"], [32, 3, 1, "", "PLACEHOLDER"], [32, 3, 1, "", "PLANE"], [32, 3, 1, "", "PLANET"], [32, 3, 1, "", "PLANET_OFF"], [32, 3, 1, "", "PLANE_ARRIVAL"], [32, 3, 1, "", "PLANE_DEPARTURE"], [32, 3, 1, "", "PLANE_INFLIGHT"], [32, 3, 1, "", "PLANE_OFF"], [32, 3, 1, "", "PLANE_TILT"], [32, 3, 1, "", "PLANT"], [32, 3, 1, "", "PLANT_2"], [32, 3, 1, "", "PLANT_2_OFF"], [32, 3, 1, "", "PLANT_OFF"], [32, 3, 1, "", "PLAYER_EJECT"], [32, 3, 1, "", "PLAYER_EJECT_FILLED"], [32, 3, 1, "", "PLAYER_PAUSE"], [32, 3, 1, "", "PLAYER_PAUSE_FILLED"], [32, 3, 1, "", "PLAYER_PLAY"], [32, 3, 1, "", "PLAYER_PLAY_FILLED"], [32, 3, 1, "", "PLAYER_RECORD"], [32, 3, 1, "", "PLAYER_RECORD_FILLED"], [32, 3, 1, "", "PLAYER_SKIP_BACK"], [32, 3, 1, "", "PLAYER_SKIP_BACK_FILLED"], [32, 3, 1, "", "PLAYER_SKIP_FORWARD"], [32, 3, 1, "", "PLAYER_SKIP_FORWARD_FILLED"], [32, 3, 1, "", "PLAYER_STOP"], [32, 3, 1, "", "PLAYER_STOP_FILLED"], [32, 3, 1, "", "PLAYER_TRACK_NEXT"], [32, 3, 1, "", "PLAYER_TRACK_NEXT_FILLED"], [32, 3, 1, "", "PLAYER_TRACK_PREV"], [32, 3, 1, "", "PLAYER_TRACK_PREV_FILLED"], [32, 3, 1, "", "PLAYLIST"], [32, 3, 1, "", "PLAYLIST_ADD"], [32, 3, 1, "", "PLAYLIST_OFF"], [32, 3, 1, "", "PLAYLIST_X"], [32, 3, 1, "", "PLAYSTATION_CIRCLE"], [32, 3, 1, "", "PLAYSTATION_SQUARE"], [32, 3, 1, "", "PLAYSTATION_TRIANGLE"], [32, 3, 1, "", "PLAYSTATION_X"], [32, 3, 1, "", "PLAY_BASKETBALL"], [32, 3, 1, "", "PLAY_CARD"], [32, 3, 1, "", "PLAY_CARD_OFF"], [32, 3, 1, "", "PLAY_FOOTBALL"], [32, 3, 1, "", "PLAY_HANDBALL"], [32, 3, 1, "", "PLAY_VOLLEYBALL"], [32, 3, 1, "", "PLUG"], [32, 3, 1, "", "PLUG_CONNECTED"], [32, 3, 1, "", "PLUG_CONNECTED_X"], [32, 3, 1, "", "PLUG_OFF"], [32, 3, 1, "", "PLUG_X"], [32, 3, 1, "", "PLUS"], [32, 3, 1, "", "PLUS_EQUAL"], [32, 3, 1, "", "PLUS_MINUS"], [32, 3, 1, "", "PNG"], [32, 3, 1, "", "PODIUM"], [32, 3, 1, "", "PODIUM_OFF"], [32, 3, 1, "", "POINT"], [32, 3, 1, "", "POINTER"], [32, 3, 1, "", "POINTER_BOLT"], [32, 3, 1, "", "POINTER_CANCEL"], [32, 3, 1, "", "POINTER_CHECK"], [32, 3, 1, "", "POINTER_CODE"], [32, 3, 1, "", "POINTER_COG"], [32, 3, 1, "", "POINTER_DOLLAR"], [32, 3, 1, "", "POINTER_DOWN"], [32, 3, 1, "", "POINTER_EXCLAMATION"], [32, 3, 1, "", "POINTER_HEART"], [32, 3, 1, "", "POINTER_MINUS"], [32, 3, 1, "", "POINTER_OFF"], [32, 3, 1, "", "POINTER_PAUSE"], [32, 3, 1, "", "POINTER_PIN"], [32, 3, 1, "", "POINTER_PLUS"], [32, 3, 1, "", "POINTER_QUESTION"], [32, 3, 1, "", "POINTER_SEARCH"], [32, 3, 1, "", "POINTER_SHARE"], [32, 3, 1, "", "POINTER_STAR"], [32, 3, 1, "", "POINTER_UP"], [32, 3, 1, "", "POINTER_X"], [32, 3, 1, "", "POINT_FILLED"], [32, 3, 1, "", "POINT_OFF"], [32, 3, 1, "", "POKEBALL"], [32, 3, 1, "", "POKEBALL_OFF"], [32, 3, 1, "", "POKER_CHIP"], [32, 3, 1, "", "POLAROID"], [32, 3, 1, "", "POLAROID_FILLED"], [32, 3, 1, "", "POLYGON"], [32, 3, 1, "", "POLYGON_OFF"], [32, 3, 1, "", "POO"], [32, 3, 1, "", "POOL"], [32, 3, 1, "", "POOL_OFF"], [32, 3, 1, "", "POWER"], [32, 3, 1, "", "PRAY"], [32, 3, 1, "", "PREMIUM_RIGHTS"], [32, 3, 1, "", "PRESCRIPTION"], [32, 3, 1, "", "PRESENTATION"], [32, 3, 1, "", "PRESENTATION_ANALYTICS"], [32, 3, 1, "", "PRESENTATION_OFF"], [32, 3, 1, "", "PRINTER"], [32, 3, 1, "", "PRINTER_OFF"], [32, 3, 1, "", "PRISM"], [32, 3, 1, "", "PRISM_OFF"], [32, 3, 1, "", "PRISM_PLUS"], [32, 3, 1, "", "PRISON"], [32, 3, 1, "", "PROGRESS"], [32, 3, 1, "", "PROGRESS_ALERT"], [32, 3, 1, "", "PROGRESS_BOLT"], [32, 3, 1, "", "PROGRESS_CHECK"], [32, 3, 1, "", "PROGRESS_DOWN"], [32, 3, 1, "", "PROGRESS_HELP"], [32, 3, 1, "", "PROGRESS_X"], [32, 3, 1, "", "PROMPT"], [32, 3, 1, "", "PROPELLER"], [32, 3, 1, "", "PROPELLER_OFF"], [32, 3, 1, "", "PUMPKIN_SCARY"], [32, 3, 1, "", "PUZZLE"], [32, 3, 1, "", "PUZZLE_2"], [32, 3, 1, "", "PUZZLE_FILLED"], [32, 3, 1, "", "PUZZLE_OFF"], [32, 3, 1, "", "PYRAMID"], [32, 3, 1, "", "PYRAMID_OFF"], [32, 3, 1, "", "PYRAMID_PLUS"], [32, 3, 1, "", "QRCODE"], [32, 3, 1, "", "QRCODE_OFF"], [32, 3, 1, "", "QUESTION_MARK"], [32, 3, 1, "", "QUOTE"], [32, 3, 1, "", "QUOTE_OFF"], [32, 3, 1, "", "RADAR"], [32, 3, 1, "", "RADAR_2"], [32, 3, 1, "", "RADAR_OFF"], [32, 3, 1, "", "RADIO"], [32, 3, 1, "", "RADIOACTIVE"], [32, 3, 1, "", "RADIOACTIVE_FILLED"], [32, 3, 1, "", "RADIOACTIVE_OFF"], [32, 3, 1, "", "RADIO_OFF"], [32, 3, 1, "", "RADIUS_BOTTOM_LEFT"], [32, 3, 1, "", "RADIUS_BOTTOM_RIGHT"], [32, 3, 1, "", "RADIUS_TOP_LEFT"], [32, 3, 1, "", "RADIUS_TOP_RIGHT"], [32, 3, 1, "", "RAINBOW"], [32, 3, 1, "", "RAINBOW_OFF"], [32, 3, 1, "", "RATING_12_PLUS"], [32, 3, 1, "", "RATING_14_PLUS"], [32, 3, 1, "", "RATING_16_PLUS"], [32, 3, 1, "", "RATING_18_PLUS"], [32, 3, 1, "", "RATING_21_PLUS"], [32, 3, 1, "", "RAZOR"], [32, 3, 1, "", "RAZOR_ELECTRIC"], [32, 3, 1, "", "RECEIPT"], [32, 3, 1, "", "RECEIPT_2"], [32, 3, 1, "", "RECEIPT_OFF"], [32, 3, 1, "", "RECEIPT_REFUND"], [32, 3, 1, "", "RECEIPT_TAX"], [32, 3, 1, "", "RECHARGING"], [32, 3, 1, "", "RECORD_MAIL"], [32, 3, 1, "", "RECORD_MAIL_OFF"], [32, 3, 1, "", "RECTANGLE"], [32, 3, 1, "", "RECTANGLE_FILLED"], [32, 3, 1, "", "RECTANGLE_ROUNDED_BOTTOM"], [32, 3, 1, "", "RECTANGLE_ROUNDED_TOP"], [32, 3, 1, "", "RECTANGLE_VERTICAL"], [32, 3, 1, "", "RECTANGLE_VERTICAL_FILLED"], [32, 3, 1, "", "RECTANGULAR_PRISM"], [32, 3, 1, "", "RECTANGULAR_PRISM_OFF"], [32, 3, 1, "", "RECTANGULAR_PRISM_PLUS"], [32, 3, 1, "", "RECYCLE"], [32, 3, 1, "", "RECYCLE_OFF"], [32, 3, 1, "", "REFRESH"], [32, 3, 1, "", "REFRESH_ALERT"], [32, 3, 1, "", "REFRESH_DOT"], [32, 3, 1, "", "REFRESH_OFF"], [32, 3, 1, "", "REGEX"], [32, 3, 1, "", "REGEX_OFF"], [32, 3, 1, "", "REGISTERED"], [32, 3, 1, "", "RELATION_MANY_TO_MANY"], [32, 3, 1, "", "RELATION_ONE_TO_MANY"], [32, 3, 1, "", "RELATION_ONE_TO_ONE"], [32, 3, 1, "", "RELOAD"], [32, 3, 1, "", "REPEAT"], [32, 3, 1, "", "REPEAT_OFF"], [32, 3, 1, "", "REPEAT_ONCE"], [32, 3, 1, "", "REPLACE"], [32, 3, 1, "", "REPLACE_FILLED"], [32, 3, 1, "", "REPLACE_OFF"], [32, 3, 1, "", "REPORT"], [32, 3, 1, "", "REPORT_ANALYTICS"], [32, 3, 1, "", "REPORT_MEDICAL"], [32, 3, 1, "", "REPORT_MONEY"], [32, 3, 1, "", "REPORT_OFF"], [32, 3, 1, "", "REPORT_SEARCH"], [32, 3, 1, "", "RESERVED_LINE"], [32, 3, 1, "", "RESIZE"], [32, 3, 1, "", "RESTORE"], [32, 3, 1, "", "REWIND_BACKWARD_10"], [32, 3, 1, "", "REWIND_BACKWARD_15"], [32, 3, 1, "", "REWIND_BACKWARD_20"], [32, 3, 1, "", "REWIND_BACKWARD_30"], [32, 3, 1, "", "REWIND_BACKWARD_40"], [32, 3, 1, "", "REWIND_BACKWARD_5"], [32, 3, 1, "", "REWIND_BACKWARD_50"], [32, 3, 1, "", "REWIND_BACKWARD_60"], [32, 3, 1, "", "REWIND_FORWARD_10"], [32, 3, 1, "", "REWIND_FORWARD_15"], [32, 3, 1, "", "REWIND_FORWARD_20"], [32, 3, 1, "", "REWIND_FORWARD_30"], [32, 3, 1, "", "REWIND_FORWARD_40"], [32, 3, 1, "", "REWIND_FORWARD_5"], [32, 3, 1, "", "REWIND_FORWARD_50"], [32, 3, 1, "", "REWIND_FORWARD_60"], [32, 3, 1, "", "RIBBON_HEALTH"], [32, 3, 1, "", "RINGS"], [32, 3, 1, "", "RIPPLE"], [32, 3, 1, "", "RIPPLE_OFF"], [32, 3, 1, "", "ROAD"], [32, 3, 1, "", "ROAD_OFF"], [32, 3, 1, "", "ROAD_SIGN"], [32, 3, 1, "", "ROBOT"], [32, 3, 1, "", "ROBOT_OFF"], [32, 3, 1, "", "ROCKET"], [32, 3, 1, "", "ROCKET_OFF"], [32, 3, 1, "", "ROLLERCOASTER"], [32, 3, 1, "", "ROLLERCOASTER_OFF"], [32, 3, 1, "", "ROLLER_SKATING"], [32, 3, 1, "", "ROSETTE"], [32, 3, 1, "", "ROSETTE_FILLED"], [32, 3, 1, "", "ROSETTE_NUMBER_0"], [32, 3, 1, "", "ROSETTE_NUMBER_1"], [32, 3, 1, "", "ROSETTE_NUMBER_2"], [32, 3, 1, "", "ROSETTE_NUMBER_3"], [32, 3, 1, "", "ROSETTE_NUMBER_4"], [32, 3, 1, "", "ROSETTE_NUMBER_5"], [32, 3, 1, "", "ROSETTE_NUMBER_6"], [32, 3, 1, "", "ROSETTE_NUMBER_7"], [32, 3, 1, "", "ROSETTE_NUMBER_8"], [32, 3, 1, "", "ROSETTE_NUMBER_9"], [32, 3, 1, "", "ROTATE"], [32, 3, 1, "", "ROTATE_2"], [32, 3, 1, "", "ROTATE_360"], [32, 3, 1, "", "ROTATE_CLOCKWISE"], [32, 3, 1, "", "ROTATE_CLOCKWISE_2"], [32, 3, 1, "", "ROTATE_DOT"], [32, 3, 1, "", "ROTATE_RECTANGLE"], [32, 3, 1, "", "ROUTE"], [32, 3, 1, "", "ROUTER"], [32, 3, 1, "", "ROUTER_OFF"], [32, 3, 1, "", "ROUTE_2"], [32, 3, 1, "", "ROUTE_OFF"], [32, 3, 1, "", "ROW_INSERT_BOTTOM"], [32, 3, 1, "", "ROW_INSERT_TOP"], [32, 3, 1, "", "ROW_REMOVE"], [32, 3, 1, "", "RSS"], [32, 3, 1, "", "RUBBER_STAMP"], [32, 3, 1, "", "RUBBER_STAMP_OFF"], [32, 3, 1, "", "RULER"], [32, 3, 1, "", "RULER_2"], [32, 3, 1, "", "RULER_2_OFF"], [32, 3, 1, "", "RULER_3"], [32, 3, 1, "", "RULER_MEASURE"], [32, 3, 1, "", "RULER_OFF"], [32, 3, 1, "", "RUN"], [32, 3, 1, "", "SAILBOAT"], [32, 3, 1, "", "SAILBOAT_2"], [32, 3, 1, "", "SAILBOAT_OFF"], [32, 3, 1, "", "SALAD"], [32, 3, 1, "", "SALT"], [32, 3, 1, "", "SATELLITE"], [32, 3, 1, "", "SATELLITE_OFF"], [32, 3, 1, "", "SAUSAGE"], [32, 3, 1, "", "SCALE"], [32, 3, 1, "", "SCALE_OFF"], [32, 3, 1, "", "SCALE_OUTLINE"], [32, 3, 1, "", "SCALE_OUTLINE_OFF"], [32, 3, 1, "", "SCAN"], [32, 3, 1, "", "SCAN_EYE"], [32, 3, 1, "", "SCHEMA"], [32, 3, 1, "", "SCHEMA_OFF"], [32, 3, 1, "", "SCHOOL"], [32, 3, 1, "", "SCHOOL_BELL"], [32, 3, 1, "", "SCHOOL_OFF"], [32, 3, 1, "", "SCISSORS"], [32, 3, 1, "", "SCISSORS_OFF"], [32, 3, 1, "", "SCOOTER"], [32, 3, 1, "", "SCOOTER_ELECTRIC"], [32, 3, 1, "", "SCOREBOARD"], [32, 3, 1, "", "SCREENSHOT"], [32, 3, 1, "", "SCREEN_SHARE"], [32, 3, 1, "", "SCREEN_SHARE_OFF"], [32, 3, 1, "", "SCRIBBLE"], [32, 3, 1, "", "SCRIBBLE_OFF"], [32, 3, 1, "", "SCRIPT"], [32, 3, 1, "", "SCRIPT_MINUS"], [32, 3, 1, "", "SCRIPT_PLUS"], [32, 3, 1, "", "SCRIPT_X"], [32, 3, 1, "", "SCUBA_MASK"], [32, 3, 1, "", "SCUBA_MASK_OFF"], [32, 3, 1, "", "SDK"], [32, 3, 1, "", "SEARCH"], [32, 3, 1, "", "SEARCH_OFF"], [32, 3, 1, "", "SECTION"], [32, 3, 1, "", "SECTION_SIGN"], [32, 3, 1, "", "SEEDING"], [32, 3, 1, "", "SEEDING_OFF"], [32, 3, 1, "", "SELECT"], [32, 3, 1, "", "SELECTOR"], [32, 3, 1, "", "SELECT_ALL"], [32, 3, 1, "", "SEND"], [32, 3, 1, "", "SEND_OFF"], [32, 3, 1, "", "SEO"], [32, 3, 1, "", "SEPARATOR"], [32, 3, 1, "", "SEPARATOR_HORIZONTAL"], [32, 3, 1, "", "SEPARATOR_VERTICAL"], [32, 3, 1, "", "SERVER"], [32, 3, 1, "", "SERVER_2"], [32, 3, 1, "", "SERVER_BOLT"], [32, 3, 1, "", "SERVER_COG"], [32, 3, 1, "", "SERVER_OFF"], [32, 3, 1, "", "SERVICEMARK"], [32, 3, 1, "", "SETTINGS"], [32, 3, 1, "", "SETTINGS_2"], [32, 3, 1, "", "SETTINGS_AUTOMATION"], [32, 3, 1, "", "SETTINGS_BOLT"], [32, 3, 1, "", "SETTINGS_CANCEL"], [32, 3, 1, "", "SETTINGS_CHECK"], [32, 3, 1, "", "SETTINGS_CODE"], [32, 3, 1, "", "SETTINGS_COG"], [32, 3, 1, "", "SETTINGS_DOLLAR"], [32, 3, 1, "", "SETTINGS_DOWN"], [32, 3, 1, "", "SETTINGS_EXCLAMATION"], [32, 3, 1, "", "SETTINGS_FILLED"], [32, 3, 1, "", "SETTINGS_HEART"], [32, 3, 1, "", "SETTINGS_MINUS"], [32, 3, 1, "", "SETTINGS_OFF"], [32, 3, 1, "", "SETTINGS_PAUSE"], [32, 3, 1, "", "SETTINGS_PIN"], [32, 3, 1, "", "SETTINGS_PLUS"], [32, 3, 1, "", "SETTINGS_QUESTION"], [32, 3, 1, "", "SETTINGS_SEARCH"], [32, 3, 1, "", "SETTINGS_SHARE"], [32, 3, 1, "", "SETTINGS_STAR"], [32, 3, 1, "", "SETTINGS_UP"], [32, 3, 1, "", "SETTINGS_X"], [32, 3, 1, "", "SHADOW"], [32, 3, 1, "", "SHADOW_OFF"], [32, 3, 1, "", "SHAPE"], [32, 3, 1, "", "SHAPE_2"], [32, 3, 1, "", "SHAPE_3"], [32, 3, 1, "", "SHAPE_OFF"], [32, 3, 1, "", "SHARE"], [32, 3, 1, "", "SHARE_2"], [32, 3, 1, "", "SHARE_3"], [32, 3, 1, "", "SHARE_OFF"], [32, 3, 1, "", "SHIELD"], [32, 3, 1, "", "SHIELD_BOLT"], [32, 3, 1, "", "SHIELD_CANCEL"], [32, 3, 1, "", "SHIELD_CHECK"], [32, 3, 1, "", "SHIELD_CHECKERED"], [32, 3, 1, "", "SHIELD_CHECKERED_FILLED"], [32, 3, 1, "", "SHIELD_CHECK_FILLED"], [32, 3, 1, "", "SHIELD_CHEVRON"], [32, 3, 1, "", "SHIELD_CODE"], [32, 3, 1, "", "SHIELD_COG"], [32, 3, 1, "", "SHIELD_DOLLAR"], [32, 3, 1, "", "SHIELD_DOWN"], [32, 3, 1, "", "SHIELD_EXCLAMATION"], [32, 3, 1, "", "SHIELD_FILLED"], [32, 3, 1, "", "SHIELD_HALF"], [32, 3, 1, "", "SHIELD_HALF_FILLED"], [32, 3, 1, "", "SHIELD_HEART"], [32, 3, 1, "", "SHIELD_LOCK"], [32, 3, 1, "", "SHIELD_LOCK_FILLED"], [32, 3, 1, "", "SHIELD_MINUS"], [32, 3, 1, "", "SHIELD_OFF"], [32, 3, 1, "", "SHIELD_PAUSE"], [32, 3, 1, "", "SHIELD_PIN"], [32, 3, 1, "", "SHIELD_PLUS"], [32, 3, 1, "", "SHIELD_QUESTION"], [32, 3, 1, "", "SHIELD_SEARCH"], [32, 3, 1, "", "SHIELD_SHARE"], [32, 3, 1, "", "SHIELD_STAR"], [32, 3, 1, "", "SHIELD_UP"], [32, 3, 1, "", "SHIELD_X"], [32, 3, 1, "", "SHIP"], [32, 3, 1, "", "SHIP_OFF"], [32, 3, 1, "", "SHIRT"], [32, 3, 1, "", "SHIRT_FILLED"], [32, 3, 1, "", "SHIRT_OFF"], [32, 3, 1, "", "SHIRT_SPORT"], [32, 3, 1, "", "SHI_JUMPING"], [32, 3, 1, "", "SHOE"], [32, 3, 1, "", "SHOE_OFF"], [32, 3, 1, "", "SHOPPING_BAG"], [32, 3, 1, "", "SHOPPING_CART"], [32, 3, 1, "", "SHOPPING_CART_DISCOUNT"], [32, 3, 1, "", "SHOPPING_CART_OFF"], [32, 3, 1, "", "SHOPPING_CART_PLUS"], [32, 3, 1, "", "SHOPPING_CART_X"], [32, 3, 1, "", "SHOVEL"], [32, 3, 1, "", "SHREDDER"], [32, 3, 1, "", "SIGNAL_2G"], [32, 3, 1, "", "SIGNAL_3G"], [32, 3, 1, "", "SIGNAL_4G"], [32, 3, 1, "", "SIGNAL_4G_PLUS"], [32, 3, 1, "", "SIGNAL_5G"], [32, 3, 1, "", "SIGNAL_6G"], [32, 3, 1, "", "SIGNAL_E"], [32, 3, 1, "", "SIGNAL_G"], [32, 3, 1, "", "SIGNAL_H"], [32, 3, 1, "", "SIGNAL_H_PLUS"], [32, 3, 1, "", "SIGNAL_LTE"], [32, 3, 1, "", "SIGNATURE"], [32, 3, 1, "", "SIGNATURE_OFF"], [32, 3, 1, "", "SIGN_LEFT"], [32, 3, 1, "", "SIGN_LEFT_FILLED"], [32, 3, 1, "", "SIGN_RIGHT"], [32, 3, 1, "", "SIGN_RIGHT_FILLED"], [32, 3, 1, "", "SITEMAP"], [32, 3, 1, "", "SITEMAP_OFF"], [32, 3, 1, "", "SKATEBOARD"], [32, 3, 1, "", "SKATEBOARDING"], [32, 3, 1, "", "SKATEBOARD_OFF"], [32, 3, 1, "", "SKULL"], [32, 3, 1, "", "SLASH"], [32, 3, 1, "", "SLASHES"], [32, 3, 1, "", "SLEIGH"], [32, 3, 1, "", "SLICE"], [32, 3, 1, "", "SLIDESHOW"], [32, 3, 1, "", "SMART_HOME"], [32, 3, 1, "", "SMART_HOME_OFF"], [32, 3, 1, "", "SMOKING"], [32, 3, 1, "", "SMOKING_NO"], [32, 3, 1, "", "SNOWFLAKE"], [32, 3, 1, "", "SNOWFLAKE_OFF"], [32, 3, 1, "", "SNOWMAN"], [32, 3, 1, "", "SOCCER_FIELD"], [32, 3, 1, "", "SOCIAL"], [32, 3, 1, "", "SOCIAL_OFF"], [32, 3, 1, "", "SOCK"], [32, 3, 1, "", "SOFA"], [32, 3, 1, "", "SOFA_OFF"], [32, 3, 1, "", "SOLAR_PANEL"], [32, 3, 1, "", "SOLAR_PANEL_2"], [32, 3, 1, "", "SORT_0_9"], [32, 3, 1, "", "SORT_9_0"], [32, 3, 1, "", "SORT_ASCENDING"], [32, 3, 1, "", "SORT_ASCENDING_2"], [32, 3, 1, "", "SORT_ASCENDING_LETTERS"], [32, 3, 1, "", "SORT_ASCENDING_NUMBERS"], [32, 3, 1, "", "SORT_A_Z"], [32, 3, 1, "", "SORT_DESCENDING"], [32, 3, 1, "", "SORT_DESCENDING_2"], [32, 3, 1, "", "SORT_DESCENDING_LETTERS"], [32, 3, 1, "", "SORT_DESCENDING_NUMBERS"], [32, 3, 1, "", "SORT_Z_A"], [32, 3, 1, "", "SOS"], [32, 3, 1, "", "SOUP"], [32, 3, 1, "", "SOUP_OFF"], [32, 3, 1, "", "SOURCE_CODE"], [32, 3, 1, "", "SPACE"], [32, 3, 1, "", "SPACE_OFF"], [32, 3, 1, "", "SPACING_HORIZONTAL"], [32, 3, 1, "", "SPACING_VERTICAL"], [32, 3, 1, "", "SPADE"], [32, 3, 1, "", "SPADE_FILLED"], [32, 3, 1, "", "SPARKLES"], [32, 3, 1, "", "SPEAKERPHONE"], [32, 3, 1, "", "SPEEDBOAT"], [32, 3, 1, "", "SPHERE"], [32, 3, 1, "", "SPHERE_OFF"], [32, 3, 1, "", "SPHERE_PLUS"], [32, 3, 1, "", "SPIDER"], [32, 3, 1, "", "SPIRAL"], [32, 3, 1, "", "SPIRAL_OFF"], [32, 3, 1, "", "SPORT_BILLARD"], [32, 3, 1, "", "SPRAY"], [32, 3, 1, "", "SPY"], [32, 3, 1, "", "SPY_OFF"], [32, 3, 1, "", "SQL"], [32, 3, 1, "", "SQUARE"], [32, 3, 1, "", "SQUARES_DIAGONAL"], [32, 3, 1, "", "SQUARES_FILLED"], [32, 3, 1, "", "SQUARE_0_FILLED"], [32, 3, 1, "", "SQUARE_1_FILLED"], [32, 3, 1, "", "SQUARE_2_FILLED"], [32, 3, 1, "", "SQUARE_3_FILLED"], [32, 3, 1, "", "SQUARE_4_FILLED"], [32, 3, 1, "", "SQUARE_5_FILLED"], [32, 3, 1, "", "SQUARE_6_FILLED"], [32, 3, 1, "", "SQUARE_7_FILLED"], [32, 3, 1, "", "SQUARE_8_FILLED"], [32, 3, 1, "", "SQUARE_9_FILLED"], [32, 3, 1, "", "SQUARE_ARROW_DOWN"], [32, 3, 1, "", "SQUARE_ARROW_LEFT"], [32, 3, 1, "", "SQUARE_ARROW_RIGHT"], [32, 3, 1, "", "SQUARE_ARROW_UP"], [32, 3, 1, "", "SQUARE_ASTERISK"], [32, 3, 1, "", "SQUARE_CHECK"], [32, 3, 1, "", "SQUARE_CHECK_FILLED"], [32, 3, 1, "", "SQUARE_CHEVRONS_DOWN"], [32, 3, 1, "", "SQUARE_CHEVRONS_LEFT"], [32, 3, 1, "", "SQUARE_CHEVRONS_RIGHT"], [32, 3, 1, "", "SQUARE_CHEVRONS_UP"], [32, 3, 1, "", "SQUARE_CHEVRON_DOWN"], [32, 3, 1, "", "SQUARE_CHEVRON_LEFT"], [32, 3, 1, "", "SQUARE_CHEVRON_RIGHT"], [32, 3, 1, "", "SQUARE_CHEVRON_UP"], [32, 3, 1, "", "SQUARE_DOT"], [32, 3, 1, "", "SQUARE_F0"], [32, 3, 1, "", "SQUARE_F0_FILLED"], [32, 3, 1, "", "SQUARE_F1"], [32, 3, 1, "", "SQUARE_F1_FILLED"], [32, 3, 1, "", "SQUARE_F2"], [32, 3, 1, "", "SQUARE_F2_FILLED"], [32, 3, 1, "", "SQUARE_F3"], [32, 3, 1, "", "SQUARE_F3_FILLED"], [32, 3, 1, "", "SQUARE_F4"], [32, 3, 1, "", "SQUARE_F4_FILLED"], [32, 3, 1, "", "SQUARE_F5"], [32, 3, 1, "", "SQUARE_F5_FILLED"], [32, 3, 1, "", "SQUARE_F6"], [32, 3, 1, "", "SQUARE_F6_FILLED"], [32, 3, 1, "", "SQUARE_F7"], [32, 3, 1, "", "SQUARE_F7_FILLED"], [32, 3, 1, "", "SQUARE_F8"], [32, 3, 1, "", "SQUARE_F8_FILLED"], [32, 3, 1, "", "SQUARE_F9"], [32, 3, 1, "", "SQUARE_F9_FILLED"], [32, 3, 1, "", "SQUARE_FORBID"], [32, 3, 1, "", "SQUARE_FORBID_2"], [32, 3, 1, "", "SQUARE_HALF"], [32, 3, 1, "", "SQUARE_KEY"], [32, 3, 1, "", "SQUARE_LETTER_A"], [32, 3, 1, "", "SQUARE_LETTER_B"], [32, 3, 1, "", "SQUARE_LETTER_C"], [32, 3, 1, "", "SQUARE_LETTER_D"], [32, 3, 1, "", "SQUARE_LETTER_E"], [32, 3, 1, "", "SQUARE_LETTER_F"], [32, 3, 1, "", "SQUARE_LETTER_G"], [32, 3, 1, "", "SQUARE_LETTER_H"], [32, 3, 1, "", "SQUARE_LETTER_I"], [32, 3, 1, "", "SQUARE_LETTER_J"], [32, 3, 1, "", "SQUARE_LETTER_K"], [32, 3, 1, "", "SQUARE_LETTER_L"], [32, 3, 1, "", "SQUARE_LETTER_M"], [32, 3, 1, "", "SQUARE_LETTER_N"], [32, 3, 1, "", "SQUARE_LETTER_O"], [32, 3, 1, "", "SQUARE_LETTER_P"], [32, 3, 1, "", "SQUARE_LETTER_Q"], [32, 3, 1, "", "SQUARE_LETTER_R"], [32, 3, 1, "", "SQUARE_LETTER_S"], [32, 3, 1, "", "SQUARE_LETTER_T"], [32, 3, 1, "", "SQUARE_LETTER_U"], [32, 3, 1, "", "SQUARE_LETTER_V"], [32, 3, 1, "", "SQUARE_LETTER_W"], [32, 3, 1, "", "SQUARE_LETTER_X"], [32, 3, 1, "", "SQUARE_LETTER_Y"], [32, 3, 1, "", "SQUARE_LETTER_Z"], [32, 3, 1, "", "SQUARE_MINUS"], [32, 3, 1, "", "SQUARE_NUMBER_0"], [32, 3, 1, "", "SQUARE_NUMBER_1"], [32, 3, 1, "", "SQUARE_NUMBER_2"], [32, 3, 1, "", "SQUARE_NUMBER_3"], [32, 3, 1, "", "SQUARE_NUMBER_4"], [32, 3, 1, "", "SQUARE_NUMBER_5"], [32, 3, 1, "", "SQUARE_NUMBER_6"], [32, 3, 1, "", "SQUARE_NUMBER_7"], [32, 3, 1, "", "SQUARE_NUMBER_8"], [32, 3, 1, "", "SQUARE_NUMBER_9"], [32, 3, 1, "", "SQUARE_OFF"], [32, 3, 1, "", "SQUARE_PLUS"], [32, 3, 1, "", "SQUARE_ROOT"], [32, 3, 1, "", "SQUARE_ROOT_2"], [32, 3, 1, "", "SQUARE_ROTATED"], [32, 3, 1, "", "SQUARE_ROTATED_FILLED"], [32, 3, 1, "", "SQUARE_ROTATED_FORBID"], [32, 3, 1, "", "SQUARE_ROTATED_FORBID_2"], [32, 3, 1, "", "SQUARE_ROTATED_OFF"], [32, 3, 1, "", "SQUARE_ROUNDED"], [32, 3, 1, "", "SQUARE_ROUNDED_ARROW_DOWN"], [32, 3, 1, "", "SQUARE_ROUNDED_ARROW_DOWN_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_ARROW_LEFT"], [32, 3, 1, "", "SQUARE_ROUNDED_ARROW_LEFT_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_ARROW_RIGHT"], [32, 3, 1, "", "SQUARE_ROUNDED_ARROW_RIGHT_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_ARROW_UP"], [32, 3, 1, "", "SQUARE_ROUNDED_ARROW_UP_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_CHECK"], [32, 3, 1, "", "SQUARE_ROUNDED_CHECK_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_DOWN"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_DOWN_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_LEFT"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_LEFT_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_RIGHT"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_RIGHT_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_UP"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_UP_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_DOWN"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_DOWN_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_LEFT"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_LEFT_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_RIGHT"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_RIGHT_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_UP"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_UP_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_A"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_B"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_C"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_D"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_E"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_F"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_G"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_H"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_I"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_J"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_K"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_L"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_M"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_N"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_O"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_P"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_Q"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_R"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_S"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_T"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_U"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_V"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_W"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_X"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_Y"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_Z"], [32, 3, 1, "", "SQUARE_ROUNDED_MINUS"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_0"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_0_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_1"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_1_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_2"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_2_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_3"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_3_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_4"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_4_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_5"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_5_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_6"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_6_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_7"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_7_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_8"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_8_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_9"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_9_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_PLUS"], [32, 3, 1, "", "SQUARE_ROUNDED_PLUS_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_X"], [32, 3, 1, "", "SQUARE_ROUNDED_X_FILLED"], [32, 3, 1, "", "SQUARE_TOGGLE"], [32, 3, 1, "", "SQUARE_TOGGLE_HORIZONTAL"], [32, 3, 1, "", "SQUARE_X"], [32, 3, 1, "", "STACK"], [32, 3, 1, "", "STACK_2"], [32, 3, 1, "", "STACK_3"], [32, 3, 1, "", "STACK_POP"], [32, 3, 1, "", "STACK_PUSH"], [32, 3, 1, "", "STAIRS"], [32, 3, 1, "", "STAIRS_DOWN"], [32, 3, 1, "", "STAIRS_UP"], [32, 3, 1, "", "STAR"], [32, 3, 1, "", "STARS"], [32, 3, 1, "", "STARS_FILLED"], [32, 3, 1, "", "STARS_OFF"], [32, 3, 1, "", "STAR_FILLED"], [32, 3, 1, "", "STAR_HALF"], [32, 3, 1, "", "STAR_HALF_FILLED"], [32, 3, 1, "", "STAR_OFF"], [32, 3, 1, "", "STATUS_CHANGE"], [32, 3, 1, "", "STEAM"], [32, 3, 1, "", "STEERING_WHEEL"], [32, 3, 1, "", "STEERING_WHEEL_OFF"], [32, 3, 1, "", "STEP_INTO"], [32, 3, 1, "", "STEP_OUT"], [32, 3, 1, "", "STEREO_GLASSES"], [32, 3, 1, "", "STETHOSCOPE"], [32, 3, 1, "", "STETHOSCOPE_OFF"], [32, 3, 1, "", "STICKER"], [32, 3, 1, "", "STORM"], [32, 3, 1, "", "STORM_OFF"], [32, 3, 1, "", "STRETCHING"], [32, 3, 1, "", "STRETCHING_2"], [32, 3, 1, "", "STRIKETHROUGH"], [32, 3, 1, "", "SUBMARINE"], [32, 3, 1, "", "SUBSCRIPT"], [32, 3, 1, "", "SUBTASK"], [32, 3, 1, "", "SUM"], [32, 3, 1, "", "SUM_OFF"], [32, 3, 1, "", "SUN"], [32, 3, 1, "", "SUNGLASSES"], [32, 3, 1, "", "SUNRISE"], [32, 3, 1, "", "SUNSET"], [32, 3, 1, "", "SUNSET_2"], [32, 3, 1, "", "SUN_FILLED"], [32, 3, 1, "", "SUN_HIGH"], [32, 3, 1, "", "SUN_LOW"], [32, 3, 1, "", "SUN_MOON"], [32, 3, 1, "", "SUN_OFF"], [32, 3, 1, "", "SUN_WIND"], [32, 3, 1, "", "SUPERSCRIPT"], [32, 3, 1, "", "SVG"], [32, 3, 1, "", "SWIMMING"], [32, 3, 1, "", "SWIPE"], [32, 3, 1, "", "SWITCH"], [32, 3, 1, "", "SWITCH_2"], [32, 3, 1, "", "SWITCH_3"], [32, 3, 1, "", "SWITCH_HORIZONTAL"], [32, 3, 1, "", "SWITCH_VERTICAL"], [32, 3, 1, "", "SWORD"], [32, 3, 1, "", "SWORDS"], [32, 3, 1, "", "SWORD_OFF"], [32, 3, 1, "", "S_TURN_DOWN"], [32, 3, 1, "", "S_TURN_LEFT"], [32, 3, 1, "", "S_TURN_RIGHT"], [32, 3, 1, "", "S_TURN_UP"], [32, 3, 1, "", "TABLE"], [32, 3, 1, "", "TABLE_ALIAS"], [32, 3, 1, "", "TABLE_COLUMN"], [32, 3, 1, "", "TABLE_DOWN"], [32, 3, 1, "", "TABLE_EXPORT"], [32, 3, 1, "", "TABLE_FILLED"], [32, 3, 1, "", "TABLE_HEART"], [32, 3, 1, "", "TABLE_IMPORT"], [32, 3, 1, "", "TABLE_MINUS"], [32, 3, 1, "", "TABLE_OFF"], [32, 3, 1, "", "TABLE_OPTIONS"], [32, 3, 1, "", "TABLE_PLUS"], [32, 3, 1, "", "TABLE_ROW"], [32, 3, 1, "", "TABLE_SHARE"], [32, 3, 1, "", "TABLE_SHORTCUT"], [32, 3, 1, "", "TAG"], [32, 3, 1, "", "TAGS"], [32, 3, 1, "", "TAGS_OFF"], [32, 3, 1, "", "TAG_OFF"], [32, 3, 1, "", "TALLYMARKS"], [32, 3, 1, "", "TALLYMARK_1"], [32, 3, 1, "", "TALLYMARK_2"], [32, 3, 1, "", "TALLYMARK_3"], [32, 3, 1, "", "TALLYMARK_4"], [32, 3, 1, "", "TANK"], [32, 3, 1, "", "TARGET"], [32, 3, 1, "", "TARGET_ARROW"], [32, 3, 1, "", "TARGET_OFF"], [32, 3, 1, "", "TEAPOT"], [32, 3, 1, "", "TELESCOPE"], [32, 3, 1, "", "TELESCOPE_OFF"], [32, 3, 1, "", "TEMPERATURE"], [32, 3, 1, "", "TEMPERATURE_CELSIUS"], [32, 3, 1, "", "TEMPERATURE_FAHRENHEIT"], [32, 3, 1, "", "TEMPERATURE_MINUS"], [32, 3, 1, "", "TEMPERATURE_OFF"], [32, 3, 1, "", "TEMPERATURE_PLUS"], [32, 3, 1, "", "TEMPLATE"], [32, 3, 1, "", "TEMPLATE_OFF"], [32, 3, 1, "", "TENT"], [32, 3, 1, "", "TENT_OFF"], [32, 3, 1, "", "TERMINAL"], [32, 3, 1, "", "TERMINAL_2"], [32, 3, 1, "", "TEST_PIPE"], [32, 3, 1, "", "TEST_PIPE_2"], [32, 3, 1, "", "TEST_PIPE_OFF"], [32, 3, 1, "", "TEX"], [32, 3, 1, "", "TEXTURE"], [32, 3, 1, "", "TEXT_CAPTION"], [32, 3, 1, "", "TEXT_COLOR"], [32, 3, 1, "", "TEXT_DECREASE"], [32, 3, 1, "", "TEXT_DIRECTION_LTR"], [32, 3, 1, "", "TEXT_DIRECTION_RTL"], [32, 3, 1, "", "TEXT_INCREASE"], [32, 3, 1, "", "TEXT_ORIENTATION"], [32, 3, 1, "", "TEXT_PLUS"], [32, 3, 1, "", "TEXT_RECOGNITION"], [32, 3, 1, "", "TEXT_RESIZE"], [32, 3, 1, "", "TEXT_SIZE"], [32, 3, 1, "", "TEXT_SPELLCHECK"], [32, 3, 1, "", "TEXT_WRAP"], [32, 3, 1, "", "TEXT_WRAP_DISABLED"], [32, 3, 1, "", "THEATER"], [32, 3, 1, "", "THERMOMETER"], [32, 3, 1, "", "THUMB_DOWN"], [32, 3, 1, "", "THUMB_DOWN_FILLED"], [32, 3, 1, "", "THUMB_DOWN_OFF"], [32, 3, 1, "", "THUMB_UP"], [32, 3, 1, "", "THUMB_UP_FILLED"], [32, 3, 1, "", "THUMB_UP_OFF"], [32, 3, 1, "", "TICKET"], [32, 3, 1, "", "TICKET_OFF"], [32, 3, 1, "", "TIC_TAC"], [32, 3, 1, "", "TIE"], [32, 3, 1, "", "TILDE"], [32, 3, 1, "", "TILT_SHIFT"], [32, 3, 1, "", "TILT_SHIFT_OFF"], [32, 3, 1, "", "TIMELINE"], [32, 3, 1, "", "TIMELINE_EVENT"], [32, 3, 1, "", "TIMELINE_EVENT_EXCLAMATION"], [32, 3, 1, "", "TIMELINE_EVENT_MINUS"], [32, 3, 1, "", "TIMELINE_EVENT_PLUS"], [32, 3, 1, "", "TIMELINE_EVENT_TEXT"], [32, 3, 1, "", "TIMELINE_EVENT_X"], [32, 3, 1, "", "TIME_DURATION_0"], [32, 3, 1, "", "TIME_DURATION_10"], [32, 3, 1, "", "TIME_DURATION_15"], [32, 3, 1, "", "TIME_DURATION_30"], [32, 3, 1, "", "TIME_DURATION_45"], [32, 3, 1, "", "TIME_DURATION_5"], [32, 3, 1, "", "TIME_DURATION_60"], [32, 3, 1, "", "TIME_DURATION_90"], [32, 3, 1, "", "TIME_DURATION_OFF"], [32, 3, 1, "", "TIR"], [32, 3, 1, "", "TOGGLE_LEFT"], [32, 3, 1, "", "TOGGLE_RIGHT"], [32, 3, 1, "", "TOILET_PAPER"], [32, 3, 1, "", "TOILET_PAPER_OFF"], [32, 3, 1, "", "TOML"], [32, 3, 1, "", "TOOL"], [32, 3, 1, "", "TOOLS"], [32, 3, 1, "", "TOOLS_KITCHEN"], [32, 3, 1, "", "TOOLS_KITCHEN_2"], [32, 3, 1, "", "TOOLS_KITCHEN_2_OFF"], [32, 3, 1, "", "TOOLS_KITCHEN_OFF"], [32, 3, 1, "", "TOOLS_OFF"], [32, 3, 1, "", "TOOLTIP"], [32, 3, 1, "", "TOPOLOGY_BUS"], [32, 3, 1, "", "TOPOLOGY_COMPLEX"], [32, 3, 1, "", "TOPOLOGY_FULL"], [32, 3, 1, "", "TOPOLOGY_FULL_HIERARCHY"], [32, 3, 1, "", "TOPOLOGY_RING"], [32, 3, 1, "", "TOPOLOGY_RING_2"], [32, 3, 1, "", "TOPOLOGY_RING_3"], [32, 3, 1, "", "TOPOLOGY_STAR"], [32, 3, 1, "", "TOPOLOGY_STAR_2"], [32, 3, 1, "", "TOPOLOGY_STAR_3"], [32, 3, 1, "", "TOPOLOGY_STAR_RING"], [32, 3, 1, "", "TOPOLOGY_STAR_RING_2"], [32, 3, 1, "", "TOPOLOGY_STAR_RING_3"], [32, 3, 1, "", "TORII"], [32, 3, 1, "", "TORNADO"], [32, 3, 1, "", "TOURNAMENT"], [32, 3, 1, "", "TOWER"], [32, 3, 1, "", "TOWER_OFF"], [32, 3, 1, "", "TRACK"], [32, 3, 1, "", "TRACTOR"], [32, 3, 1, "", "TRADEMARK"], [32, 3, 1, "", "TRAFFIC_CONE"], [32, 3, 1, "", "TRAFFIC_CONE_OFF"], [32, 3, 1, "", "TRAFFIC_LIGHTS"], [32, 3, 1, "", "TRAFFIC_LIGHTS_OFF"], [32, 3, 1, "", "TRAIN"], [32, 3, 1, "", "TRANSFER_IN"], [32, 3, 1, "", "TRANSFER_OUT"], [32, 3, 1, "", "TRANSFORM"], [32, 3, 1, "", "TRANSFORM_FILLED"], [32, 3, 1, "", "TRANSITION_BOTTOM"], [32, 3, 1, "", "TRANSITION_LEFT"], [32, 3, 1, "", "TRANSITION_RIGHT"], [32, 3, 1, "", "TRANSITION_TOP"], [32, 3, 1, "", "TRASH"], [32, 3, 1, "", "TRASH_FILLED"], [32, 3, 1, "", "TRASH_OFF"], [32, 3, 1, "", "TRASH_X"], [32, 3, 1, "", "TRASH_X_FILLED"], [32, 3, 1, "", "TREADMILL"], [32, 3, 1, "", "TREE"], [32, 3, 1, "", "TREES"], [32, 3, 1, "", "TREKKING"], [32, 3, 1, "", "TRENDING_DOWN"], [32, 3, 1, "", "TRENDING_DOWN_2"], [32, 3, 1, "", "TRENDING_DOWN_3"], [32, 3, 1, "", "TRENDING_UP"], [32, 3, 1, "", "TRENDING_UP_2"], [32, 3, 1, "", "TRENDING_UP_3"], [32, 3, 1, "", "TRIANGLE"], [32, 3, 1, "", "TRIANGLES"], [32, 3, 1, "", "TRIANGLE_FILLED"], [32, 3, 1, "", "TRIANGLE_INVERTED"], [32, 3, 1, "", "TRIANGLE_INVERTED_FILLED"], [32, 3, 1, "", "TRIANGLE_OFF"], [32, 3, 1, "", "TRIANGLE_SQUARE_CIRCLE"], [32, 3, 1, "", "TRIDENT"], [32, 3, 1, "", "TROLLEY"], [32, 3, 1, "", "TROPHY"], [32, 3, 1, "", "TROPHY_FILLED"], [32, 3, 1, "", "TROPHY_OFF"], [32, 3, 1, "", "TROWEL"], [32, 3, 1, "", "TRUCK"], [32, 3, 1, "", "TRUCK_DELIVERY"], [32, 3, 1, "", "TRUCK_LOADING"], [32, 3, 1, "", "TRUCK_OFF"], [32, 3, 1, "", "TRUCK_RETURN"], [32, 3, 1, "", "TXT"], [32, 3, 1, "", "TYPOGRAPHY"], [32, 3, 1, "", "TYPOGRAPHY_OFF"], [32, 3, 1, "", "UFO"], [32, 3, 1, "", "UFO_OFF"], [32, 3, 1, "", "UMBRELLA"], [32, 3, 1, "", "UMBRELLA_FILLED"], [32, 3, 1, "", "UMBRELLA_OFF"], [32, 3, 1, "", "UNDERLINE"], [32, 3, 1, "", "UNLINK"], [32, 3, 1, "", "UPLOAD"], [32, 3, 1, "", "URGENT"], [32, 3, 1, "", "USB"], [32, 3, 1, "", "USER"], [32, 3, 1, "", "USERS"], [32, 3, 1, "", "USERS_GROUP"], [32, 3, 1, "", "USERS_MINUS"], [32, 3, 1, "", "USERS_PLUS"], [32, 3, 1, "", "USER_BOLT"], [32, 3, 1, "", "USER_CANCEL"], [32, 3, 1, "", "USER_CHECK"], [32, 3, 1, "", "USER_CIRCLE"], [32, 3, 1, "", "USER_CODE"], [32, 3, 1, "", "USER_COG"], [32, 3, 1, "", "USER_DOLLAR"], [32, 3, 1, "", "USER_DOWN"], [32, 3, 1, "", "USER_EDIT"], [32, 3, 1, "", "USER_EXCLAMATION"], [32, 3, 1, "", "USER_HEART"], [32, 3, 1, "", "USER_MINUS"], [32, 3, 1, "", "USER_OFF"], [32, 3, 1, "", "USER_PAUSE"], [32, 3, 1, "", "USER_PIN"], [32, 3, 1, "", "USER_PLUS"], [32, 3, 1, "", "USER_QUESTION"], [32, 3, 1, "", "USER_SEARCH"], [32, 3, 1, "", "USER_SHARE"], [32, 3, 1, "", "USER_SHIELD"], [32, 3, 1, "", "USER_STAR"], [32, 3, 1, "", "USER_UP"], [32, 3, 1, "", "USER_X"], [32, 3, 1, "", "UV_INDEX"], [32, 3, 1, "", "UX_CIRCLE"], [32, 3, 1, "", "VACCINE"], [32, 3, 1, "", "VACCINE_BOTTLE"], [32, 3, 1, "", "VACCINE_BOTTLE_OFF"], [32, 3, 1, "", "VACCINE_OFF"], [32, 3, 1, "", "VACUUM_CLEANER"], [32, 3, 1, "", "VARIABLE"], [32, 3, 1, "", "VARIABLE_MINUS"], [32, 3, 1, "", "VARIABLE_OFF"], [32, 3, 1, "", "VARIABLE_PLUS"], [32, 3, 1, "", "VECTOR"], [32, 3, 1, "", "VECTOR_BEZIER"], [32, 3, 1, "", "VECTOR_BEZIER_2"], [32, 3, 1, "", "VECTOR_BEZIER_ARC"], [32, 3, 1, "", "VECTOR_BEZIER_CIRCLE"], [32, 3, 1, "", "VECTOR_OFF"], [32, 3, 1, "", "VECTOR_SPLINE"], [32, 3, 1, "", "VECTOR_TRIANGLE"], [32, 3, 1, "", "VECTOR_TRIANGLE_OFF"], [32, 3, 1, "", "VENUS"], [32, 3, 1, "", "VERSIONS"], [32, 3, 1, "", "VERSIONS_FILLED"], [32, 3, 1, "", "VERSIONS_OFF"], [32, 3, 1, "", "VIDEO"], [32, 3, 1, "", "VIDEO_MINUS"], [32, 3, 1, "", "VIDEO_OFF"], [32, 3, 1, "", "VIDEO_PLUS"], [32, 3, 1, "", "VIEWFINDER"], [32, 3, 1, "", "VIEWFINDER_OFF"], [32, 3, 1, "", "VIEWPORT_NARROW"], [32, 3, 1, "", "VIEWPORT_WIDE"], [32, 3, 1, "", "VIEW_360"], [32, 3, 1, "", "VIEW_360_OFF"], [32, 3, 1, "", "VINYL"], [32, 3, 1, "", "VIP"], [32, 3, 1, "", "VIP_OFF"], [32, 3, 1, "", "VIRUS"], [32, 3, 1, "", "VIRUS_OFF"], [32, 3, 1, "", "VIRUS_SEARCH"], [32, 3, 1, "", "VOCABULARY"], [32, 3, 1, "", "VOCABULARY_OFF"], [32, 3, 1, "", "VOLCANO"], [32, 3, 1, "", "VOLUME"], [32, 3, 1, "", "VOLUME_2"], [32, 3, 1, "", "VOLUME_3"], [32, 3, 1, "", "VOLUME_OFF"], [32, 3, 1, "", "WALK"], [32, 3, 1, "", "WALL"], [32, 3, 1, "", "WALLET"], [32, 3, 1, "", "WALLET_OFF"], [32, 3, 1, "", "WALLPAPER"], [32, 3, 1, "", "WALLPAPER_OFF"], [32, 3, 1, "", "WALL_OFF"], [32, 3, 1, "", "WAND"], [32, 3, 1, "", "WAND_OFF"], [32, 3, 1, "", "WASH"], [32, 3, 1, "", "WASH_DRY"], [32, 3, 1, "", "WASH_DRYCLEAN"], [32, 3, 1, "", "WASH_DRYCLEAN_OFF"], [32, 3, 1, "", "WASH_DRY_1"], [32, 3, 1, "", "WASH_DRY_2"], [32, 3, 1, "", "WASH_DRY_3"], [32, 3, 1, "", "WASH_DRY_A"], [32, 3, 1, "", "WASH_DRY_DIP"], [32, 3, 1, "", "WASH_DRY_F"], [32, 3, 1, "", "WASH_DRY_FLAT"], [32, 3, 1, "", "WASH_DRY_HANG"], [32, 3, 1, "", "WASH_DRY_OFF"], [32, 3, 1, "", "WASH_DRY_P"], [32, 3, 1, "", "WASH_DRY_SHADE"], [32, 3, 1, "", "WASH_DRY_W"], [32, 3, 1, "", "WASH_ECO"], [32, 3, 1, "", "WASH_GENTLE"], [32, 3, 1, "", "WASH_HAND"], [32, 3, 1, "", "WASH_MACHINE"], [32, 3, 1, "", "WASH_OFF"], [32, 3, 1, "", "WASH_PRESS"], [32, 3, 1, "", "WASH_TEMPERATURE_1"], [32, 3, 1, "", "WASH_TEMPERATURE_2"], [32, 3, 1, "", "WASH_TEMPERATURE_3"], [32, 3, 1, "", "WASH_TEMPERATURE_4"], [32, 3, 1, "", "WASH_TEMPERATURE_5"], [32, 3, 1, "", "WASH_TEMPERATURE_6"], [32, 3, 1, "", "WASH_TUMBLE_DRY"], [32, 3, 1, "", "WASH_TUMBLE_OFF"], [32, 3, 1, "", "WATERPOLO"], [32, 3, 1, "", "WAVE_SAW_TOOL"], [32, 3, 1, "", "WAVE_SINE"], [32, 3, 1, "", "WAVE_SQUARE"], [32, 3, 1, "", "WEBHOOK"], [32, 3, 1, "", "WEBHOOK_OFF"], [32, 3, 1, "", "WEIGHT"], [32, 3, 1, "", "WHEELCHAIR"], [32, 3, 1, "", "WHEELCHAIR_OFF"], [32, 3, 1, "", "WHIRL"], [32, 3, 1, "", "WIFI"], [32, 3, 1, "", "WIFI_0"], [32, 3, 1, "", "WIFI_1"], [32, 3, 1, "", "WIFI_2"], [32, 3, 1, "", "WIFI_OFF"], [32, 3, 1, "", "WIND"], [32, 3, 1, "", "WINDMILL"], [32, 3, 1, "", "WINDMILL_FILLED"], [32, 3, 1, "", "WINDMILL_OFF"], [32, 3, 1, "", "WINDOW"], [32, 3, 1, "", "WINDOW_MAXIMIZE"], [32, 3, 1, "", "WINDOW_MINIMIZE"], [32, 3, 1, "", "WINDOW_OFF"], [32, 3, 1, "", "WINDSOCK"], [32, 3, 1, "", "WIND_OFF"], [32, 3, 1, "", "WIPER"], [32, 3, 1, "", "WIPER_WASH"], [32, 3, 1, "", "WOMAN"], [32, 3, 1, "", "WOOD"], [32, 3, 1, "", "WORLD"], [32, 3, 1, "", "WORLD_BOLT"], [32, 3, 1, "", "WORLD_CANCEL"], [32, 3, 1, "", "WORLD_CHECK"], [32, 3, 1, "", "WORLD_CODE"], [32, 3, 1, "", "WORLD_COG"], [32, 3, 1, "", "WORLD_DOLLAR"], [32, 3, 1, "", "WORLD_DOWN"], [32, 3, 1, "", "WORLD_DOWNLOAD"], [32, 3, 1, "", "WORLD_EXCLAMATION"], [32, 3, 1, "", "WORLD_HEART"], [32, 3, 1, "", "WORLD_LATITUDE"], [32, 3, 1, "", "WORLD_LONGITUDE"], [32, 3, 1, "", "WORLD_MINUS"], [32, 3, 1, "", "WORLD_OFF"], [32, 3, 1, "", "WORLD_PAUSE"], [32, 3, 1, "", "WORLD_PIN"], [32, 3, 1, "", "WORLD_PLUS"], [32, 3, 1, "", "WORLD_QUESTION"], [32, 3, 1, "", "WORLD_SEARCH"], [32, 3, 1, "", "WORLD_SHARE"], [32, 3, 1, "", "WORLD_STAR"], [32, 3, 1, "", "WORLD_UP"], [32, 3, 1, "", "WORLD_UPLOAD"], [32, 3, 1, "", "WORLD_WWW"], [32, 3, 1, "", "WORLD_X"], [32, 3, 1, "", "WRECKING_BALL"], [32, 3, 1, "", "WRITING"], [32, 3, 1, "", "WRITING_OFF"], [32, 3, 1, "", "WRITING_SIGN"], [32, 3, 1, "", "WRITING_SIGN_OFF"], [32, 3, 1, "", "X"], [32, 3, 1, "", "XBOX_A"], [32, 3, 1, "", "XBOX_B"], [32, 3, 1, "", "XBOX_X"], [32, 3, 1, "", "XBOX_Y"], [32, 3, 1, "", "XD"], [32, 3, 1, "", "YIN_YANG"], [32, 3, 1, "", "YIN_YANG_FILLED"], [32, 3, 1, "", "YOGA"], [32, 3, 1, "", "ZEPPELIN"], [32, 3, 1, "", "ZEPPELIN_OFF"], [32, 3, 1, "", "ZIP"], [32, 3, 1, "", "ZODIAC_AQUARIUS"], [32, 3, 1, "", "ZODIAC_ARIES"], [32, 3, 1, "", "ZODIAC_CANCER"], [32, 3, 1, "", "ZODIAC_CAPRICORN"], [32, 3, 1, "", "ZODIAC_GEMINI"], [32, 3, 1, "", "ZODIAC_LEO"], [32, 3, 1, "", "ZODIAC_LIBRA"], [32, 3, 1, "", "ZODIAC_PISCES"], [32, 3, 1, "", "ZODIAC_SAGITTARIUS"], [32, 3, 1, "", "ZODIAC_SCORPIO"], [32, 3, 1, "", "ZODIAC_TAURUS"], [32, 3, 1, "", "ZODIAC_VIRGO"], [32, 3, 1, "", "ZOOM_CANCEL"], [32, 3, 1, "", "ZOOM_CHECK"], [32, 3, 1, "", "ZOOM_CHECK_FILLED"], [32, 3, 1, "", "ZOOM_CODE"], [32, 3, 1, "", "ZOOM_EXCLAMATION"], [32, 3, 1, "", "ZOOM_FILLED"], [32, 3, 1, "", "ZOOM_IN"], [32, 3, 1, "", "ZOOM_IN_AREA"], [32, 3, 1, "", "ZOOM_IN_AREA_FILLED"], [32, 3, 1, "", "ZOOM_IN_FILLED"], [32, 3, 1, "", "ZOOM_MONEY"], [32, 3, 1, "", "ZOOM_OUT"], [32, 3, 1, "", "ZOOM_OUT_AREA"], [32, 3, 1, "", "ZOOM_OUT_FILLED"], [32, 3, 1, "", "ZOOM_PAN"], [32, 3, 1, "", "ZOOM_QUESTION"], [32, 3, 1, "", "ZOOM_REPLACE"], [32, 3, 1, "", "ZOOM_RESET"], [32, 3, 1, "", "ZZZ"], [32, 3, 1, "", "ZZZ_OFF"]], "viser.IconName": [[32, 1, 1, "", "__new__"]], "viser.ImageHandle": [[36, 1, 1, "", "on_click"], [36, 2, 1, "", "position"], [36, 1, 1, "", "remove"], [36, 2, 1, "", "visible"], [36, 2, 1, "", "wxyz"]], "viser.LabelHandle": [[36, 2, 1, "", "position"], [36, 1, 1, "", "remove"], [36, 2, 1, "", "visible"], [36, 2, 1, "", "wxyz"]], "viser.MeshHandle": [[36, 1, 1, "", "on_click"], [36, 2, 1, "", "position"], [36, 1, 1, "", "remove"], [36, 2, 1, "", "visible"], [36, 2, 1, "", "wxyz"]], "viser.PointCloudHandle": [[36, 2, 1, "", "position"], [36, 1, 1, "", "remove"], [36, 2, 1, "", "visible"], [36, 2, 1, "", "wxyz"]], "viser.SceneApi": [[35, 1, 1, "", "add_3d_gui_container"], [35, 1, 1, "", "add_batched_axes"], [35, 1, 1, "", "add_box"], [35, 1, 1, "", "add_camera_frustum"], [35, 1, 1, "", "add_frame"], [35, 1, 1, "", "add_glb"], [35, 1, 1, "", "add_grid"], [35, 1, 1, "", "add_icosphere"], [35, 1, 1, "", "add_image"], [35, 1, 1, "", "add_label"], [35, 1, 1, "", "add_mesh_simple"], [35, 1, 1, "", "add_mesh_trimesh"], [35, 1, 1, "", "add_point_cloud"], [35, 1, 1, "", "add_spline_catmull_rom"], [35, 1, 1, "", "add_spline_cubic_bezier"], [35, 1, 1, "", "add_transform_controls"], [35, 1, 1, "", "on_pointer_callback_removed"], [35, 1, 1, "", "on_pointer_event"], [35, 1, 1, "", "remove_pointer_callback"], [35, 1, 1, "", "reset"], [35, 1, 1, "", "set_background_image"], [35, 1, 1, "", "set_global_visibility"], [35, 1, 1, "", "set_up_direction"], [35, 3, 1, "", "world_axes"]], "viser.SceneNodeHandle": [[36, 2, 1, "", "position"], [36, 1, 1, "", "remove"], [36, 2, 1, "", "visible"], [36, 2, 1, "", "wxyz"]], "viser.SceneNodePointerEvent": [[4, 3, 1, "", "client"], [4, 3, 1, "", "client_id"], [4, 3, 1, "", "event"], [4, 3, 1, "", "ray_direction"], [4, 3, 1, "", "ray_origin"], [4, 3, 1, "", "target"]], "viser.ScenePointerEvent": [[4, 3, 1, "", "client"], [4, 3, 1, "", "client_id"], [4, 2, 1, "", "event"], [4, 3, 1, "", "event_type"], [4, 3, 1, "", "ray_direction"], [4, 3, 1, "", "ray_origin"], [4, 3, 1, "", "screen_pos"]], "viser.TransformControlsHandle": [[36, 1, 1, "", "on_click"], [36, 1, 1, "", "on_update"], [36, 2, 1, "", "position"], [36, 1, 1, "", "remove"], [36, 2, 1, "", "update_timestamp"], [36, 2, 1, "", "visible"], [36, 2, 1, "", "wxyz"]], "viser.ViserServer": [[37, 1, 1, "", "atomic"], [37, 1, 1, "", "disconnect_share_url"], [37, 1, 1, "", "flush"], [37, 1, 1, "", "get_clients"], [37, 1, 1, "", "get_host"], [37, 1, 1, "", "get_port"], [37, 3, 1, "", "gui"], [37, 1, 1, "", "on_client_connect"], [37, 1, 1, "", "on_client_disconnect"], [37, 1, 1, "", "request_share_url"], [37, 3, 1, "", "scene"], [37, 1, 1, "", "send_file_download"], [37, 1, 1, "", "stop"]], "viser.extras": [[29, 0, 1, "", "Record3dFrame"], [29, 0, 1, "", "Record3dLoader"], [29, 0, 1, "", "ViserUrdf"]], "viser.extras.Record3dFrame": [[29, 3, 1, "", "K"], [29, 3, 1, "", "T_world_camera"], [29, 3, 1, "", "depth"], [29, 1, 1, "", "get_point_cloud"], [29, 3, 1, "", "mask"], [29, 3, 1, "", "rgb"]], "viser.extras.Record3dLoader": [[29, 1, 1, "", "get_frame"], [29, 1, 1, "", "num_frames"]], "viser.extras.ViserUrdf": [[29, 1, 1, "", "get_actuated_joint_limits"], [29, 1, 1, "", "get_actuated_joint_names"], [29, 1, 1, "", "update_cfg"]], "viser.infra": [[34, 0, 1, "", "Message"], [34, 0, 1, "", "TypeScriptAnnotationOverride"], [34, 0, 1, "", "WebsockClientConnection"], [34, 0, 1, "", "WebsockMessageHandler"], [34, 0, 1, "", "WebsockServer"], [34, 5, 1, "", "generate_typescript_interfaces"]], "viser.infra.Message": [[34, 1, 1, "", "as_serializable_dict"], [34, 1, 1, "", "deserialize"], [34, 3, 1, "", "excluded_self_client"], [34, 1, 1, "", "get_subclasses"], [34, 1, 1, "", "redundancy_key"]], "viser.infra.TypeScriptAnnotationOverride": [[34, 3, 1, "", "annotation"]], "viser.infra.WebsockClientConnection": [[34, 1, 1, "", "atomic"], [34, 1, 1, "", "queue_message"], [34, 1, 1, "", "register_handler"], [34, 1, 1, "", "unregister_handler"], [34, 1, 1, "", "unsafe_send_message"]], "viser.infra.WebsockMessageHandler": [[34, 1, 1, "", "atomic"], [34, 1, 1, "", "queue_message"], [34, 1, 1, "", "register_handler"], [34, 1, 1, "", "unregister_handler"], [34, 1, 1, "", "unsafe_send_message"]], "viser.infra.WebsockServer": [[34, 1, 1, "", "atomic"], [34, 1, 1, "", "flush"], [34, 1, 1, "", "flush_client"], [34, 1, 1, "", "on_client_connect"], [34, 1, 1, "", "on_client_disconnect"], [34, 1, 1, "", "queue_message"], [34, 1, 1, "", "register_handler"], [34, 1, 1, "", "start"], [34, 1, 1, "", "stop"], [34, 1, 1, "", "unregister_handler"], [34, 1, 1, "", "unsafe_send_message"]], "viser.transforms": [[38, 0, 1, "", "MatrixLieGroup"], [38, 0, 1, "", "SE2"], [38, 0, 1, "", "SE3"], [38, 0, 1, "", "SEBase"], [38, 0, 1, "", "SO2"], [38, 0, 1, "", "SO3"], [38, 0, 1, "", "SOBase"]], "viser.transforms.MatrixLieGroup": [[38, 1, 1, "", "__matmul__"], [38, 1, 1, "", "adjoint"], [38, 1, 1, "", "apply"], [38, 1, 1, "", "as_matrix"], [38, 1, 1, "", "exp"], [38, 1, 1, "", "from_matrix"], [38, 1, 1, "", "get_batch_axes"], [38, 1, 1, "", "identity"], [38, 1, 1, "", "inverse"], [38, 1, 1, "", "log"], [38, 3, 1, "", "matrix_dim"], [38, 1, 1, "", "multiply"], [38, 1, 1, "", "normalize"], [38, 1, 1, "", "parameters"], [38, 3, 1, "", "parameters_dim"], [38, 3, 1, "", "space_dim"], [38, 3, 1, "", "tangent_dim"]], "viser.transforms.SE2": [[38, 1, 1, "", "__matmul__"], [38, 1, 1, "", "adjoint"], [38, 1, 1, "", "apply"], [38, 1, 1, "", "as_matrix"], [38, 1, 1, "", "exp"], [38, 1, 1, "", "from_matrix"], [38, 1, 1, "", "from_rotation"], [38, 1, 1, "", "from_rotation_and_translation"], [38, 1, 1, "", "from_translation"], [38, 1, 1, "", "from_xy_theta"], [38, 1, 1, "", "get_batch_axes"], [38, 1, 1, "", "identity"], [38, 1, 1, "", "inverse"], [38, 1, 1, "", "log"], [38, 3, 1, "", "matrix_dim"], [38, 1, 1, "", "multiply"], [38, 1, 1, "", "normalize"], [38, 1, 1, "", "parameters"], [38, 3, 1, "", "parameters_dim"], [38, 1, 1, "", "rotation"], [38, 3, 1, "", "space_dim"], [38, 3, 1, "", "tangent_dim"], [38, 1, 1, "", "translation"], [38, 3, 1, "", "unit_complex_xy"]], "viser.transforms.SE3": [[38, 1, 1, "", "__matmul__"], [38, 1, 1, "", "adjoint"], [38, 1, 1, "", "apply"], [38, 1, 1, "", "as_matrix"], [38, 1, 1, "", "exp"], [38, 1, 1, "", "from_matrix"], [38, 1, 1, "", "from_rotation"], [38, 1, 1, "", "from_rotation_and_translation"], [38, 1, 1, "", "from_translation"], [38, 1, 1, "", "get_batch_axes"], [38, 1, 1, "", "identity"], [38, 1, 1, "", "inverse"], [38, 1, 1, "", "log"], [38, 3, 1, "", "matrix_dim"], [38, 1, 1, "", "multiply"], [38, 1, 1, "", "normalize"], [38, 1, 1, "", "parameters"], [38, 3, 1, "", "parameters_dim"], [38, 1, 1, "", "rotation"], [38, 3, 1, "", "space_dim"], [38, 3, 1, "", "tangent_dim"], [38, 1, 1, "", "translation"], [38, 3, 1, "", "wxyz_xyz"]], "viser.transforms.SEBase": [[38, 1, 1, "", "__matmul__"], [38, 1, 1, "", "adjoint"], [38, 1, 1, "", "apply"], [38, 1, 1, "", "as_matrix"], [38, 1, 1, "", "exp"], [38, 1, 1, "", "from_matrix"], [38, 1, 1, "", "from_rotation"], [38, 1, 1, "", "from_rotation_and_translation"], [38, 1, 1, "", "from_translation"], [38, 1, 1, "", "get_batch_axes"], [38, 1, 1, "", "identity"], [38, 1, 1, "", "inverse"], [38, 1, 1, "", "log"], [38, 3, 1, "", "matrix_dim"], [38, 1, 1, "", "multiply"], [38, 1, 1, "", "normalize"], [38, 1, 1, "", "parameters"], [38, 3, 1, "", "parameters_dim"], [38, 1, 1, "", "rotation"], [38, 3, 1, "", "space_dim"], [38, 3, 1, "", "tangent_dim"], [38, 1, 1, "", "translation"]], "viser.transforms.SO2": [[38, 1, 1, "", "__matmul__"], [38, 1, 1, "", "adjoint"], [38, 1, 1, "", "apply"], [38, 1, 1, "", "as_matrix"], [38, 1, 1, "", "as_radians"], [38, 1, 1, "", "exp"], [38, 1, 1, "", "from_matrix"], [38, 1, 1, "", "from_radians"], [38, 1, 1, "", "get_batch_axes"], [38, 1, 1, "", "identity"], [38, 1, 1, "", "inverse"], [38, 1, 1, "", "log"], [38, 3, 1, "", "matrix_dim"], [38, 1, 1, "", "multiply"], [38, 1, 1, "", "normalize"], [38, 1, 1, "", "parameters"], [38, 3, 1, "", "parameters_dim"], [38, 3, 1, "", "space_dim"], [38, 3, 1, "", "tangent_dim"], [38, 3, 1, "", "unit_complex"]], "viser.transforms.SO3": [[38, 1, 1, "", "__matmul__"], [38, 1, 1, "", "adjoint"], [38, 1, 1, "", "apply"], [38, 1, 1, "", "as_matrix"], [38, 1, 1, "", "as_quaternion_xyzw"], [38, 1, 1, "", "as_rpy_radians"], [38, 1, 1, "", "compute_pitch_radians"], [38, 1, 1, "", "compute_roll_radians"], [38, 1, 1, "", "compute_yaw_radians"], [38, 1, 1, "", "exp"], [38, 1, 1, "", "from_matrix"], [38, 1, 1, "", "from_quaternion_xyzw"], [38, 1, 1, "", "from_rpy_radians"], [38, 1, 1, "", "from_x_radians"], [38, 1, 1, "", "from_y_radians"], [38, 1, 1, "", "from_z_radians"], [38, 1, 1, "", "get_batch_axes"], [38, 1, 1, "", "identity"], [38, 1, 1, "", "inverse"], [38, 1, 1, "", "log"], [38, 3, 1, "", "matrix_dim"], [38, 1, 1, "", "multiply"], [38, 1, 1, "", "normalize"], [38, 1, 1, "", "parameters"], [38, 3, 1, "", "parameters_dim"], [38, 3, 1, "", "space_dim"], [38, 3, 1, "", "tangent_dim"], [38, 3, 1, "", "wxyz"]], "viser.transforms.SOBase": [[38, 1, 1, "", "__matmul__"], [38, 1, 1, "", "adjoint"], [38, 1, 1, "", "apply"], [38, 1, 1, "", "as_matrix"], [38, 1, 1, "", "exp"], [38, 1, 1, "", "from_matrix"], [38, 1, 1, "", "get_batch_axes"], [38, 1, 1, "", "identity"], [38, 1, 1, "", "inverse"], [38, 1, 1, "", "log"], [38, 3, 1, "", "matrix_dim"], [38, 1, 1, "", "multiply"], [38, 1, 1, "", "normalize"], [38, 1, 1, "", "parameters"], [38, 3, 1, "", "parameters_dim"], [38, 3, 1, "", "space_dim"], [38, 3, 1, "", "tangent_dim"]]}, "objtypes": {"0": "py:class", "1": "py:method", "2": "py:property", "3": "py:attribute", "4": "py:module", "5": "py:function"}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "method", "Python method"], "2": ["py", "property", "Python property"], "3": ["py", "attribute", "Python attribute"], "4": ["py", "module", "Python module"], "5": ["py", "function", "Python function"]}, "titleterms": {"camera": [0, 2, 9, 10], "handl": [0, 1, 31, 36], "client": [1, 3], "frame": [2, 5], "convent": 2, "scene": [2, 25, 35, 36], "tree": 2, "name": 2, "pose": [2, 9], "world": 2, "coordin": [2, 5], "develop": 3, "python": 3, "instal": [3, 33], "messag": 3, "updat": 3, "event": [4, 17, 25], "imag": 6, "gui": [7, 8, 20, 30, 31], "basic": [7, 21], "callback": 8, "command": 10, "mesh": [11, 17], "record3d": [12, 29], "visual": [12, 13, 14, 15, 16], "smpl": 13, "human": 13, "bodi": 13, "model": 13, "requir": 13, "npz": 13, "file": 13, "robot": 14, "urdf": [14, 29], "realsens": 15, "colmap": 16, "click": 17, "theme": 18, "markdown": 19, "demonstr": 19, "3d": 20, "element": 20, "modal": 21, "depth": 22, "composit": 22, "spline": 23, "get": 24, "render": 24, "pointer": 25, "set": 26, "up": 26, "direct": 26, "game": 27, "plotli": 28, "helper": 29, "api": [30, 35], "icon": 32, "viser": [33, 37], "commun": 34, "server": 37, "transform": 38}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1, "sphinx": 60}, "alltitles": {"Camera Handles": [[0, "camera-handles"]], "Client Handles": [[1, "client-handles"]], "Frame Conventions": [[2, "frame-conventions"]], "Scene tree naming": [[2, "scene-tree-naming"]], "Poses": [[2, "poses"]], "World coordinates": [[2, "world-coordinates"]], "Cameras": [[2, "cameras"]], "Development": [[3, "development"]], "Python install": [[3, "python-install"]], "Message updates": [[3, "message-updates"]], "Client development": [[3, "client-development"]], "Events": [[4, "events"]], "Coordinate frames": [[5, "coordinate-frames"]], "Images": [[6, "images"]], "GUI basics": [[7, "gui-basics"]], "GUI callbacks": [[8, "gui-callbacks"]], "Camera poses": [[9, "camera-poses"]], "Camera commands": [[10, "camera-commands"]], "Meshes": [[11, "meshes"]], "Record3D visualizer": [[12, "record3d-visualizer"]], "Visualizer for SMPL human body models. Requires a .npz model file.": [[13, "visualizer-for-smpl-human-body-models-requires-a-npz-model-file"]], "Robot URDF visualizer": [[14, "robot-urdf-visualizer"]], "RealSense visualizer": [[15, "realsense-visualizer"]], "COLMAP visualizer": [[16, "colmap-visualizer"]], "Mesh click events": [[17, "mesh-click-events"]], "Theming": [[18, "theming"]], "Markdown Demonstration": [[19, "markdown-demonstration"]], "3D GUI Elements": [[20, "d-gui-elements"]], "Modal basics": [[21, "modal-basics"]], "Depth compositing": [[22, "depth-compositing"]], "Splines": [[23, "splines"]], "Get Renders": [[24, "get-renders"]], "Scene pointer events.": [[25, "scene-pointer-events"]], "Set Up Direction": [[26, "set-up-direction"]], "Games": [[27, "games"]], "Plotly.": [[28, "plotly"]], "Record3D + URDF Helpers": [[29, "record3d-urdf-helpers"]], "GUI API": [[30, "gui-api"]], "GUI Handles": [[31, "gui-handles"]], "Icons": [[32, "icons"]], "viser": [[33, "viser"]], "Installation": [[33, "installation"]], "Communication": [[34, "communication"]], "Scene API": [[35, "scene-api"]], "Scene Handles": [[36, "scene-handles"]], "Viser Server": [[37, "viser-server"]], "Transforms": [[38, "transforms"]]}, "indexentries": {"camerahandle (class in viser)": [[0, "viser.CameraHandle"]], "aspect (viser.camerahandle property)": [[0, "viser.CameraHandle.aspect"]], "client (viser.camerahandle property)": [[0, "viser.CameraHandle.client"]], "fov (viser.camerahandle property)": [[0, "viser.CameraHandle.fov"]], "get_render() (viser.camerahandle method)": [[0, "viser.CameraHandle.get_render"]], "look_at (viser.camerahandle property)": [[0, "viser.CameraHandle.look_at"]], "on_update() (viser.camerahandle method)": [[0, "viser.CameraHandle.on_update"]], "position (viser.camerahandle property)": [[0, "viser.CameraHandle.position"]], "up_direction (viser.camerahandle property)": [[0, "viser.CameraHandle.up_direction"]], "update_timestamp (viser.camerahandle property)": [[0, "viser.CameraHandle.update_timestamp"]], "wxyz (viser.camerahandle property)": [[0, "viser.CameraHandle.wxyz"]], "clienthandle (class in viser)": [[1, "viser.ClientHandle"]], "atomic() (viser.clienthandle method)": [[1, "viser.ClientHandle.atomic"]], "camera (viser.clienthandle attribute)": [[1, "viser.ClientHandle.camera"]], "client_id (viser.clienthandle attribute)": [[1, "viser.ClientHandle.client_id"]], "flush() (viser.clienthandle method)": [[1, "viser.ClientHandle.flush"]], "gui (viser.clienthandle attribute)": [[1, "viser.ClientHandle.gui"]], "scene (viser.clienthandle attribute)": [[1, "viser.ClientHandle.scene"]], "send_file_download() (viser.clienthandle method)": [[1, "viser.ClientHandle.send_file_download"]], "guievent (class in viser)": [[4, "viser.GuiEvent"]], "scenenodepointerevent (class in viser)": [[4, "viser.SceneNodePointerEvent"]], "scenepointerevent (class in viser)": [[4, "viser.ScenePointerEvent"]], "client (viser.guievent attribute)": [[4, "viser.GuiEvent.client"]], "client (viser.scenenodepointerevent attribute)": [[4, "viser.SceneNodePointerEvent.client"]], "client (viser.scenepointerevent attribute)": [[4, "viser.ScenePointerEvent.client"]], "client_id (viser.guievent attribute)": [[4, "viser.GuiEvent.client_id"]], "client_id (viser.scenenodepointerevent attribute)": [[4, "viser.SceneNodePointerEvent.client_id"]], "client_id (viser.scenepointerevent attribute)": [[4, "viser.ScenePointerEvent.client_id"]], "event (viser.scenenodepointerevent attribute)": [[4, "viser.SceneNodePointerEvent.event"]], "event (viser.scenepointerevent property)": [[4, "viser.ScenePointerEvent.event"]], "event_type (viser.scenepointerevent attribute)": [[4, "viser.ScenePointerEvent.event_type"]], "ray_direction (viser.scenenodepointerevent attribute)": [[4, "viser.SceneNodePointerEvent.ray_direction"]], "ray_direction (viser.scenepointerevent attribute)": [[4, "viser.ScenePointerEvent.ray_direction"]], "ray_origin (viser.scenenodepointerevent attribute)": [[4, "viser.SceneNodePointerEvent.ray_origin"]], "ray_origin (viser.scenepointerevent attribute)": [[4, "viser.ScenePointerEvent.ray_origin"]], "screen_pos (viser.scenepointerevent attribute)": [[4, "viser.ScenePointerEvent.screen_pos"]], "target (viser.guievent attribute)": [[4, "viser.GuiEvent.target"]], "target (viser.scenenodepointerevent attribute)": [[4, "viser.SceneNodePointerEvent.target"]], "k (viser.extras.record3dframe attribute)": [[29, "viser.extras.Record3dFrame.K"]], "record3dframe (class in viser.extras)": [[29, "viser.extras.Record3dFrame"]], "record3dloader (class in viser.extras)": [[29, "viser.extras.Record3dLoader"]], "t_world_camera (viser.extras.record3dframe attribute)": [[29, "viser.extras.Record3dFrame.T_world_camera"]], "viserurdf (class in viser.extras)": [[29, "viser.extras.ViserUrdf"]], "depth (viser.extras.record3dframe attribute)": [[29, "viser.extras.Record3dFrame.depth"]], "get_actuated_joint_limits() (viser.extras.viserurdf method)": [[29, "viser.extras.ViserUrdf.get_actuated_joint_limits"]], "get_actuated_joint_names() (viser.extras.viserurdf method)": [[29, "viser.extras.ViserUrdf.get_actuated_joint_names"]], "get_frame() (viser.extras.record3dloader method)": [[29, "viser.extras.Record3dLoader.get_frame"]], "get_point_cloud() (viser.extras.record3dframe method)": [[29, "viser.extras.Record3dFrame.get_point_cloud"]], "mask (viser.extras.record3dframe attribute)": [[29, "viser.extras.Record3dFrame.mask"]], "module": [[29, "module-viser.extras"], [34, "module-viser.infra"], [38, "module-viser.transforms"]], "num_frames() (viser.extras.record3dloader method)": [[29, "viser.extras.Record3dLoader.num_frames"]], "rgb (viser.extras.record3dframe attribute)": [[29, "viser.extras.Record3dFrame.rgb"]], "update_cfg() (viser.extras.viserurdf method)": [[29, "viser.extras.ViserUrdf.update_cfg"]], "viser.extras": [[29, "module-viser.extras"]], "guiapi (class in viser)": [[30, "viser.GuiApi"]], "add_button() (viser.guiapi method)": [[30, "viser.GuiApi.add_button"]], "add_button_group() (viser.guiapi method)": [[30, "viser.GuiApi.add_button_group"]], "add_checkbox() (viser.guiapi method)": [[30, "viser.GuiApi.add_checkbox"]], "add_dropdown() (viser.guiapi method)": [[30, "viser.GuiApi.add_dropdown"]], "add_folder() (viser.guiapi method)": [[30, "viser.GuiApi.add_folder"]], "add_markdown() (viser.guiapi method)": [[30, "viser.GuiApi.add_markdown"]], "add_modal() (viser.guiapi method)": [[30, "viser.GuiApi.add_modal"]], "add_multi_slider() (viser.guiapi method)": [[30, "viser.GuiApi.add_multi_slider"]], "add_number() (viser.guiapi method)": [[30, "viser.GuiApi.add_number"]], "add_plotly() (viser.guiapi method)": [[30, "viser.GuiApi.add_plotly"]], "add_rgb() (viser.guiapi method)": [[30, "viser.GuiApi.add_rgb"]], "add_rgba() (viser.guiapi method)": [[30, "viser.GuiApi.add_rgba"]], "add_slider() (viser.guiapi method)": [[30, "viser.GuiApi.add_slider"]], "add_tab_group() (viser.guiapi method)": [[30, "viser.GuiApi.add_tab_group"]], "add_text() (viser.guiapi method)": [[30, "viser.GuiApi.add_text"]], "add_upload_button() (viser.guiapi method)": [[30, "viser.GuiApi.add_upload_button"]], "add_vector2() (viser.guiapi method)": [[30, "viser.GuiApi.add_vector2"]], "add_vector3() (viser.guiapi method)": [[30, "viser.GuiApi.add_vector3"]], "configure_theme() (viser.guiapi method)": [[30, "viser.GuiApi.configure_theme"]], "set_panel_label() (viser.guiapi method)": [[30, "viser.GuiApi.set_panel_label"]], "guibuttongrouphandle (class in viser)": [[31, "viser.GuiButtonGroupHandle"]], "guibuttonhandle (class in viser)": [[31, "viser.GuiButtonHandle"]], "guidropdownhandle (class in viser)": [[31, "viser.GuiDropdownHandle"]], "guifolderhandle (class in viser)": [[31, "viser.GuiFolderHandle"]], "guiinputhandle (class in viser)": [[31, "viser.GuiInputHandle"]], "guimarkdownhandle (class in viser)": [[31, "viser.GuiMarkdownHandle"]], "guiplotlyhandle (class in viser)": [[31, "viser.GuiPlotlyHandle"]], "guitabgrouphandle (class in viser)": [[31, "viser.GuiTabGroupHandle"]], "guitabhandle (class in viser)": [[31, "viser.GuiTabHandle"]], "__post_init__() (viser.guibuttongrouphandle method)": [[31, "viser.GuiButtonGroupHandle.__post_init__"]], "__post_init__() (viser.guibuttonhandle method)": [[31, "viser.GuiButtonHandle.__post_init__"]], "__post_init__() (viser.guidropdownhandle method)": [[31, "viser.GuiDropdownHandle.__post_init__"]], "__post_init__() (viser.guiinputhandle method)": [[31, "viser.GuiInputHandle.__post_init__"]], "__post_init__() (viser.guimarkdownhandle method)": [[31, "viser.GuiMarkdownHandle.__post_init__"]], "__post_init__() (viser.guiplotlyhandle method)": [[31, "viser.GuiPlotlyHandle.__post_init__"]], "add_tab() (viser.guitabgrouphandle method)": [[31, "viser.GuiTabGroupHandle.add_tab"]], "aspect (viser.guiplotlyhandle property)": [[31, "viser.GuiPlotlyHandle.aspect"]], "content (viser.guimarkdownhandle property)": [[31, "viser.GuiMarkdownHandle.content"]], "disabled (viser.guibuttongrouphandle property)": [[31, "viser.GuiButtonGroupHandle.disabled"]], "disabled (viser.guibuttonhandle property)": [[31, "viser.GuiButtonHandle.disabled"]], "disabled (viser.guidropdownhandle property)": [[31, "viser.GuiDropdownHandle.disabled"]], "disabled (viser.guiinputhandle property)": [[31, "viser.GuiInputHandle.disabled"]], "figure (viser.guiplotlyhandle property)": [[31, "viser.GuiPlotlyHandle.figure"]], "on_click() (viser.guibuttongrouphandle method)": [[31, "viser.GuiButtonGroupHandle.on_click"]], "on_click() (viser.guibuttonhandle method)": [[31, "viser.GuiButtonHandle.on_click"]], "on_update() (viser.guidropdownhandle method)": [[31, "viser.GuiDropdownHandle.on_update"]], "on_update() (viser.guiinputhandle method)": [[31, "viser.GuiInputHandle.on_update"]], "options (viser.guidropdownhandle property)": [[31, "viser.GuiDropdownHandle.options"]], "order (viser.guibuttongrouphandle property)": [[31, "viser.GuiButtonGroupHandle.order"]], "order (viser.guibuttonhandle property)": [[31, "viser.GuiButtonHandle.order"]], "order (viser.guidropdownhandle property)": [[31, "viser.GuiDropdownHandle.order"]], "order (viser.guifolderhandle property)": [[31, "viser.GuiFolderHandle.order"]], "order (viser.guiinputhandle property)": [[31, "viser.GuiInputHandle.order"]], "order (viser.guimarkdownhandle property)": [[31, "viser.GuiMarkdownHandle.order"]], "order (viser.guiplotlyhandle property)": [[31, "viser.GuiPlotlyHandle.order"]], "order (viser.guitabgrouphandle property)": [[31, "viser.GuiTabGroupHandle.order"]], "remove() (viser.guibuttongrouphandle method)": [[31, "viser.GuiButtonGroupHandle.remove"]], "remove() (viser.guibuttonhandle method)": [[31, "viser.GuiButtonHandle.remove"]], "remove() (viser.guidropdownhandle method)": [[31, "viser.GuiDropdownHandle.remove"]], "remove() (viser.guifolderhandle method)": [[31, "viser.GuiFolderHandle.remove"]], "remove() (viser.guiinputhandle method)": [[31, "viser.GuiInputHandle.remove"]], "remove() (viser.guimarkdownhandle method)": [[31, "viser.GuiMarkdownHandle.remove"]], "remove() (viser.guiplotlyhandle method)": [[31, "viser.GuiPlotlyHandle.remove"]], "remove() (viser.guitabgrouphandle method)": [[31, "viser.GuiTabGroupHandle.remove"]], "remove() (viser.guitabhandle method)": [[31, "viser.GuiTabHandle.remove"]], "update_timestamp (viser.guibuttongrouphandle property)": [[31, "viser.GuiButtonGroupHandle.update_timestamp"]], "update_timestamp (viser.guibuttonhandle property)": [[31, "viser.GuiButtonHandle.update_timestamp"]], "update_timestamp (viser.guidropdownhandle property)": [[31, "viser.GuiDropdownHandle.update_timestamp"]], "update_timestamp (viser.guiinputhandle property)": [[31, "viser.GuiInputHandle.update_timestamp"]], "value (viser.guibuttongrouphandle property)": [[31, "viser.GuiButtonGroupHandle.value"]], "value (viser.guibuttonhandle property)": [[31, "viser.GuiButtonHandle.value"]], "value (viser.guidropdownhandle property)": [[31, "viser.GuiDropdownHandle.value"]], "value (viser.guiinputhandle property)": [[31, "viser.GuiInputHandle.value"]], "visible (viser.guibuttongrouphandle property)": [[31, "viser.GuiButtonGroupHandle.visible"]], "visible (viser.guibuttonhandle property)": [[31, "viser.GuiButtonHandle.visible"]], "visible (viser.guidropdownhandle property)": [[31, "viser.GuiDropdownHandle.visible"]], "visible (viser.guiinputhandle property)": [[31, "viser.GuiInputHandle.visible"]], "visible (viser.guimarkdownhandle property)": [[31, "viser.GuiMarkdownHandle.visible"]], "visible (viser.guiplotlyhandle property)": [[31, "viser.GuiPlotlyHandle.visible"]], "abacus (viser.icon attribute)": [[32, "viser.Icon.ABACUS"]], "abacus_off (viser.icon attribute)": [[32, "viser.Icon.ABACUS_OFF"]], "abc (viser.icon attribute)": [[32, "viser.Icon.ABC"]], "accessible (viser.icon attribute)": [[32, "viser.Icon.ACCESSIBLE"]], "accessible_off (viser.icon attribute)": [[32, "viser.Icon.ACCESSIBLE_OFF"]], "accessible_off_filled (viser.icon attribute)": [[32, "viser.Icon.ACCESSIBLE_OFF_FILLED"]], "access_point (viser.icon attribute)": [[32, "viser.Icon.ACCESS_POINT"]], "access_point_off (viser.icon attribute)": [[32, "viser.Icon.ACCESS_POINT_OFF"]], "activity (viser.icon attribute)": [[32, "viser.Icon.ACTIVITY"]], "activity_heartbeat (viser.icon attribute)": [[32, "viser.Icon.ACTIVITY_HEARTBEAT"]], "ad (viser.icon attribute)": [[32, "viser.Icon.AD"]], "address_book (viser.icon attribute)": [[32, "viser.Icon.ADDRESS_BOOK"]], "address_book_off (viser.icon attribute)": [[32, "viser.Icon.ADDRESS_BOOK_OFF"]], "adjustments (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS"]], "adjustments_alt (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_ALT"]], "adjustments_bolt (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_BOLT"]], "adjustments_cancel (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_CANCEL"]], "adjustments_check (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_CHECK"]], "adjustments_code (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_CODE"]], "adjustments_cog (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_COG"]], "adjustments_dollar (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_DOLLAR"]], "adjustments_down (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_DOWN"]], "adjustments_exclamation (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_EXCLAMATION"]], "adjustments_filled (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_FILLED"]], "adjustments_heart (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_HEART"]], "adjustments_horizontal (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_HORIZONTAL"]], "adjustments_minus (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_MINUS"]], "adjustments_off (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_OFF"]], "adjustments_pause (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_PAUSE"]], "adjustments_pin (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_PIN"]], "adjustments_plus (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_PLUS"]], "adjustments_question (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_QUESTION"]], "adjustments_search (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_SEARCH"]], "adjustments_share (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_SHARE"]], "adjustments_star (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_STAR"]], "adjustments_up (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_UP"]], "adjustments_x (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_X"]], "ad_2 (viser.icon attribute)": [[32, "viser.Icon.AD_2"]], "ad_circle (viser.icon attribute)": [[32, "viser.Icon.AD_CIRCLE"]], "ad_circle_filled (viser.icon attribute)": [[32, "viser.Icon.AD_CIRCLE_FILLED"]], "ad_circle_off (viser.icon attribute)": [[32, "viser.Icon.AD_CIRCLE_OFF"]], "ad_filled (viser.icon attribute)": [[32, "viser.Icon.AD_FILLED"]], "ad_off (viser.icon attribute)": [[32, "viser.Icon.AD_OFF"]], "aerial_lift (viser.icon attribute)": [[32, "viser.Icon.AERIAL_LIFT"]], "affiliate (viser.icon attribute)": [[32, "viser.Icon.AFFILIATE"]], "affiliate_filled (viser.icon attribute)": [[32, "viser.Icon.AFFILIATE_FILLED"]], "air_balloon (viser.icon attribute)": [[32, "viser.Icon.AIR_BALLOON"]], "air_conditioning (viser.icon attribute)": [[32, "viser.Icon.AIR_CONDITIONING"]], "air_conditioning_disabled (viser.icon attribute)": [[32, "viser.Icon.AIR_CONDITIONING_DISABLED"]], "alarm (viser.icon attribute)": [[32, "viser.Icon.ALARM"]], "alarm_filled (viser.icon attribute)": [[32, "viser.Icon.ALARM_FILLED"]], "alarm_minus (viser.icon attribute)": [[32, "viser.Icon.ALARM_MINUS"]], "alarm_minus_filled (viser.icon attribute)": [[32, "viser.Icon.ALARM_MINUS_FILLED"]], "alarm_off (viser.icon attribute)": [[32, "viser.Icon.ALARM_OFF"]], "alarm_plus (viser.icon attribute)": [[32, "viser.Icon.ALARM_PLUS"]], "alarm_plus_filled (viser.icon attribute)": [[32, "viser.Icon.ALARM_PLUS_FILLED"]], "alarm_snooze (viser.icon attribute)": [[32, "viser.Icon.ALARM_SNOOZE"]], "alarm_snooze_filled (viser.icon attribute)": [[32, "viser.Icon.ALARM_SNOOZE_FILLED"]], "album (viser.icon attribute)": [[32, "viser.Icon.ALBUM"]], "album_off (viser.icon attribute)": [[32, "viser.Icon.ALBUM_OFF"]], "alert_circle (viser.icon attribute)": [[32, "viser.Icon.ALERT_CIRCLE"]], "alert_circle_filled (viser.icon attribute)": [[32, "viser.Icon.ALERT_CIRCLE_FILLED"]], "alert_hexagon (viser.icon attribute)": [[32, "viser.Icon.ALERT_HEXAGON"]], "alert_hexagon_filled (viser.icon attribute)": [[32, "viser.Icon.ALERT_HEXAGON_FILLED"]], "alert_octagon (viser.icon attribute)": [[32, "viser.Icon.ALERT_OCTAGON"]], "alert_octagon_filled (viser.icon attribute)": [[32, "viser.Icon.ALERT_OCTAGON_FILLED"]], "alert_small (viser.icon attribute)": [[32, "viser.Icon.ALERT_SMALL"]], "alert_square (viser.icon attribute)": [[32, "viser.Icon.ALERT_SQUARE"]], "alert_square_filled (viser.icon attribute)": [[32, "viser.Icon.ALERT_SQUARE_FILLED"]], "alert_square_rounded (viser.icon attribute)": [[32, "viser.Icon.ALERT_SQUARE_ROUNDED"]], "alert_square_rounded_filled (viser.icon attribute)": [[32, "viser.Icon.ALERT_SQUARE_ROUNDED_FILLED"]], "alert_triangle (viser.icon attribute)": [[32, "viser.Icon.ALERT_TRIANGLE"]], "alert_triangle_filled (viser.icon attribute)": [[32, "viser.Icon.ALERT_TRIANGLE_FILLED"]], "alien (viser.icon attribute)": [[32, "viser.Icon.ALIEN"]], "alien_filled (viser.icon attribute)": [[32, "viser.Icon.ALIEN_FILLED"]], "align_box_bottom_center (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_BOTTOM_CENTER"]], "align_box_bottom_center_filled (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_BOTTOM_CENTER_FILLED"]], "align_box_bottom_left (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_BOTTOM_LEFT"]], "align_box_bottom_left_filled (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_BOTTOM_LEFT_FILLED"]], "align_box_bottom_right (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_BOTTOM_RIGHT"]], "align_box_bottom_right_filled (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_BOTTOM_RIGHT_FILLED"]], "align_box_center_bottom (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_CENTER_BOTTOM"]], "align_box_center_middle (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_CENTER_MIDDLE"]], "align_box_center_middle_filled (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_CENTER_MIDDLE_FILLED"]], "align_box_center_stretch (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_CENTER_STRETCH"]], "align_box_center_top (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_CENTER_TOP"]], "align_box_left_bottom (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_LEFT_BOTTOM"]], "align_box_left_bottom_filled (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_LEFT_BOTTOM_FILLED"]], "align_box_left_middle (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_LEFT_MIDDLE"]], "align_box_left_middle_filled (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_LEFT_MIDDLE_FILLED"]], "align_box_left_stretch (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_LEFT_STRETCH"]], "align_box_left_top (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_LEFT_TOP"]], "align_box_left_top_filled (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_LEFT_TOP_FILLED"]], "align_box_right_bottom (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_RIGHT_BOTTOM"]], "align_box_right_bottom_filled (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_RIGHT_BOTTOM_FILLED"]], "align_box_right_middle (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_RIGHT_MIDDLE"]], "align_box_right_middle_filled (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_RIGHT_MIDDLE_FILLED"]], "align_box_right_stretch (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_RIGHT_STRETCH"]], "align_box_right_top (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_RIGHT_TOP"]], "align_box_right_top_filled (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_RIGHT_TOP_FILLED"]], "align_box_top_center (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_TOP_CENTER"]], "align_box_top_center_filled (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_TOP_CENTER_FILLED"]], "align_box_top_left (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_TOP_LEFT"]], "align_box_top_left_filled (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_TOP_LEFT_FILLED"]], "align_box_top_right (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_TOP_RIGHT"]], "align_box_top_right_filled (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_TOP_RIGHT_FILLED"]], "align_center (viser.icon attribute)": [[32, "viser.Icon.ALIGN_CENTER"]], "align_justified (viser.icon attribute)": [[32, "viser.Icon.ALIGN_JUSTIFIED"]], "align_left (viser.icon attribute)": [[32, "viser.Icon.ALIGN_LEFT"]], "align_right (viser.icon attribute)": [[32, "viser.Icon.ALIGN_RIGHT"]], "alpha (viser.icon attribute)": [[32, "viser.Icon.ALPHA"]], "alphabet_cyrillic (viser.icon attribute)": [[32, "viser.Icon.ALPHABET_CYRILLIC"]], "alphabet_greek (viser.icon attribute)": [[32, "viser.Icon.ALPHABET_GREEK"]], "alphabet_latin (viser.icon attribute)": [[32, "viser.Icon.ALPHABET_LATIN"]], "ambulance (viser.icon attribute)": [[32, "viser.Icon.AMBULANCE"]], "ampersand (viser.icon attribute)": [[32, "viser.Icon.AMPERSAND"]], "analyze (viser.icon attribute)": [[32, "viser.Icon.ANALYZE"]], "analyze_filled (viser.icon attribute)": [[32, "viser.Icon.ANALYZE_FILLED"]], "analyze_off (viser.icon attribute)": [[32, "viser.Icon.ANALYZE_OFF"]], "anchor (viser.icon attribute)": [[32, "viser.Icon.ANCHOR"]], "anchor_off (viser.icon attribute)": [[32, "viser.Icon.ANCHOR_OFF"]], "angle (viser.icon attribute)": [[32, "viser.Icon.ANGLE"]], "ankh (viser.icon attribute)": [[32, "viser.Icon.ANKH"]], "antenna (viser.icon attribute)": [[32, "viser.Icon.ANTENNA"]], "antenna_bars_1 (viser.icon attribute)": [[32, "viser.Icon.ANTENNA_BARS_1"]], "antenna_bars_2 (viser.icon attribute)": [[32, "viser.Icon.ANTENNA_BARS_2"]], "antenna_bars_3 (viser.icon attribute)": [[32, "viser.Icon.ANTENNA_BARS_3"]], "antenna_bars_4 (viser.icon attribute)": [[32, "viser.Icon.ANTENNA_BARS_4"]], "antenna_bars_5 (viser.icon attribute)": [[32, "viser.Icon.ANTENNA_BARS_5"]], "antenna_bars_off (viser.icon attribute)": [[32, "viser.Icon.ANTENNA_BARS_OFF"]], "antenna_off (viser.icon attribute)": [[32, "viser.Icon.ANTENNA_OFF"]], "aperture (viser.icon attribute)": [[32, "viser.Icon.APERTURE"]], "aperture_off (viser.icon attribute)": [[32, "viser.Icon.APERTURE_OFF"]], "api (viser.icon attribute)": [[32, "viser.Icon.API"]], "api_app (viser.icon attribute)": [[32, "viser.Icon.API_APP"]], "api_app_off (viser.icon attribute)": [[32, "viser.Icon.API_APP_OFF"]], "api_off (viser.icon attribute)": [[32, "viser.Icon.API_OFF"]], "apple (viser.icon attribute)": [[32, "viser.Icon.APPLE"]], "apps (viser.icon attribute)": [[32, "viser.Icon.APPS"]], "apps_filled (viser.icon attribute)": [[32, "viser.Icon.APPS_FILLED"]], "apps_off (viser.icon attribute)": [[32, "viser.Icon.APPS_OFF"]], "app_window (viser.icon attribute)": [[32, "viser.Icon.APP_WINDOW"]], "app_window_filled (viser.icon attribute)": [[32, "viser.Icon.APP_WINDOW_FILLED"]], "archive (viser.icon attribute)": [[32, "viser.Icon.ARCHIVE"]], "archive_filled (viser.icon attribute)": [[32, "viser.Icon.ARCHIVE_FILLED"]], "archive_off (viser.icon attribute)": [[32, "viser.Icon.ARCHIVE_OFF"]], "armchair (viser.icon attribute)": [[32, "viser.Icon.ARMCHAIR"]], "armchair_2 (viser.icon attribute)": [[32, "viser.Icon.ARMCHAIR_2"]], "armchair_2_off (viser.icon attribute)": [[32, "viser.Icon.ARMCHAIR_2_OFF"]], "armchair_off (viser.icon attribute)": [[32, "viser.Icon.ARMCHAIR_OFF"]], "arrows_cross (viser.icon attribute)": [[32, "viser.Icon.ARROWS_CROSS"]], "arrows_diagonal (viser.icon attribute)": [[32, "viser.Icon.ARROWS_DIAGONAL"]], "arrows_diagonal_2 (viser.icon attribute)": [[32, "viser.Icon.ARROWS_DIAGONAL_2"]], "arrows_diagonal_minimize (viser.icon attribute)": [[32, "viser.Icon.ARROWS_DIAGONAL_MINIMIZE"]], "arrows_diagonal_minimize_2 (viser.icon attribute)": [[32, "viser.Icon.ARROWS_DIAGONAL_MINIMIZE_2"]], "arrows_diff (viser.icon attribute)": [[32, "viser.Icon.ARROWS_DIFF"]], "arrows_double_ne_sw (viser.icon attribute)": [[32, "viser.Icon.ARROWS_DOUBLE_NE_SW"]], "arrows_double_nw_se (viser.icon attribute)": [[32, "viser.Icon.ARROWS_DOUBLE_NW_SE"]], "arrows_double_se_nw (viser.icon attribute)": [[32, "viser.Icon.ARROWS_DOUBLE_SE_NW"]], "arrows_double_sw_ne (viser.icon attribute)": [[32, "viser.Icon.ARROWS_DOUBLE_SW_NE"]], "arrows_down (viser.icon attribute)": [[32, "viser.Icon.ARROWS_DOWN"]], "arrows_down_up (viser.icon attribute)": [[32, "viser.Icon.ARROWS_DOWN_UP"]], "arrows_exchange (viser.icon attribute)": [[32, "viser.Icon.ARROWS_EXCHANGE"]], "arrows_exchange_2 (viser.icon attribute)": [[32, "viser.Icon.ARROWS_EXCHANGE_2"]], "arrows_horizontal (viser.icon attribute)": [[32, "viser.Icon.ARROWS_HORIZONTAL"]], "arrows_join (viser.icon attribute)": [[32, "viser.Icon.ARROWS_JOIN"]], "arrows_join_2 (viser.icon attribute)": [[32, "viser.Icon.ARROWS_JOIN_2"]], "arrows_left (viser.icon attribute)": [[32, "viser.Icon.ARROWS_LEFT"]], "arrows_left_down (viser.icon attribute)": [[32, "viser.Icon.ARROWS_LEFT_DOWN"]], "arrows_left_right (viser.icon attribute)": [[32, "viser.Icon.ARROWS_LEFT_RIGHT"]], "arrows_maximize (viser.icon attribute)": [[32, "viser.Icon.ARROWS_MAXIMIZE"]], "arrows_minimize (viser.icon attribute)": [[32, "viser.Icon.ARROWS_MINIMIZE"]], "arrows_move (viser.icon attribute)": [[32, "viser.Icon.ARROWS_MOVE"]], "arrows_move_horizontal (viser.icon attribute)": [[32, "viser.Icon.ARROWS_MOVE_HORIZONTAL"]], "arrows_move_vertical (viser.icon attribute)": [[32, "viser.Icon.ARROWS_MOVE_VERTICAL"]], "arrows_random (viser.icon attribute)": [[32, "viser.Icon.ARROWS_RANDOM"]], "arrows_right (viser.icon attribute)": [[32, "viser.Icon.ARROWS_RIGHT"]], "arrows_right_down (viser.icon attribute)": [[32, "viser.Icon.ARROWS_RIGHT_DOWN"]], "arrows_right_left (viser.icon attribute)": [[32, "viser.Icon.ARROWS_RIGHT_LEFT"]], "arrows_shuffle (viser.icon attribute)": [[32, "viser.Icon.ARROWS_SHUFFLE"]], "arrows_shuffle_2 (viser.icon attribute)": [[32, "viser.Icon.ARROWS_SHUFFLE_2"]], "arrows_sort (viser.icon attribute)": [[32, "viser.Icon.ARROWS_SORT"]], "arrows_split (viser.icon attribute)": [[32, "viser.Icon.ARROWS_SPLIT"]], "arrows_split_2 (viser.icon attribute)": [[32, "viser.Icon.ARROWS_SPLIT_2"]], "arrows_transfer_down (viser.icon attribute)": [[32, "viser.Icon.ARROWS_TRANSFER_DOWN"]], "arrows_transfer_up (viser.icon attribute)": [[32, "viser.Icon.ARROWS_TRANSFER_UP"]], "arrows_up (viser.icon attribute)": [[32, "viser.Icon.ARROWS_UP"]], "arrows_up_down (viser.icon attribute)": [[32, "viser.Icon.ARROWS_UP_DOWN"]], "arrows_up_left (viser.icon attribute)": [[32, "viser.Icon.ARROWS_UP_LEFT"]], "arrows_up_right (viser.icon attribute)": [[32, "viser.Icon.ARROWS_UP_RIGHT"]], "arrows_vertical (viser.icon attribute)": [[32, "viser.Icon.ARROWS_VERTICAL"]], "arrow_autofit_content (viser.icon attribute)": [[32, "viser.Icon.ARROW_AUTOFIT_CONTENT"]], "arrow_autofit_content_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_AUTOFIT_CONTENT_FILLED"]], "arrow_autofit_down (viser.icon attribute)": [[32, "viser.Icon.ARROW_AUTOFIT_DOWN"]], "arrow_autofit_height (viser.icon attribute)": [[32, "viser.Icon.ARROW_AUTOFIT_HEIGHT"]], "arrow_autofit_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_AUTOFIT_LEFT"]], "arrow_autofit_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_AUTOFIT_RIGHT"]], "arrow_autofit_up (viser.icon attribute)": [[32, "viser.Icon.ARROW_AUTOFIT_UP"]], "arrow_autofit_width (viser.icon attribute)": [[32, "viser.Icon.ARROW_AUTOFIT_WIDTH"]], "arrow_back (viser.icon attribute)": [[32, "viser.Icon.ARROW_BACK"]], "arrow_back_up (viser.icon attribute)": [[32, "viser.Icon.ARROW_BACK_UP"]], "arrow_back_up_double (viser.icon attribute)": [[32, "viser.Icon.ARROW_BACK_UP_DOUBLE"]], "arrow_badge_down (viser.icon attribute)": [[32, "viser.Icon.ARROW_BADGE_DOWN"]], "arrow_badge_down_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BADGE_DOWN_FILLED"]], "arrow_badge_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_BADGE_LEFT"]], "arrow_badge_left_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BADGE_LEFT_FILLED"]], "arrow_badge_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_BADGE_RIGHT"]], "arrow_badge_right_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BADGE_RIGHT_FILLED"]], "arrow_badge_up (viser.icon attribute)": [[32, "viser.Icon.ARROW_BADGE_UP"]], "arrow_badge_up_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BADGE_UP_FILLED"]], "arrow_bar_both (viser.icon attribute)": [[32, "viser.Icon.ARROW_BAR_BOTH"]], "arrow_bar_down (viser.icon attribute)": [[32, "viser.Icon.ARROW_BAR_DOWN"]], "arrow_bar_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_BAR_LEFT"]], "arrow_bar_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_BAR_RIGHT"]], "arrow_bar_to_down (viser.icon attribute)": [[32, "viser.Icon.ARROW_BAR_TO_DOWN"]], "arrow_bar_to_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_BAR_TO_LEFT"]], "arrow_bar_to_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_BAR_TO_RIGHT"]], "arrow_bar_to_up (viser.icon attribute)": [[32, "viser.Icon.ARROW_BAR_TO_UP"]], "arrow_bar_up (viser.icon attribute)": [[32, "viser.Icon.ARROW_BAR_UP"]], "arrow_bear_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_BEAR_LEFT"]], "arrow_bear_left_2 (viser.icon attribute)": [[32, "viser.Icon.ARROW_BEAR_LEFT_2"]], "arrow_bear_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_BEAR_RIGHT"]], "arrow_bear_right_2 (viser.icon attribute)": [[32, "viser.Icon.ARROW_BEAR_RIGHT_2"]], "arrow_big_down (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_DOWN"]], "arrow_big_down_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_DOWN_FILLED"]], "arrow_big_down_line (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_DOWN_LINE"]], "arrow_big_down_lines (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_DOWN_LINES"]], "arrow_big_down_lines_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_DOWN_LINES_FILLED"]], "arrow_big_down_line_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_DOWN_LINE_FILLED"]], "arrow_big_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_LEFT"]], "arrow_big_left_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_LEFT_FILLED"]], "arrow_big_left_line (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_LEFT_LINE"]], "arrow_big_left_lines (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_LEFT_LINES"]], "arrow_big_left_lines_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_LEFT_LINES_FILLED"]], "arrow_big_left_line_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_LEFT_LINE_FILLED"]], "arrow_big_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_RIGHT"]], "arrow_big_right_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_RIGHT_FILLED"]], "arrow_big_right_line (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_RIGHT_LINE"]], "arrow_big_right_lines (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_RIGHT_LINES"]], "arrow_big_right_lines_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_RIGHT_LINES_FILLED"]], "arrow_big_right_line_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_RIGHT_LINE_FILLED"]], "arrow_big_up (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_UP"]], "arrow_big_up_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_UP_FILLED"]], "arrow_big_up_line (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_UP_LINE"]], "arrow_big_up_lines (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_UP_LINES"]], "arrow_big_up_lines_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_UP_LINES_FILLED"]], "arrow_big_up_line_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_UP_LINE_FILLED"]], "arrow_bounce (viser.icon attribute)": [[32, "viser.Icon.ARROW_BOUNCE"]], "arrow_capsule (viser.icon attribute)": [[32, "viser.Icon.ARROW_CAPSULE"]], "arrow_curve_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_CURVE_LEFT"]], "arrow_curve_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_CURVE_RIGHT"]], "arrow_down (viser.icon attribute)": [[32, "viser.Icon.ARROW_DOWN"]], "arrow_down_bar (viser.icon attribute)": [[32, "viser.Icon.ARROW_DOWN_BAR"]], "arrow_down_circle (viser.icon attribute)": [[32, "viser.Icon.ARROW_DOWN_CIRCLE"]], "arrow_down_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_DOWN_LEFT"]], "arrow_down_left_circle (viser.icon attribute)": [[32, "viser.Icon.ARROW_DOWN_LEFT_CIRCLE"]], "arrow_down_rhombus (viser.icon attribute)": [[32, "viser.Icon.ARROW_DOWN_RHOMBUS"]], "arrow_down_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_DOWN_RIGHT"]], "arrow_down_right_circle (viser.icon attribute)": [[32, "viser.Icon.ARROW_DOWN_RIGHT_CIRCLE"]], "arrow_down_square (viser.icon attribute)": [[32, "viser.Icon.ARROW_DOWN_SQUARE"]], "arrow_down_tail (viser.icon attribute)": [[32, "viser.Icon.ARROW_DOWN_TAIL"]], "arrow_elbow_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_ELBOW_LEFT"]], "arrow_elbow_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_ELBOW_RIGHT"]], "arrow_fork (viser.icon attribute)": [[32, "viser.Icon.ARROW_FORK"]], "arrow_forward (viser.icon attribute)": [[32, "viser.Icon.ARROW_FORWARD"]], "arrow_forward_up (viser.icon attribute)": [[32, "viser.Icon.ARROW_FORWARD_UP"]], "arrow_forward_up_double (viser.icon attribute)": [[32, "viser.Icon.ARROW_FORWARD_UP_DOUBLE"]], "arrow_guide (viser.icon attribute)": [[32, "viser.Icon.ARROW_GUIDE"]], "arrow_iteration (viser.icon attribute)": [[32, "viser.Icon.ARROW_ITERATION"]], "arrow_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_LEFT"]], "arrow_left_bar (viser.icon attribute)": [[32, "viser.Icon.ARROW_LEFT_BAR"]], "arrow_left_circle (viser.icon attribute)": [[32, "viser.Icon.ARROW_LEFT_CIRCLE"]], "arrow_left_rhombus (viser.icon attribute)": [[32, "viser.Icon.ARROW_LEFT_RHOMBUS"]], "arrow_left_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_LEFT_RIGHT"]], "arrow_left_square (viser.icon attribute)": [[32, "viser.Icon.ARROW_LEFT_SQUARE"]], "arrow_left_tail (viser.icon attribute)": [[32, "viser.Icon.ARROW_LEFT_TAIL"]], "arrow_loop_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_LOOP_LEFT"]], "arrow_loop_left_2 (viser.icon attribute)": [[32, "viser.Icon.ARROW_LOOP_LEFT_2"]], "arrow_loop_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_LOOP_RIGHT"]], "arrow_loop_right_2 (viser.icon attribute)": [[32, "viser.Icon.ARROW_LOOP_RIGHT_2"]], "arrow_merge (viser.icon attribute)": [[32, "viser.Icon.ARROW_MERGE"]], "arrow_merge_both (viser.icon attribute)": [[32, "viser.Icon.ARROW_MERGE_BOTH"]], "arrow_merge_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_MERGE_LEFT"]], "arrow_merge_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_MERGE_RIGHT"]], "arrow_move_down (viser.icon attribute)": [[32, "viser.Icon.ARROW_MOVE_DOWN"]], "arrow_move_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_MOVE_LEFT"]], "arrow_move_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_MOVE_RIGHT"]], "arrow_move_up (viser.icon attribute)": [[32, "viser.Icon.ARROW_MOVE_UP"]], "arrow_narrow_down (viser.icon attribute)": [[32, "viser.Icon.ARROW_NARROW_DOWN"]], "arrow_narrow_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_NARROW_LEFT"]], "arrow_narrow_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_NARROW_RIGHT"]], "arrow_narrow_up (viser.icon attribute)": [[32, "viser.Icon.ARROW_NARROW_UP"]], "arrow_ramp_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_RAMP_LEFT"]], "arrow_ramp_left_2 (viser.icon attribute)": [[32, "viser.Icon.ARROW_RAMP_LEFT_2"]], "arrow_ramp_left_3 (viser.icon attribute)": [[32, "viser.Icon.ARROW_RAMP_LEFT_3"]], "arrow_ramp_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_RAMP_RIGHT"]], "arrow_ramp_right_2 (viser.icon attribute)": [[32, "viser.Icon.ARROW_RAMP_RIGHT_2"]], "arrow_ramp_right_3 (viser.icon attribute)": [[32, "viser.Icon.ARROW_RAMP_RIGHT_3"]], "arrow_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_RIGHT"]], "arrow_right_bar (viser.icon attribute)": [[32, "viser.Icon.ARROW_RIGHT_BAR"]], "arrow_right_circle (viser.icon attribute)": [[32, "viser.Icon.ARROW_RIGHT_CIRCLE"]], "arrow_right_rhombus (viser.icon attribute)": [[32, "viser.Icon.ARROW_RIGHT_RHOMBUS"]], "arrow_right_square (viser.icon attribute)": [[32, "viser.Icon.ARROW_RIGHT_SQUARE"]], "arrow_right_tail (viser.icon attribute)": [[32, "viser.Icon.ARROW_RIGHT_TAIL"]], "arrow_rotary_first_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_ROTARY_FIRST_LEFT"]], "arrow_rotary_first_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_ROTARY_FIRST_RIGHT"]], "arrow_rotary_last_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_ROTARY_LAST_LEFT"]], "arrow_rotary_last_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_ROTARY_LAST_RIGHT"]], "arrow_rotary_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_ROTARY_LEFT"]], "arrow_rotary_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_ROTARY_RIGHT"]], "arrow_rotary_straight (viser.icon attribute)": [[32, "viser.Icon.ARROW_ROTARY_STRAIGHT"]], "arrow_roundabout_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_ROUNDABOUT_LEFT"]], "arrow_roundabout_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_ROUNDABOUT_RIGHT"]], "arrow_sharp_turn_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_SHARP_TURN_LEFT"]], "arrow_sharp_turn_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_SHARP_TURN_RIGHT"]], "arrow_up (viser.icon attribute)": [[32, "viser.Icon.ARROW_UP"]], "arrow_up_bar (viser.icon attribute)": [[32, "viser.Icon.ARROW_UP_BAR"]], "arrow_up_circle (viser.icon attribute)": [[32, "viser.Icon.ARROW_UP_CIRCLE"]], "arrow_up_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_UP_LEFT"]], "arrow_up_left_circle (viser.icon attribute)": [[32, "viser.Icon.ARROW_UP_LEFT_CIRCLE"]], "arrow_up_rhombus (viser.icon attribute)": [[32, "viser.Icon.ARROW_UP_RHOMBUS"]], "arrow_up_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_UP_RIGHT"]], "arrow_up_right_circle (viser.icon attribute)": [[32, "viser.Icon.ARROW_UP_RIGHT_CIRCLE"]], "arrow_up_square (viser.icon attribute)": [[32, "viser.Icon.ARROW_UP_SQUARE"]], "arrow_up_tail (viser.icon attribute)": [[32, "viser.Icon.ARROW_UP_TAIL"]], "arrow_wave_left_down (viser.icon attribute)": [[32, "viser.Icon.ARROW_WAVE_LEFT_DOWN"]], "arrow_wave_left_up (viser.icon attribute)": [[32, "viser.Icon.ARROW_WAVE_LEFT_UP"]], "arrow_wave_right_down (viser.icon attribute)": [[32, "viser.Icon.ARROW_WAVE_RIGHT_DOWN"]], "arrow_wave_right_up (viser.icon attribute)": [[32, "viser.Icon.ARROW_WAVE_RIGHT_UP"]], "arrow_zig_zag (viser.icon attribute)": [[32, "viser.Icon.ARROW_ZIG_ZAG"]], "artboard (viser.icon attribute)": [[32, "viser.Icon.ARTBOARD"]], "artboard_filled (viser.icon attribute)": [[32, "viser.Icon.ARTBOARD_FILLED"]], "artboard_off (viser.icon attribute)": [[32, "viser.Icon.ARTBOARD_OFF"]], "article (viser.icon attribute)": [[32, "viser.Icon.ARTICLE"]], "article_filled_filled (viser.icon attribute)": [[32, "viser.Icon.ARTICLE_FILLED_FILLED"]], "article_off (viser.icon attribute)": [[32, "viser.Icon.ARTICLE_OFF"]], "aspect_ratio (viser.icon attribute)": [[32, "viser.Icon.ASPECT_RATIO"]], "aspect_ratio_filled (viser.icon attribute)": [[32, "viser.Icon.ASPECT_RATIO_FILLED"]], "aspect_ratio_off (viser.icon attribute)": [[32, "viser.Icon.ASPECT_RATIO_OFF"]], "assembly (viser.icon attribute)": [[32, "viser.Icon.ASSEMBLY"]], "assembly_off (viser.icon attribute)": [[32, "viser.Icon.ASSEMBLY_OFF"]], "asset (viser.icon attribute)": [[32, "viser.Icon.ASSET"]], "asterisk (viser.icon attribute)": [[32, "viser.Icon.ASTERISK"]], "asterisk_simple (viser.icon attribute)": [[32, "viser.Icon.ASTERISK_SIMPLE"]], "at (viser.icon attribute)": [[32, "viser.Icon.AT"]], "atom (viser.icon attribute)": [[32, "viser.Icon.ATOM"]], "atom_2 (viser.icon attribute)": [[32, "viser.Icon.ATOM_2"]], "atom_2_filled (viser.icon attribute)": [[32, "viser.Icon.ATOM_2_FILLED"]], "atom_off (viser.icon attribute)": [[32, "viser.Icon.ATOM_OFF"]], "at_off (viser.icon attribute)": [[32, "viser.Icon.AT_OFF"]], "augmented_reality (viser.icon attribute)": [[32, "viser.Icon.AUGMENTED_REALITY"]], "augmented_reality_2 (viser.icon attribute)": [[32, "viser.Icon.AUGMENTED_REALITY_2"]], "augmented_reality_off (viser.icon attribute)": [[32, "viser.Icon.AUGMENTED_REALITY_OFF"]], "award (viser.icon attribute)": [[32, "viser.Icon.AWARD"]], "award_filled (viser.icon attribute)": [[32, "viser.Icon.AWARD_FILLED"]], "award_off (viser.icon attribute)": [[32, "viser.Icon.AWARD_OFF"]], "axe (viser.icon attribute)": [[32, "viser.Icon.AXE"]], "axis_x (viser.icon attribute)": [[32, "viser.Icon.AXIS_X"]], "axis_y (viser.icon attribute)": [[32, "viser.Icon.AXIS_Y"]], "a_b (viser.icon attribute)": [[32, "viser.Icon.A_B"]], "a_b_2 (viser.icon attribute)": [[32, "viser.Icon.A_B_2"]], "a_b_off (viser.icon attribute)": [[32, "viser.Icon.A_B_OFF"]], "baby_bottle (viser.icon attribute)": [[32, "viser.Icon.BABY_BOTTLE"]], "baby_carriage (viser.icon attribute)": [[32, "viser.Icon.BABY_CARRIAGE"]], "backhoe (viser.icon attribute)": [[32, "viser.Icon.BACKHOE"]], "backpack (viser.icon attribute)": [[32, "viser.Icon.BACKPACK"]], "backpack_off (viser.icon attribute)": [[32, "viser.Icon.BACKPACK_OFF"]], "backslash (viser.icon attribute)": [[32, "viser.Icon.BACKSLASH"]], "backspace (viser.icon attribute)": [[32, "viser.Icon.BACKSPACE"]], "backspace_filled (viser.icon attribute)": [[32, "viser.Icon.BACKSPACE_FILLED"]], "badge (viser.icon attribute)": [[32, "viser.Icon.BADGE"]], "badges (viser.icon attribute)": [[32, "viser.Icon.BADGES"]], "badges_filled (viser.icon attribute)": [[32, "viser.Icon.BADGES_FILLED"]], "badges_off (viser.icon attribute)": [[32, "viser.Icon.BADGES_OFF"]], "badge_3d (viser.icon attribute)": [[32, "viser.Icon.BADGE_3D"]], "badge_4k (viser.icon attribute)": [[32, "viser.Icon.BADGE_4K"]], "badge_8k (viser.icon attribute)": [[32, "viser.Icon.BADGE_8K"]], "badge_ad (viser.icon attribute)": [[32, "viser.Icon.BADGE_AD"]], "badge_ar (viser.icon attribute)": [[32, "viser.Icon.BADGE_AR"]], "badge_cc (viser.icon attribute)": [[32, "viser.Icon.BADGE_CC"]], "badge_filled (viser.icon attribute)": [[32, "viser.Icon.BADGE_FILLED"]], "badge_hd (viser.icon attribute)": [[32, "viser.Icon.BADGE_HD"]], "badge_off (viser.icon attribute)": [[32, "viser.Icon.BADGE_OFF"]], "badge_sd (viser.icon attribute)": [[32, "viser.Icon.BADGE_SD"]], "badge_tm (viser.icon attribute)": [[32, "viser.Icon.BADGE_TM"]], "badge_vo (viser.icon attribute)": [[32, "viser.Icon.BADGE_VO"]], "badge_vr (viser.icon attribute)": [[32, "viser.Icon.BADGE_VR"]], "badge_wc (viser.icon attribute)": [[32, "viser.Icon.BADGE_WC"]], "baguette (viser.icon attribute)": [[32, "viser.Icon.BAGUETTE"]], "balloon (viser.icon attribute)": [[32, "viser.Icon.BALLOON"]], "balloon_filled (viser.icon attribute)": [[32, "viser.Icon.BALLOON_FILLED"]], "balloon_off (viser.icon attribute)": [[32, "viser.Icon.BALLOON_OFF"]], "ballpen (viser.icon attribute)": [[32, "viser.Icon.BALLPEN"]], "ballpen_filled (viser.icon attribute)": [[32, "viser.Icon.BALLPEN_FILLED"]], "ballpen_off (viser.icon attribute)": [[32, "viser.Icon.BALLPEN_OFF"]], "ball_american_football (viser.icon attribute)": [[32, "viser.Icon.BALL_AMERICAN_FOOTBALL"]], "ball_american_football_off (viser.icon attribute)": [[32, "viser.Icon.BALL_AMERICAN_FOOTBALL_OFF"]], "ball_baseball (viser.icon attribute)": [[32, "viser.Icon.BALL_BASEBALL"]], "ball_basketball (viser.icon attribute)": [[32, "viser.Icon.BALL_BASKETBALL"]], "ball_bowling (viser.icon attribute)": [[32, "viser.Icon.BALL_BOWLING"]], "ball_football (viser.icon attribute)": [[32, "viser.Icon.BALL_FOOTBALL"]], "ball_football_off (viser.icon attribute)": [[32, "viser.Icon.BALL_FOOTBALL_OFF"]], "ball_tennis (viser.icon attribute)": [[32, "viser.Icon.BALL_TENNIS"]], "ball_volleyball (viser.icon attribute)": [[32, "viser.Icon.BALL_VOLLEYBALL"]], "ban (viser.icon attribute)": [[32, "viser.Icon.BAN"]], "bandage (viser.icon attribute)": [[32, "viser.Icon.BANDAGE"]], "bandage_filled (viser.icon attribute)": [[32, "viser.Icon.BANDAGE_FILLED"]], "bandage_off (viser.icon attribute)": [[32, "viser.Icon.BANDAGE_OFF"]], "barbell (viser.icon attribute)": [[32, "viser.Icon.BARBELL"]], "barbell_off (viser.icon attribute)": [[32, "viser.Icon.BARBELL_OFF"]], "barcode (viser.icon attribute)": [[32, "viser.Icon.BARCODE"]], "barcode_off (viser.icon attribute)": [[32, "viser.Icon.BARCODE_OFF"]], "barrel (viser.icon attribute)": [[32, "viser.Icon.BARREL"]], "barrel_off (viser.icon attribute)": [[32, "viser.Icon.BARREL_OFF"]], "barrier_block (viser.icon attribute)": [[32, "viser.Icon.BARRIER_BLOCK"]], "barrier_block_off (viser.icon attribute)": [[32, "viser.Icon.BARRIER_BLOCK_OFF"]], "baseline (viser.icon attribute)": [[32, "viser.Icon.BASELINE"]], "baseline_density_large (viser.icon attribute)": [[32, "viser.Icon.BASELINE_DENSITY_LARGE"]], "baseline_density_medium (viser.icon attribute)": [[32, "viser.Icon.BASELINE_DENSITY_MEDIUM"]], "baseline_density_small (viser.icon attribute)": [[32, "viser.Icon.BASELINE_DENSITY_SMALL"]], "basket (viser.icon attribute)": [[32, "viser.Icon.BASKET"]], "basket_filled (viser.icon attribute)": [[32, "viser.Icon.BASKET_FILLED"]], "basket_off (viser.icon attribute)": [[32, "viser.Icon.BASKET_OFF"]], "bat (viser.icon attribute)": [[32, "viser.Icon.BAT"]], "bath (viser.icon attribute)": [[32, "viser.Icon.BATH"]], "bath_filled (viser.icon attribute)": [[32, "viser.Icon.BATH_FILLED"]], "bath_off (viser.icon attribute)": [[32, "viser.Icon.BATH_OFF"]], "battery (viser.icon attribute)": [[32, "viser.Icon.BATTERY"]], "battery_1 (viser.icon attribute)": [[32, "viser.Icon.BATTERY_1"]], "battery_1_filled (viser.icon attribute)": [[32, "viser.Icon.BATTERY_1_FILLED"]], "battery_2 (viser.icon attribute)": [[32, "viser.Icon.BATTERY_2"]], "battery_2_filled (viser.icon attribute)": [[32, "viser.Icon.BATTERY_2_FILLED"]], "battery_3 (viser.icon attribute)": [[32, "viser.Icon.BATTERY_3"]], "battery_3_filled (viser.icon attribute)": [[32, "viser.Icon.BATTERY_3_FILLED"]], "battery_4 (viser.icon attribute)": [[32, "viser.Icon.BATTERY_4"]], "battery_4_filled (viser.icon attribute)": [[32, "viser.Icon.BATTERY_4_FILLED"]], "battery_automotive (viser.icon attribute)": [[32, "viser.Icon.BATTERY_AUTOMOTIVE"]], "battery_charging (viser.icon attribute)": [[32, "viser.Icon.BATTERY_CHARGING"]], "battery_charging_2 (viser.icon attribute)": [[32, "viser.Icon.BATTERY_CHARGING_2"]], "battery_eco (viser.icon attribute)": [[32, "viser.Icon.BATTERY_ECO"]], "battery_filled (viser.icon attribute)": [[32, "viser.Icon.BATTERY_FILLED"]], "battery_off (viser.icon attribute)": [[32, "viser.Icon.BATTERY_OFF"]], "beach (viser.icon attribute)": [[32, "viser.Icon.BEACH"]], "beach_off (viser.icon attribute)": [[32, "viser.Icon.BEACH_OFF"]], "bed (viser.icon attribute)": [[32, "viser.Icon.BED"]], "bed_filled (viser.icon attribute)": [[32, "viser.Icon.BED_FILLED"]], "bed_off (viser.icon attribute)": [[32, "viser.Icon.BED_OFF"]], "beer (viser.icon attribute)": [[32, "viser.Icon.BEER"]], "beer_filled (viser.icon attribute)": [[32, "viser.Icon.BEER_FILLED"]], "beer_off (viser.icon attribute)": [[32, "viser.Icon.BEER_OFF"]], "bell (viser.icon attribute)": [[32, "viser.Icon.BELL"]], "bell_bolt (viser.icon attribute)": [[32, "viser.Icon.BELL_BOLT"]], "bell_cancel (viser.icon attribute)": [[32, "viser.Icon.BELL_CANCEL"]], "bell_check (viser.icon attribute)": [[32, "viser.Icon.BELL_CHECK"]], "bell_code (viser.icon attribute)": [[32, "viser.Icon.BELL_CODE"]], "bell_cog (viser.icon attribute)": [[32, "viser.Icon.BELL_COG"]], "bell_dollar (viser.icon attribute)": [[32, "viser.Icon.BELL_DOLLAR"]], "bell_down (viser.icon attribute)": [[32, "viser.Icon.BELL_DOWN"]], "bell_exclamation (viser.icon attribute)": [[32, "viser.Icon.BELL_EXCLAMATION"]], "bell_filled (viser.icon attribute)": [[32, "viser.Icon.BELL_FILLED"]], "bell_heart (viser.icon attribute)": [[32, "viser.Icon.BELL_HEART"]], "bell_minus (viser.icon attribute)": [[32, "viser.Icon.BELL_MINUS"]], "bell_minus_filled (viser.icon attribute)": [[32, "viser.Icon.BELL_MINUS_FILLED"]], "bell_off (viser.icon attribute)": [[32, "viser.Icon.BELL_OFF"]], "bell_pause (viser.icon attribute)": [[32, "viser.Icon.BELL_PAUSE"]], "bell_pin (viser.icon attribute)": [[32, "viser.Icon.BELL_PIN"]], "bell_plus (viser.icon attribute)": [[32, "viser.Icon.BELL_PLUS"]], "bell_plus_filled (viser.icon attribute)": [[32, "viser.Icon.BELL_PLUS_FILLED"]], "bell_question (viser.icon attribute)": [[32, "viser.Icon.BELL_QUESTION"]], "bell_ringing (viser.icon attribute)": [[32, "viser.Icon.BELL_RINGING"]], "bell_ringing_2 (viser.icon attribute)": [[32, "viser.Icon.BELL_RINGING_2"]], "bell_ringing_2_filled (viser.icon attribute)": [[32, "viser.Icon.BELL_RINGING_2_FILLED"]], "bell_ringing_filled (viser.icon attribute)": [[32, "viser.Icon.BELL_RINGING_FILLED"]], "bell_school (viser.icon attribute)": [[32, "viser.Icon.BELL_SCHOOL"]], "bell_search (viser.icon attribute)": [[32, "viser.Icon.BELL_SEARCH"]], "bell_share (viser.icon attribute)": [[32, "viser.Icon.BELL_SHARE"]], "bell_star (viser.icon attribute)": [[32, "viser.Icon.BELL_STAR"]], "bell_up (viser.icon attribute)": [[32, "viser.Icon.BELL_UP"]], "bell_x (viser.icon attribute)": [[32, "viser.Icon.BELL_X"]], "bell_x_filled (viser.icon attribute)": [[32, "viser.Icon.BELL_X_FILLED"]], "bell_z (viser.icon attribute)": [[32, "viser.Icon.BELL_Z"]], "bell_z_filled (viser.icon attribute)": [[32, "viser.Icon.BELL_Z_FILLED"]], "beta (viser.icon attribute)": [[32, "viser.Icon.BETA"]], "bible (viser.icon attribute)": [[32, "viser.Icon.BIBLE"]], "bike (viser.icon attribute)": [[32, "viser.Icon.BIKE"]], "bike_off (viser.icon attribute)": [[32, "viser.Icon.BIKE_OFF"]], "binary (viser.icon attribute)": [[32, "viser.Icon.BINARY"]], "binary_off (viser.icon attribute)": [[32, "viser.Icon.BINARY_OFF"]], "binary_tree (viser.icon attribute)": [[32, "viser.Icon.BINARY_TREE"]], "binary_tree_2 (viser.icon attribute)": [[32, "viser.Icon.BINARY_TREE_2"]], "biohazard (viser.icon attribute)": [[32, "viser.Icon.BIOHAZARD"]], "biohazard_off (viser.icon attribute)": [[32, "viser.Icon.BIOHAZARD_OFF"]], "blade (viser.icon attribute)": [[32, "viser.Icon.BLADE"]], "blade_filled (viser.icon attribute)": [[32, "viser.Icon.BLADE_FILLED"]], "bleach (viser.icon attribute)": [[32, "viser.Icon.BLEACH"]], "bleach_chlorine (viser.icon attribute)": [[32, "viser.Icon.BLEACH_CHLORINE"]], "bleach_no_chlorine (viser.icon attribute)": [[32, "viser.Icon.BLEACH_NO_CHLORINE"]], "bleach_off (viser.icon attribute)": [[32, "viser.Icon.BLEACH_OFF"]], "blockquote (viser.icon attribute)": [[32, "viser.Icon.BLOCKQUOTE"]], "bluetooth (viser.icon attribute)": [[32, "viser.Icon.BLUETOOTH"]], "bluetooth_connected (viser.icon attribute)": [[32, "viser.Icon.BLUETOOTH_CONNECTED"]], "bluetooth_off (viser.icon attribute)": [[32, "viser.Icon.BLUETOOTH_OFF"]], "bluetooth_x (viser.icon attribute)": [[32, "viser.Icon.BLUETOOTH_X"]], "blur (viser.icon attribute)": [[32, "viser.Icon.BLUR"]], "blur_off (viser.icon attribute)": [[32, "viser.Icon.BLUR_OFF"]], "bmp (viser.icon attribute)": [[32, "viser.Icon.BMP"]], "bold (viser.icon attribute)": [[32, "viser.Icon.BOLD"]], "bold_off (viser.icon attribute)": [[32, "viser.Icon.BOLD_OFF"]], "bolt (viser.icon attribute)": [[32, "viser.Icon.BOLT"]], "bolt_off (viser.icon attribute)": [[32, "viser.Icon.BOLT_OFF"]], "bomb (viser.icon attribute)": [[32, "viser.Icon.BOMB"]], "bomb_filled (viser.icon attribute)": [[32, "viser.Icon.BOMB_FILLED"]], "bone (viser.icon attribute)": [[32, "viser.Icon.BONE"]], "bone_off (viser.icon attribute)": [[32, "viser.Icon.BONE_OFF"]], "bong (viser.icon attribute)": [[32, "viser.Icon.BONG"]], "bong_off (viser.icon attribute)": [[32, "viser.Icon.BONG_OFF"]], "book (viser.icon attribute)": [[32, "viser.Icon.BOOK"]], "bookmark (viser.icon attribute)": [[32, "viser.Icon.BOOKMARK"]], "bookmarks (viser.icon attribute)": [[32, "viser.Icon.BOOKMARKS"]], "bookmarks_off (viser.icon attribute)": [[32, "viser.Icon.BOOKMARKS_OFF"]], "bookmark_edit (viser.icon attribute)": [[32, "viser.Icon.BOOKMARK_EDIT"]], "bookmark_filled (viser.icon attribute)": [[32, "viser.Icon.BOOKMARK_FILLED"]], "bookmark_minus (viser.icon attribute)": [[32, "viser.Icon.BOOKMARK_MINUS"]], "bookmark_off (viser.icon attribute)": [[32, "viser.Icon.BOOKMARK_OFF"]], "bookmark_plus (viser.icon attribute)": [[32, "viser.Icon.BOOKMARK_PLUS"]], "bookmark_question (viser.icon attribute)": [[32, "viser.Icon.BOOKMARK_QUESTION"]], "books (viser.icon attribute)": [[32, "viser.Icon.BOOKS"]], "books_off (viser.icon attribute)": [[32, "viser.Icon.BOOKS_OFF"]], "book_2 (viser.icon attribute)": [[32, "viser.Icon.BOOK_2"]], "book_download (viser.icon attribute)": [[32, "viser.Icon.BOOK_DOWNLOAD"]], "book_filled (viser.icon attribute)": [[32, "viser.Icon.BOOK_FILLED"]], "book_off (viser.icon attribute)": [[32, "viser.Icon.BOOK_OFF"]], "book_upload (viser.icon attribute)": [[32, "viser.Icon.BOOK_UPLOAD"]], "border_all (viser.icon attribute)": [[32, "viser.Icon.BORDER_ALL"]], "border_bottom (viser.icon attribute)": [[32, "viser.Icon.BORDER_BOTTOM"]], "border_corners (viser.icon attribute)": [[32, "viser.Icon.BORDER_CORNERS"]], "border_horizontal (viser.icon attribute)": [[32, "viser.Icon.BORDER_HORIZONTAL"]], "border_inner (viser.icon attribute)": [[32, "viser.Icon.BORDER_INNER"]], "border_left (viser.icon attribute)": [[32, "viser.Icon.BORDER_LEFT"]], "border_none (viser.icon attribute)": [[32, "viser.Icon.BORDER_NONE"]], "border_outer (viser.icon attribute)": [[32, "viser.Icon.BORDER_OUTER"]], "border_radius (viser.icon attribute)": [[32, "viser.Icon.BORDER_RADIUS"]], "border_right (viser.icon attribute)": [[32, "viser.Icon.BORDER_RIGHT"]], "border_sides (viser.icon attribute)": [[32, "viser.Icon.BORDER_SIDES"]], "border_style (viser.icon attribute)": [[32, "viser.Icon.BORDER_STYLE"]], "border_style_2 (viser.icon attribute)": [[32, "viser.Icon.BORDER_STYLE_2"]], "border_top (viser.icon attribute)": [[32, "viser.Icon.BORDER_TOP"]], "border_vertical (viser.icon attribute)": [[32, "viser.Icon.BORDER_VERTICAL"]], "bottle (viser.icon attribute)": [[32, "viser.Icon.BOTTLE"]], "bottle_filled (viser.icon attribute)": [[32, "viser.Icon.BOTTLE_FILLED"]], "bottle_off (viser.icon attribute)": [[32, "viser.Icon.BOTTLE_OFF"]], "bounce_left (viser.icon attribute)": [[32, "viser.Icon.BOUNCE_LEFT"]], "bounce_right (viser.icon attribute)": [[32, "viser.Icon.BOUNCE_RIGHT"]], "bow (viser.icon attribute)": [[32, "viser.Icon.BOW"]], "bowl (viser.icon attribute)": [[32, "viser.Icon.BOWL"]], "box (viser.icon attribute)": [[32, "viser.Icon.BOX"]], "box_align_bottom (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_BOTTOM"]], "box_align_bottom_filled (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_BOTTOM_FILLED"]], "box_align_bottom_left (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_BOTTOM_LEFT"]], "box_align_bottom_left_filled (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_BOTTOM_LEFT_FILLED"]], "box_align_bottom_right (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_BOTTOM_RIGHT"]], "box_align_bottom_right_filled (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_BOTTOM_RIGHT_FILLED"]], "box_align_left (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_LEFT"]], "box_align_left_filled (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_LEFT_FILLED"]], "box_align_right (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_RIGHT"]], "box_align_right_filled (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_RIGHT_FILLED"]], "box_align_top (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_TOP"]], "box_align_top_filled (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_TOP_FILLED"]], "box_align_top_left (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_TOP_LEFT"]], "box_align_top_left_filled (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_TOP_LEFT_FILLED"]], "box_align_top_right (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_TOP_RIGHT"]], "box_align_top_right_filled (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_TOP_RIGHT_FILLED"]], "box_margin (viser.icon attribute)": [[32, "viser.Icon.BOX_MARGIN"]], "box_model (viser.icon attribute)": [[32, "viser.Icon.BOX_MODEL"]], "box_model_2 (viser.icon attribute)": [[32, "viser.Icon.BOX_MODEL_2"]], "box_model_2_off (viser.icon attribute)": [[32, "viser.Icon.BOX_MODEL_2_OFF"]], "box_model_off (viser.icon attribute)": [[32, "viser.Icon.BOX_MODEL_OFF"]], "box_multiple (viser.icon attribute)": [[32, "viser.Icon.BOX_MULTIPLE"]], "box_multiple_0 (viser.icon attribute)": [[32, "viser.Icon.BOX_MULTIPLE_0"]], "box_multiple_1 (viser.icon attribute)": [[32, "viser.Icon.BOX_MULTIPLE_1"]], "box_multiple_2 (viser.icon attribute)": [[32, "viser.Icon.BOX_MULTIPLE_2"]], "box_multiple_3 (viser.icon attribute)": [[32, "viser.Icon.BOX_MULTIPLE_3"]], "box_multiple_4 (viser.icon attribute)": [[32, "viser.Icon.BOX_MULTIPLE_4"]], "box_multiple_5 (viser.icon attribute)": [[32, "viser.Icon.BOX_MULTIPLE_5"]], "box_multiple_6 (viser.icon attribute)": [[32, "viser.Icon.BOX_MULTIPLE_6"]], "box_multiple_7 (viser.icon attribute)": [[32, "viser.Icon.BOX_MULTIPLE_7"]], "box_multiple_8 (viser.icon attribute)": [[32, "viser.Icon.BOX_MULTIPLE_8"]], "box_multiple_9 (viser.icon attribute)": [[32, "viser.Icon.BOX_MULTIPLE_9"]], "box_off (viser.icon attribute)": [[32, "viser.Icon.BOX_OFF"]], "box_padding (viser.icon attribute)": [[32, "viser.Icon.BOX_PADDING"]], "box_seam (viser.icon attribute)": [[32, "viser.Icon.BOX_SEAM"]], "braces (viser.icon attribute)": [[32, "viser.Icon.BRACES"]], "braces_off (viser.icon attribute)": [[32, "viser.Icon.BRACES_OFF"]], "brackets (viser.icon attribute)": [[32, "viser.Icon.BRACKETS"]], "brackets_contain (viser.icon attribute)": [[32, "viser.Icon.BRACKETS_CONTAIN"]], "brackets_contain_end (viser.icon attribute)": [[32, "viser.Icon.BRACKETS_CONTAIN_END"]], "brackets_contain_start (viser.icon attribute)": [[32, "viser.Icon.BRACKETS_CONTAIN_START"]], "brackets_off (viser.icon attribute)": [[32, "viser.Icon.BRACKETS_OFF"]], "braille (viser.icon attribute)": [[32, "viser.Icon.BRAILLE"]], "brain (viser.icon attribute)": [[32, "viser.Icon.BRAIN"]], "brand_4chan (viser.icon attribute)": [[32, "viser.Icon.BRAND_4CHAN"]], "brand_abstract (viser.icon attribute)": [[32, "viser.Icon.BRAND_ABSTRACT"]], "brand_adobe (viser.icon attribute)": [[32, "viser.Icon.BRAND_ADOBE"]], "brand_adonis_js (viser.icon attribute)": [[32, "viser.Icon.BRAND_ADONIS_JS"]], "brand_airbnb (viser.icon attribute)": [[32, "viser.Icon.BRAND_AIRBNB"]], "brand_airtable (viser.icon attribute)": [[32, "viser.Icon.BRAND_AIRTABLE"]], "brand_algolia (viser.icon attribute)": [[32, "viser.Icon.BRAND_ALGOLIA"]], "brand_alipay (viser.icon attribute)": [[32, "viser.Icon.BRAND_ALIPAY"]], "brand_alpine_js (viser.icon attribute)": [[32, "viser.Icon.BRAND_ALPINE_JS"]], "brand_amazon (viser.icon attribute)": [[32, "viser.Icon.BRAND_AMAZON"]], "brand_amd (viser.icon attribute)": [[32, "viser.Icon.BRAND_AMD"]], "brand_amigo (viser.icon attribute)": [[32, "viser.Icon.BRAND_AMIGO"]], "brand_among_us (viser.icon attribute)": [[32, "viser.Icon.BRAND_AMONG_US"]], "brand_android (viser.icon attribute)": [[32, "viser.Icon.BRAND_ANDROID"]], "brand_angular (viser.icon attribute)": [[32, "viser.Icon.BRAND_ANGULAR"]], "brand_ansible (viser.icon attribute)": [[32, "viser.Icon.BRAND_ANSIBLE"]], "brand_ao3 (viser.icon attribute)": [[32, "viser.Icon.BRAND_AO3"]], "brand_appgallery (viser.icon attribute)": [[32, "viser.Icon.BRAND_APPGALLERY"]], "brand_apple (viser.icon attribute)": [[32, "viser.Icon.BRAND_APPLE"]], "brand_apple_arcade (viser.icon attribute)": [[32, "viser.Icon.BRAND_APPLE_ARCADE"]], "brand_apple_podcast (viser.icon attribute)": [[32, "viser.Icon.BRAND_APPLE_PODCAST"]], "brand_appstore (viser.icon attribute)": [[32, "viser.Icon.BRAND_APPSTORE"]], "brand_asana (viser.icon attribute)": [[32, "viser.Icon.BRAND_ASANA"]], "brand_aws (viser.icon attribute)": [[32, "viser.Icon.BRAND_AWS"]], "brand_azure (viser.icon attribute)": [[32, "viser.Icon.BRAND_AZURE"]], "brand_backbone (viser.icon attribute)": [[32, "viser.Icon.BRAND_BACKBONE"]], "brand_badoo (viser.icon attribute)": [[32, "viser.Icon.BRAND_BADOO"]], "brand_baidu (viser.icon attribute)": [[32, "viser.Icon.BRAND_BAIDU"]], "brand_bandcamp (viser.icon attribute)": [[32, "viser.Icon.BRAND_BANDCAMP"]], "brand_bandlab (viser.icon attribute)": [[32, "viser.Icon.BRAND_BANDLAB"]], "brand_beats (viser.icon attribute)": [[32, "viser.Icon.BRAND_BEATS"]], "brand_behance (viser.icon attribute)": [[32, "viser.Icon.BRAND_BEHANCE"]], "brand_bilibili (viser.icon attribute)": [[32, "viser.Icon.BRAND_BILIBILI"]], "brand_binance (viser.icon attribute)": [[32, "viser.Icon.BRAND_BINANCE"]], "brand_bing (viser.icon attribute)": [[32, "viser.Icon.BRAND_BING"]], "brand_bitbucket (viser.icon attribute)": [[32, "viser.Icon.BRAND_BITBUCKET"]], "brand_blackberry (viser.icon attribute)": [[32, "viser.Icon.BRAND_BLACKBERRY"]], "brand_blender (viser.icon attribute)": [[32, "viser.Icon.BRAND_BLENDER"]], "brand_blogger (viser.icon attribute)": [[32, "viser.Icon.BRAND_BLOGGER"]], "brand_booking (viser.icon attribute)": [[32, "viser.Icon.BRAND_BOOKING"]], "brand_bootstrap (viser.icon attribute)": [[32, "viser.Icon.BRAND_BOOTSTRAP"]], "brand_bulma (viser.icon attribute)": [[32, "viser.Icon.BRAND_BULMA"]], "brand_bumble (viser.icon attribute)": [[32, "viser.Icon.BRAND_BUMBLE"]], "brand_bunpo (viser.icon attribute)": [[32, "viser.Icon.BRAND_BUNPO"]], "brand_cake (viser.icon attribute)": [[32, "viser.Icon.BRAND_CAKE"]], "brand_cakephp (viser.icon attribute)": [[32, "viser.Icon.BRAND_CAKEPHP"]], "brand_campaignmonitor (viser.icon attribute)": [[32, "viser.Icon.BRAND_CAMPAIGNMONITOR"]], "brand_carbon (viser.icon attribute)": [[32, "viser.Icon.BRAND_CARBON"]], "brand_cashapp (viser.icon attribute)": [[32, "viser.Icon.BRAND_CASHAPP"]], "brand_chrome (viser.icon attribute)": [[32, "viser.Icon.BRAND_CHROME"]], "brand_cinema_4d (viser.icon attribute)": [[32, "viser.Icon.BRAND_CINEMA_4D"]], "brand_citymapper (viser.icon attribute)": [[32, "viser.Icon.BRAND_CITYMAPPER"]], "brand_cloudflare (viser.icon attribute)": [[32, "viser.Icon.BRAND_CLOUDFLARE"]], "brand_codecov (viser.icon attribute)": [[32, "viser.Icon.BRAND_CODECOV"]], "brand_codepen (viser.icon attribute)": [[32, "viser.Icon.BRAND_CODEPEN"]], "brand_codesandbox (viser.icon attribute)": [[32, "viser.Icon.BRAND_CODESANDBOX"]], "brand_cohost (viser.icon attribute)": [[32, "viser.Icon.BRAND_COHOST"]], "brand_coinbase (viser.icon attribute)": [[32, "viser.Icon.BRAND_COINBASE"]], "brand_comedy_central (viser.icon attribute)": [[32, "viser.Icon.BRAND_COMEDY_CENTRAL"]], "brand_coreos (viser.icon attribute)": [[32, "viser.Icon.BRAND_COREOS"]], "brand_couchdb (viser.icon attribute)": [[32, "viser.Icon.BRAND_COUCHDB"]], "brand_couchsurfing (viser.icon attribute)": [[32, "viser.Icon.BRAND_COUCHSURFING"]], "brand_cpp (viser.icon attribute)": [[32, "viser.Icon.BRAND_CPP"]], "brand_craft (viser.icon attribute)": [[32, "viser.Icon.BRAND_CRAFT"]], "brand_crunchbase (viser.icon attribute)": [[32, "viser.Icon.BRAND_CRUNCHBASE"]], "brand_css3 (viser.icon attribute)": [[32, "viser.Icon.BRAND_CSS3"]], "brand_ctemplar (viser.icon attribute)": [[32, "viser.Icon.BRAND_CTEMPLAR"]], "brand_cucumber (viser.icon attribute)": [[32, "viser.Icon.BRAND_CUCUMBER"]], "brand_cupra (viser.icon attribute)": [[32, "viser.Icon.BRAND_CUPRA"]], "brand_cypress (viser.icon attribute)": [[32, "viser.Icon.BRAND_CYPRESS"]], "brand_c_sharp (viser.icon attribute)": [[32, "viser.Icon.BRAND_C_SHARP"]], "brand_d3 (viser.icon attribute)": [[32, "viser.Icon.BRAND_D3"]], "brand_days_counter (viser.icon attribute)": [[32, "viser.Icon.BRAND_DAYS_COUNTER"]], "brand_dcos (viser.icon attribute)": [[32, "viser.Icon.BRAND_DCOS"]], "brand_debian (viser.icon attribute)": [[32, "viser.Icon.BRAND_DEBIAN"]], "brand_deezer (viser.icon attribute)": [[32, "viser.Icon.BRAND_DEEZER"]], "brand_deliveroo (viser.icon attribute)": [[32, "viser.Icon.BRAND_DELIVEROO"]], "brand_deno (viser.icon attribute)": [[32, "viser.Icon.BRAND_DENO"]], "brand_denodo (viser.icon attribute)": [[32, "viser.Icon.BRAND_DENODO"]], "brand_deviantart (viser.icon attribute)": [[32, "viser.Icon.BRAND_DEVIANTART"]], "brand_digg (viser.icon attribute)": [[32, "viser.Icon.BRAND_DIGG"]], "brand_dingtalk (viser.icon attribute)": [[32, "viser.Icon.BRAND_DINGTALK"]], "brand_discord (viser.icon attribute)": [[32, "viser.Icon.BRAND_DISCORD"]], "brand_discord_filled (viser.icon attribute)": [[32, "viser.Icon.BRAND_DISCORD_FILLED"]], "brand_disney (viser.icon attribute)": [[32, "viser.Icon.BRAND_DISNEY"]], "brand_disqus (viser.icon attribute)": [[32, "viser.Icon.BRAND_DISQUS"]], "brand_django (viser.icon attribute)": [[32, "viser.Icon.BRAND_DJANGO"]], "brand_docker (viser.icon attribute)": [[32, "viser.Icon.BRAND_DOCKER"]], "brand_doctrine (viser.icon attribute)": [[32, "viser.Icon.BRAND_DOCTRINE"]], "brand_dolby_digital (viser.icon attribute)": [[32, "viser.Icon.BRAND_DOLBY_DIGITAL"]], "brand_douban (viser.icon attribute)": [[32, "viser.Icon.BRAND_DOUBAN"]], "brand_dribbble (viser.icon attribute)": [[32, "viser.Icon.BRAND_DRIBBBLE"]], "brand_dribbble_filled (viser.icon attribute)": [[32, "viser.Icon.BRAND_DRIBBBLE_FILLED"]], "brand_drops (viser.icon attribute)": [[32, "viser.Icon.BRAND_DROPS"]], "brand_drupal (viser.icon attribute)": [[32, "viser.Icon.BRAND_DRUPAL"]], "brand_edge (viser.icon attribute)": [[32, "viser.Icon.BRAND_EDGE"]], "brand_elastic (viser.icon attribute)": [[32, "viser.Icon.BRAND_ELASTIC"]], "brand_electronic_arts (viser.icon attribute)": [[32, "viser.Icon.BRAND_ELECTRONIC_ARTS"]], "brand_ember (viser.icon attribute)": [[32, "viser.Icon.BRAND_EMBER"]], "brand_envato (viser.icon attribute)": [[32, "viser.Icon.BRAND_ENVATO"]], "brand_etsy (viser.icon attribute)": [[32, "viser.Icon.BRAND_ETSY"]], "brand_evernote (viser.icon attribute)": [[32, "viser.Icon.BRAND_EVERNOTE"]], "brand_facebook (viser.icon attribute)": [[32, "viser.Icon.BRAND_FACEBOOK"]], "brand_facebook_filled (viser.icon attribute)": [[32, "viser.Icon.BRAND_FACEBOOK_FILLED"]], "brand_feedly (viser.icon attribute)": [[32, "viser.Icon.BRAND_FEEDLY"]], "brand_figma (viser.icon attribute)": [[32, "viser.Icon.BRAND_FIGMA"]], "brand_filezilla (viser.icon attribute)": [[32, "viser.Icon.BRAND_FILEZILLA"]], "brand_finder (viser.icon attribute)": [[32, "viser.Icon.BRAND_FINDER"]], "brand_firebase (viser.icon attribute)": [[32, "viser.Icon.BRAND_FIREBASE"]], "brand_firefox (viser.icon attribute)": [[32, "viser.Icon.BRAND_FIREFOX"]], "brand_fiverr (viser.icon attribute)": [[32, "viser.Icon.BRAND_FIVERR"]], "brand_flickr (viser.icon attribute)": [[32, "viser.Icon.BRAND_FLICKR"]], "brand_flightradar24 (viser.icon attribute)": [[32, "viser.Icon.BRAND_FLIGHTRADAR24"]], "brand_flipboard (viser.icon attribute)": [[32, "viser.Icon.BRAND_FLIPBOARD"]], "brand_flutter (viser.icon attribute)": [[32, "viser.Icon.BRAND_FLUTTER"]], "brand_fortnite (viser.icon attribute)": [[32, "viser.Icon.BRAND_FORTNITE"]], "brand_foursquare (viser.icon attribute)": [[32, "viser.Icon.BRAND_FOURSQUARE"]], "brand_framer (viser.icon attribute)": [[32, "viser.Icon.BRAND_FRAMER"]], "brand_framer_motion (viser.icon attribute)": [[32, "viser.Icon.BRAND_FRAMER_MOTION"]], "brand_funimation (viser.icon attribute)": [[32, "viser.Icon.BRAND_FUNIMATION"]], "brand_gatsby (viser.icon attribute)": [[32, "viser.Icon.BRAND_GATSBY"]], "brand_git (viser.icon attribute)": [[32, "viser.Icon.BRAND_GIT"]], "brand_github (viser.icon attribute)": [[32, "viser.Icon.BRAND_GITHUB"]], "brand_github_copilot (viser.icon attribute)": [[32, "viser.Icon.BRAND_GITHUB_COPILOT"]], "brand_github_filled (viser.icon attribute)": [[32, "viser.Icon.BRAND_GITHUB_FILLED"]], "brand_gitlab (viser.icon attribute)": [[32, "viser.Icon.BRAND_GITLAB"]], "brand_gmail (viser.icon attribute)": [[32, "viser.Icon.BRAND_GMAIL"]], "brand_golang (viser.icon attribute)": [[32, "viser.Icon.BRAND_GOLANG"]], "brand_google (viser.icon attribute)": [[32, "viser.Icon.BRAND_GOOGLE"]], "brand_google_analytics (viser.icon attribute)": [[32, "viser.Icon.BRAND_GOOGLE_ANALYTICS"]], "brand_google_big_query (viser.icon attribute)": [[32, "viser.Icon.BRAND_GOOGLE_BIG_QUERY"]], "brand_google_drive (viser.icon attribute)": [[32, "viser.Icon.BRAND_GOOGLE_DRIVE"]], "brand_google_fit (viser.icon attribute)": [[32, "viser.Icon.BRAND_GOOGLE_FIT"]], "brand_google_home (viser.icon attribute)": [[32, "viser.Icon.BRAND_GOOGLE_HOME"]], "brand_google_maps (viser.icon attribute)": [[32, "viser.Icon.BRAND_GOOGLE_MAPS"]], "brand_google_one (viser.icon attribute)": [[32, "viser.Icon.BRAND_GOOGLE_ONE"]], "brand_google_photos (viser.icon attribute)": [[32, "viser.Icon.BRAND_GOOGLE_PHOTOS"]], "brand_google_play (viser.icon attribute)": [[32, "viser.Icon.BRAND_GOOGLE_PLAY"]], "brand_google_podcasts (viser.icon attribute)": [[32, "viser.Icon.BRAND_GOOGLE_PODCASTS"]], "brand_grammarly (viser.icon attribute)": [[32, "viser.Icon.BRAND_GRAMMARLY"]], "brand_graphql (viser.icon attribute)": [[32, "viser.Icon.BRAND_GRAPHQL"]], "brand_gravatar (viser.icon attribute)": [[32, "viser.Icon.BRAND_GRAVATAR"]], "brand_grindr (viser.icon attribute)": [[32, "viser.Icon.BRAND_GRINDR"]], "brand_guardian (viser.icon attribute)": [[32, "viser.Icon.BRAND_GUARDIAN"]], "brand_gumroad (viser.icon attribute)": [[32, "viser.Icon.BRAND_GUMROAD"]], "brand_hbo (viser.icon attribute)": [[32, "viser.Icon.BRAND_HBO"]], "brand_headlessui (viser.icon attribute)": [[32, "viser.Icon.BRAND_HEADLESSUI"]], "brand_hexo (viser.icon attribute)": [[32, "viser.Icon.BRAND_HEXO"]], "brand_hipchat (viser.icon attribute)": [[32, "viser.Icon.BRAND_HIPCHAT"]], "brand_html5 (viser.icon attribute)": [[32, "viser.Icon.BRAND_HTML5"]], "brand_inertia (viser.icon attribute)": [[32, "viser.Icon.BRAND_INERTIA"]], "brand_instagram (viser.icon attribute)": [[32, "viser.Icon.BRAND_INSTAGRAM"]], "brand_intercom (viser.icon attribute)": [[32, "viser.Icon.BRAND_INTERCOM"]], "brand_itch (viser.icon attribute)": [[32, "viser.Icon.BRAND_ITCH"]], "brand_javascript (viser.icon attribute)": [[32, "viser.Icon.BRAND_JAVASCRIPT"]], "brand_juejin (viser.icon attribute)": [[32, "viser.Icon.BRAND_JUEJIN"]], "brand_kbin (viser.icon attribute)": [[32, "viser.Icon.BRAND_KBIN"]], "brand_kick (viser.icon attribute)": [[32, "viser.Icon.BRAND_KICK"]], "brand_kickstarter (viser.icon attribute)": [[32, "viser.Icon.BRAND_KICKSTARTER"]], "brand_kotlin (viser.icon attribute)": [[32, "viser.Icon.BRAND_KOTLIN"]], "brand_laravel (viser.icon attribute)": [[32, "viser.Icon.BRAND_LARAVEL"]], "brand_lastfm (viser.icon attribute)": [[32, "viser.Icon.BRAND_LASTFM"]], "brand_leetcode (viser.icon attribute)": [[32, "viser.Icon.BRAND_LEETCODE"]], "brand_letterboxd (viser.icon attribute)": [[32, "viser.Icon.BRAND_LETTERBOXD"]], "brand_line (viser.icon attribute)": [[32, "viser.Icon.BRAND_LINE"]], "brand_linkedin (viser.icon attribute)": [[32, "viser.Icon.BRAND_LINKEDIN"]], "brand_linktree (viser.icon attribute)": [[32, "viser.Icon.BRAND_LINKTREE"]], "brand_linqpad (viser.icon attribute)": [[32, "viser.Icon.BRAND_LINQPAD"]], "brand_loom (viser.icon attribute)": [[32, "viser.Icon.BRAND_LOOM"]], "brand_mailgun (viser.icon attribute)": [[32, "viser.Icon.BRAND_MAILGUN"]], "brand_mantine (viser.icon attribute)": [[32, "viser.Icon.BRAND_MANTINE"]], "brand_mastercard (viser.icon attribute)": [[32, "viser.Icon.BRAND_MASTERCARD"]], "brand_mastodon (viser.icon attribute)": [[32, "viser.Icon.BRAND_MASTODON"]], "brand_matrix (viser.icon attribute)": [[32, "viser.Icon.BRAND_MATRIX"]], "brand_mcdonalds (viser.icon attribute)": [[32, "viser.Icon.BRAND_MCDONALDS"]], "brand_medium (viser.icon attribute)": [[32, "viser.Icon.BRAND_MEDIUM"]], "brand_mercedes (viser.icon attribute)": [[32, "viser.Icon.BRAND_MERCEDES"]], "brand_messenger (viser.icon attribute)": [[32, "viser.Icon.BRAND_MESSENGER"]], "brand_meta (viser.icon attribute)": [[32, "viser.Icon.BRAND_META"]], "brand_microsoft_teams (viser.icon attribute)": [[32, "viser.Icon.BRAND_MICROSOFT_TEAMS"]], "brand_minecraft (viser.icon attribute)": [[32, "viser.Icon.BRAND_MINECRAFT"]], "brand_miniprogram (viser.icon attribute)": [[32, "viser.Icon.BRAND_MINIPROGRAM"]], "brand_mixpanel (viser.icon attribute)": [[32, "viser.Icon.BRAND_MIXPANEL"]], "brand_monday (viser.icon attribute)": [[32, "viser.Icon.BRAND_MONDAY"]], "brand_mongodb (viser.icon attribute)": [[32, "viser.Icon.BRAND_MONGODB"]], "brand_mysql (viser.icon attribute)": [[32, "viser.Icon.BRAND_MYSQL"]], "brand_my_oppo (viser.icon attribute)": [[32, "viser.Icon.BRAND_MY_OPPO"]], "brand_national_geographic (viser.icon attribute)": [[32, "viser.Icon.BRAND_NATIONAL_GEOGRAPHIC"]], "brand_nem (viser.icon attribute)": [[32, "viser.Icon.BRAND_NEM"]], "brand_netbeans (viser.icon attribute)": [[32, "viser.Icon.BRAND_NETBEANS"]], "brand_netease_music (viser.icon attribute)": [[32, "viser.Icon.BRAND_NETEASE_MUSIC"]], "brand_netflix (viser.icon attribute)": [[32, "viser.Icon.BRAND_NETFLIX"]], "brand_nexo (viser.icon attribute)": [[32, "viser.Icon.BRAND_NEXO"]], "brand_nextcloud (viser.icon attribute)": [[32, "viser.Icon.BRAND_NEXTCLOUD"]], "brand_nextjs (viser.icon attribute)": [[32, "viser.Icon.BRAND_NEXTJS"]], "brand_nodejs (viser.icon attribute)": [[32, "viser.Icon.BRAND_NODEJS"]], "brand_nord_vpn (viser.icon attribute)": [[32, "viser.Icon.BRAND_NORD_VPN"]], "brand_notion (viser.icon attribute)": [[32, "viser.Icon.BRAND_NOTION"]], "brand_npm (viser.icon attribute)": [[32, "viser.Icon.BRAND_NPM"]], "brand_nuxt (viser.icon attribute)": [[32, "viser.Icon.BRAND_NUXT"]], "brand_nytimes (viser.icon attribute)": [[32, "viser.Icon.BRAND_NYTIMES"]], "brand_oauth (viser.icon attribute)": [[32, "viser.Icon.BRAND_OAUTH"]], "brand_office (viser.icon attribute)": [[32, "viser.Icon.BRAND_OFFICE"]], "brand_ok_ru (viser.icon attribute)": [[32, "viser.Icon.BRAND_OK_RU"]], "brand_onedrive (viser.icon attribute)": [[32, "viser.Icon.BRAND_ONEDRIVE"]], "brand_onlyfans (viser.icon attribute)": [[32, "viser.Icon.BRAND_ONLYFANS"]], "brand_openai (viser.icon attribute)": [[32, "viser.Icon.BRAND_OPENAI"]], "brand_openvpn (viser.icon attribute)": [[32, "viser.Icon.BRAND_OPENVPN"]], "brand_open_source (viser.icon attribute)": [[32, "viser.Icon.BRAND_OPEN_SOURCE"]], "brand_opera (viser.icon attribute)": [[32, "viser.Icon.BRAND_OPERA"]], "brand_pagekit (viser.icon attribute)": [[32, "viser.Icon.BRAND_PAGEKIT"]], "brand_patreon (viser.icon attribute)": [[32, "viser.Icon.BRAND_PATREON"]], "brand_paypal (viser.icon attribute)": [[32, "viser.Icon.BRAND_PAYPAL"]], "brand_paypal_filled (viser.icon attribute)": [[32, "viser.Icon.BRAND_PAYPAL_FILLED"]], "brand_paypay (viser.icon attribute)": [[32, "viser.Icon.BRAND_PAYPAY"]], "brand_peanut (viser.icon attribute)": [[32, "viser.Icon.BRAND_PEANUT"]], "brand_pepsi (viser.icon attribute)": [[32, "viser.Icon.BRAND_PEPSI"]], "brand_php (viser.icon attribute)": [[32, "viser.Icon.BRAND_PHP"]], "brand_picsart (viser.icon attribute)": [[32, "viser.Icon.BRAND_PICSART"]], "brand_pinterest (viser.icon attribute)": [[32, "viser.Icon.BRAND_PINTEREST"]], "brand_planetscale (viser.icon attribute)": [[32, "viser.Icon.BRAND_PLANETSCALE"]], "brand_pocket (viser.icon attribute)": [[32, "viser.Icon.BRAND_POCKET"]], "brand_polymer (viser.icon attribute)": [[32, "viser.Icon.BRAND_POLYMER"]], "brand_powershell (viser.icon attribute)": [[32, "viser.Icon.BRAND_POWERSHELL"]], "brand_prisma (viser.icon attribute)": [[32, "viser.Icon.BRAND_PRISMA"]], "brand_producthunt (viser.icon attribute)": [[32, "viser.Icon.BRAND_PRODUCTHUNT"]], "brand_pushbullet (viser.icon attribute)": [[32, "viser.Icon.BRAND_PUSHBULLET"]], "brand_pushover (viser.icon attribute)": [[32, "viser.Icon.BRAND_PUSHOVER"]], "brand_python (viser.icon attribute)": [[32, "viser.Icon.BRAND_PYTHON"]], "brand_qq (viser.icon attribute)": [[32, "viser.Icon.BRAND_QQ"]], "brand_radix_ui (viser.icon attribute)": [[32, "viser.Icon.BRAND_RADIX_UI"]], "brand_react (viser.icon attribute)": [[32, "viser.Icon.BRAND_REACT"]], "brand_react_native (viser.icon attribute)": [[32, "viser.Icon.BRAND_REACT_NATIVE"]], "brand_reason (viser.icon attribute)": [[32, "viser.Icon.BRAND_REASON"]], "brand_reddit (viser.icon attribute)": [[32, "viser.Icon.BRAND_REDDIT"]], "brand_redhat (viser.icon attribute)": [[32, "viser.Icon.BRAND_REDHAT"]], "brand_redux (viser.icon attribute)": [[32, "viser.Icon.BRAND_REDUX"]], "brand_revolut (viser.icon attribute)": [[32, "viser.Icon.BRAND_REVOLUT"]], "brand_rumble (viser.icon attribute)": [[32, "viser.Icon.BRAND_RUMBLE"]], "brand_rust (viser.icon attribute)": [[32, "viser.Icon.BRAND_RUST"]], "brand_safari (viser.icon attribute)": [[32, "viser.Icon.BRAND_SAFARI"]], "brand_samsungpass (viser.icon attribute)": [[32, "viser.Icon.BRAND_SAMSUNGPASS"]], "brand_sass (viser.icon attribute)": [[32, "viser.Icon.BRAND_SASS"]], "brand_sentry (viser.icon attribute)": [[32, "viser.Icon.BRAND_SENTRY"]], "brand_sharik (viser.icon attribute)": [[32, "viser.Icon.BRAND_SHARIK"]], "brand_shazam (viser.icon attribute)": [[32, "viser.Icon.BRAND_SHAZAM"]], "brand_shopee (viser.icon attribute)": [[32, "viser.Icon.BRAND_SHOPEE"]], "brand_sketch (viser.icon attribute)": [[32, "viser.Icon.BRAND_SKETCH"]], "brand_skype (viser.icon attribute)": [[32, "viser.Icon.BRAND_SKYPE"]], "brand_slack (viser.icon attribute)": [[32, "viser.Icon.BRAND_SLACK"]], "brand_snapchat (viser.icon attribute)": [[32, "viser.Icon.BRAND_SNAPCHAT"]], "brand_snapseed (viser.icon attribute)": [[32, "viser.Icon.BRAND_SNAPSEED"]], "brand_snowflake (viser.icon attribute)": [[32, "viser.Icon.BRAND_SNOWFLAKE"]], "brand_socket_io (viser.icon attribute)": [[32, "viser.Icon.BRAND_SOCKET_IO"]], "brand_solidjs (viser.icon attribute)": [[32, "viser.Icon.BRAND_SOLIDJS"]], "brand_soundcloud (viser.icon attribute)": [[32, "viser.Icon.BRAND_SOUNDCLOUD"]], "brand_spacehey (viser.icon attribute)": [[32, "viser.Icon.BRAND_SPACEHEY"]], "brand_speedtest (viser.icon attribute)": [[32, "viser.Icon.BRAND_SPEEDTEST"]], "brand_spotify (viser.icon attribute)": [[32, "viser.Icon.BRAND_SPOTIFY"]], "brand_stackoverflow (viser.icon attribute)": [[32, "viser.Icon.BRAND_STACKOVERFLOW"]], "brand_stackshare (viser.icon attribute)": [[32, "viser.Icon.BRAND_STACKSHARE"]], "brand_steam (viser.icon attribute)": [[32, "viser.Icon.BRAND_STEAM"]], "brand_storj (viser.icon attribute)": [[32, "viser.Icon.BRAND_STORJ"]], "brand_storybook (viser.icon attribute)": [[32, "viser.Icon.BRAND_STORYBOOK"]], "brand_storytel (viser.icon attribute)": [[32, "viser.Icon.BRAND_STORYTEL"]], "brand_strava (viser.icon attribute)": [[32, "viser.Icon.BRAND_STRAVA"]], "brand_stripe (viser.icon attribute)": [[32, "viser.Icon.BRAND_STRIPE"]], "brand_sublime_text (viser.icon attribute)": [[32, "viser.Icon.BRAND_SUBLIME_TEXT"]], "brand_sugarizer (viser.icon attribute)": [[32, "viser.Icon.BRAND_SUGARIZER"]], "brand_supabase (viser.icon attribute)": [[32, "viser.Icon.BRAND_SUPABASE"]], "brand_superhuman (viser.icon attribute)": [[32, "viser.Icon.BRAND_SUPERHUMAN"]], "brand_supernova (viser.icon attribute)": [[32, "viser.Icon.BRAND_SUPERNOVA"]], "brand_surfshark (viser.icon attribute)": [[32, "viser.Icon.BRAND_SURFSHARK"]], "brand_svelte (viser.icon attribute)": [[32, "viser.Icon.BRAND_SVELTE"]], "brand_swift (viser.icon attribute)": [[32, "viser.Icon.BRAND_SWIFT"]], "brand_symfony (viser.icon attribute)": [[32, "viser.Icon.BRAND_SYMFONY"]], "brand_tabler (viser.icon attribute)": [[32, "viser.Icon.BRAND_TABLER"]], "brand_tailwind (viser.icon attribute)": [[32, "viser.Icon.BRAND_TAILWIND"]], "brand_taobao (viser.icon attribute)": [[32, "viser.Icon.BRAND_TAOBAO"]], "brand_ted (viser.icon attribute)": [[32, "viser.Icon.BRAND_TED"]], "brand_telegram (viser.icon attribute)": [[32, "viser.Icon.BRAND_TELEGRAM"]], "brand_terraform (viser.icon attribute)": [[32, "viser.Icon.BRAND_TERRAFORM"]], "brand_tether (viser.icon attribute)": [[32, "viser.Icon.BRAND_TETHER"]], "brand_threejs (viser.icon attribute)": [[32, "viser.Icon.BRAND_THREEJS"]], "brand_tidal (viser.icon attribute)": [[32, "viser.Icon.BRAND_TIDAL"]], "brand_tiktok (viser.icon attribute)": [[32, "viser.Icon.BRAND_TIKTOK"]], "brand_tikto_filled (viser.icon attribute)": [[32, "viser.Icon.BRAND_TIKTO_FILLED"]], "brand_tinder (viser.icon attribute)": [[32, "viser.Icon.BRAND_TINDER"]], "brand_topbuzz (viser.icon attribute)": [[32, "viser.Icon.BRAND_TOPBUZZ"]], "brand_torchain (viser.icon attribute)": [[32, "viser.Icon.BRAND_TORCHAIN"]], "brand_toyota (viser.icon attribute)": [[32, "viser.Icon.BRAND_TOYOTA"]], "brand_trello (viser.icon attribute)": [[32, "viser.Icon.BRAND_TRELLO"]], "brand_tripadvisor (viser.icon attribute)": [[32, "viser.Icon.BRAND_TRIPADVISOR"]], "brand_tumblr (viser.icon attribute)": [[32, "viser.Icon.BRAND_TUMBLR"]], "brand_twilio (viser.icon attribute)": [[32, "viser.Icon.BRAND_TWILIO"]], "brand_twitch (viser.icon attribute)": [[32, "viser.Icon.BRAND_TWITCH"]], "brand_twitter (viser.icon attribute)": [[32, "viser.Icon.BRAND_TWITTER"]], "brand_twitter_filled (viser.icon attribute)": [[32, "viser.Icon.BRAND_TWITTER_FILLED"]], "brand_typescript (viser.icon attribute)": [[32, "viser.Icon.BRAND_TYPESCRIPT"]], "brand_uber (viser.icon attribute)": [[32, "viser.Icon.BRAND_UBER"]], "brand_ubuntu (viser.icon attribute)": [[32, "viser.Icon.BRAND_UBUNTU"]], "brand_unity (viser.icon attribute)": [[32, "viser.Icon.BRAND_UNITY"]], "brand_unsplash (viser.icon attribute)": [[32, "viser.Icon.BRAND_UNSPLASH"]], "brand_upwork (viser.icon attribute)": [[32, "viser.Icon.BRAND_UPWORK"]], "brand_valorant (viser.icon attribute)": [[32, "viser.Icon.BRAND_VALORANT"]], "brand_vercel (viser.icon attribute)": [[32, "viser.Icon.BRAND_VERCEL"]], "brand_vimeo (viser.icon attribute)": [[32, "viser.Icon.BRAND_VIMEO"]], "brand_vinted (viser.icon attribute)": [[32, "viser.Icon.BRAND_VINTED"]], "brand_visa (viser.icon attribute)": [[32, "viser.Icon.BRAND_VISA"]], "brand_visual_studio (viser.icon attribute)": [[32, "viser.Icon.BRAND_VISUAL_STUDIO"]], "brand_vite (viser.icon attribute)": [[32, "viser.Icon.BRAND_VITE"]], "brand_vivaldi (viser.icon attribute)": [[32, "viser.Icon.BRAND_VIVALDI"]], "brand_vk (viser.icon attribute)": [[32, "viser.Icon.BRAND_VK"]], "brand_vlc (viser.icon attribute)": [[32, "viser.Icon.BRAND_VLC"]], "brand_volkswagen (viser.icon attribute)": [[32, "viser.Icon.BRAND_VOLKSWAGEN"]], "brand_vsco (viser.icon attribute)": [[32, "viser.Icon.BRAND_VSCO"]], "brand_vscode (viser.icon attribute)": [[32, "viser.Icon.BRAND_VSCODE"]], "brand_vue (viser.icon attribute)": [[32, "viser.Icon.BRAND_VUE"]], "brand_walmart (viser.icon attribute)": [[32, "viser.Icon.BRAND_WALMART"]], "brand_waze (viser.icon attribute)": [[32, "viser.Icon.BRAND_WAZE"]], "brand_webflow (viser.icon attribute)": [[32, "viser.Icon.BRAND_WEBFLOW"]], "brand_wechat (viser.icon attribute)": [[32, "viser.Icon.BRAND_WECHAT"]], "brand_weibo (viser.icon attribute)": [[32, "viser.Icon.BRAND_WEIBO"]], "brand_whatsapp (viser.icon attribute)": [[32, "viser.Icon.BRAND_WHATSAPP"]], "brand_wikipedia (viser.icon attribute)": [[32, "viser.Icon.BRAND_WIKIPEDIA"]], "brand_windows (viser.icon attribute)": [[32, "viser.Icon.BRAND_WINDOWS"]], "brand_windy (viser.icon attribute)": [[32, "viser.Icon.BRAND_WINDY"]], "brand_wish (viser.icon attribute)": [[32, "viser.Icon.BRAND_WISH"]], "brand_wix (viser.icon attribute)": [[32, "viser.Icon.BRAND_WIX"]], "brand_wordpress (viser.icon attribute)": [[32, "viser.Icon.BRAND_WORDPRESS"]], "brand_xamarin (viser.icon attribute)": [[32, "viser.Icon.BRAND_XAMARIN"]], "brand_xbox (viser.icon attribute)": [[32, "viser.Icon.BRAND_XBOX"]], "brand_xing (viser.icon attribute)": [[32, "viser.Icon.BRAND_XING"]], "brand_yahoo (viser.icon attribute)": [[32, "viser.Icon.BRAND_YAHOO"]], "brand_yandex (viser.icon attribute)": [[32, "viser.Icon.BRAND_YANDEX"]], "brand_yatse (viser.icon attribute)": [[32, "viser.Icon.BRAND_YATSE"]], "brand_ycombinator (viser.icon attribute)": [[32, "viser.Icon.BRAND_YCOMBINATOR"]], "brand_youtube (viser.icon attribute)": [[32, "viser.Icon.BRAND_YOUTUBE"]], "brand_youtube_kids (viser.icon attribute)": [[32, "viser.Icon.BRAND_YOUTUBE_KIDS"]], "brand_zalando (viser.icon attribute)": [[32, "viser.Icon.BRAND_ZALANDO"]], "brand_zapier (viser.icon attribute)": [[32, "viser.Icon.BRAND_ZAPIER"]], "brand_zeit (viser.icon attribute)": [[32, "viser.Icon.BRAND_ZEIT"]], "brand_zhihu (viser.icon attribute)": [[32, "viser.Icon.BRAND_ZHIHU"]], "brand_zoom (viser.icon attribute)": [[32, "viser.Icon.BRAND_ZOOM"]], "brand_zulip (viser.icon attribute)": [[32, "viser.Icon.BRAND_ZULIP"]], "brand_zwift (viser.icon attribute)": [[32, "viser.Icon.BRAND_ZWIFT"]], "bread (viser.icon attribute)": [[32, "viser.Icon.BREAD"]], "bread_off (viser.icon attribute)": [[32, "viser.Icon.BREAD_OFF"]], "briefcase (viser.icon attribute)": [[32, "viser.Icon.BRIEFCASE"]], "briefcase_off (viser.icon attribute)": [[32, "viser.Icon.BRIEFCASE_OFF"]], "brightness (viser.icon attribute)": [[32, "viser.Icon.BRIGHTNESS"]], "brightness_2 (viser.icon attribute)": [[32, "viser.Icon.BRIGHTNESS_2"]], "brightness_down (viser.icon attribute)": [[32, "viser.Icon.BRIGHTNESS_DOWN"]], "brightness_half (viser.icon attribute)": [[32, "viser.Icon.BRIGHTNESS_HALF"]], "brightness_off (viser.icon attribute)": [[32, "viser.Icon.BRIGHTNESS_OFF"]], "brightness_up (viser.icon attribute)": [[32, "viser.Icon.BRIGHTNESS_UP"]], "broadcast (viser.icon attribute)": [[32, "viser.Icon.BROADCAST"]], "broadcast_off (viser.icon attribute)": [[32, "viser.Icon.BROADCAST_OFF"]], "browser (viser.icon attribute)": [[32, "viser.Icon.BROWSER"]], "browser_check (viser.icon attribute)": [[32, "viser.Icon.BROWSER_CHECK"]], "browser_off (viser.icon attribute)": [[32, "viser.Icon.BROWSER_OFF"]], "browser_plus (viser.icon attribute)": [[32, "viser.Icon.BROWSER_PLUS"]], "browser_x (viser.icon attribute)": [[32, "viser.Icon.BROWSER_X"]], "brush (viser.icon attribute)": [[32, "viser.Icon.BRUSH"]], "brush_off (viser.icon attribute)": [[32, "viser.Icon.BRUSH_OFF"]], "bucket (viser.icon attribute)": [[32, "viser.Icon.BUCKET"]], "bucket_droplet (viser.icon attribute)": [[32, "viser.Icon.BUCKET_DROPLET"]], "bucket_off (viser.icon attribute)": [[32, "viser.Icon.BUCKET_OFF"]], "bug (viser.icon attribute)": [[32, "viser.Icon.BUG"]], "bug_off (viser.icon attribute)": [[32, "viser.Icon.BUG_OFF"]], "building (viser.icon attribute)": [[32, "viser.Icon.BUILDING"]], "building_arch (viser.icon attribute)": [[32, "viser.Icon.BUILDING_ARCH"]], "building_bank (viser.icon attribute)": [[32, "viser.Icon.BUILDING_BANK"]], "building_bridge (viser.icon attribute)": [[32, "viser.Icon.BUILDING_BRIDGE"]], "building_bridge_2 (viser.icon attribute)": [[32, "viser.Icon.BUILDING_BRIDGE_2"]], "building_broadcast_tower (viser.icon attribute)": [[32, "viser.Icon.BUILDING_BROADCAST_TOWER"]], "building_carousel (viser.icon attribute)": [[32, "viser.Icon.BUILDING_CAROUSEL"]], "building_castle (viser.icon attribute)": [[32, "viser.Icon.BUILDING_CASTLE"]], "building_church (viser.icon attribute)": [[32, "viser.Icon.BUILDING_CHURCH"]], "building_circus (viser.icon attribute)": [[32, "viser.Icon.BUILDING_CIRCUS"]], "building_community (viser.icon attribute)": [[32, "viser.Icon.BUILDING_COMMUNITY"]], "building_cottage (viser.icon attribute)": [[32, "viser.Icon.BUILDING_COTTAGE"]], "building_estate (viser.icon attribute)": [[32, "viser.Icon.BUILDING_ESTATE"]], "building_factory (viser.icon attribute)": [[32, "viser.Icon.BUILDING_FACTORY"]], "building_factory_2 (viser.icon attribute)": [[32, "viser.Icon.BUILDING_FACTORY_2"]], "building_fortress (viser.icon attribute)": [[32, "viser.Icon.BUILDING_FORTRESS"]], "building_hospital (viser.icon attribute)": [[32, "viser.Icon.BUILDING_HOSPITAL"]], "building_lighthouse (viser.icon attribute)": [[32, "viser.Icon.BUILDING_LIGHTHOUSE"]], "building_monument (viser.icon attribute)": [[32, "viser.Icon.BUILDING_MONUMENT"]], "building_mosque (viser.icon attribute)": [[32, "viser.Icon.BUILDING_MOSQUE"]], "building_pavilion (viser.icon attribute)": [[32, "viser.Icon.BUILDING_PAVILION"]], "building_skyscraper (viser.icon attribute)": [[32, "viser.Icon.BUILDING_SKYSCRAPER"]], "building_stadium (viser.icon attribute)": [[32, "viser.Icon.BUILDING_STADIUM"]], "building_store (viser.icon attribute)": [[32, "viser.Icon.BUILDING_STORE"]], "building_tunnel (viser.icon attribute)": [[32, "viser.Icon.BUILDING_TUNNEL"]], "building_warehouse (viser.icon attribute)": [[32, "viser.Icon.BUILDING_WAREHOUSE"]], "building_wind_turbine (viser.icon attribute)": [[32, "viser.Icon.BUILDING_WIND_TURBINE"]], "bulb (viser.icon attribute)": [[32, "viser.Icon.BULB"]], "bulb_filled (viser.icon attribute)": [[32, "viser.Icon.BULB_FILLED"]], "bulb_off (viser.icon attribute)": [[32, "viser.Icon.BULB_OFF"]], "bulldozer (viser.icon attribute)": [[32, "viser.Icon.BULLDOZER"]], "bus (viser.icon attribute)": [[32, "viser.Icon.BUS"]], "businessplan (viser.icon attribute)": [[32, "viser.Icon.BUSINESSPLAN"]], "bus_off (viser.icon attribute)": [[32, "viser.Icon.BUS_OFF"]], "bus_stop (viser.icon attribute)": [[32, "viser.Icon.BUS_STOP"]], "butterfly (viser.icon attribute)": [[32, "viser.Icon.BUTTERFLY"]], "cactus (viser.icon attribute)": [[32, "viser.Icon.CACTUS"]], "cactus_off (viser.icon attribute)": [[32, "viser.Icon.CACTUS_OFF"]], "cake (viser.icon attribute)": [[32, "viser.Icon.CAKE"]], "cake_off (viser.icon attribute)": [[32, "viser.Icon.CAKE_OFF"]], "calculator (viser.icon attribute)": [[32, "viser.Icon.CALCULATOR"]], "calculator_off (viser.icon attribute)": [[32, "viser.Icon.CALCULATOR_OFF"]], "calendar (viser.icon attribute)": [[32, "viser.Icon.CALENDAR"]], "calendar_bolt (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_BOLT"]], "calendar_cancel (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_CANCEL"]], "calendar_check (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_CHECK"]], "calendar_code (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_CODE"]], "calendar_cog (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_COG"]], "calendar_dollar (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_DOLLAR"]], "calendar_down (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_DOWN"]], "calendar_due (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_DUE"]], "calendar_event (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_EVENT"]], "calendar_exclamation (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_EXCLAMATION"]], "calendar_heart (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_HEART"]], "calendar_minus (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_MINUS"]], "calendar_off (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_OFF"]], "calendar_pause (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_PAUSE"]], "calendar_pin (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_PIN"]], "calendar_plus (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_PLUS"]], "calendar_question (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_QUESTION"]], "calendar_repeat (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_REPEAT"]], "calendar_search (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_SEARCH"]], "calendar_share (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_SHARE"]], "calendar_star (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_STAR"]], "calendar_stats (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_STATS"]], "calendar_time (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_TIME"]], "calendar_up (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_UP"]], "calendar_x (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_X"]], "camera (viser.icon attribute)": [[32, "viser.Icon.CAMERA"]], "camera_bolt (viser.icon attribute)": [[32, "viser.Icon.CAMERA_BOLT"]], "camera_cancel (viser.icon attribute)": [[32, "viser.Icon.CAMERA_CANCEL"]], "camera_check (viser.icon attribute)": [[32, "viser.Icon.CAMERA_CHECK"]], "camera_code (viser.icon attribute)": [[32, "viser.Icon.CAMERA_CODE"]], "camera_cog (viser.icon attribute)": [[32, "viser.Icon.CAMERA_COG"]], "camera_dollar (viser.icon attribute)": [[32, "viser.Icon.CAMERA_DOLLAR"]], "camera_down (viser.icon attribute)": [[32, "viser.Icon.CAMERA_DOWN"]], "camera_exclamation (viser.icon attribute)": [[32, "viser.Icon.CAMERA_EXCLAMATION"]], "camera_filled (viser.icon attribute)": [[32, "viser.Icon.CAMERA_FILLED"]], "camera_heart (viser.icon attribute)": [[32, "viser.Icon.CAMERA_HEART"]], "camera_minus (viser.icon attribute)": [[32, "viser.Icon.CAMERA_MINUS"]], "camera_off (viser.icon attribute)": [[32, "viser.Icon.CAMERA_OFF"]], "camera_pause (viser.icon attribute)": [[32, "viser.Icon.CAMERA_PAUSE"]], "camera_pin (viser.icon attribute)": [[32, "viser.Icon.CAMERA_PIN"]], "camera_plus (viser.icon attribute)": [[32, "viser.Icon.CAMERA_PLUS"]], "camera_question (viser.icon attribute)": [[32, "viser.Icon.CAMERA_QUESTION"]], "camera_rotate (viser.icon attribute)": [[32, "viser.Icon.CAMERA_ROTATE"]], "camera_search (viser.icon attribute)": [[32, "viser.Icon.CAMERA_SEARCH"]], "camera_selfie (viser.icon attribute)": [[32, "viser.Icon.CAMERA_SELFIE"]], "camera_share (viser.icon attribute)": [[32, "viser.Icon.CAMERA_SHARE"]], "camera_star (viser.icon attribute)": [[32, "viser.Icon.CAMERA_STAR"]], "camera_up (viser.icon attribute)": [[32, "viser.Icon.CAMERA_UP"]], "camera_x (viser.icon attribute)": [[32, "viser.Icon.CAMERA_X"]], "camper (viser.icon attribute)": [[32, "viser.Icon.CAMPER"]], "campfire (viser.icon attribute)": [[32, "viser.Icon.CAMPFIRE"]], "candle (viser.icon attribute)": [[32, "viser.Icon.CANDLE"]], "candy (viser.icon attribute)": [[32, "viser.Icon.CANDY"]], "candy_off (viser.icon attribute)": [[32, "viser.Icon.CANDY_OFF"]], "cane (viser.icon attribute)": [[32, "viser.Icon.CANE"]], "cannabis (viser.icon attribute)": [[32, "viser.Icon.CANNABIS"]], "capsule (viser.icon attribute)": [[32, "viser.Icon.CAPSULE"]], "capsule_horizontal (viser.icon attribute)": [[32, "viser.Icon.CAPSULE_HORIZONTAL"]], "capture (viser.icon attribute)": [[32, "viser.Icon.CAPTURE"]], "capture_off (viser.icon attribute)": [[32, "viser.Icon.CAPTURE_OFF"]], "car (viser.icon attribute)": [[32, "viser.Icon.CAR"]], "caravan (viser.icon attribute)": [[32, "viser.Icon.CARAVAN"]], "cardboards (viser.icon attribute)": [[32, "viser.Icon.CARDBOARDS"]], "cardboards_off (viser.icon attribute)": [[32, "viser.Icon.CARDBOARDS_OFF"]], "cards (viser.icon attribute)": [[32, "viser.Icon.CARDS"]], "caret_down (viser.icon attribute)": [[32, "viser.Icon.CARET_DOWN"]], "caret_left (viser.icon attribute)": [[32, "viser.Icon.CARET_LEFT"]], "caret_right (viser.icon attribute)": [[32, "viser.Icon.CARET_RIGHT"]], "caret_up (viser.icon attribute)": [[32, "viser.Icon.CARET_UP"]], "carousel_horizontal (viser.icon attribute)": [[32, "viser.Icon.CAROUSEL_HORIZONTAL"]], "carousel_horizontal_filled (viser.icon attribute)": [[32, "viser.Icon.CAROUSEL_HORIZONTAL_FILLED"]], "carousel_vertical (viser.icon attribute)": [[32, "viser.Icon.CAROUSEL_VERTICAL"]], "carousel_vertical_filled (viser.icon attribute)": [[32, "viser.Icon.CAROUSEL_VERTICAL_FILLED"]], "carrot (viser.icon attribute)": [[32, "viser.Icon.CARROT"]], "carrot_off (viser.icon attribute)": [[32, "viser.Icon.CARROT_OFF"]], "car_crane (viser.icon attribute)": [[32, "viser.Icon.CAR_CRANE"]], "car_crash (viser.icon attribute)": [[32, "viser.Icon.CAR_CRASH"]], "car_off (viser.icon attribute)": [[32, "viser.Icon.CAR_OFF"]], "car_turbine (viser.icon attribute)": [[32, "viser.Icon.CAR_TURBINE"]], "cash (viser.icon attribute)": [[32, "viser.Icon.CASH"]], "cash_banknote (viser.icon attribute)": [[32, "viser.Icon.CASH_BANKNOTE"]], "cash_banknote_off (viser.icon attribute)": [[32, "viser.Icon.CASH_BANKNOTE_OFF"]], "cash_off (viser.icon attribute)": [[32, "viser.Icon.CASH_OFF"]], "cast (viser.icon attribute)": [[32, "viser.Icon.CAST"]], "cast_off (viser.icon attribute)": [[32, "viser.Icon.CAST_OFF"]], "cat (viser.icon attribute)": [[32, "viser.Icon.CAT"]], "category (viser.icon attribute)": [[32, "viser.Icon.CATEGORY"]], "category_2 (viser.icon attribute)": [[32, "viser.Icon.CATEGORY_2"]], "ce (viser.icon attribute)": [[32, "viser.Icon.CE"]], "cell (viser.icon attribute)": [[32, "viser.Icon.CELL"]], "cell_signal_1 (viser.icon attribute)": [[32, "viser.Icon.CELL_SIGNAL_1"]], "cell_signal_2 (viser.icon attribute)": [[32, "viser.Icon.CELL_SIGNAL_2"]], "cell_signal_3 (viser.icon attribute)": [[32, "viser.Icon.CELL_SIGNAL_3"]], "cell_signal_4 (viser.icon attribute)": [[32, "viser.Icon.CELL_SIGNAL_4"]], "cell_signal_5 (viser.icon attribute)": [[32, "viser.Icon.CELL_SIGNAL_5"]], "cell_signal_off (viser.icon attribute)": [[32, "viser.Icon.CELL_SIGNAL_OFF"]], "certificate (viser.icon attribute)": [[32, "viser.Icon.CERTIFICATE"]], "certificate_2 (viser.icon attribute)": [[32, "viser.Icon.CERTIFICATE_2"]], "certificate_2_off (viser.icon attribute)": [[32, "viser.Icon.CERTIFICATE_2_OFF"]], "certificate_off (viser.icon attribute)": [[32, "viser.Icon.CERTIFICATE_OFF"]], "ce_off (viser.icon attribute)": [[32, "viser.Icon.CE_OFF"]], "chair_director (viser.icon attribute)": [[32, "viser.Icon.CHAIR_DIRECTOR"]], "chalkboard (viser.icon attribute)": [[32, "viser.Icon.CHALKBOARD"]], "chalkboard_off (viser.icon attribute)": [[32, "viser.Icon.CHALKBOARD_OFF"]], "charging_pile (viser.icon attribute)": [[32, "viser.Icon.CHARGING_PILE"]], "chart_arcs (viser.icon attribute)": [[32, "viser.Icon.CHART_ARCS"]], "chart_arcs_3 (viser.icon attribute)": [[32, "viser.Icon.CHART_ARCS_3"]], "chart_area (viser.icon attribute)": [[32, "viser.Icon.CHART_AREA"]], "chart_area_filled (viser.icon attribute)": [[32, "viser.Icon.CHART_AREA_FILLED"]], "chart_area_line (viser.icon attribute)": [[32, "viser.Icon.CHART_AREA_LINE"]], "chart_area_line_filled (viser.icon attribute)": [[32, "viser.Icon.CHART_AREA_LINE_FILLED"]], "chart_arrows (viser.icon attribute)": [[32, "viser.Icon.CHART_ARROWS"]], "chart_arrows_vertical (viser.icon attribute)": [[32, "viser.Icon.CHART_ARROWS_VERTICAL"]], "chart_bar (viser.icon attribute)": [[32, "viser.Icon.CHART_BAR"]], "chart_bar_off (viser.icon attribute)": [[32, "viser.Icon.CHART_BAR_OFF"]], "chart_bubble (viser.icon attribute)": [[32, "viser.Icon.CHART_BUBBLE"]], "chart_bubble_filled (viser.icon attribute)": [[32, "viser.Icon.CHART_BUBBLE_FILLED"]], "chart_candle (viser.icon attribute)": [[32, "viser.Icon.CHART_CANDLE"]], "chart_candle_filled (viser.icon attribute)": [[32, "viser.Icon.CHART_CANDLE_FILLED"]], "chart_circles (viser.icon attribute)": [[32, "viser.Icon.CHART_CIRCLES"]], "chart_donut (viser.icon attribute)": [[32, "viser.Icon.CHART_DONUT"]], "chart_donut_2 (viser.icon attribute)": [[32, "viser.Icon.CHART_DONUT_2"]], "chart_donut_3 (viser.icon attribute)": [[32, "viser.Icon.CHART_DONUT_3"]], "chart_donut_4 (viser.icon attribute)": [[32, "viser.Icon.CHART_DONUT_4"]], "chart_donut_filled (viser.icon attribute)": [[32, "viser.Icon.CHART_DONUT_FILLED"]], "chart_dots (viser.icon attribute)": [[32, "viser.Icon.CHART_DOTS"]], "chart_dots_2 (viser.icon attribute)": [[32, "viser.Icon.CHART_DOTS_2"]], "chart_dots_3 (viser.icon attribute)": [[32, "viser.Icon.CHART_DOTS_3"]], "chart_grid_dots (viser.icon attribute)": [[32, "viser.Icon.CHART_GRID_DOTS"]], "chart_histogram (viser.icon attribute)": [[32, "viser.Icon.CHART_HISTOGRAM"]], "chart_infographic (viser.icon attribute)": [[32, "viser.Icon.CHART_INFOGRAPHIC"]], "chart_line (viser.icon attribute)": [[32, "viser.Icon.CHART_LINE"]], "chart_pie (viser.icon attribute)": [[32, "viser.Icon.CHART_PIE"]], "chart_pie_2 (viser.icon attribute)": [[32, "viser.Icon.CHART_PIE_2"]], "chart_pie_3 (viser.icon attribute)": [[32, "viser.Icon.CHART_PIE_3"]], "chart_pie_4 (viser.icon attribute)": [[32, "viser.Icon.CHART_PIE_4"]], "chart_pie_filled (viser.icon attribute)": [[32, "viser.Icon.CHART_PIE_FILLED"]], "chart_pie_off (viser.icon attribute)": [[32, "viser.Icon.CHART_PIE_OFF"]], "chart_ppf (viser.icon attribute)": [[32, "viser.Icon.CHART_PPF"]], "chart_radar (viser.icon attribute)": [[32, "viser.Icon.CHART_RADAR"]], "chart_sankey (viser.icon attribute)": [[32, "viser.Icon.CHART_SANKEY"]], "chart_treemap (viser.icon attribute)": [[32, "viser.Icon.CHART_TREEMAP"]], "check (viser.icon attribute)": [[32, "viser.Icon.CHECK"]], "checkbox (viser.icon attribute)": [[32, "viser.Icon.CHECKBOX"]], "checklist (viser.icon attribute)": [[32, "viser.Icon.CHECKLIST"]], "checks (viser.icon attribute)": [[32, "viser.Icon.CHECKS"]], "checkup_list (viser.icon attribute)": [[32, "viser.Icon.CHECKUP_LIST"]], "cheese (viser.icon attribute)": [[32, "viser.Icon.CHEESE"]], "chef_hat (viser.icon attribute)": [[32, "viser.Icon.CHEF_HAT"]], "chef_hat_off (viser.icon attribute)": [[32, "viser.Icon.CHEF_HAT_OFF"]], "cherry (viser.icon attribute)": [[32, "viser.Icon.CHERRY"]], "cherry_filled (viser.icon attribute)": [[32, "viser.Icon.CHERRY_FILLED"]], "chess (viser.icon attribute)": [[32, "viser.Icon.CHESS"]], "chess_bishop (viser.icon attribute)": [[32, "viser.Icon.CHESS_BISHOP"]], "chess_bishop_filled (viser.icon attribute)": [[32, "viser.Icon.CHESS_BISHOP_FILLED"]], "chess_filled (viser.icon attribute)": [[32, "viser.Icon.CHESS_FILLED"]], "chess_king (viser.icon attribute)": [[32, "viser.Icon.CHESS_KING"]], "chess_king_filled (viser.icon attribute)": [[32, "viser.Icon.CHESS_KING_FILLED"]], "chess_knight (viser.icon attribute)": [[32, "viser.Icon.CHESS_KNIGHT"]], "chess_knight_filled (viser.icon attribute)": [[32, "viser.Icon.CHESS_KNIGHT_FILLED"]], "chess_queen (viser.icon attribute)": [[32, "viser.Icon.CHESS_QUEEN"]], "chess_queen_filled (viser.icon attribute)": [[32, "viser.Icon.CHESS_QUEEN_FILLED"]], "chess_rook (viser.icon attribute)": [[32, "viser.Icon.CHESS_ROOK"]], "chess_rook_filled (viser.icon attribute)": [[32, "viser.Icon.CHESS_ROOK_FILLED"]], "chevrons_down (viser.icon attribute)": [[32, "viser.Icon.CHEVRONS_DOWN"]], "chevrons_down_left (viser.icon attribute)": [[32, "viser.Icon.CHEVRONS_DOWN_LEFT"]], "chevrons_down_right (viser.icon attribute)": [[32, "viser.Icon.CHEVRONS_DOWN_RIGHT"]], "chevrons_left (viser.icon attribute)": [[32, "viser.Icon.CHEVRONS_LEFT"]], "chevrons_right (viser.icon attribute)": [[32, "viser.Icon.CHEVRONS_RIGHT"]], "chevrons_up (viser.icon attribute)": [[32, "viser.Icon.CHEVRONS_UP"]], "chevrons_up_left (viser.icon attribute)": [[32, "viser.Icon.CHEVRONS_UP_LEFT"]], "chevrons_up_right (viser.icon attribute)": [[32, "viser.Icon.CHEVRONS_UP_RIGHT"]], "chevron_compact_down (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_COMPACT_DOWN"]], "chevron_compact_left (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_COMPACT_LEFT"]], "chevron_compact_right (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_COMPACT_RIGHT"]], "chevron_compact_up (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_COMPACT_UP"]], "chevron_down (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_DOWN"]], "chevron_down_left (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_DOWN_LEFT"]], "chevron_down_right (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_DOWN_RIGHT"]], "chevron_left (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_LEFT"]], "chevron_left_pipe (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_LEFT_PIPE"]], "chevron_right (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_RIGHT"]], "chevron_right_pipe (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_RIGHT_PIPE"]], "chevron_up (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_UP"]], "chevron_up_left (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_UP_LEFT"]], "chevron_up_right (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_UP_RIGHT"]], "chisel (viser.icon attribute)": [[32, "viser.Icon.CHISEL"]], "christmas_tree (viser.icon attribute)": [[32, "viser.Icon.CHRISTMAS_TREE"]], "christmas_tree_off (viser.icon attribute)": [[32, "viser.Icon.CHRISTMAS_TREE_OFF"]], "circle (viser.icon attribute)": [[32, "viser.Icon.CIRCLE"]], "circles (viser.icon attribute)": [[32, "viser.Icon.CIRCLES"]], "circles_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLES_FILLED"]], "circles_relation (viser.icon attribute)": [[32, "viser.Icon.CIRCLES_RELATION"]], "circle_0_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_0_FILLED"]], "circle_1_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_1_FILLED"]], "circle_2_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_2_FILLED"]], "circle_3_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_3_FILLED"]], "circle_4_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_4_FILLED"]], "circle_5_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_5_FILLED"]], "circle_6_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_6_FILLED"]], "circle_7_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_7_FILLED"]], "circle_8_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_8_FILLED"]], "circle_9_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_9_FILLED"]], "circle_arrow_down (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_DOWN"]], "circle_arrow_down_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_DOWN_FILLED"]], "circle_arrow_down_left (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_DOWN_LEFT"]], "circle_arrow_down_left_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_DOWN_LEFT_FILLED"]], "circle_arrow_down_right (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_DOWN_RIGHT"]], "circle_arrow_down_right_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_DOWN_RIGHT_FILLED"]], "circle_arrow_left (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_LEFT"]], "circle_arrow_left_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_LEFT_FILLED"]], "circle_arrow_right (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_RIGHT"]], "circle_arrow_right_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_RIGHT_FILLED"]], "circle_arrow_up (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_UP"]], "circle_arrow_up_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_UP_FILLED"]], "circle_arrow_up_left (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_UP_LEFT"]], "circle_arrow_up_left_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_UP_LEFT_FILLED"]], "circle_arrow_up_right (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_UP_RIGHT"]], "circle_arrow_up_right_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_UP_RIGHT_FILLED"]], "circle_caret_down (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CARET_DOWN"]], "circle_caret_left (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CARET_LEFT"]], "circle_caret_right (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CARET_RIGHT"]], "circle_caret_up (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CARET_UP"]], "circle_check (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CHECK"]], "circle_check_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CHECK_FILLED"]], "circle_chevrons_down (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CHEVRONS_DOWN"]], "circle_chevrons_left (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CHEVRONS_LEFT"]], "circle_chevrons_right (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CHEVRONS_RIGHT"]], "circle_chevrons_up (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CHEVRONS_UP"]], "circle_chevron_down (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CHEVRON_DOWN"]], "circle_chevron_left (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CHEVRON_LEFT"]], "circle_chevron_right (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CHEVRON_RIGHT"]], "circle_chevron_up (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CHEVRON_UP"]], "circle_dashed (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_DASHED"]], "circle_dot (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_DOT"]], "circle_dotted (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_DOTTED"]], "circle_dot_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_DOT_FILLED"]], "circle_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_FILLED"]], "circle_half (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_HALF"]], "circle_half_2 (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_HALF_2"]], "circle_half_vertical (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_HALF_VERTICAL"]], "circle_key (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_KEY"]], "circle_key_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_KEY_FILLED"]], "circle_letter_a (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_A"]], "circle_letter_b (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_B"]], "circle_letter_c (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_C"]], "circle_letter_d (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_D"]], "circle_letter_e (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_E"]], "circle_letter_f (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_F"]], "circle_letter_g (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_G"]], "circle_letter_h (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_H"]], "circle_letter_i (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_I"]], "circle_letter_j (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_J"]], "circle_letter_k (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_K"]], "circle_letter_l (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_L"]], "circle_letter_m (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_M"]], "circle_letter_n (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_N"]], "circle_letter_o (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_O"]], "circle_letter_p (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_P"]], "circle_letter_q (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_Q"]], "circle_letter_r (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_R"]], "circle_letter_s (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_S"]], "circle_letter_t (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_T"]], "circle_letter_u (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_U"]], "circle_letter_v (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_V"]], "circle_letter_w (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_W"]], "circle_letter_x (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_X"]], "circle_letter_y (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_Y"]], "circle_letter_z (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_Z"]], "circle_minus (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_MINUS"]], "circle_number_0 (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_NUMBER_0"]], "circle_number_1 (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_NUMBER_1"]], "circle_number_2 (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_NUMBER_2"]], "circle_number_3 (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_NUMBER_3"]], "circle_number_4 (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_NUMBER_4"]], "circle_number_5 (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_NUMBER_5"]], "circle_number_6 (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_NUMBER_6"]], "circle_number_7 (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_NUMBER_7"]], "circle_number_8 (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_NUMBER_8"]], "circle_number_9 (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_NUMBER_9"]], "circle_off (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_OFF"]], "circle_plus (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_PLUS"]], "circle_rectangle (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_RECTANGLE"]], "circle_rectangle_off (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_RECTANGLE_OFF"]], "circle_square (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_SQUARE"]], "circle_triangle (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_TRIANGLE"]], "circle_x (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_X"]], "circle_x_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_X_FILLED"]], "circuit_ammeter (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_AMMETER"]], "circuit_battery (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_BATTERY"]], "circuit_bulb (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_BULB"]], "circuit_capacitor (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_CAPACITOR"]], "circuit_capacitor_polarized (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_CAPACITOR_POLARIZED"]], "circuit_cell (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_CELL"]], "circuit_cell_plus (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_CELL_PLUS"]], "circuit_changeover (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_CHANGEOVER"]], "circuit_diode (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_DIODE"]], "circuit_diode_zener (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_DIODE_ZENER"]], "circuit_ground (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_GROUND"]], "circuit_ground_digital (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_GROUND_DIGITAL"]], "circuit_inductor (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_INDUCTOR"]], "circuit_motor (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_MOTOR"]], "circuit_pushbutton (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_PUSHBUTTON"]], "circuit_resistor (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_RESISTOR"]], "circuit_switch_closed (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_SWITCH_CLOSED"]], "circuit_switch_open (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_SWITCH_OPEN"]], "circuit_voltmeter (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_VOLTMETER"]], "clear_all (viser.icon attribute)": [[32, "viser.Icon.CLEAR_ALL"]], "clear_formatting (viser.icon attribute)": [[32, "viser.Icon.CLEAR_FORMATTING"]], "click (viser.icon attribute)": [[32, "viser.Icon.CLICK"]], "clipboard (viser.icon attribute)": [[32, "viser.Icon.CLIPBOARD"]], "clipboard_check (viser.icon attribute)": [[32, "viser.Icon.CLIPBOARD_CHECK"]], "clipboard_copy (viser.icon attribute)": [[32, "viser.Icon.CLIPBOARD_COPY"]], "clipboard_data (viser.icon attribute)": [[32, "viser.Icon.CLIPBOARD_DATA"]], "clipboard_heart (viser.icon attribute)": [[32, "viser.Icon.CLIPBOARD_HEART"]], "clipboard_list (viser.icon attribute)": [[32, "viser.Icon.CLIPBOARD_LIST"]], "clipboard_off (viser.icon attribute)": [[32, "viser.Icon.CLIPBOARD_OFF"]], "clipboard_plus (viser.icon attribute)": [[32, "viser.Icon.CLIPBOARD_PLUS"]], "clipboard_text (viser.icon attribute)": [[32, "viser.Icon.CLIPBOARD_TEXT"]], "clipboard_typography (viser.icon attribute)": [[32, "viser.Icon.CLIPBOARD_TYPOGRAPHY"]], "clipboard_x (viser.icon attribute)": [[32, "viser.Icon.CLIPBOARD_X"]], "clock (viser.icon attribute)": [[32, "viser.Icon.CLOCK"]], "clock_2 (viser.icon attribute)": [[32, "viser.Icon.CLOCK_2"]], "clock_bolt (viser.icon attribute)": [[32, "viser.Icon.CLOCK_BOLT"]], "clock_cancel (viser.icon attribute)": [[32, "viser.Icon.CLOCK_CANCEL"]], "clock_check (viser.icon attribute)": [[32, "viser.Icon.CLOCK_CHECK"]], "clock_code (viser.icon attribute)": [[32, "viser.Icon.CLOCK_CODE"]], "clock_cog (viser.icon attribute)": [[32, "viser.Icon.CLOCK_COG"]], "clock_dollar (viser.icon attribute)": [[32, "viser.Icon.CLOCK_DOLLAR"]], "clock_down (viser.icon attribute)": [[32, "viser.Icon.CLOCK_DOWN"]], "clock_edit (viser.icon attribute)": [[32, "viser.Icon.CLOCK_EDIT"]], "clock_exclamation (viser.icon attribute)": [[32, "viser.Icon.CLOCK_EXCLAMATION"]], "clock_filled (viser.icon attribute)": [[32, "viser.Icon.CLOCK_FILLED"]], "clock_heart (viser.icon attribute)": [[32, "viser.Icon.CLOCK_HEART"]], "clock_hour_1 (viser.icon attribute)": [[32, "viser.Icon.CLOCK_HOUR_1"]], "clock_hour_10 (viser.icon attribute)": [[32, "viser.Icon.CLOCK_HOUR_10"]], "clock_hour_11 (viser.icon attribute)": [[32, "viser.Icon.CLOCK_HOUR_11"]], "clock_hour_12 (viser.icon attribute)": [[32, "viser.Icon.CLOCK_HOUR_12"]], "clock_hour_2 (viser.icon attribute)": [[32, "viser.Icon.CLOCK_HOUR_2"]], "clock_hour_3 (viser.icon attribute)": [[32, "viser.Icon.CLOCK_HOUR_3"]], "clock_hour_4 (viser.icon attribute)": [[32, "viser.Icon.CLOCK_HOUR_4"]], "clock_hour_5 (viser.icon attribute)": [[32, "viser.Icon.CLOCK_HOUR_5"]], "clock_hour_6 (viser.icon attribute)": [[32, "viser.Icon.CLOCK_HOUR_6"]], "clock_hour_7 (viser.icon attribute)": [[32, "viser.Icon.CLOCK_HOUR_7"]], "clock_hour_8 (viser.icon attribute)": [[32, "viser.Icon.CLOCK_HOUR_8"]], "clock_hour_9 (viser.icon attribute)": [[32, "viser.Icon.CLOCK_HOUR_9"]], "clock_minus (viser.icon attribute)": [[32, "viser.Icon.CLOCK_MINUS"]], "clock_off (viser.icon attribute)": [[32, "viser.Icon.CLOCK_OFF"]], "clock_pause (viser.icon attribute)": [[32, "viser.Icon.CLOCK_PAUSE"]], "clock_pin (viser.icon attribute)": [[32, "viser.Icon.CLOCK_PIN"]], "clock_play (viser.icon attribute)": [[32, "viser.Icon.CLOCK_PLAY"]], "clock_plus (viser.icon attribute)": [[32, "viser.Icon.CLOCK_PLUS"]], "clock_question (viser.icon attribute)": [[32, "viser.Icon.CLOCK_QUESTION"]], "clock_record (viser.icon attribute)": [[32, "viser.Icon.CLOCK_RECORD"]], "clock_search (viser.icon attribute)": [[32, "viser.Icon.CLOCK_SEARCH"]], "clock_share (viser.icon attribute)": [[32, "viser.Icon.CLOCK_SHARE"]], "clock_shield (viser.icon attribute)": [[32, "viser.Icon.CLOCK_SHIELD"]], "clock_star (viser.icon attribute)": [[32, "viser.Icon.CLOCK_STAR"]], "clock_stop (viser.icon attribute)": [[32, "viser.Icon.CLOCK_STOP"]], "clock_up (viser.icon attribute)": [[32, "viser.Icon.CLOCK_UP"]], "clock_x (viser.icon attribute)": [[32, "viser.Icon.CLOCK_X"]], "clothes_rack (viser.icon attribute)": [[32, "viser.Icon.CLOTHES_RACK"]], "clothes_rack_off (viser.icon attribute)": [[32, "viser.Icon.CLOTHES_RACK_OFF"]], "cloud (viser.icon attribute)": [[32, "viser.Icon.CLOUD"]], "cloud_bolt (viser.icon attribute)": [[32, "viser.Icon.CLOUD_BOLT"]], "cloud_cancel (viser.icon attribute)": [[32, "viser.Icon.CLOUD_CANCEL"]], "cloud_check (viser.icon attribute)": [[32, "viser.Icon.CLOUD_CHECK"]], "cloud_code (viser.icon attribute)": [[32, "viser.Icon.CLOUD_CODE"]], "cloud_cog (viser.icon attribute)": [[32, "viser.Icon.CLOUD_COG"]], "cloud_computing (viser.icon attribute)": [[32, "viser.Icon.CLOUD_COMPUTING"]], "cloud_data_connection (viser.icon attribute)": [[32, "viser.Icon.CLOUD_DATA_CONNECTION"]], "cloud_dollar (viser.icon attribute)": [[32, "viser.Icon.CLOUD_DOLLAR"]], "cloud_down (viser.icon attribute)": [[32, "viser.Icon.CLOUD_DOWN"]], "cloud_download (viser.icon attribute)": [[32, "viser.Icon.CLOUD_DOWNLOAD"]], "cloud_exclamation (viser.icon attribute)": [[32, "viser.Icon.CLOUD_EXCLAMATION"]], "cloud_filled (viser.icon attribute)": [[32, "viser.Icon.CLOUD_FILLED"]], "cloud_fog (viser.icon attribute)": [[32, "viser.Icon.CLOUD_FOG"]], "cloud_heart (viser.icon attribute)": [[32, "viser.Icon.CLOUD_HEART"]], "cloud_lock (viser.icon attribute)": [[32, "viser.Icon.CLOUD_LOCK"]], "cloud_lock_open (viser.icon attribute)": [[32, "viser.Icon.CLOUD_LOCK_OPEN"]], "cloud_minus (viser.icon attribute)": [[32, "viser.Icon.CLOUD_MINUS"]], "cloud_off (viser.icon attribute)": [[32, "viser.Icon.CLOUD_OFF"]], "cloud_pause (viser.icon attribute)": [[32, "viser.Icon.CLOUD_PAUSE"]], "cloud_pin (viser.icon attribute)": [[32, "viser.Icon.CLOUD_PIN"]], "cloud_plus (viser.icon attribute)": [[32, "viser.Icon.CLOUD_PLUS"]], "cloud_question (viser.icon attribute)": [[32, "viser.Icon.CLOUD_QUESTION"]], "cloud_rain (viser.icon attribute)": [[32, "viser.Icon.CLOUD_RAIN"]], "cloud_search (viser.icon attribute)": [[32, "viser.Icon.CLOUD_SEARCH"]], "cloud_share (viser.icon attribute)": [[32, "viser.Icon.CLOUD_SHARE"]], "cloud_snow (viser.icon attribute)": [[32, "viser.Icon.CLOUD_SNOW"]], "cloud_star (viser.icon attribute)": [[32, "viser.Icon.CLOUD_STAR"]], "cloud_storm (viser.icon attribute)": [[32, "viser.Icon.CLOUD_STORM"]], "cloud_up (viser.icon attribute)": [[32, "viser.Icon.CLOUD_UP"]], "cloud_upload (viser.icon attribute)": [[32, "viser.Icon.CLOUD_UPLOAD"]], "cloud_x (viser.icon attribute)": [[32, "viser.Icon.CLOUD_X"]], "clover (viser.icon attribute)": [[32, "viser.Icon.CLOVER"]], "clover_2 (viser.icon attribute)": [[32, "viser.Icon.CLOVER_2"]], "clubs (viser.icon attribute)": [[32, "viser.Icon.CLUBS"]], "clubs_filled (viser.icon attribute)": [[32, "viser.Icon.CLUBS_FILLED"]], "code (viser.icon attribute)": [[32, "viser.Icon.CODE"]], "code_asterix (viser.icon attribute)": [[32, "viser.Icon.CODE_ASTERIX"]], "code_circle (viser.icon attribute)": [[32, "viser.Icon.CODE_CIRCLE"]], "code_circle_2 (viser.icon attribute)": [[32, "viser.Icon.CODE_CIRCLE_2"]], "code_dots (viser.icon attribute)": [[32, "viser.Icon.CODE_DOTS"]], "code_minus (viser.icon attribute)": [[32, "viser.Icon.CODE_MINUS"]], "code_off (viser.icon attribute)": [[32, "viser.Icon.CODE_OFF"]], "code_plus (viser.icon attribute)": [[32, "viser.Icon.CODE_PLUS"]], "coffee (viser.icon attribute)": [[32, "viser.Icon.COFFEE"]], "coffee_off (viser.icon attribute)": [[32, "viser.Icon.COFFEE_OFF"]], "coffin (viser.icon attribute)": [[32, "viser.Icon.COFFIN"]], "coin (viser.icon attribute)": [[32, "viser.Icon.COIN"]], "coins (viser.icon attribute)": [[32, "viser.Icon.COINS"]], "coin_bitcoin (viser.icon attribute)": [[32, "viser.Icon.COIN_BITCOIN"]], "coin_euro (viser.icon attribute)": [[32, "viser.Icon.COIN_EURO"]], "coin_monero (viser.icon attribute)": [[32, "viser.Icon.COIN_MONERO"]], "coin_off (viser.icon attribute)": [[32, "viser.Icon.COIN_OFF"]], "coin_pound (viser.icon attribute)": [[32, "viser.Icon.COIN_POUND"]], "coin_rupee (viser.icon attribute)": [[32, "viser.Icon.COIN_RUPEE"]], "coin_yen (viser.icon attribute)": [[32, "viser.Icon.COIN_YEN"]], "coin_yuan (viser.icon attribute)": [[32, "viser.Icon.COIN_YUAN"]], "color_filter (viser.icon attribute)": [[32, "viser.Icon.COLOR_FILTER"]], "color_picker (viser.icon attribute)": [[32, "viser.Icon.COLOR_PICKER"]], "color_picker_off (viser.icon attribute)": [[32, "viser.Icon.COLOR_PICKER_OFF"]], "color_swatch (viser.icon attribute)": [[32, "viser.Icon.COLOR_SWATCH"]], "color_swatch_off (viser.icon attribute)": [[32, "viser.Icon.COLOR_SWATCH_OFF"]], "columns (viser.icon attribute)": [[32, "viser.Icon.COLUMNS"]], "columns_1 (viser.icon attribute)": [[32, "viser.Icon.COLUMNS_1"]], "columns_2 (viser.icon attribute)": [[32, "viser.Icon.COLUMNS_2"]], "columns_3 (viser.icon attribute)": [[32, "viser.Icon.COLUMNS_3"]], "columns_off (viser.icon attribute)": [[32, "viser.Icon.COLUMNS_OFF"]], "column_insert_left (viser.icon attribute)": [[32, "viser.Icon.COLUMN_INSERT_LEFT"]], "column_insert_right (viser.icon attribute)": [[32, "viser.Icon.COLUMN_INSERT_RIGHT"]], "column_remove (viser.icon attribute)": [[32, "viser.Icon.COLUMN_REMOVE"]], "comet (viser.icon attribute)": [[32, "viser.Icon.COMET"]], "command (viser.icon attribute)": [[32, "viser.Icon.COMMAND"]], "command_off (viser.icon attribute)": [[32, "viser.Icon.COMMAND_OFF"]], "compass (viser.icon attribute)": [[32, "viser.Icon.COMPASS"]], "compass_off (viser.icon attribute)": [[32, "viser.Icon.COMPASS_OFF"]], "components (viser.icon attribute)": [[32, "viser.Icon.COMPONENTS"]], "components_off (viser.icon attribute)": [[32, "viser.Icon.COMPONENTS_OFF"]], "cone (viser.icon attribute)": [[32, "viser.Icon.CONE"]], "cone_2 (viser.icon attribute)": [[32, "viser.Icon.CONE_2"]], "cone_off (viser.icon attribute)": [[32, "viser.Icon.CONE_OFF"]], "cone_plus (viser.icon attribute)": [[32, "viser.Icon.CONE_PLUS"]], "confetti (viser.icon attribute)": [[32, "viser.Icon.CONFETTI"]], "confetti_off (viser.icon attribute)": [[32, "viser.Icon.CONFETTI_OFF"]], "confucius (viser.icon attribute)": [[32, "viser.Icon.CONFUCIUS"]], "container (viser.icon attribute)": [[32, "viser.Icon.CONTAINER"]], "container_off (viser.icon attribute)": [[32, "viser.Icon.CONTAINER_OFF"]], "contrast (viser.icon attribute)": [[32, "viser.Icon.CONTRAST"]], "contrast_2 (viser.icon attribute)": [[32, "viser.Icon.CONTRAST_2"]], "contrast_2_off (viser.icon attribute)": [[32, "viser.Icon.CONTRAST_2_OFF"]], "contrast_off (viser.icon attribute)": [[32, "viser.Icon.CONTRAST_OFF"]], "cooker (viser.icon attribute)": [[32, "viser.Icon.COOKER"]], "cookie (viser.icon attribute)": [[32, "viser.Icon.COOKIE"]], "cookie_man (viser.icon attribute)": [[32, "viser.Icon.COOKIE_MAN"]], "cookie_off (viser.icon attribute)": [[32, "viser.Icon.COOKIE_OFF"]], "copy (viser.icon attribute)": [[32, "viser.Icon.COPY"]], "copyleft (viser.icon attribute)": [[32, "viser.Icon.COPYLEFT"]], "copyleft_filled (viser.icon attribute)": [[32, "viser.Icon.COPYLEFT_FILLED"]], "copyleft_off (viser.icon attribute)": [[32, "viser.Icon.COPYLEFT_OFF"]], "copyright (viser.icon attribute)": [[32, "viser.Icon.COPYRIGHT"]], "copyright_filled (viser.icon attribute)": [[32, "viser.Icon.COPYRIGHT_FILLED"]], "copyright_off (viser.icon attribute)": [[32, "viser.Icon.COPYRIGHT_OFF"]], "copy_off (viser.icon attribute)": [[32, "viser.Icon.COPY_OFF"]], "corner_down_left (viser.icon attribute)": [[32, "viser.Icon.CORNER_DOWN_LEFT"]], "corner_down_left_double (viser.icon attribute)": [[32, "viser.Icon.CORNER_DOWN_LEFT_DOUBLE"]], "corner_down_right (viser.icon attribute)": [[32, "viser.Icon.CORNER_DOWN_RIGHT"]], "corner_down_right_double (viser.icon attribute)": [[32, "viser.Icon.CORNER_DOWN_RIGHT_DOUBLE"]], "corner_left_down (viser.icon attribute)": [[32, "viser.Icon.CORNER_LEFT_DOWN"]], "corner_left_down_double (viser.icon attribute)": [[32, "viser.Icon.CORNER_LEFT_DOWN_DOUBLE"]], "corner_left_up (viser.icon attribute)": [[32, "viser.Icon.CORNER_LEFT_UP"]], "corner_left_up_double (viser.icon attribute)": [[32, "viser.Icon.CORNER_LEFT_UP_DOUBLE"]], "corner_right_down (viser.icon attribute)": [[32, "viser.Icon.CORNER_RIGHT_DOWN"]], "corner_right_down_double (viser.icon attribute)": [[32, "viser.Icon.CORNER_RIGHT_DOWN_DOUBLE"]], "corner_right_up (viser.icon attribute)": [[32, "viser.Icon.CORNER_RIGHT_UP"]], "corner_right_up_double (viser.icon attribute)": [[32, "viser.Icon.CORNER_RIGHT_UP_DOUBLE"]], "corner_up_left (viser.icon attribute)": [[32, "viser.Icon.CORNER_UP_LEFT"]], "corner_up_left_double (viser.icon attribute)": [[32, "viser.Icon.CORNER_UP_LEFT_DOUBLE"]], "corner_up_right (viser.icon attribute)": [[32, "viser.Icon.CORNER_UP_RIGHT"]], "corner_up_right_double (viser.icon attribute)": [[32, "viser.Icon.CORNER_UP_RIGHT_DOUBLE"]], "cpu (viser.icon attribute)": [[32, "viser.Icon.CPU"]], "cpu_2 (viser.icon attribute)": [[32, "viser.Icon.CPU_2"]], "cpu_off (viser.icon attribute)": [[32, "viser.Icon.CPU_OFF"]], "crane (viser.icon attribute)": [[32, "viser.Icon.CRANE"]], "crane_off (viser.icon attribute)": [[32, "viser.Icon.CRANE_OFF"]], "creative_commons (viser.icon attribute)": [[32, "viser.Icon.CREATIVE_COMMONS"]], "creative_commons_by (viser.icon attribute)": [[32, "viser.Icon.CREATIVE_COMMONS_BY"]], "creative_commons_nc (viser.icon attribute)": [[32, "viser.Icon.CREATIVE_COMMONS_NC"]], "creative_commons_nd (viser.icon attribute)": [[32, "viser.Icon.CREATIVE_COMMONS_ND"]], "creative_commons_off (viser.icon attribute)": [[32, "viser.Icon.CREATIVE_COMMONS_OFF"]], "creative_commons_sa (viser.icon attribute)": [[32, "viser.Icon.CREATIVE_COMMONS_SA"]], "creative_commons_zero (viser.icon attribute)": [[32, "viser.Icon.CREATIVE_COMMONS_ZERO"]], "credit_card (viser.icon attribute)": [[32, "viser.Icon.CREDIT_CARD"]], "credit_card_off (viser.icon attribute)": [[32, "viser.Icon.CREDIT_CARD_OFF"]], "cricket (viser.icon attribute)": [[32, "viser.Icon.CRICKET"]], "crop (viser.icon attribute)": [[32, "viser.Icon.CROP"]], "cross (viser.icon attribute)": [[32, "viser.Icon.CROSS"]], "crosshair (viser.icon attribute)": [[32, "viser.Icon.CROSSHAIR"]], "cross_filled (viser.icon attribute)": [[32, "viser.Icon.CROSS_FILLED"]], "cross_off (viser.icon attribute)": [[32, "viser.Icon.CROSS_OFF"]], "crown (viser.icon attribute)": [[32, "viser.Icon.CROWN"]], "crown_off (viser.icon attribute)": [[32, "viser.Icon.CROWN_OFF"]], "crutches (viser.icon attribute)": [[32, "viser.Icon.CRUTCHES"]], "crutches_off (viser.icon attribute)": [[32, "viser.Icon.CRUTCHES_OFF"]], "crystal_ball (viser.icon attribute)": [[32, "viser.Icon.CRYSTAL_BALL"]], "csv (viser.icon attribute)": [[32, "viser.Icon.CSV"]], "cube (viser.icon attribute)": [[32, "viser.Icon.CUBE"]], "cube_off (viser.icon attribute)": [[32, "viser.Icon.CUBE_OFF"]], "cube_plus (viser.icon attribute)": [[32, "viser.Icon.CUBE_PLUS"]], "cube_send (viser.icon attribute)": [[32, "viser.Icon.CUBE_SEND"]], "cube_unfolded (viser.icon attribute)": [[32, "viser.Icon.CUBE_UNFOLDED"]], "cup (viser.icon attribute)": [[32, "viser.Icon.CUP"]], "cup_off (viser.icon attribute)": [[32, "viser.Icon.CUP_OFF"]], "curling (viser.icon attribute)": [[32, "viser.Icon.CURLING"]], "curly_loop (viser.icon attribute)": [[32, "viser.Icon.CURLY_LOOP"]], "currency (viser.icon attribute)": [[32, "viser.Icon.CURRENCY"]], "currency_afghani (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_AFGHANI"]], "currency_bahraini (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_BAHRAINI"]], "currency_baht (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_BAHT"]], "currency_bitcoin (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_BITCOIN"]], "currency_cent (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_CENT"]], "currency_dinar (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_DINAR"]], "currency_dirham (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_DIRHAM"]], "currency_dogecoin (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_DOGECOIN"]], "currency_dollar (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_DOLLAR"]], "currency_dollar_australian (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_DOLLAR_AUSTRALIAN"]], "currency_dollar_brunei (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_DOLLAR_BRUNEI"]], "currency_dollar_canadian (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_DOLLAR_CANADIAN"]], "currency_dollar_guyanese (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_DOLLAR_GUYANESE"]], "currency_dollar_off (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_DOLLAR_OFF"]], "currency_dollar_singapore (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_DOLLAR_SINGAPORE"]], "currency_dollar_zimbabwean (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_DOLLAR_ZIMBABWEAN"]], "currency_dong (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_DONG"]], "currency_dram (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_DRAM"]], "currency_ethereum (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_ETHEREUM"]], "currency_euro (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_EURO"]], "currency_euro_off (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_EURO_OFF"]], "currency_florin (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_FLORIN"]], "currency_forint (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_FORINT"]], "currency_frank (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_FRANK"]], "currency_guarani (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_GUARANI"]], "currency_hryvnia (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_HRYVNIA"]], "currency_iranian_rial (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_IRANIAN_RIAL"]], "currency_kip (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_KIP"]], "currency_krone_czech (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_KRONE_CZECH"]], "currency_krone_danish (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_KRONE_DANISH"]], "currency_krone_swedish (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_KRONE_SWEDISH"]], "currency_lari (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_LARI"]], "currency_leu (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_LEU"]], "currency_lira (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_LIRA"]], "currency_litecoin (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_LITECOIN"]], "currency_lyd (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_LYD"]], "currency_manat (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_MANAT"]], "currency_monero (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_MONERO"]], "currency_naira (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_NAIRA"]], "currency_nano (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_NANO"]], "currency_off (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_OFF"]], "currency_paanga (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_PAANGA"]], "currency_peso (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_PESO"]], "currency_pound (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_POUND"]], "currency_pound_off (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_POUND_OFF"]], "currency_quetzal (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_QUETZAL"]], "currency_real (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_REAL"]], "currency_renminbi (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_RENMINBI"]], "currency_ripple (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_RIPPLE"]], "currency_riyal (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_RIYAL"]], "currency_rubel (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_RUBEL"]], "currency_rufiyaa (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_RUFIYAA"]], "currency_rupee (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_RUPEE"]], "currency_rupee_nepalese (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_RUPEE_NEPALESE"]], "currency_shekel (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_SHEKEL"]], "currency_solana (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_SOLANA"]], "currency_som (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_SOM"]], "currency_taka (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_TAKA"]], "currency_tenge (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_TENGE"]], "currency_tugrik (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_TUGRIK"]], "currency_won (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_WON"]], "currency_yen (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_YEN"]], "currency_yen_off (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_YEN_OFF"]], "currency_yuan (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_YUAN"]], "currency_zloty (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_ZLOTY"]], "current_location (viser.icon attribute)": [[32, "viser.Icon.CURRENT_LOCATION"]], "current_location_off (viser.icon attribute)": [[32, "viser.Icon.CURRENT_LOCATION_OFF"]], "cursor_off (viser.icon attribute)": [[32, "viser.Icon.CURSOR_OFF"]], "cursor_text (viser.icon attribute)": [[32, "viser.Icon.CURSOR_TEXT"]], "cut (viser.icon attribute)": [[32, "viser.Icon.CUT"]], "cylinder (viser.icon attribute)": [[32, "viser.Icon.CYLINDER"]], "cylinder_off (viser.icon attribute)": [[32, "viser.Icon.CYLINDER_OFF"]], "cylinder_plus (viser.icon attribute)": [[32, "viser.Icon.CYLINDER_PLUS"]], "dashboard (viser.icon attribute)": [[32, "viser.Icon.DASHBOARD"]], "dashboard_off (viser.icon attribute)": [[32, "viser.Icon.DASHBOARD_OFF"]], "database (viser.icon attribute)": [[32, "viser.Icon.DATABASE"]], "database_cog (viser.icon attribute)": [[32, "viser.Icon.DATABASE_COG"]], "database_dollar (viser.icon attribute)": [[32, "viser.Icon.DATABASE_DOLLAR"]], "database_edit (viser.icon attribute)": [[32, "viser.Icon.DATABASE_EDIT"]], "database_exclamation (viser.icon attribute)": [[32, "viser.Icon.DATABASE_EXCLAMATION"]], "database_export (viser.icon attribute)": [[32, "viser.Icon.DATABASE_EXPORT"]], "database_heart (viser.icon attribute)": [[32, "viser.Icon.DATABASE_HEART"]], "database_import (viser.icon attribute)": [[32, "viser.Icon.DATABASE_IMPORT"]], "database_leak (viser.icon attribute)": [[32, "viser.Icon.DATABASE_LEAK"]], "database_minus (viser.icon attribute)": [[32, "viser.Icon.DATABASE_MINUS"]], "database_off (viser.icon attribute)": [[32, "viser.Icon.DATABASE_OFF"]], "database_plus (viser.icon attribute)": [[32, "viser.Icon.DATABASE_PLUS"]], "database_search (viser.icon attribute)": [[32, "viser.Icon.DATABASE_SEARCH"]], "database_share (viser.icon attribute)": [[32, "viser.Icon.DATABASE_SHARE"]], "database_star (viser.icon attribute)": [[32, "viser.Icon.DATABASE_STAR"]], "database_x (viser.icon attribute)": [[32, "viser.Icon.DATABASE_X"]], "decimal (viser.icon attribute)": [[32, "viser.Icon.DECIMAL"]], "deer (viser.icon attribute)": [[32, "viser.Icon.DEER"]], "delta (viser.icon attribute)": [[32, "viser.Icon.DELTA"]], "dental (viser.icon attribute)": [[32, "viser.Icon.DENTAL"]], "dental_broken (viser.icon attribute)": [[32, "viser.Icon.DENTAL_BROKEN"]], "dental_off (viser.icon attribute)": [[32, "viser.Icon.DENTAL_OFF"]], "deselect (viser.icon attribute)": [[32, "viser.Icon.DESELECT"]], "details (viser.icon attribute)": [[32, "viser.Icon.DETAILS"]], "details_off (viser.icon attribute)": [[32, "viser.Icon.DETAILS_OFF"]], "devices (viser.icon attribute)": [[32, "viser.Icon.DEVICES"]], "devices_2 (viser.icon attribute)": [[32, "viser.Icon.DEVICES_2"]], "devices_bolt (viser.icon attribute)": [[32, "viser.Icon.DEVICES_BOLT"]], "devices_cancel (viser.icon attribute)": [[32, "viser.Icon.DEVICES_CANCEL"]], "devices_check (viser.icon attribute)": [[32, "viser.Icon.DEVICES_CHECK"]], "devices_code (viser.icon attribute)": [[32, "viser.Icon.DEVICES_CODE"]], "devices_cog (viser.icon attribute)": [[32, "viser.Icon.DEVICES_COG"]], "devices_dollar (viser.icon attribute)": [[32, "viser.Icon.DEVICES_DOLLAR"]], "devices_down (viser.icon attribute)": [[32, "viser.Icon.DEVICES_DOWN"]], "devices_exclamation (viser.icon attribute)": [[32, "viser.Icon.DEVICES_EXCLAMATION"]], "devices_heart (viser.icon attribute)": [[32, "viser.Icon.DEVICES_HEART"]], "devices_minus (viser.icon attribute)": [[32, "viser.Icon.DEVICES_MINUS"]], "devices_off (viser.icon attribute)": [[32, "viser.Icon.DEVICES_OFF"]], "devices_pause (viser.icon attribute)": [[32, "viser.Icon.DEVICES_PAUSE"]], "devices_pc (viser.icon attribute)": [[32, "viser.Icon.DEVICES_PC"]], "devices_pc_off (viser.icon attribute)": [[32, "viser.Icon.DEVICES_PC_OFF"]], "devices_pin (viser.icon attribute)": [[32, "viser.Icon.DEVICES_PIN"]], "devices_plus (viser.icon attribute)": [[32, "viser.Icon.DEVICES_PLUS"]], "devices_question (viser.icon attribute)": [[32, "viser.Icon.DEVICES_QUESTION"]], "devices_search (viser.icon attribute)": [[32, "viser.Icon.DEVICES_SEARCH"]], "devices_share (viser.icon attribute)": [[32, "viser.Icon.DEVICES_SHARE"]], "devices_star (viser.icon attribute)": [[32, "viser.Icon.DEVICES_STAR"]], "devices_up (viser.icon attribute)": [[32, "viser.Icon.DEVICES_UP"]], "devices_x (viser.icon attribute)": [[32, "viser.Icon.DEVICES_X"]], "device_airpods (viser.icon attribute)": [[32, "viser.Icon.DEVICE_AIRPODS"]], "device_airpods_case (viser.icon attribute)": [[32, "viser.Icon.DEVICE_AIRPODS_CASE"]], "device_airtag (viser.icon attribute)": [[32, "viser.Icon.DEVICE_AIRTAG"]], "device_analytics (viser.icon attribute)": [[32, "viser.Icon.DEVICE_ANALYTICS"]], "device_audio_tape (viser.icon attribute)": [[32, "viser.Icon.DEVICE_AUDIO_TAPE"]], "device_camera_phone (viser.icon attribute)": [[32, "viser.Icon.DEVICE_CAMERA_PHONE"]], "device_cctv (viser.icon attribute)": [[32, "viser.Icon.DEVICE_CCTV"]], "device_cctv_off (viser.icon attribute)": [[32, "viser.Icon.DEVICE_CCTV_OFF"]], "device_computer_camera (viser.icon attribute)": [[32, "viser.Icon.DEVICE_COMPUTER_CAMERA"]], "device_computer_camera_off (viser.icon attribute)": [[32, "viser.Icon.DEVICE_COMPUTER_CAMERA_OFF"]], "device_desktop (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP"]], "device_desktop_analytics (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_ANALYTICS"]], "device_desktop_bolt (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_BOLT"]], "device_desktop_cancel (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_CANCEL"]], "device_desktop_check (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_CHECK"]], "device_desktop_code (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_CODE"]], "device_desktop_cog (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_COG"]], "device_desktop_dollar (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_DOLLAR"]], "device_desktop_down (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_DOWN"]], "device_desktop_exclamation (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_EXCLAMATION"]], "device_desktop_heart (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_HEART"]], "device_desktop_minus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_MINUS"]], "device_desktop_off (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_OFF"]], "device_desktop_pause (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_PAUSE"]], "device_desktop_pin (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_PIN"]], "device_desktop_plus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_PLUS"]], "device_desktop_question (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_QUESTION"]], "device_desktop_search (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_SEARCH"]], "device_desktop_share (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_SHARE"]], "device_desktop_star (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_STAR"]], "device_desktop_up (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_UP"]], "device_desktop_x (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_X"]], "device_floppy (viser.icon attribute)": [[32, "viser.Icon.DEVICE_FLOPPY"]], "device_gamepad (viser.icon attribute)": [[32, "viser.Icon.DEVICE_GAMEPAD"]], "device_gamepad_2 (viser.icon attribute)": [[32, "viser.Icon.DEVICE_GAMEPAD_2"]], "device_heart_monitor (viser.icon attribute)": [[32, "viser.Icon.DEVICE_HEART_MONITOR"]], "device_heart_monitor_filled (viser.icon attribute)": [[32, "viser.Icon.DEVICE_HEART_MONITOR_FILLED"]], "device_imac (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC"]], "device_imac_bolt (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_BOLT"]], "device_imac_cancel (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_CANCEL"]], "device_imac_check (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_CHECK"]], "device_imac_code (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_CODE"]], "device_imac_cog (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_COG"]], "device_imac_dollar (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_DOLLAR"]], "device_imac_down (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_DOWN"]], "device_imac_exclamation (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_EXCLAMATION"]], "device_imac_heart (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_HEART"]], "device_imac_minus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_MINUS"]], "device_imac_off (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_OFF"]], "device_imac_pause (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_PAUSE"]], "device_imac_pin (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_PIN"]], "device_imac_plus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_PLUS"]], "device_imac_question (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_QUESTION"]], "device_imac_search (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_SEARCH"]], "device_imac_share (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_SHARE"]], "device_imac_star (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_STAR"]], "device_imac_up (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_UP"]], "device_imac_x (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_X"]], "device_ipad (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD"]], "device_ipad_bolt (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_BOLT"]], "device_ipad_cancel (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_CANCEL"]], "device_ipad_check (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_CHECK"]], "device_ipad_code (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_CODE"]], "device_ipad_cog (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_COG"]], "device_ipad_dollar (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_DOLLAR"]], "device_ipad_down (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_DOWN"]], "device_ipad_exclamation (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_EXCLAMATION"]], "device_ipad_heart (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HEART"]], "device_ipad_horizontal (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL"]], "device_ipad_horizontal_bolt (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_BOLT"]], "device_ipad_horizontal_cancel (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_CANCEL"]], "device_ipad_horizontal_check (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_CHECK"]], "device_ipad_horizontal_code (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_CODE"]], "device_ipad_horizontal_cog (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_COG"]], "device_ipad_horizontal_dollar (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_DOLLAR"]], "device_ipad_horizontal_down (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_DOWN"]], "device_ipad_horizontal_exclamation (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_EXCLAMATION"]], "device_ipad_horizontal_heart (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_HEART"]], "device_ipad_horizontal_minus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_MINUS"]], "device_ipad_horizontal_off (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_OFF"]], "device_ipad_horizontal_pause (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_PAUSE"]], "device_ipad_horizontal_pin (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_PIN"]], "device_ipad_horizontal_plus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_PLUS"]], "device_ipad_horizontal_question (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_QUESTION"]], "device_ipad_horizontal_search (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_SEARCH"]], "device_ipad_horizontal_share (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_SHARE"]], "device_ipad_horizontal_star (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_STAR"]], "device_ipad_horizontal_up (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_UP"]], "device_ipad_horizontal_x (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_X"]], "device_ipad_minus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_MINUS"]], "device_ipad_off (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_OFF"]], "device_ipad_pause (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_PAUSE"]], "device_ipad_pin (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_PIN"]], "device_ipad_plus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_PLUS"]], "device_ipad_question (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_QUESTION"]], "device_ipad_search (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_SEARCH"]], "device_ipad_share (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_SHARE"]], "device_ipad_star (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_STAR"]], "device_ipad_up (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_UP"]], "device_ipad_x (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_X"]], "device_landline_phone (viser.icon attribute)": [[32, "viser.Icon.DEVICE_LANDLINE_PHONE"]], "device_laptop (viser.icon attribute)": [[32, "viser.Icon.DEVICE_LAPTOP"]], "device_laptop_off (viser.icon attribute)": [[32, "viser.Icon.DEVICE_LAPTOP_OFF"]], "device_mobile (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE"]], "device_mobile_bolt (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_BOLT"]], "device_mobile_cancel (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_CANCEL"]], "device_mobile_charging (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_CHARGING"]], "device_mobile_check (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_CHECK"]], "device_mobile_code (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_CODE"]], "device_mobile_cog (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_COG"]], "device_mobile_dollar (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_DOLLAR"]], "device_mobile_down (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_DOWN"]], "device_mobile_exclamation (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_EXCLAMATION"]], "device_mobile_filled (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_FILLED"]], "device_mobile_heart (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_HEART"]], "device_mobile_message (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_MESSAGE"]], "device_mobile_minus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_MINUS"]], "device_mobile_off (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_OFF"]], "device_mobile_pause (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_PAUSE"]], "device_mobile_pin (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_PIN"]], "device_mobile_plus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_PLUS"]], "device_mobile_question (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_QUESTION"]], "device_mobile_rotated (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_ROTATED"]], "device_mobile_search (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_SEARCH"]], "device_mobile_share (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_SHARE"]], "device_mobile_star (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_STAR"]], "device_mobile_up (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_UP"]], "device_mobile_vibration (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_VIBRATION"]], "device_mobile_x (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_X"]], "device_nintendo (viser.icon attribute)": [[32, "viser.Icon.DEVICE_NINTENDO"]], "device_nintendo_off (viser.icon attribute)": [[32, "viser.Icon.DEVICE_NINTENDO_OFF"]], "device_remote (viser.icon attribute)": [[32, "viser.Icon.DEVICE_REMOTE"]], "device_sd_card (viser.icon attribute)": [[32, "viser.Icon.DEVICE_SD_CARD"]], "device_sim (viser.icon attribute)": [[32, "viser.Icon.DEVICE_SIM"]], "device_sim_1 (viser.icon attribute)": [[32, "viser.Icon.DEVICE_SIM_1"]], "device_sim_2 (viser.icon attribute)": [[32, "viser.Icon.DEVICE_SIM_2"]], "device_sim_3 (viser.icon attribute)": [[32, "viser.Icon.DEVICE_SIM_3"]], "device_speaker (viser.icon attribute)": [[32, "viser.Icon.DEVICE_SPEAKER"]], "device_speaker_off (viser.icon attribute)": [[32, "viser.Icon.DEVICE_SPEAKER_OFF"]], "device_tablet (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET"]], "device_tablet_bolt (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_BOLT"]], "device_tablet_cancel (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_CANCEL"]], "device_tablet_check (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_CHECK"]], "device_tablet_code (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_CODE"]], "device_tablet_cog (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_COG"]], "device_tablet_dollar (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_DOLLAR"]], "device_tablet_down (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_DOWN"]], "device_tablet_exclamation (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_EXCLAMATION"]], "device_tablet_filled (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_FILLED"]], "device_tablet_heart (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_HEART"]], "device_tablet_minus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_MINUS"]], "device_tablet_off (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_OFF"]], "device_tablet_pause (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_PAUSE"]], "device_tablet_pin (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_PIN"]], "device_tablet_plus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_PLUS"]], "device_tablet_question (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_QUESTION"]], "device_tablet_search (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_SEARCH"]], "device_tablet_share (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_SHARE"]], "device_tablet_star (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_STAR"]], "device_tablet_up (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_UP"]], "device_tablet_x (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_X"]], "device_tv (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TV"]], "device_tv_off (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TV_OFF"]], "device_tv_old (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TV_OLD"]], "device_vision_pro (viser.icon attribute)": [[32, "viser.Icon.DEVICE_VISION_PRO"]], "device_watch (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH"]], "device_watch_bolt (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_BOLT"]], "device_watch_cancel (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_CANCEL"]], "device_watch_check (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_CHECK"]], "device_watch_code (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_CODE"]], "device_watch_cog (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_COG"]], "device_watch_dollar (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_DOLLAR"]], "device_watch_down (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_DOWN"]], "device_watch_exclamation (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_EXCLAMATION"]], "device_watch_heart (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_HEART"]], "device_watch_minus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_MINUS"]], "device_watch_off (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_OFF"]], "device_watch_pause (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_PAUSE"]], "device_watch_pin (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_PIN"]], "device_watch_plus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_PLUS"]], "device_watch_question (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_QUESTION"]], "device_watch_search (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_SEARCH"]], "device_watch_share (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_SHARE"]], "device_watch_star (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_STAR"]], "device_watch_stats (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_STATS"]], "device_watch_stats_2 (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_STATS_2"]], "device_watch_up (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_UP"]], "device_watch_x (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_X"]], "diabolo (viser.icon attribute)": [[32, "viser.Icon.DIABOLO"]], "diabolo_off (viser.icon attribute)": [[32, "viser.Icon.DIABOLO_OFF"]], "diabolo_plus (viser.icon attribute)": [[32, "viser.Icon.DIABOLO_PLUS"]], "dialpad (viser.icon attribute)": [[32, "viser.Icon.DIALPAD"]], "dialpad_filled (viser.icon attribute)": [[32, "viser.Icon.DIALPAD_FILLED"]], "dialpad_off (viser.icon attribute)": [[32, "viser.Icon.DIALPAD_OFF"]], "diamond (viser.icon attribute)": [[32, "viser.Icon.DIAMOND"]], "diamonds (viser.icon attribute)": [[32, "viser.Icon.DIAMONDS"]], "diamonds_filled (viser.icon attribute)": [[32, "viser.Icon.DIAMONDS_FILLED"]], "diamond_filled (viser.icon attribute)": [[32, "viser.Icon.DIAMOND_FILLED"]], "diamond_off (viser.icon attribute)": [[32, "viser.Icon.DIAMOND_OFF"]], "dice (viser.icon attribute)": [[32, "viser.Icon.DICE"]], "dice_1 (viser.icon attribute)": [[32, "viser.Icon.DICE_1"]], "dice_1_filled (viser.icon attribute)": [[32, "viser.Icon.DICE_1_FILLED"]], "dice_2 (viser.icon attribute)": [[32, "viser.Icon.DICE_2"]], "dice_2_filled (viser.icon attribute)": [[32, "viser.Icon.DICE_2_FILLED"]], "dice_3 (viser.icon attribute)": [[32, "viser.Icon.DICE_3"]], "dice_3_filled (viser.icon attribute)": [[32, "viser.Icon.DICE_3_FILLED"]], "dice_4 (viser.icon attribute)": [[32, "viser.Icon.DICE_4"]], "dice_4_filled (viser.icon attribute)": [[32, "viser.Icon.DICE_4_FILLED"]], "dice_5 (viser.icon attribute)": [[32, "viser.Icon.DICE_5"]], "dice_5_filled (viser.icon attribute)": [[32, "viser.Icon.DICE_5_FILLED"]], "dice_6 (viser.icon attribute)": [[32, "viser.Icon.DICE_6"]], "dice_6_filled (viser.icon attribute)": [[32, "viser.Icon.DICE_6_FILLED"]], "dice_filled (viser.icon attribute)": [[32, "viser.Icon.DICE_FILLED"]], "dimensions (viser.icon attribute)": [[32, "viser.Icon.DIMENSIONS"]], "direction (viser.icon attribute)": [[32, "viser.Icon.DIRECTION"]], "directions (viser.icon attribute)": [[32, "viser.Icon.DIRECTIONS"]], "directions_off (viser.icon attribute)": [[32, "viser.Icon.DIRECTIONS_OFF"]], "direction_horizontal (viser.icon attribute)": [[32, "viser.Icon.DIRECTION_HORIZONTAL"]], "direction_sign (viser.icon attribute)": [[32, "viser.Icon.DIRECTION_SIGN"]], "direction_sign_filled (viser.icon attribute)": [[32, "viser.Icon.DIRECTION_SIGN_FILLED"]], "direction_sign_off (viser.icon attribute)": [[32, "viser.Icon.DIRECTION_SIGN_OFF"]], "disabled (viser.icon attribute)": [[32, "viser.Icon.DISABLED"]], "disabled_2 (viser.icon attribute)": [[32, "viser.Icon.DISABLED_2"]], "disabled_off (viser.icon attribute)": [[32, "viser.Icon.DISABLED_OFF"]], "disc (viser.icon attribute)": [[32, "viser.Icon.DISC"]], "discount (viser.icon attribute)": [[32, "viser.Icon.DISCOUNT"]], "discount_2 (viser.icon attribute)": [[32, "viser.Icon.DISCOUNT_2"]], "discount_2_off (viser.icon attribute)": [[32, "viser.Icon.DISCOUNT_2_OFF"]], "discount_check (viser.icon attribute)": [[32, "viser.Icon.DISCOUNT_CHECK"]], "discount_check_filled (viser.icon attribute)": [[32, "viser.Icon.DISCOUNT_CHECK_FILLED"]], "discount_off (viser.icon attribute)": [[32, "viser.Icon.DISCOUNT_OFF"]], "disc_golf (viser.icon attribute)": [[32, "viser.Icon.DISC_GOLF"]], "disc_off (viser.icon attribute)": [[32, "viser.Icon.DISC_OFF"]], "divide (viser.icon attribute)": [[32, "viser.Icon.DIVIDE"]], "dna (viser.icon attribute)": [[32, "viser.Icon.DNA"]], "dna_2 (viser.icon attribute)": [[32, "viser.Icon.DNA_2"]], "dna_2_off (viser.icon attribute)": [[32, "viser.Icon.DNA_2_OFF"]], "dna_off (viser.icon attribute)": [[32, "viser.Icon.DNA_OFF"]], "dog (viser.icon attribute)": [[32, "viser.Icon.DOG"]], "dog_bowl (viser.icon attribute)": [[32, "viser.Icon.DOG_BOWL"]], "door (viser.icon attribute)": [[32, "viser.Icon.DOOR"]], "door_enter (viser.icon attribute)": [[32, "viser.Icon.DOOR_ENTER"]], "door_exit (viser.icon attribute)": [[32, "viser.Icon.DOOR_EXIT"]], "door_off (viser.icon attribute)": [[32, "viser.Icon.DOOR_OFF"]], "dots (viser.icon attribute)": [[32, "viser.Icon.DOTS"]], "dots_circle_horizontal (viser.icon attribute)": [[32, "viser.Icon.DOTS_CIRCLE_HORIZONTAL"]], "dots_diagonal (viser.icon attribute)": [[32, "viser.Icon.DOTS_DIAGONAL"]], "dots_diagonal_2 (viser.icon attribute)": [[32, "viser.Icon.DOTS_DIAGONAL_2"]], "dots_vertical (viser.icon attribute)": [[32, "viser.Icon.DOTS_VERTICAL"]], "download (viser.icon attribute)": [[32, "viser.Icon.DOWNLOAD"]], "download_off (viser.icon attribute)": [[32, "viser.Icon.DOWNLOAD_OFF"]], "drag_drop (viser.icon attribute)": [[32, "viser.Icon.DRAG_DROP"]], "drag_drop_2 (viser.icon attribute)": [[32, "viser.Icon.DRAG_DROP_2"]], "drone (viser.icon attribute)": [[32, "viser.Icon.DRONE"]], "drone_off (viser.icon attribute)": [[32, "viser.Icon.DRONE_OFF"]], "droplet (viser.icon attribute)": [[32, "viser.Icon.DROPLET"]], "droplet_bolt (viser.icon attribute)": [[32, "viser.Icon.DROPLET_BOLT"]], "droplet_cancel (viser.icon attribute)": [[32, "viser.Icon.DROPLET_CANCEL"]], "droplet_check (viser.icon attribute)": [[32, "viser.Icon.DROPLET_CHECK"]], "droplet_code (viser.icon attribute)": [[32, "viser.Icon.DROPLET_CODE"]], "droplet_cog (viser.icon attribute)": [[32, "viser.Icon.DROPLET_COG"]], "droplet_dollar (viser.icon attribute)": [[32, "viser.Icon.DROPLET_DOLLAR"]], "droplet_down (viser.icon attribute)": [[32, "viser.Icon.DROPLET_DOWN"]], "droplet_exclamation (viser.icon attribute)": [[32, "viser.Icon.DROPLET_EXCLAMATION"]], "droplet_filled (viser.icon attribute)": [[32, "viser.Icon.DROPLET_FILLED"]], "droplet_filled_2 (viser.icon attribute)": [[32, "viser.Icon.DROPLET_FILLED_2"]], "droplet_half (viser.icon attribute)": [[32, "viser.Icon.DROPLET_HALF"]], "droplet_half_2 (viser.icon attribute)": [[32, "viser.Icon.DROPLET_HALF_2"]], "droplet_half_filled (viser.icon attribute)": [[32, "viser.Icon.DROPLET_HALF_FILLED"]], "droplet_heart (viser.icon attribute)": [[32, "viser.Icon.DROPLET_HEART"]], "droplet_minus (viser.icon attribute)": [[32, "viser.Icon.DROPLET_MINUS"]], "droplet_off (viser.icon attribute)": [[32, "viser.Icon.DROPLET_OFF"]], "droplet_pause (viser.icon attribute)": [[32, "viser.Icon.DROPLET_PAUSE"]], "droplet_pin (viser.icon attribute)": [[32, "viser.Icon.DROPLET_PIN"]], "droplet_plus (viser.icon attribute)": [[32, "viser.Icon.DROPLET_PLUS"]], "droplet_question (viser.icon attribute)": [[32, "viser.Icon.DROPLET_QUESTION"]], "droplet_search (viser.icon attribute)": [[32, "viser.Icon.DROPLET_SEARCH"]], "droplet_share (viser.icon attribute)": [[32, "viser.Icon.DROPLET_SHARE"]], "droplet_star (viser.icon attribute)": [[32, "viser.Icon.DROPLET_STAR"]], "droplet_up (viser.icon attribute)": [[32, "viser.Icon.DROPLET_UP"]], "droplet_x (viser.icon attribute)": [[32, "viser.Icon.DROPLET_X"]], "drop_circle (viser.icon attribute)": [[32, "viser.Icon.DROP_CIRCLE"]], "dual_screen (viser.icon attribute)": [[32, "viser.Icon.DUAL_SCREEN"]], "ear (viser.icon attribute)": [[32, "viser.Icon.EAR"]], "ear_off (viser.icon attribute)": [[32, "viser.Icon.EAR_OFF"]], "ease_in (viser.icon attribute)": [[32, "viser.Icon.EASE_IN"]], "ease_in_control_point (viser.icon attribute)": [[32, "viser.Icon.EASE_IN_CONTROL_POINT"]], "ease_in_out (viser.icon attribute)": [[32, "viser.Icon.EASE_IN_OUT"]], "ease_in_out_control_points (viser.icon attribute)": [[32, "viser.Icon.EASE_IN_OUT_CONTROL_POINTS"]], "ease_out (viser.icon attribute)": [[32, "viser.Icon.EASE_OUT"]], "ease_out_control_point (viser.icon attribute)": [[32, "viser.Icon.EASE_OUT_CONTROL_POINT"]], "edit (viser.icon attribute)": [[32, "viser.Icon.EDIT"]], "edit_circle (viser.icon attribute)": [[32, "viser.Icon.EDIT_CIRCLE"]], "edit_circle_off (viser.icon attribute)": [[32, "viser.Icon.EDIT_CIRCLE_OFF"]], "edit_off (viser.icon attribute)": [[32, "viser.Icon.EDIT_OFF"]], "egg (viser.icon attribute)": [[32, "viser.Icon.EGG"]], "eggs (viser.icon attribute)": [[32, "viser.Icon.EGGS"]], "egg_cracked (viser.icon attribute)": [[32, "viser.Icon.EGG_CRACKED"]], "egg_filled (viser.icon attribute)": [[32, "viser.Icon.EGG_FILLED"]], "egg_fried (viser.icon attribute)": [[32, "viser.Icon.EGG_FRIED"]], "egg_off (viser.icon attribute)": [[32, "viser.Icon.EGG_OFF"]], "elevator (viser.icon attribute)": [[32, "viser.Icon.ELEVATOR"]], "elevator_off (viser.icon attribute)": [[32, "viser.Icon.ELEVATOR_OFF"]], "emergency_bed (viser.icon attribute)": [[32, "viser.Icon.EMERGENCY_BED"]], "empathize (viser.icon attribute)": [[32, "viser.Icon.EMPATHIZE"]], "empathize_off (viser.icon attribute)": [[32, "viser.Icon.EMPATHIZE_OFF"]], "emphasis (viser.icon attribute)": [[32, "viser.Icon.EMPHASIS"]], "engine (viser.icon attribute)": [[32, "viser.Icon.ENGINE"]], "engine_off (viser.icon attribute)": [[32, "viser.Icon.ENGINE_OFF"]], "equal (viser.icon attribute)": [[32, "viser.Icon.EQUAL"]], "equal_double (viser.icon attribute)": [[32, "viser.Icon.EQUAL_DOUBLE"]], "equal_not (viser.icon attribute)": [[32, "viser.Icon.EQUAL_NOT"]], "eraser (viser.icon attribute)": [[32, "viser.Icon.ERASER"]], "eraser_off (viser.icon attribute)": [[32, "viser.Icon.ERASER_OFF"]], "error_404 (viser.icon attribute)": [[32, "viser.Icon.ERROR_404"]], "error_404_off (viser.icon attribute)": [[32, "viser.Icon.ERROR_404_OFF"]], "exchange (viser.icon attribute)": [[32, "viser.Icon.EXCHANGE"]], "exchange_off (viser.icon attribute)": [[32, "viser.Icon.EXCHANGE_OFF"]], "exclamation_circle (viser.icon attribute)": [[32, "viser.Icon.EXCLAMATION_CIRCLE"]], "exclamation_mark (viser.icon attribute)": [[32, "viser.Icon.EXCLAMATION_MARK"]], "exclamation_mark_off (viser.icon attribute)": [[32, "viser.Icon.EXCLAMATION_MARK_OFF"]], "explicit (viser.icon attribute)": [[32, "viser.Icon.EXPLICIT"]], "explicit_off (viser.icon attribute)": [[32, "viser.Icon.EXPLICIT_OFF"]], "exposure (viser.icon attribute)": [[32, "viser.Icon.EXPOSURE"]], "exposure_0 (viser.icon attribute)": [[32, "viser.Icon.EXPOSURE_0"]], "exposure_minus_1 (viser.icon attribute)": [[32, "viser.Icon.EXPOSURE_MINUS_1"]], "exposure_minus_2 (viser.icon attribute)": [[32, "viser.Icon.EXPOSURE_MINUS_2"]], "exposure_off (viser.icon attribute)": [[32, "viser.Icon.EXPOSURE_OFF"]], "exposure_plus_1 (viser.icon attribute)": [[32, "viser.Icon.EXPOSURE_PLUS_1"]], "exposure_plus_2 (viser.icon attribute)": [[32, "viser.Icon.EXPOSURE_PLUS_2"]], "external_link (viser.icon attribute)": [[32, "viser.Icon.EXTERNAL_LINK"]], "external_link_off (viser.icon attribute)": [[32, "viser.Icon.EXTERNAL_LINK_OFF"]], "eye (viser.icon attribute)": [[32, "viser.Icon.EYE"]], "eyeglass (viser.icon attribute)": [[32, "viser.Icon.EYEGLASS"]], "eyeglass_2 (viser.icon attribute)": [[32, "viser.Icon.EYEGLASS_2"]], "eyeglass_off (viser.icon attribute)": [[32, "viser.Icon.EYEGLASS_OFF"]], "eye_check (viser.icon attribute)": [[32, "viser.Icon.EYE_CHECK"]], "eye_closed (viser.icon attribute)": [[32, "viser.Icon.EYE_CLOSED"]], "eye_cog (viser.icon attribute)": [[32, "viser.Icon.EYE_COG"]], "eye_edit (viser.icon attribute)": [[32, "viser.Icon.EYE_EDIT"]], "eye_exclamation (viser.icon attribute)": [[32, "viser.Icon.EYE_EXCLAMATION"]], "eye_filled (viser.icon attribute)": [[32, "viser.Icon.EYE_FILLED"]], "eye_heart (viser.icon attribute)": [[32, "viser.Icon.EYE_HEART"]], "eye_off (viser.icon attribute)": [[32, "viser.Icon.EYE_OFF"]], "eye_table (viser.icon attribute)": [[32, "viser.Icon.EYE_TABLE"]], "eye_x (viser.icon attribute)": [[32, "viser.Icon.EYE_X"]], "e_passport (viser.icon attribute)": [[32, "viser.Icon.E_PASSPORT"]], "face_id (viser.icon attribute)": [[32, "viser.Icon.FACE_ID"]], "face_id_error (viser.icon attribute)": [[32, "viser.Icon.FACE_ID_ERROR"]], "face_mask (viser.icon attribute)": [[32, "viser.Icon.FACE_MASK"]], "face_mask_off (viser.icon attribute)": [[32, "viser.Icon.FACE_MASK_OFF"]], "fall (viser.icon attribute)": [[32, "viser.Icon.FALL"]], "feather (viser.icon attribute)": [[32, "viser.Icon.FEATHER"]], "feather_off (viser.icon attribute)": [[32, "viser.Icon.FEATHER_OFF"]], "fence (viser.icon attribute)": [[32, "viser.Icon.FENCE"]], "fence_off (viser.icon attribute)": [[32, "viser.Icon.FENCE_OFF"]], "fidget_spinner (viser.icon attribute)": [[32, "viser.Icon.FIDGET_SPINNER"]], "file (viser.icon attribute)": [[32, "viser.Icon.FILE"]], "files (viser.icon attribute)": [[32, "viser.Icon.FILES"]], "files_off (viser.icon attribute)": [[32, "viser.Icon.FILES_OFF"]], "file_3d (viser.icon attribute)": [[32, "viser.Icon.FILE_3D"]], "file_alert (viser.icon attribute)": [[32, "viser.Icon.FILE_ALERT"]], "file_analytics (viser.icon attribute)": [[32, "viser.Icon.FILE_ANALYTICS"]], "file_arrow_left (viser.icon attribute)": [[32, "viser.Icon.FILE_ARROW_LEFT"]], "file_arrow_right (viser.icon attribute)": [[32, "viser.Icon.FILE_ARROW_RIGHT"]], "file_barcode (viser.icon attribute)": [[32, "viser.Icon.FILE_BARCODE"]], "file_broken (viser.icon attribute)": [[32, "viser.Icon.FILE_BROKEN"]], "file_certificate (viser.icon attribute)": [[32, "viser.Icon.FILE_CERTIFICATE"]], "file_chart (viser.icon attribute)": [[32, "viser.Icon.FILE_CHART"]], "file_check (viser.icon attribute)": [[32, "viser.Icon.FILE_CHECK"]], "file_code (viser.icon attribute)": [[32, "viser.Icon.FILE_CODE"]], "file_code_2 (viser.icon attribute)": [[32, "viser.Icon.FILE_CODE_2"]], "file_cv (viser.icon attribute)": [[32, "viser.Icon.FILE_CV"]], "file_database (viser.icon attribute)": [[32, "viser.Icon.FILE_DATABASE"]], "file_delta (viser.icon attribute)": [[32, "viser.Icon.FILE_DELTA"]], "file_description (viser.icon attribute)": [[32, "viser.Icon.FILE_DESCRIPTION"]], "file_diff (viser.icon attribute)": [[32, "viser.Icon.FILE_DIFF"]], "file_digit (viser.icon attribute)": [[32, "viser.Icon.FILE_DIGIT"]], "file_dislike (viser.icon attribute)": [[32, "viser.Icon.FILE_DISLIKE"]], "file_dollar (viser.icon attribute)": [[32, "viser.Icon.FILE_DOLLAR"]], "file_dots (viser.icon attribute)": [[32, "viser.Icon.FILE_DOTS"]], "file_download (viser.icon attribute)": [[32, "viser.Icon.FILE_DOWNLOAD"]], "file_euro (viser.icon attribute)": [[32, "viser.Icon.FILE_EURO"]], "file_export (viser.icon attribute)": [[32, "viser.Icon.FILE_EXPORT"]], "file_filled (viser.icon attribute)": [[32, "viser.Icon.FILE_FILLED"]], "file_function (viser.icon attribute)": [[32, "viser.Icon.FILE_FUNCTION"]], "file_horizontal (viser.icon attribute)": [[32, "viser.Icon.FILE_HORIZONTAL"]], "file_import (viser.icon attribute)": [[32, "viser.Icon.FILE_IMPORT"]], "file_infinity (viser.icon attribute)": [[32, "viser.Icon.FILE_INFINITY"]], "file_info (viser.icon attribute)": [[32, "viser.Icon.FILE_INFO"]], "file_invoice (viser.icon attribute)": [[32, "viser.Icon.FILE_INVOICE"]], "file_lambda (viser.icon attribute)": [[32, "viser.Icon.FILE_LAMBDA"]], "file_like (viser.icon attribute)": [[32, "viser.Icon.FILE_LIKE"]], "file_minus (viser.icon attribute)": [[32, "viser.Icon.FILE_MINUS"]], "file_music (viser.icon attribute)": [[32, "viser.Icon.FILE_MUSIC"]], "file_off (viser.icon attribute)": [[32, "viser.Icon.FILE_OFF"]], "file_orientation (viser.icon attribute)": [[32, "viser.Icon.FILE_ORIENTATION"]], "file_pencil (viser.icon attribute)": [[32, "viser.Icon.FILE_PENCIL"]], "file_percent (viser.icon attribute)": [[32, "viser.Icon.FILE_PERCENT"]], "file_phone (viser.icon attribute)": [[32, "viser.Icon.FILE_PHONE"]], "file_plus (viser.icon attribute)": [[32, "viser.Icon.FILE_PLUS"]], "file_power (viser.icon attribute)": [[32, "viser.Icon.FILE_POWER"]], "file_report (viser.icon attribute)": [[32, "viser.Icon.FILE_REPORT"]], "file_rss (viser.icon attribute)": [[32, "viser.Icon.FILE_RSS"]], "file_scissors (viser.icon attribute)": [[32, "viser.Icon.FILE_SCISSORS"]], "file_search (viser.icon attribute)": [[32, "viser.Icon.FILE_SEARCH"]], "file_settings (viser.icon attribute)": [[32, "viser.Icon.FILE_SETTINGS"]], "file_shredder (viser.icon attribute)": [[32, "viser.Icon.FILE_SHREDDER"]], "file_signal (viser.icon attribute)": [[32, "viser.Icon.FILE_SIGNAL"]], "file_spreadsheet (viser.icon attribute)": [[32, "viser.Icon.FILE_SPREADSHEET"]], "file_stack (viser.icon attribute)": [[32, "viser.Icon.FILE_STACK"]], "file_star (viser.icon attribute)": [[32, "viser.Icon.FILE_STAR"]], "file_symlink (viser.icon attribute)": [[32, "viser.Icon.FILE_SYMLINK"]], "file_text (viser.icon attribute)": [[32, "viser.Icon.FILE_TEXT"]], "file_text_ai (viser.icon attribute)": [[32, "viser.Icon.FILE_TEXT_AI"]], "file_time (viser.icon attribute)": [[32, "viser.Icon.FILE_TIME"]], "file_typography (viser.icon attribute)": [[32, "viser.Icon.FILE_TYPOGRAPHY"]], "file_unknown (viser.icon attribute)": [[32, "viser.Icon.FILE_UNKNOWN"]], "file_upload (viser.icon attribute)": [[32, "viser.Icon.FILE_UPLOAD"]], "file_vector (viser.icon attribute)": [[32, "viser.Icon.FILE_VECTOR"]], "file_x (viser.icon attribute)": [[32, "viser.Icon.FILE_X"]], "file_x_filled (viser.icon attribute)": [[32, "viser.Icon.FILE_X_FILLED"]], "file_zip (viser.icon attribute)": [[32, "viser.Icon.FILE_ZIP"]], "filter (viser.icon attribute)": [[32, "viser.Icon.FILTER"]], "filters (viser.icon attribute)": [[32, "viser.Icon.FILTERS"]], "filter_cog (viser.icon attribute)": [[32, "viser.Icon.FILTER_COG"]], "filter_dollar (viser.icon attribute)": [[32, "viser.Icon.FILTER_DOLLAR"]], "filter_edit (viser.icon attribute)": [[32, "viser.Icon.FILTER_EDIT"]], "filter_minus (viser.icon attribute)": [[32, "viser.Icon.FILTER_MINUS"]], "filter_off (viser.icon attribute)": [[32, "viser.Icon.FILTER_OFF"]], "filter_plus (viser.icon attribute)": [[32, "viser.Icon.FILTER_PLUS"]], "filter_star (viser.icon attribute)": [[32, "viser.Icon.FILTER_STAR"]], "filter_x (viser.icon attribute)": [[32, "viser.Icon.FILTER_X"]], "fingerprint (viser.icon attribute)": [[32, "viser.Icon.FINGERPRINT"]], "fingerprint_off (viser.icon attribute)": [[32, "viser.Icon.FINGERPRINT_OFF"]], "firetruck (viser.icon attribute)": [[32, "viser.Icon.FIRETRUCK"]], "fire_extinguisher (viser.icon attribute)": [[32, "viser.Icon.FIRE_EXTINGUISHER"]], "fire_hydrant (viser.icon attribute)": [[32, "viser.Icon.FIRE_HYDRANT"]], "fire_hydrant_off (viser.icon attribute)": [[32, "viser.Icon.FIRE_HYDRANT_OFF"]], "first_aid_kit (viser.icon attribute)": [[32, "viser.Icon.FIRST_AID_KIT"]], "first_aid_kit_off (viser.icon attribute)": [[32, "viser.Icon.FIRST_AID_KIT_OFF"]], "fish (viser.icon attribute)": [[32, "viser.Icon.FISH"]], "fish_bone (viser.icon attribute)": [[32, "viser.Icon.FISH_BONE"]], "fish_christianity (viser.icon attribute)": [[32, "viser.Icon.FISH_CHRISTIANITY"]], "fish_hook (viser.icon attribute)": [[32, "viser.Icon.FISH_HOOK"]], "fish_hook_off (viser.icon attribute)": [[32, "viser.Icon.FISH_HOOK_OFF"]], "fish_off (viser.icon attribute)": [[32, "viser.Icon.FISH_OFF"]], "flag (viser.icon attribute)": [[32, "viser.Icon.FLAG"]], "flag_2 (viser.icon attribute)": [[32, "viser.Icon.FLAG_2"]], "flag_2_filled (viser.icon attribute)": [[32, "viser.Icon.FLAG_2_FILLED"]], "flag_2_off (viser.icon attribute)": [[32, "viser.Icon.FLAG_2_OFF"]], "flag_3 (viser.icon attribute)": [[32, "viser.Icon.FLAG_3"]], "flag_3_filled (viser.icon attribute)": [[32, "viser.Icon.FLAG_3_FILLED"]], "flag_filled (viser.icon attribute)": [[32, "viser.Icon.FLAG_FILLED"]], "flag_off (viser.icon attribute)": [[32, "viser.Icon.FLAG_OFF"]], "flame (viser.icon attribute)": [[32, "viser.Icon.FLAME"]], "flame_off (viser.icon attribute)": [[32, "viser.Icon.FLAME_OFF"]], "flare (viser.icon attribute)": [[32, "viser.Icon.FLARE"]], "flask (viser.icon attribute)": [[32, "viser.Icon.FLASK"]], "flask_2 (viser.icon attribute)": [[32, "viser.Icon.FLASK_2"]], "flask_2_off (viser.icon attribute)": [[32, "viser.Icon.FLASK_2_OFF"]], "flask_off (viser.icon attribute)": [[32, "viser.Icon.FLASK_OFF"]], "flip_flops (viser.icon attribute)": [[32, "viser.Icon.FLIP_FLOPS"]], "flip_horizontal (viser.icon attribute)": [[32, "viser.Icon.FLIP_HORIZONTAL"]], "flip_vertical (viser.icon attribute)": [[32, "viser.Icon.FLIP_VERTICAL"]], "float_center (viser.icon attribute)": [[32, "viser.Icon.FLOAT_CENTER"]], "float_left (viser.icon attribute)": [[32, "viser.Icon.FLOAT_LEFT"]], "float_none (viser.icon attribute)": [[32, "viser.Icon.FLOAT_NONE"]], "float_right (viser.icon attribute)": [[32, "viser.Icon.FLOAT_RIGHT"]], "flower (viser.icon attribute)": [[32, "viser.Icon.FLOWER"]], "flower_off (viser.icon attribute)": [[32, "viser.Icon.FLOWER_OFF"]], "focus (viser.icon attribute)": [[32, "viser.Icon.FOCUS"]], "focus_2 (viser.icon attribute)": [[32, "viser.Icon.FOCUS_2"]], "focus_auto (viser.icon attribute)": [[32, "viser.Icon.FOCUS_AUTO"]], "focus_centered (viser.icon attribute)": [[32, "viser.Icon.FOCUS_CENTERED"]], "fold (viser.icon attribute)": [[32, "viser.Icon.FOLD"]], "folder (viser.icon attribute)": [[32, "viser.Icon.FOLDER"]], "folders (viser.icon attribute)": [[32, "viser.Icon.FOLDERS"]], "folders_off (viser.icon attribute)": [[32, "viser.Icon.FOLDERS_OFF"]], "folder_bolt (viser.icon attribute)": [[32, "viser.Icon.FOLDER_BOLT"]], "folder_cancel (viser.icon attribute)": [[32, "viser.Icon.FOLDER_CANCEL"]], "folder_check (viser.icon attribute)": [[32, "viser.Icon.FOLDER_CHECK"]], "folder_code (viser.icon attribute)": [[32, "viser.Icon.FOLDER_CODE"]], "folder_cog (viser.icon attribute)": [[32, "viser.Icon.FOLDER_COG"]], "folder_dollar (viser.icon attribute)": [[32, "viser.Icon.FOLDER_DOLLAR"]], "folder_down (viser.icon attribute)": [[32, "viser.Icon.FOLDER_DOWN"]], "folder_exclamation (viser.icon attribute)": [[32, "viser.Icon.FOLDER_EXCLAMATION"]], "folder_filled (viser.icon attribute)": [[32, "viser.Icon.FOLDER_FILLED"]], "folder_heart (viser.icon attribute)": [[32, "viser.Icon.FOLDER_HEART"]], "folder_minus (viser.icon attribute)": [[32, "viser.Icon.FOLDER_MINUS"]], "folder_off (viser.icon attribute)": [[32, "viser.Icon.FOLDER_OFF"]], "folder_open (viser.icon attribute)": [[32, "viser.Icon.FOLDER_OPEN"]], "folder_pause (viser.icon attribute)": [[32, "viser.Icon.FOLDER_PAUSE"]], "folder_pin (viser.icon attribute)": [[32, "viser.Icon.FOLDER_PIN"]], "folder_plus (viser.icon attribute)": [[32, "viser.Icon.FOLDER_PLUS"]], "folder_question (viser.icon attribute)": [[32, "viser.Icon.FOLDER_QUESTION"]], "folder_search (viser.icon attribute)": [[32, "viser.Icon.FOLDER_SEARCH"]], "folder_share (viser.icon attribute)": [[32, "viser.Icon.FOLDER_SHARE"]], "folder_star (viser.icon attribute)": [[32, "viser.Icon.FOLDER_STAR"]], "folder_symlink (viser.icon attribute)": [[32, "viser.Icon.FOLDER_SYMLINK"]], "folder_up (viser.icon attribute)": [[32, "viser.Icon.FOLDER_UP"]], "folder_x (viser.icon attribute)": [[32, "viser.Icon.FOLDER_X"]], "fold_down (viser.icon attribute)": [[32, "viser.Icon.FOLD_DOWN"]], "fold_up (viser.icon attribute)": [[32, "viser.Icon.FOLD_UP"]], "forbid (viser.icon attribute)": [[32, "viser.Icon.FORBID"]], "forbid_2 (viser.icon attribute)": [[32, "viser.Icon.FORBID_2"]], "forklift (viser.icon attribute)": [[32, "viser.Icon.FORKLIFT"]], "forms (viser.icon attribute)": [[32, "viser.Icon.FORMS"]], "fountain (viser.icon attribute)": [[32, "viser.Icon.FOUNTAIN"]], "fountain_off (viser.icon attribute)": [[32, "viser.Icon.FOUNTAIN_OFF"]], "frame (viser.icon attribute)": [[32, "viser.Icon.FRAME"]], "frame_off (viser.icon attribute)": [[32, "viser.Icon.FRAME_OFF"]], "freeze_column (viser.icon attribute)": [[32, "viser.Icon.FREEZE_COLUMN"]], "freeze_row (viser.icon attribute)": [[32, "viser.Icon.FREEZE_ROW"]], "freeze_row_column (viser.icon attribute)": [[32, "viser.Icon.FREEZE_ROW_COLUMN"]], "free_rights (viser.icon attribute)": [[32, "viser.Icon.FREE_RIGHTS"]], "fridge (viser.icon attribute)": [[32, "viser.Icon.FRIDGE"]], "fridge_off (viser.icon attribute)": [[32, "viser.Icon.FRIDGE_OFF"]], "friends (viser.icon attribute)": [[32, "viser.Icon.FRIENDS"]], "friends_off (viser.icon attribute)": [[32, "viser.Icon.FRIENDS_OFF"]], "frustum (viser.icon attribute)": [[32, "viser.Icon.FRUSTUM"]], "frustum_off (viser.icon attribute)": [[32, "viser.Icon.FRUSTUM_OFF"]], "frustum_plus (viser.icon attribute)": [[32, "viser.Icon.FRUSTUM_PLUS"]], "function (viser.icon attribute)": [[32, "viser.Icon.FUNCTION"]], "function_off (viser.icon attribute)": [[32, "viser.Icon.FUNCTION_OFF"]], "garden_cart (viser.icon attribute)": [[32, "viser.Icon.GARDEN_CART"]], "garden_cart_off (viser.icon attribute)": [[32, "viser.Icon.GARDEN_CART_OFF"]], "gas_station (viser.icon attribute)": [[32, "viser.Icon.GAS_STATION"]], "gas_station_off (viser.icon attribute)": [[32, "viser.Icon.GAS_STATION_OFF"]], "gauge (viser.icon attribute)": [[32, "viser.Icon.GAUGE"]], "gauge_off (viser.icon attribute)": [[32, "viser.Icon.GAUGE_OFF"]], "gavel (viser.icon attribute)": [[32, "viser.Icon.GAVEL"]], "gender_agender (viser.icon attribute)": [[32, "viser.Icon.GENDER_AGENDER"]], "gender_androgyne (viser.icon attribute)": [[32, "viser.Icon.GENDER_ANDROGYNE"]], "gender_bigender (viser.icon attribute)": [[32, "viser.Icon.GENDER_BIGENDER"]], "gender_demiboy (viser.icon attribute)": [[32, "viser.Icon.GENDER_DEMIBOY"]], "gender_demigirl (viser.icon attribute)": [[32, "viser.Icon.GENDER_DEMIGIRL"]], "gender_epicene (viser.icon attribute)": [[32, "viser.Icon.GENDER_EPICENE"]], "gender_female (viser.icon attribute)": [[32, "viser.Icon.GENDER_FEMALE"]], "gender_femme (viser.icon attribute)": [[32, "viser.Icon.GENDER_FEMME"]], "gender_genderfluid (viser.icon attribute)": [[32, "viser.Icon.GENDER_GENDERFLUID"]], "gender_genderless (viser.icon attribute)": [[32, "viser.Icon.GENDER_GENDERLESS"]], "gender_genderqueer (viser.icon attribute)": [[32, "viser.Icon.GENDER_GENDERQUEER"]], "gender_hermaphrodite (viser.icon attribute)": [[32, "viser.Icon.GENDER_HERMAPHRODITE"]], "gender_intergender (viser.icon attribute)": [[32, "viser.Icon.GENDER_INTERGENDER"]], "gender_male (viser.icon attribute)": [[32, "viser.Icon.GENDER_MALE"]], "gender_neutrois (viser.icon attribute)": [[32, "viser.Icon.GENDER_NEUTROIS"]], "gender_third (viser.icon attribute)": [[32, "viser.Icon.GENDER_THIRD"]], "gender_transgender (viser.icon attribute)": [[32, "viser.Icon.GENDER_TRANSGENDER"]], "gender_trasvesti (viser.icon attribute)": [[32, "viser.Icon.GENDER_TRASVESTI"]], "geometry (viser.icon attribute)": [[32, "viser.Icon.GEOMETRY"]], "ghost (viser.icon attribute)": [[32, "viser.Icon.GHOST"]], "ghost_2 (viser.icon attribute)": [[32, "viser.Icon.GHOST_2"]], "ghost_2_filled (viser.icon attribute)": [[32, "viser.Icon.GHOST_2_FILLED"]], "ghost_filled (viser.icon attribute)": [[32, "viser.Icon.GHOST_FILLED"]], "ghost_off (viser.icon attribute)": [[32, "viser.Icon.GHOST_OFF"]], "gif (viser.icon attribute)": [[32, "viser.Icon.GIF"]], "gift (viser.icon attribute)": [[32, "viser.Icon.GIFT"]], "gift_card (viser.icon attribute)": [[32, "viser.Icon.GIFT_CARD"]], "gift_off (viser.icon attribute)": [[32, "viser.Icon.GIFT_OFF"]], "git_branch (viser.icon attribute)": [[32, "viser.Icon.GIT_BRANCH"]], "git_branch_deleted (viser.icon attribute)": [[32, "viser.Icon.GIT_BRANCH_DELETED"]], "git_cherry_pick (viser.icon attribute)": [[32, "viser.Icon.GIT_CHERRY_PICK"]], "git_commit (viser.icon attribute)": [[32, "viser.Icon.GIT_COMMIT"]], "git_compare (viser.icon attribute)": [[32, "viser.Icon.GIT_COMPARE"]], "git_fork (viser.icon attribute)": [[32, "viser.Icon.GIT_FORK"]], "git_merge (viser.icon attribute)": [[32, "viser.Icon.GIT_MERGE"]], "git_pull_request (viser.icon attribute)": [[32, "viser.Icon.GIT_PULL_REQUEST"]], "git_pull_request_closed (viser.icon attribute)": [[32, "viser.Icon.GIT_PULL_REQUEST_CLOSED"]], "git_pull_request_draft (viser.icon attribute)": [[32, "viser.Icon.GIT_PULL_REQUEST_DRAFT"]], "gizmo (viser.icon attribute)": [[32, "viser.Icon.GIZMO"]], "glass (viser.icon attribute)": [[32, "viser.Icon.GLASS"]], "glass_full (viser.icon attribute)": [[32, "viser.Icon.GLASS_FULL"]], "glass_off (viser.icon attribute)": [[32, "viser.Icon.GLASS_OFF"]], "globe (viser.icon attribute)": [[32, "viser.Icon.GLOBE"]], "globe_off (viser.icon attribute)": [[32, "viser.Icon.GLOBE_OFF"]], "golf (viser.icon attribute)": [[32, "viser.Icon.GOLF"]], "golf_off (viser.icon attribute)": [[32, "viser.Icon.GOLF_OFF"]], "go_game (viser.icon attribute)": [[32, "viser.Icon.GO_GAME"]], "gps (viser.icon attribute)": [[32, "viser.Icon.GPS"]], "gradienter (viser.icon attribute)": [[32, "viser.Icon.GRADIENTER"]], "grain (viser.icon attribute)": [[32, "viser.Icon.GRAIN"]], "graph (viser.icon attribute)": [[32, "viser.Icon.GRAPH"]], "graph_off (viser.icon attribute)": [[32, "viser.Icon.GRAPH_OFF"]], "grave (viser.icon attribute)": [[32, "viser.Icon.GRAVE"]], "grave_2 (viser.icon attribute)": [[32, "viser.Icon.GRAVE_2"]], "grid_dots (viser.icon attribute)": [[32, "viser.Icon.GRID_DOTS"]], "grid_pattern (viser.icon attribute)": [[32, "viser.Icon.GRID_PATTERN"]], "grill (viser.icon attribute)": [[32, "viser.Icon.GRILL"]], "grill_fork (viser.icon attribute)": [[32, "viser.Icon.GRILL_FORK"]], "grill_off (viser.icon attribute)": [[32, "viser.Icon.GRILL_OFF"]], "grill_spatula (viser.icon attribute)": [[32, "viser.Icon.GRILL_SPATULA"]], "grip_horizontal (viser.icon attribute)": [[32, "viser.Icon.GRIP_HORIZONTAL"]], "grip_vertical (viser.icon attribute)": [[32, "viser.Icon.GRIP_VERTICAL"]], "growth (viser.icon attribute)": [[32, "viser.Icon.GROWTH"]], "guitar_pick (viser.icon attribute)": [[32, "viser.Icon.GUITAR_PICK"]], "guitar_pick_filled (viser.icon attribute)": [[32, "viser.Icon.GUITAR_PICK_FILLED"]], "hammer (viser.icon attribute)": [[32, "viser.Icon.HAMMER"]], "hammer_off (viser.icon attribute)": [[32, "viser.Icon.HAMMER_OFF"]], "hand_click (viser.icon attribute)": [[32, "viser.Icon.HAND_CLICK"]], "hand_finger (viser.icon attribute)": [[32, "viser.Icon.HAND_FINGER"]], "hand_finger_off (viser.icon attribute)": [[32, "viser.Icon.HAND_FINGER_OFF"]], "hand_grab (viser.icon attribute)": [[32, "viser.Icon.HAND_GRAB"]], "hand_little_finger (viser.icon attribute)": [[32, "viser.Icon.HAND_LITTLE_FINGER"]], "hand_middle_finger (viser.icon attribute)": [[32, "viser.Icon.HAND_MIDDLE_FINGER"]], "hand_move (viser.icon attribute)": [[32, "viser.Icon.HAND_MOVE"]], "hand_off (viser.icon attribute)": [[32, "viser.Icon.HAND_OFF"]], "hand_ring_finger (viser.icon attribute)": [[32, "viser.Icon.HAND_RING_FINGER"]], "hand_rock (viser.icon attribute)": [[32, "viser.Icon.HAND_ROCK"]], "hand_sanitizer (viser.icon attribute)": [[32, "viser.Icon.HAND_SANITIZER"]], "hand_stop (viser.icon attribute)": [[32, "viser.Icon.HAND_STOP"]], "hand_three_fingers (viser.icon attribute)": [[32, "viser.Icon.HAND_THREE_FINGERS"]], "hand_two_fingers (viser.icon attribute)": [[32, "viser.Icon.HAND_TWO_FINGERS"]], "hanger (viser.icon attribute)": [[32, "viser.Icon.HANGER"]], "hanger_2 (viser.icon attribute)": [[32, "viser.Icon.HANGER_2"]], "hanger_off (viser.icon attribute)": [[32, "viser.Icon.HANGER_OFF"]], "hash (viser.icon attribute)": [[32, "viser.Icon.HASH"]], "haze (viser.icon attribute)": [[32, "viser.Icon.HAZE"]], "haze_moon (viser.icon attribute)": [[32, "viser.Icon.HAZE_MOON"]], "hdr (viser.icon attribute)": [[32, "viser.Icon.HDR"]], "heading (viser.icon attribute)": [[32, "viser.Icon.HEADING"]], "heading_off (viser.icon attribute)": [[32, "viser.Icon.HEADING_OFF"]], "headphones (viser.icon attribute)": [[32, "viser.Icon.HEADPHONES"]], "headphones_filled (viser.icon attribute)": [[32, "viser.Icon.HEADPHONES_FILLED"]], "headphones_off (viser.icon attribute)": [[32, "viser.Icon.HEADPHONES_OFF"]], "headset (viser.icon attribute)": [[32, "viser.Icon.HEADSET"]], "headset_off (viser.icon attribute)": [[32, "viser.Icon.HEADSET_OFF"]], "health_recognition (viser.icon attribute)": [[32, "viser.Icon.HEALTH_RECOGNITION"]], "heart (viser.icon attribute)": [[32, "viser.Icon.HEART"]], "heartbeat (viser.icon attribute)": [[32, "viser.Icon.HEARTBEAT"]], "hearts (viser.icon attribute)": [[32, "viser.Icon.HEARTS"]], "hearts_off (viser.icon attribute)": [[32, "viser.Icon.HEARTS_OFF"]], "heart_broken (viser.icon attribute)": [[32, "viser.Icon.HEART_BROKEN"]], "heart_filled (viser.icon attribute)": [[32, "viser.Icon.HEART_FILLED"]], "heart_handshake (viser.icon attribute)": [[32, "viser.Icon.HEART_HANDSHAKE"]], "heart_minus (viser.icon attribute)": [[32, "viser.Icon.HEART_MINUS"]], "heart_off (viser.icon attribute)": [[32, "viser.Icon.HEART_OFF"]], "heart_plus (viser.icon attribute)": [[32, "viser.Icon.HEART_PLUS"]], "heart_rate_monitor (viser.icon attribute)": [[32, "viser.Icon.HEART_RATE_MONITOR"]], "helicopter (viser.icon attribute)": [[32, "viser.Icon.HELICOPTER"]], "helicopter_landing (viser.icon attribute)": [[32, "viser.Icon.HELICOPTER_LANDING"]], "helmet (viser.icon attribute)": [[32, "viser.Icon.HELMET"]], "helmet_off (viser.icon attribute)": [[32, "viser.Icon.HELMET_OFF"]], "help (viser.icon attribute)": [[32, "viser.Icon.HELP"]], "help_circle (viser.icon attribute)": [[32, "viser.Icon.HELP_CIRCLE"]], "help_circle_filled (viser.icon attribute)": [[32, "viser.Icon.HELP_CIRCLE_FILLED"]], "help_hexagon (viser.icon attribute)": [[32, "viser.Icon.HELP_HEXAGON"]], "help_hexagon_filled (viser.icon attribute)": [[32, "viser.Icon.HELP_HEXAGON_FILLED"]], "help_octagon (viser.icon attribute)": [[32, "viser.Icon.HELP_OCTAGON"]], "help_octagon_filled (viser.icon attribute)": [[32, "viser.Icon.HELP_OCTAGON_FILLED"]], "help_off (viser.icon attribute)": [[32, "viser.Icon.HELP_OFF"]], "help_small (viser.icon attribute)": [[32, "viser.Icon.HELP_SMALL"]], "help_square (viser.icon attribute)": [[32, "viser.Icon.HELP_SQUARE"]], "help_square_filled (viser.icon attribute)": [[32, "viser.Icon.HELP_SQUARE_FILLED"]], "help_square_rounded (viser.icon attribute)": [[32, "viser.Icon.HELP_SQUARE_ROUNDED"]], "help_square_rounded_filled (viser.icon attribute)": [[32, "viser.Icon.HELP_SQUARE_ROUNDED_FILLED"]], "help_triangle (viser.icon attribute)": [[32, "viser.Icon.HELP_TRIANGLE"]], "help_triangle_filled (viser.icon attribute)": [[32, "viser.Icon.HELP_TRIANGLE_FILLED"]], "hemisphere (viser.icon attribute)": [[32, "viser.Icon.HEMISPHERE"]], "hemisphere_off (viser.icon attribute)": [[32, "viser.Icon.HEMISPHERE_OFF"]], "hemisphere_plus (viser.icon attribute)": [[32, "viser.Icon.HEMISPHERE_PLUS"]], "hexagon (viser.icon attribute)": [[32, "viser.Icon.HEXAGON"]], "hexagonal_prism (viser.icon attribute)": [[32, "viser.Icon.HEXAGONAL_PRISM"]], "hexagonal_prism_off (viser.icon attribute)": [[32, "viser.Icon.HEXAGONAL_PRISM_OFF"]], "hexagonal_prism_plus (viser.icon attribute)": [[32, "viser.Icon.HEXAGONAL_PRISM_PLUS"]], "hexagonal_pyramid (viser.icon attribute)": [[32, "viser.Icon.HEXAGONAL_PYRAMID"]], "hexagonal_pyramid_off (viser.icon attribute)": [[32, "viser.Icon.HEXAGONAL_PYRAMID_OFF"]], "hexagonal_pyramid_plus (viser.icon attribute)": [[32, "viser.Icon.HEXAGONAL_PYRAMID_PLUS"]], "hexagons (viser.icon attribute)": [[32, "viser.Icon.HEXAGONS"]], "hexagons_off (viser.icon attribute)": [[32, "viser.Icon.HEXAGONS_OFF"]], "hexagon_0_filled (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_0_FILLED"]], "hexagon_1_filled (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_1_FILLED"]], "hexagon_2_filled (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_2_FILLED"]], "hexagon_3d (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_3D"]], "hexagon_3_filled (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_3_FILLED"]], "hexagon_4_filled (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_4_FILLED"]], "hexagon_5_filled (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_5_FILLED"]], "hexagon_6_filled (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_6_FILLED"]], "hexagon_7_filled (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_7_FILLED"]], "hexagon_8_filled (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_8_FILLED"]], "hexagon_9_filled (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_9_FILLED"]], "hexagon_filled (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_FILLED"]], "hexagon_letter_a (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_A"]], "hexagon_letter_b (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_B"]], "hexagon_letter_c (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_C"]], "hexagon_letter_d (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_D"]], "hexagon_letter_e (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_E"]], "hexagon_letter_f (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_F"]], "hexagon_letter_g (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_G"]], "hexagon_letter_h (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_H"]], "hexagon_letter_i (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_I"]], "hexagon_letter_j (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_J"]], "hexagon_letter_k (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_K"]], "hexagon_letter_l (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_L"]], "hexagon_letter_m (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_M"]], "hexagon_letter_n (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_N"]], "hexagon_letter_o (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_O"]], "hexagon_letter_p (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_P"]], "hexagon_letter_q (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_Q"]], "hexagon_letter_r (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_R"]], "hexagon_letter_s (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_S"]], "hexagon_letter_t (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_T"]], "hexagon_letter_u (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_U"]], "hexagon_letter_v (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_V"]], "hexagon_letter_w (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_W"]], "hexagon_letter_x (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_X"]], "hexagon_letter_y (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_Y"]], "hexagon_letter_z (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_Z"]], "hexagon_number_0 (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_NUMBER_0"]], "hexagon_number_1 (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_NUMBER_1"]], "hexagon_number_2 (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_NUMBER_2"]], "hexagon_number_3 (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_NUMBER_3"]], "hexagon_number_4 (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_NUMBER_4"]], "hexagon_number_5 (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_NUMBER_5"]], "hexagon_number_6 (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_NUMBER_6"]], "hexagon_number_7 (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_NUMBER_7"]], "hexagon_number_8 (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_NUMBER_8"]], "hexagon_number_9 (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_NUMBER_9"]], "hexagon_off (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_OFF"]], "hierarchy (viser.icon attribute)": [[32, "viser.Icon.HIERARCHY"]], "hierarchy_2 (viser.icon attribute)": [[32, "viser.Icon.HIERARCHY_2"]], "hierarchy_3 (viser.icon attribute)": [[32, "viser.Icon.HIERARCHY_3"]], "hierarchy_off (viser.icon attribute)": [[32, "viser.Icon.HIERARCHY_OFF"]], "highlight (viser.icon attribute)": [[32, "viser.Icon.HIGHLIGHT"]], "highlight_off (viser.icon attribute)": [[32, "viser.Icon.HIGHLIGHT_OFF"]], "history (viser.icon attribute)": [[32, "viser.Icon.HISTORY"]], "history_off (viser.icon attribute)": [[32, "viser.Icon.HISTORY_OFF"]], "history_toggle (viser.icon attribute)": [[32, "viser.Icon.HISTORY_TOGGLE"]], "home (viser.icon attribute)": [[32, "viser.Icon.HOME"]], "home_2 (viser.icon attribute)": [[32, "viser.Icon.HOME_2"]], "home_bolt (viser.icon attribute)": [[32, "viser.Icon.HOME_BOLT"]], "home_cancel (viser.icon attribute)": [[32, "viser.Icon.HOME_CANCEL"]], "home_check (viser.icon attribute)": [[32, "viser.Icon.HOME_CHECK"]], "home_cog (viser.icon attribute)": [[32, "viser.Icon.HOME_COG"]], "home_dollar (viser.icon attribute)": [[32, "viser.Icon.HOME_DOLLAR"]], "home_dot (viser.icon attribute)": [[32, "viser.Icon.HOME_DOT"]], "home_down (viser.icon attribute)": [[32, "viser.Icon.HOME_DOWN"]], "home_eco (viser.icon attribute)": [[32, "viser.Icon.HOME_ECO"]], "home_edit (viser.icon attribute)": [[32, "viser.Icon.HOME_EDIT"]], "home_exclamation (viser.icon attribute)": [[32, "viser.Icon.HOME_EXCLAMATION"]], "home_hand (viser.icon attribute)": [[32, "viser.Icon.HOME_HAND"]], "home_heart (viser.icon attribute)": [[32, "viser.Icon.HOME_HEART"]], "home_infinity (viser.icon attribute)": [[32, "viser.Icon.HOME_INFINITY"]], "home_link (viser.icon attribute)": [[32, "viser.Icon.HOME_LINK"]], "home_minus (viser.icon attribute)": [[32, "viser.Icon.HOME_MINUS"]], "home_move (viser.icon attribute)": [[32, "viser.Icon.HOME_MOVE"]], "home_off (viser.icon attribute)": [[32, "viser.Icon.HOME_OFF"]], "home_plus (viser.icon attribute)": [[32, "viser.Icon.HOME_PLUS"]], "home_question (viser.icon attribute)": [[32, "viser.Icon.HOME_QUESTION"]], "home_ribbon (viser.icon attribute)": [[32, "viser.Icon.HOME_RIBBON"]], "home_search (viser.icon attribute)": [[32, "viser.Icon.HOME_SEARCH"]], "home_share (viser.icon attribute)": [[32, "viser.Icon.HOME_SHARE"]], "home_shield (viser.icon attribute)": [[32, "viser.Icon.HOME_SHIELD"]], "home_signal (viser.icon attribute)": [[32, "viser.Icon.HOME_SIGNAL"]], "home_star (viser.icon attribute)": [[32, "viser.Icon.HOME_STAR"]], "home_stats (viser.icon attribute)": [[32, "viser.Icon.HOME_STATS"]], "home_up (viser.icon attribute)": [[32, "viser.Icon.HOME_UP"]], "home_x (viser.icon attribute)": [[32, "viser.Icon.HOME_X"]], "horse_toy (viser.icon attribute)": [[32, "viser.Icon.HORSE_TOY"]], "hotel_service (viser.icon attribute)": [[32, "viser.Icon.HOTEL_SERVICE"]], "hourglass (viser.icon attribute)": [[32, "viser.Icon.HOURGLASS"]], "hourglass_empty (viser.icon attribute)": [[32, "viser.Icon.HOURGLASS_EMPTY"]], "hourglass_filled (viser.icon attribute)": [[32, "viser.Icon.HOURGLASS_FILLED"]], "hourglass_high (viser.icon attribute)": [[32, "viser.Icon.HOURGLASS_HIGH"]], "hourglass_low (viser.icon attribute)": [[32, "viser.Icon.HOURGLASS_LOW"]], "hourglass_off (viser.icon attribute)": [[32, "viser.Icon.HOURGLASS_OFF"]], "html (viser.icon attribute)": [[32, "viser.Icon.HTML"]], "http_connect (viser.icon attribute)": [[32, "viser.Icon.HTTP_CONNECT"]], "http_delete (viser.icon attribute)": [[32, "viser.Icon.HTTP_DELETE"]], "http_get (viser.icon attribute)": [[32, "viser.Icon.HTTP_GET"]], "http_head (viser.icon attribute)": [[32, "viser.Icon.HTTP_HEAD"]], "http_options (viser.icon attribute)": [[32, "viser.Icon.HTTP_OPTIONS"]], "http_patch (viser.icon attribute)": [[32, "viser.Icon.HTTP_PATCH"]], "http_post (viser.icon attribute)": [[32, "viser.Icon.HTTP_POST"]], "http_put (viser.icon attribute)": [[32, "viser.Icon.HTTP_PUT"]], "http_que (viser.icon attribute)": [[32, "viser.Icon.HTTP_QUE"]], "http_trace (viser.icon attribute)": [[32, "viser.Icon.HTTP_TRACE"]], "h_1 (viser.icon attribute)": [[32, "viser.Icon.H_1"]], "h_2 (viser.icon attribute)": [[32, "viser.Icon.H_2"]], "h_3 (viser.icon attribute)": [[32, "viser.Icon.H_3"]], "h_4 (viser.icon attribute)": [[32, "viser.Icon.H_4"]], "h_5 (viser.icon attribute)": [[32, "viser.Icon.H_5"]], "h_6 (viser.icon attribute)": [[32, "viser.Icon.H_6"]], "ice_cream (viser.icon attribute)": [[32, "viser.Icon.ICE_CREAM"]], "ice_cream_2 (viser.icon attribute)": [[32, "viser.Icon.ICE_CREAM_2"]], "ice_cream_off (viser.icon attribute)": [[32, "viser.Icon.ICE_CREAM_OFF"]], "ice_skating (viser.icon attribute)": [[32, "viser.Icon.ICE_SKATING"]], "icons (viser.icon attribute)": [[32, "viser.Icon.ICONS"]], "icons_off (viser.icon attribute)": [[32, "viser.Icon.ICONS_OFF"]], "icon_123 (viser.icon attribute)": [[32, "viser.Icon.ICON_123"]], "icon_24_hours (viser.icon attribute)": [[32, "viser.Icon.ICON_24_HOURS"]], "icon_2fa (viser.icon attribute)": [[32, "viser.Icon.ICON_2FA"]], "icon_360 (viser.icon attribute)": [[32, "viser.Icon.ICON_360"]], "icon_360_view (viser.icon attribute)": [[32, "viser.Icon.ICON_360_VIEW"]], "icon_3d_cube_sphere (viser.icon attribute)": [[32, "viser.Icon.ICON_3D_CUBE_SPHERE"]], "icon_3d_cube_sphere_off (viser.icon attribute)": [[32, "viser.Icon.ICON_3D_CUBE_SPHERE_OFF"]], "icon_3d_rotate (viser.icon attribute)": [[32, "viser.Icon.ICON_3D_ROTATE"]], "id (viser.icon attribute)": [[32, "viser.Icon.ID"]], "id_badge (viser.icon attribute)": [[32, "viser.Icon.ID_BADGE"]], "id_badge_2 (viser.icon attribute)": [[32, "viser.Icon.ID_BADGE_2"]], "id_badge_off (viser.icon attribute)": [[32, "viser.Icon.ID_BADGE_OFF"]], "id_off (viser.icon attribute)": [[32, "viser.Icon.ID_OFF"]], "inbox (viser.icon attribute)": [[32, "viser.Icon.INBOX"]], "inbox_off (viser.icon attribute)": [[32, "viser.Icon.INBOX_OFF"]], "indent_decrease (viser.icon attribute)": [[32, "viser.Icon.INDENT_DECREASE"]], "indent_increase (viser.icon attribute)": [[32, "viser.Icon.INDENT_INCREASE"]], "infinity (viser.icon attribute)": [[32, "viser.Icon.INFINITY"]], "infinity_off (viser.icon attribute)": [[32, "viser.Icon.INFINITY_OFF"]], "info_circle (viser.icon attribute)": [[32, "viser.Icon.INFO_CIRCLE"]], "info_circle_filled (viser.icon attribute)": [[32, "viser.Icon.INFO_CIRCLE_FILLED"]], "info_hexagon (viser.icon attribute)": [[32, "viser.Icon.INFO_HEXAGON"]], "info_hexagon_filled (viser.icon attribute)": [[32, "viser.Icon.INFO_HEXAGON_FILLED"]], "info_octagon (viser.icon attribute)": [[32, "viser.Icon.INFO_OCTAGON"]], "info_octagon_filled (viser.icon attribute)": [[32, "viser.Icon.INFO_OCTAGON_FILLED"]], "info_small (viser.icon attribute)": [[32, "viser.Icon.INFO_SMALL"]], "info_square (viser.icon attribute)": [[32, "viser.Icon.INFO_SQUARE"]], "info_square_filled (viser.icon attribute)": [[32, "viser.Icon.INFO_SQUARE_FILLED"]], "info_square_rounded (viser.icon attribute)": [[32, "viser.Icon.INFO_SQUARE_ROUNDED"]], "info_square_rounded_filled (viser.icon attribute)": [[32, "viser.Icon.INFO_SQUARE_ROUNDED_FILLED"]], "info_triangle (viser.icon attribute)": [[32, "viser.Icon.INFO_TRIANGLE"]], "info_triangle_filled (viser.icon attribute)": [[32, "viser.Icon.INFO_TRIANGLE_FILLED"]], "inner_shadow_bottom (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_BOTTOM"]], "inner_shadow_bottom_filled (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_BOTTOM_FILLED"]], "inner_shadow_bottom_left (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_BOTTOM_LEFT"]], "inner_shadow_bottom_left_filled (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_BOTTOM_LEFT_FILLED"]], "inner_shadow_bottom_right (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_BOTTOM_RIGHT"]], "inner_shadow_bottom_right_filled (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_BOTTOM_RIGHT_FILLED"]], "inner_shadow_left (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_LEFT"]], "inner_shadow_left_filled (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_LEFT_FILLED"]], "inner_shadow_right (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_RIGHT"]], "inner_shadow_right_filled (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_RIGHT_FILLED"]], "inner_shadow_top (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_TOP"]], "inner_shadow_top_filled (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_TOP_FILLED"]], "inner_shadow_top_left (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_TOP_LEFT"]], "inner_shadow_top_left_filled (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_TOP_LEFT_FILLED"]], "inner_shadow_top_right (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_TOP_RIGHT"]], "inner_shadow_top_right_filled (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_TOP_RIGHT_FILLED"]], "input_search (viser.icon attribute)": [[32, "viser.Icon.INPUT_SEARCH"]], "ironing (viser.icon attribute)": [[32, "viser.Icon.IRONING"]], "ironing_1 (viser.icon attribute)": [[32, "viser.Icon.IRONING_1"]], "ironing_2 (viser.icon attribute)": [[32, "viser.Icon.IRONING_2"]], "ironing_3 (viser.icon attribute)": [[32, "viser.Icon.IRONING_3"]], "ironing_off (viser.icon attribute)": [[32, "viser.Icon.IRONING_OFF"]], "ironing_steam (viser.icon attribute)": [[32, "viser.Icon.IRONING_STEAM"]], "ironing_steam_off (viser.icon attribute)": [[32, "viser.Icon.IRONING_STEAM_OFF"]], "irregular_polyhedron (viser.icon attribute)": [[32, "viser.Icon.IRREGULAR_POLYHEDRON"]], "irregular_polyhedron_off (viser.icon attribute)": [[32, "viser.Icon.IRREGULAR_POLYHEDRON_OFF"]], "irregular_polyhedron_plus (viser.icon attribute)": [[32, "viser.Icon.IRREGULAR_POLYHEDRON_PLUS"]], "italic (viser.icon attribute)": [[32, "viser.Icon.ITALIC"]], "icon (class in viser)": [[32, "viser.Icon"]], "iconname (class in viser)": [[32, "viser.IconName"]], "jacket (viser.icon attribute)": [[32, "viser.Icon.JACKET"]], "jetpack (viser.icon attribute)": [[32, "viser.Icon.JETPACK"]], "jewish_star (viser.icon attribute)": [[32, "viser.Icon.JEWISH_STAR"]], "jewish_star_filled (viser.icon attribute)": [[32, "viser.Icon.JEWISH_STAR_FILLED"]], "jpg (viser.icon attribute)": [[32, "viser.Icon.JPG"]], "json (viser.icon attribute)": [[32, "viser.Icon.JSON"]], "jump_rope (viser.icon attribute)": [[32, "viser.Icon.JUMP_ROPE"]], "karate (viser.icon attribute)": [[32, "viser.Icon.KARATE"]], "kayak (viser.icon attribute)": [[32, "viser.Icon.KAYAK"]], "kering (viser.icon attribute)": [[32, "viser.Icon.KERING"]], "key (viser.icon attribute)": [[32, "viser.Icon.KEY"]], "keyboard (viser.icon attribute)": [[32, "viser.Icon.KEYBOARD"]], "keyboard_hide (viser.icon attribute)": [[32, "viser.Icon.KEYBOARD_HIDE"]], "keyboard_off (viser.icon attribute)": [[32, "viser.Icon.KEYBOARD_OFF"]], "keyboard_show (viser.icon attribute)": [[32, "viser.Icon.KEYBOARD_SHOW"]], "keyframe (viser.icon attribute)": [[32, "viser.Icon.KEYFRAME"]], "keyframes (viser.icon attribute)": [[32, "viser.Icon.KEYFRAMES"]], "keyframe_align_center (viser.icon attribute)": [[32, "viser.Icon.KEYFRAME_ALIGN_CENTER"]], "keyframe_align_horizontal (viser.icon attribute)": [[32, "viser.Icon.KEYFRAME_ALIGN_HORIZONTAL"]], "keyframe_align_vertical (viser.icon attribute)": [[32, "viser.Icon.KEYFRAME_ALIGN_VERTICAL"]], "key_off (viser.icon attribute)": [[32, "viser.Icon.KEY_OFF"]], "ladder (viser.icon attribute)": [[32, "viser.Icon.LADDER"]], "ladder_off (viser.icon attribute)": [[32, "viser.Icon.LADDER_OFF"]], "lambda (viser.icon attribute)": [[32, "viser.Icon.LAMBDA"]], "lamp (viser.icon attribute)": [[32, "viser.Icon.LAMP"]], "lamp_2 (viser.icon attribute)": [[32, "viser.Icon.LAMP_2"]], "lamp_off (viser.icon attribute)": [[32, "viser.Icon.LAMP_OFF"]], "lane (viser.icon attribute)": [[32, "viser.Icon.LANE"]], "language (viser.icon attribute)": [[32, "viser.Icon.LANGUAGE"]], "language_hiragana (viser.icon attribute)": [[32, "viser.Icon.LANGUAGE_HIRAGANA"]], "language_katakana (viser.icon attribute)": [[32, "viser.Icon.LANGUAGE_KATAKANA"]], "language_off (viser.icon attribute)": [[32, "viser.Icon.LANGUAGE_OFF"]], "lasso (viser.icon attribute)": [[32, "viser.Icon.LASSO"]], "lasso_off (viser.icon attribute)": [[32, "viser.Icon.LASSO_OFF"]], "lasso_polygon (viser.icon attribute)": [[32, "viser.Icon.LASSO_POLYGON"]], "layers_difference (viser.icon attribute)": [[32, "viser.Icon.LAYERS_DIFFERENCE"]], "layers_intersect (viser.icon attribute)": [[32, "viser.Icon.LAYERS_INTERSECT"]], "layers_intersect_2 (viser.icon attribute)": [[32, "viser.Icon.LAYERS_INTERSECT_2"]], "layers_linked (viser.icon attribute)": [[32, "viser.Icon.LAYERS_LINKED"]], "layers_off (viser.icon attribute)": [[32, "viser.Icon.LAYERS_OFF"]], "layers_subtract (viser.icon attribute)": [[32, "viser.Icon.LAYERS_SUBTRACT"]], "layers_union (viser.icon attribute)": [[32, "viser.Icon.LAYERS_UNION"]], "layout (viser.icon attribute)": [[32, "viser.Icon.LAYOUT"]], "layout_2 (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_2"]], "layout_align_bottom (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_ALIGN_BOTTOM"]], "layout_align_center (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_ALIGN_CENTER"]], "layout_align_left (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_ALIGN_LEFT"]], "layout_align_middle (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_ALIGN_MIDDLE"]], "layout_align_right (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_ALIGN_RIGHT"]], "layout_align_top (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_ALIGN_TOP"]], "layout_board (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_BOARD"]], "layout_board_split (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_BOARD_SPLIT"]], "layout_bottombar (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_BOTTOMBAR"]], "layout_bottombar_collapse (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_BOTTOMBAR_COLLAPSE"]], "layout_bottombar_expand (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_BOTTOMBAR_EXPAND"]], "layout_cards (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_CARDS"]], "layout_collage (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_COLLAGE"]], "layout_columns (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_COLUMNS"]], "layout_dashboard (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_DASHBOARD"]], "layout_distribute_horizontal (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_DISTRIBUTE_HORIZONTAL"]], "layout_distribute_vertical (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_DISTRIBUTE_VERTICAL"]], "layout_grid (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_GRID"]], "layout_grid_add (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_GRID_ADD"]], "layout_grid_remove (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_GRID_REMOVE"]], "layout_kanban (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_KANBAN"]], "layout_list (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_LIST"]], "layout_navbar (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_NAVBAR"]], "layout_navbar_collapse (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_NAVBAR_COLLAPSE"]], "layout_navbar_expand (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_NAVBAR_EXPAND"]], "layout_off (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_OFF"]], "layout_rows (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_ROWS"]], "layout_sidebar (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_SIDEBAR"]], "layout_sidebar_left_collapse (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_SIDEBAR_LEFT_COLLAPSE"]], "layout_sidebar_left_expand (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_SIDEBAR_LEFT_EXPAND"]], "layout_sidebar_right (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_SIDEBAR_RIGHT"]], "layout_sidebar_right_collapse (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_SIDEBAR_RIGHT_COLLAPSE"]], "layout_sidebar_right_expand (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_SIDEBAR_RIGHT_EXPAND"]], "leaf (viser.icon attribute)": [[32, "viser.Icon.LEAF"]], "leaf_off (viser.icon attribute)": [[32, "viser.Icon.LEAF_OFF"]], "lego (viser.icon attribute)": [[32, "viser.Icon.LEGO"]], "lego_off (viser.icon attribute)": [[32, "viser.Icon.LEGO_OFF"]], "lemon (viser.icon attribute)": [[32, "viser.Icon.LEMON"]], "lemon_2 (viser.icon attribute)": [[32, "viser.Icon.LEMON_2"]], "letter_a (viser.icon attribute)": [[32, "viser.Icon.LETTER_A"]], "letter_b (viser.icon attribute)": [[32, "viser.Icon.LETTER_B"]], "letter_c (viser.icon attribute)": [[32, "viser.Icon.LETTER_C"]], "letter_case (viser.icon attribute)": [[32, "viser.Icon.LETTER_CASE"]], "letter_case_lower (viser.icon attribute)": [[32, "viser.Icon.LETTER_CASE_LOWER"]], "letter_case_toggle (viser.icon attribute)": [[32, "viser.Icon.LETTER_CASE_TOGGLE"]], "letter_case_upper (viser.icon attribute)": [[32, "viser.Icon.LETTER_CASE_UPPER"]], "letter_d (viser.icon attribute)": [[32, "viser.Icon.LETTER_D"]], "letter_e (viser.icon attribute)": [[32, "viser.Icon.LETTER_E"]], "letter_f (viser.icon attribute)": [[32, "viser.Icon.LETTER_F"]], "letter_g (viser.icon attribute)": [[32, "viser.Icon.LETTER_G"]], "letter_h (viser.icon attribute)": [[32, "viser.Icon.LETTER_H"]], "letter_i (viser.icon attribute)": [[32, "viser.Icon.LETTER_I"]], "letter_j (viser.icon attribute)": [[32, "viser.Icon.LETTER_J"]], "letter_k (viser.icon attribute)": [[32, "viser.Icon.LETTER_K"]], "letter_l (viser.icon attribute)": [[32, "viser.Icon.LETTER_L"]], "letter_m (viser.icon attribute)": [[32, "viser.Icon.LETTER_M"]], "letter_n (viser.icon attribute)": [[32, "viser.Icon.LETTER_N"]], "letter_o (viser.icon attribute)": [[32, "viser.Icon.LETTER_O"]], "letter_p (viser.icon attribute)": [[32, "viser.Icon.LETTER_P"]], "letter_q (viser.icon attribute)": [[32, "viser.Icon.LETTER_Q"]], "letter_r (viser.icon attribute)": [[32, "viser.Icon.LETTER_R"]], "letter_s (viser.icon attribute)": [[32, "viser.Icon.LETTER_S"]], "letter_spacing (viser.icon attribute)": [[32, "viser.Icon.LETTER_SPACING"]], "letter_t (viser.icon attribute)": [[32, "viser.Icon.LETTER_T"]], "letter_u (viser.icon attribute)": [[32, "viser.Icon.LETTER_U"]], "letter_v (viser.icon attribute)": [[32, "viser.Icon.LETTER_V"]], "letter_w (viser.icon attribute)": [[32, "viser.Icon.LETTER_W"]], "letter_x (viser.icon attribute)": [[32, "viser.Icon.LETTER_X"]], "letter_y (viser.icon attribute)": [[32, "viser.Icon.LETTER_Y"]], "letter_z (viser.icon attribute)": [[32, "viser.Icon.LETTER_Z"]], "license (viser.icon attribute)": [[32, "viser.Icon.LICENSE"]], "license_off (viser.icon attribute)": [[32, "viser.Icon.LICENSE_OFF"]], "lifebuoy (viser.icon attribute)": [[32, "viser.Icon.LIFEBUOY"]], "lifebuoy_off (viser.icon attribute)": [[32, "viser.Icon.LIFEBUOY_OFF"]], "lighter (viser.icon attribute)": [[32, "viser.Icon.LIGHTER"]], "line (viser.icon attribute)": [[32, "viser.Icon.LINE"]], "line_dashed (viser.icon attribute)": [[32, "viser.Icon.LINE_DASHED"]], "line_dotted (viser.icon attribute)": [[32, "viser.Icon.LINE_DOTTED"]], "line_height (viser.icon attribute)": [[32, "viser.Icon.LINE_HEIGHT"]], "link (viser.icon attribute)": [[32, "viser.Icon.LINK"]], "link_off (viser.icon attribute)": [[32, "viser.Icon.LINK_OFF"]], "list (viser.icon attribute)": [[32, "viser.Icon.LIST"]], "list_check (viser.icon attribute)": [[32, "viser.Icon.LIST_CHECK"]], "list_details (viser.icon attribute)": [[32, "viser.Icon.LIST_DETAILS"]], "list_numbers (viser.icon attribute)": [[32, "viser.Icon.LIST_NUMBERS"]], "list_search (viser.icon attribute)": [[32, "viser.Icon.LIST_SEARCH"]], "list_tree (viser.icon attribute)": [[32, "viser.Icon.LIST_TREE"]], "live_photo (viser.icon attribute)": [[32, "viser.Icon.LIVE_PHOTO"]], "live_photo_off (viser.icon attribute)": [[32, "viser.Icon.LIVE_PHOTO_OFF"]], "live_view (viser.icon attribute)": [[32, "viser.Icon.LIVE_VIEW"]], "loader (viser.icon attribute)": [[32, "viser.Icon.LOADER"]], "loader_2 (viser.icon attribute)": [[32, "viser.Icon.LOADER_2"]], "loader_3 (viser.icon attribute)": [[32, "viser.Icon.LOADER_3"]], "loader_quarter (viser.icon attribute)": [[32, "viser.Icon.LOADER_QUARTER"]], "load_balancer (viser.icon attribute)": [[32, "viser.Icon.LOAD_BALANCER"]], "location (viser.icon attribute)": [[32, "viser.Icon.LOCATION"]], "location_broken (viser.icon attribute)": [[32, "viser.Icon.LOCATION_BROKEN"]], "location_filled (viser.icon attribute)": [[32, "viser.Icon.LOCATION_FILLED"]], "location_off (viser.icon attribute)": [[32, "viser.Icon.LOCATION_OFF"]], "lock (viser.icon attribute)": [[32, "viser.Icon.LOCK"]], "lock_access (viser.icon attribute)": [[32, "viser.Icon.LOCK_ACCESS"]], "lock_access_off (viser.icon attribute)": [[32, "viser.Icon.LOCK_ACCESS_OFF"]], "lock_bolt (viser.icon attribute)": [[32, "viser.Icon.LOCK_BOLT"]], "lock_cancel (viser.icon attribute)": [[32, "viser.Icon.LOCK_CANCEL"]], "lock_check (viser.icon attribute)": [[32, "viser.Icon.LOCK_CHECK"]], "lock_code (viser.icon attribute)": [[32, "viser.Icon.LOCK_CODE"]], "lock_cog (viser.icon attribute)": [[32, "viser.Icon.LOCK_COG"]], "lock_dollar (viser.icon attribute)": [[32, "viser.Icon.LOCK_DOLLAR"]], "lock_down (viser.icon attribute)": [[32, "viser.Icon.LOCK_DOWN"]], "lock_exclamation (viser.icon attribute)": [[32, "viser.Icon.LOCK_EXCLAMATION"]], "lock_heart (viser.icon attribute)": [[32, "viser.Icon.LOCK_HEART"]], "lock_minus (viser.icon attribute)": [[32, "viser.Icon.LOCK_MINUS"]], "lock_off (viser.icon attribute)": [[32, "viser.Icon.LOCK_OFF"]], "lock_open (viser.icon attribute)": [[32, "viser.Icon.LOCK_OPEN"]], "lock_open_off (viser.icon attribute)": [[32, "viser.Icon.LOCK_OPEN_OFF"]], "lock_pause (viser.icon attribute)": [[32, "viser.Icon.LOCK_PAUSE"]], "lock_pin (viser.icon attribute)": [[32, "viser.Icon.LOCK_PIN"]], "lock_plus (viser.icon attribute)": [[32, "viser.Icon.LOCK_PLUS"]], "lock_question (viser.icon attribute)": [[32, "viser.Icon.LOCK_QUESTION"]], "lock_search (viser.icon attribute)": [[32, "viser.Icon.LOCK_SEARCH"]], "lock_share (viser.icon attribute)": [[32, "viser.Icon.LOCK_SHARE"]], "lock_square (viser.icon attribute)": [[32, "viser.Icon.LOCK_SQUARE"]], "lock_square_rounded (viser.icon attribute)": [[32, "viser.Icon.LOCK_SQUARE_ROUNDED"]], "lock_square_rounded_filled (viser.icon attribute)": [[32, "viser.Icon.LOCK_SQUARE_ROUNDED_FILLED"]], "lock_star (viser.icon attribute)": [[32, "viser.Icon.LOCK_STAR"]], "lock_up (viser.icon attribute)": [[32, "viser.Icon.LOCK_UP"]], "lock_x (viser.icon attribute)": [[32, "viser.Icon.LOCK_X"]], "logic_and (viser.icon attribute)": [[32, "viser.Icon.LOGIC_AND"]], "logic_buffer (viser.icon attribute)": [[32, "viser.Icon.LOGIC_BUFFER"]], "logic_nand (viser.icon attribute)": [[32, "viser.Icon.LOGIC_NAND"]], "logic_nor (viser.icon attribute)": [[32, "viser.Icon.LOGIC_NOR"]], "logic_not (viser.icon attribute)": [[32, "viser.Icon.LOGIC_NOT"]], "logic_or (viser.icon attribute)": [[32, "viser.Icon.LOGIC_OR"]], "logic_xnor (viser.icon attribute)": [[32, "viser.Icon.LOGIC_XNOR"]], "logic_xor (viser.icon attribute)": [[32, "viser.Icon.LOGIC_XOR"]], "login (viser.icon attribute)": [[32, "viser.Icon.LOGIN"]], "logout (viser.icon attribute)": [[32, "viser.Icon.LOGOUT"]], "logout_2 (viser.icon attribute)": [[32, "viser.Icon.LOGOUT_2"]], "lollipop (viser.icon attribute)": [[32, "viser.Icon.LOLLIPOP"]], "lollipop_off (viser.icon attribute)": [[32, "viser.Icon.LOLLIPOP_OFF"]], "luggage (viser.icon attribute)": [[32, "viser.Icon.LUGGAGE"]], "luggage_off (viser.icon attribute)": [[32, "viser.Icon.LUGGAGE_OFF"]], "lungs (viser.icon attribute)": [[32, "viser.Icon.LUNGS"]], "lungs_off (viser.icon attribute)": [[32, "viser.Icon.LUNGS_OFF"]], "macro (viser.icon attribute)": [[32, "viser.Icon.MACRO"]], "macro_off (viser.icon attribute)": [[32, "viser.Icon.MACRO_OFF"]], "magnet (viser.icon attribute)": [[32, "viser.Icon.MAGNET"]], "magnet_off (viser.icon attribute)": [[32, "viser.Icon.MAGNET_OFF"]], "mail (viser.icon attribute)": [[32, "viser.Icon.MAIL"]], "mailbox (viser.icon attribute)": [[32, "viser.Icon.MAILBOX"]], "mailbox_off (viser.icon attribute)": [[32, "viser.Icon.MAILBOX_OFF"]], "mail_ai (viser.icon attribute)": [[32, "viser.Icon.MAIL_AI"]], "mail_bolt (viser.icon attribute)": [[32, "viser.Icon.MAIL_BOLT"]], "mail_cancel (viser.icon attribute)": [[32, "viser.Icon.MAIL_CANCEL"]], "mail_check (viser.icon attribute)": [[32, "viser.Icon.MAIL_CHECK"]], "mail_code (viser.icon attribute)": [[32, "viser.Icon.MAIL_CODE"]], "mail_cog (viser.icon attribute)": [[32, "viser.Icon.MAIL_COG"]], "mail_dollar (viser.icon attribute)": [[32, "viser.Icon.MAIL_DOLLAR"]], "mail_down (viser.icon attribute)": [[32, "viser.Icon.MAIL_DOWN"]], "mail_exclamation (viser.icon attribute)": [[32, "viser.Icon.MAIL_EXCLAMATION"]], "mail_fast (viser.icon attribute)": [[32, "viser.Icon.MAIL_FAST"]], "mail_filled (viser.icon attribute)": [[32, "viser.Icon.MAIL_FILLED"]], "mail_forward (viser.icon attribute)": [[32, "viser.Icon.MAIL_FORWARD"]], "mail_heart (viser.icon attribute)": [[32, "viser.Icon.MAIL_HEART"]], "mail_minus (viser.icon attribute)": [[32, "viser.Icon.MAIL_MINUS"]], "mail_off (viser.icon attribute)": [[32, "viser.Icon.MAIL_OFF"]], "mail_opened (viser.icon attribute)": [[32, "viser.Icon.MAIL_OPENED"]], "mail_opened_filled (viser.icon attribute)": [[32, "viser.Icon.MAIL_OPENED_FILLED"]], "mail_pause (viser.icon attribute)": [[32, "viser.Icon.MAIL_PAUSE"]], "mail_pin (viser.icon attribute)": [[32, "viser.Icon.MAIL_PIN"]], "mail_plus (viser.icon attribute)": [[32, "viser.Icon.MAIL_PLUS"]], "mail_question (viser.icon attribute)": [[32, "viser.Icon.MAIL_QUESTION"]], "mail_search (viser.icon attribute)": [[32, "viser.Icon.MAIL_SEARCH"]], "mail_share (viser.icon attribute)": [[32, "viser.Icon.MAIL_SHARE"]], "mail_star (viser.icon attribute)": [[32, "viser.Icon.MAIL_STAR"]], "mail_up (viser.icon attribute)": [[32, "viser.Icon.MAIL_UP"]], "mail_x (viser.icon attribute)": [[32, "viser.Icon.MAIL_X"]], "man (viser.icon attribute)": [[32, "viser.Icon.MAN"]], "manual_gearbox (viser.icon attribute)": [[32, "viser.Icon.MANUAL_GEARBOX"]], "map (viser.icon attribute)": [[32, "viser.Icon.MAP"]], "map_2 (viser.icon attribute)": [[32, "viser.Icon.MAP_2"]], "map_off (viser.icon attribute)": [[32, "viser.Icon.MAP_OFF"]], "map_pin (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN"]], "map_pins (viser.icon attribute)": [[32, "viser.Icon.MAP_PINS"]], "map_pin_bolt (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_BOLT"]], "map_pin_cancel (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_CANCEL"]], "map_pin_check (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_CHECK"]], "map_pin_code (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_CODE"]], "map_pin_cog (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_COG"]], "map_pin_dollar (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_DOLLAR"]], "map_pin_down (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_DOWN"]], "map_pin_exclamation (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_EXCLAMATION"]], "map_pin_filled (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_FILLED"]], "map_pin_heart (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_HEART"]], "map_pin_minus (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_MINUS"]], "map_pin_off (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_OFF"]], "map_pin_pause (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_PAUSE"]], "map_pin_pin (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_PIN"]], "map_pin_plus (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_PLUS"]], "map_pin_question (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_QUESTION"]], "map_pin_search (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_SEARCH"]], "map_pin_share (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_SHARE"]], "map_pin_star (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_STAR"]], "map_pin_up (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_UP"]], "map_pin_x (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_X"]], "map_search (viser.icon attribute)": [[32, "viser.Icon.MAP_SEARCH"]], "markdown (viser.icon attribute)": [[32, "viser.Icon.MARKDOWN"]], "markdown_off (viser.icon attribute)": [[32, "viser.Icon.MARKDOWN_OFF"]], "marquee (viser.icon attribute)": [[32, "viser.Icon.MARQUEE"]], "marquee_2 (viser.icon attribute)": [[32, "viser.Icon.MARQUEE_2"]], "marquee_off (viser.icon attribute)": [[32, "viser.Icon.MARQUEE_OFF"]], "mars (viser.icon attribute)": [[32, "viser.Icon.MARS"]], "mask (viser.icon attribute)": [[32, "viser.Icon.MASK"]], "masks_theater (viser.icon attribute)": [[32, "viser.Icon.MASKS_THEATER"]], "masks_theater_off (viser.icon attribute)": [[32, "viser.Icon.MASKS_THEATER_OFF"]], "mask_off (viser.icon attribute)": [[32, "viser.Icon.MASK_OFF"]], "massage (viser.icon attribute)": [[32, "viser.Icon.MASSAGE"]], "matchstick (viser.icon attribute)": [[32, "viser.Icon.MATCHSTICK"]], "math (viser.icon attribute)": [[32, "viser.Icon.MATH"]], "math_1_divide_2 (viser.icon attribute)": [[32, "viser.Icon.MATH_1_DIVIDE_2"]], "math_1_divide_3 (viser.icon attribute)": [[32, "viser.Icon.MATH_1_DIVIDE_3"]], "math_avg (viser.icon attribute)": [[32, "viser.Icon.MATH_AVG"]], "math_equal_greater (viser.icon attribute)": [[32, "viser.Icon.MATH_EQUAL_GREATER"]], "math_equal_lower (viser.icon attribute)": [[32, "viser.Icon.MATH_EQUAL_LOWER"]], "math_function (viser.icon attribute)": [[32, "viser.Icon.MATH_FUNCTION"]], "math_function_off (viser.icon attribute)": [[32, "viser.Icon.MATH_FUNCTION_OFF"]], "math_function_y (viser.icon attribute)": [[32, "viser.Icon.MATH_FUNCTION_Y"]], "math_greater (viser.icon attribute)": [[32, "viser.Icon.MATH_GREATER"]], "math_integral (viser.icon attribute)": [[32, "viser.Icon.MATH_INTEGRAL"]], "math_integrals (viser.icon attribute)": [[32, "viser.Icon.MATH_INTEGRALS"]], "math_integral_x (viser.icon attribute)": [[32, "viser.Icon.MATH_INTEGRAL_X"]], "math_lower (viser.icon attribute)": [[32, "viser.Icon.MATH_LOWER"]], "math_max (viser.icon attribute)": [[32, "viser.Icon.MATH_MAX"]], "math_min (viser.icon attribute)": [[32, "viser.Icon.MATH_MIN"]], "math_not (viser.icon attribute)": [[32, "viser.Icon.MATH_NOT"]], "math_off (viser.icon attribute)": [[32, "viser.Icon.MATH_OFF"]], "math_pi (viser.icon attribute)": [[32, "viser.Icon.MATH_PI"]], "math_pi_divide_2 (viser.icon attribute)": [[32, "viser.Icon.MATH_PI_DIVIDE_2"]], "math_symbols (viser.icon attribute)": [[32, "viser.Icon.MATH_SYMBOLS"]], "math_xy (viser.icon attribute)": [[32, "viser.Icon.MATH_XY"]], "math_x_divide_2 (viser.icon attribute)": [[32, "viser.Icon.MATH_X_DIVIDE_2"]], "math_x_divide_y (viser.icon attribute)": [[32, "viser.Icon.MATH_X_DIVIDE_Y"]], "math_x_divide_y_2 (viser.icon attribute)": [[32, "viser.Icon.MATH_X_DIVIDE_Y_2"]], "math_x_minus_x (viser.icon attribute)": [[32, "viser.Icon.MATH_X_MINUS_X"]], "math_x_minus_y (viser.icon attribute)": [[32, "viser.Icon.MATH_X_MINUS_Y"]], "math_x_plus_x (viser.icon attribute)": [[32, "viser.Icon.MATH_X_PLUS_X"]], "math_x_plus_y (viser.icon attribute)": [[32, "viser.Icon.MATH_X_PLUS_Y"]], "math_y_minus_y (viser.icon attribute)": [[32, "viser.Icon.MATH_Y_MINUS_Y"]], "math_y_plus_y (viser.icon attribute)": [[32, "viser.Icon.MATH_Y_PLUS_Y"]], "maximize (viser.icon attribute)": [[32, "viser.Icon.MAXIMIZE"]], "maximize_off (viser.icon attribute)": [[32, "viser.Icon.MAXIMIZE_OFF"]], "meat (viser.icon attribute)": [[32, "viser.Icon.MEAT"]], "meat_off (viser.icon attribute)": [[32, "viser.Icon.MEAT_OFF"]], "medal (viser.icon attribute)": [[32, "viser.Icon.MEDAL"]], "medal_2 (viser.icon attribute)": [[32, "viser.Icon.MEDAL_2"]], "medical_cross (viser.icon attribute)": [[32, "viser.Icon.MEDICAL_CROSS"]], "medical_cross_circle (viser.icon attribute)": [[32, "viser.Icon.MEDICAL_CROSS_CIRCLE"]], "medical_cross_filled (viser.icon attribute)": [[32, "viser.Icon.MEDICAL_CROSS_FILLED"]], "medical_cross_off (viser.icon attribute)": [[32, "viser.Icon.MEDICAL_CROSS_OFF"]], "medicine_syrup (viser.icon attribute)": [[32, "viser.Icon.MEDICINE_SYRUP"]], "meeple (viser.icon attribute)": [[32, "viser.Icon.MEEPLE"]], "menorah (viser.icon attribute)": [[32, "viser.Icon.MENORAH"]], "menu (viser.icon attribute)": [[32, "viser.Icon.MENU"]], "menu_2 (viser.icon attribute)": [[32, "viser.Icon.MENU_2"]], "menu_deep (viser.icon attribute)": [[32, "viser.Icon.MENU_DEEP"]], "menu_order (viser.icon attribute)": [[32, "viser.Icon.MENU_ORDER"]], "message (viser.icon attribute)": [[32, "viser.Icon.MESSAGE"]], "messages (viser.icon attribute)": [[32, "viser.Icon.MESSAGES"]], "messages_off (viser.icon attribute)": [[32, "viser.Icon.MESSAGES_OFF"]], "message_2 (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2"]], "message_2_bolt (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_BOLT"]], "message_2_cancel (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_CANCEL"]], "message_2_check (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_CHECK"]], "message_2_code (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_CODE"]], "message_2_cog (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_COG"]], "message_2_dollar (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_DOLLAR"]], "message_2_down (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_DOWN"]], "message_2_exclamation (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_EXCLAMATION"]], "message_2_heart (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_HEART"]], "message_2_minus (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_MINUS"]], "message_2_off (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_OFF"]], "message_2_pause (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_PAUSE"]], "message_2_pin (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_PIN"]], "message_2_plus (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_PLUS"]], "message_2_question (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_QUESTION"]], "message_2_search (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_SEARCH"]], "message_2_share (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_SHARE"]], "message_2_star (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_STAR"]], "message_2_up (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_UP"]], "message_2_x (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_X"]], "message_bolt (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_BOLT"]], "message_cancel (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CANCEL"]], "message_chatbot (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CHATBOT"]], "message_check (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CHECK"]], "message_circle (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE"]], "message_circle_2 (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_2"]], "message_circle_2_filled (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_2_FILLED"]], "message_circle_bolt (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_BOLT"]], "message_circle_cancel (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_CANCEL"]], "message_circle_check (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_CHECK"]], "message_circle_code (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_CODE"]], "message_circle_cog (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_COG"]], "message_circle_dollar (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_DOLLAR"]], "message_circle_down (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_DOWN"]], "message_circle_exclamation (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_EXCLAMATION"]], "message_circle_heart (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_HEART"]], "message_circle_minus (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_MINUS"]], "message_circle_off (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_OFF"]], "message_circle_pause (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_PAUSE"]], "message_circle_pin (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_PIN"]], "message_circle_plus (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_PLUS"]], "message_circle_question (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_QUESTION"]], "message_circle_search (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_SEARCH"]], "message_circle_share (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_SHARE"]], "message_circle_star (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_STAR"]], "message_circle_up (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_UP"]], "message_circle_x (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_X"]], "message_code (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CODE"]], "message_cog (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_COG"]], "message_dollar (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_DOLLAR"]], "message_dots (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_DOTS"]], "message_down (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_DOWN"]], "message_exclamation (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_EXCLAMATION"]], "message_forward (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_FORWARD"]], "message_heart (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_HEART"]], "message_language (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_LANGUAGE"]], "message_minus (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_MINUS"]], "message_off (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_OFF"]], "message_pause (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_PAUSE"]], "message_pin (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_PIN"]], "message_plus (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_PLUS"]], "message_question (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_QUESTION"]], "message_report (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_REPORT"]], "message_search (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_SEARCH"]], "message_share (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_SHARE"]], "message_star (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_STAR"]], "message_up (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_UP"]], "message_x (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_X"]], "meteor (viser.icon attribute)": [[32, "viser.Icon.METEOR"]], "meteor_off (viser.icon attribute)": [[32, "viser.Icon.METEOR_OFF"]], "michelin_bib_gourmand (viser.icon attribute)": [[32, "viser.Icon.MICHELIN_BIB_GOURMAND"]], "michelin_star (viser.icon attribute)": [[32, "viser.Icon.MICHELIN_STAR"]], "michelin_star_green (viser.icon attribute)": [[32, "viser.Icon.MICHELIN_STAR_GREEN"]], "mickey (viser.icon attribute)": [[32, "viser.Icon.MICKEY"]], "mickey_filled (viser.icon attribute)": [[32, "viser.Icon.MICKEY_FILLED"]], "microphone (viser.icon attribute)": [[32, "viser.Icon.MICROPHONE"]], "microphone_2 (viser.icon attribute)": [[32, "viser.Icon.MICROPHONE_2"]], "microphone_2_off (viser.icon attribute)": [[32, "viser.Icon.MICROPHONE_2_OFF"]], "microphone_off (viser.icon attribute)": [[32, "viser.Icon.MICROPHONE_OFF"]], "microscope (viser.icon attribute)": [[32, "viser.Icon.MICROSCOPE"]], "microscope_off (viser.icon attribute)": [[32, "viser.Icon.MICROSCOPE_OFF"]], "microwave (viser.icon attribute)": [[32, "viser.Icon.MICROWAVE"]], "microwave_off (viser.icon attribute)": [[32, "viser.Icon.MICROWAVE_OFF"]], "military_award (viser.icon attribute)": [[32, "viser.Icon.MILITARY_AWARD"]], "military_rank (viser.icon attribute)": [[32, "viser.Icon.MILITARY_RANK"]], "milk (viser.icon attribute)": [[32, "viser.Icon.MILK"]], "milkshake (viser.icon attribute)": [[32, "viser.Icon.MILKSHAKE"]], "milk_off (viser.icon attribute)": [[32, "viser.Icon.MILK_OFF"]], "minimize (viser.icon attribute)": [[32, "viser.Icon.MINIMIZE"]], "minus (viser.icon attribute)": [[32, "viser.Icon.MINUS"]], "minus_vertical (viser.icon attribute)": [[32, "viser.Icon.MINUS_VERTICAL"]], "mist (viser.icon attribute)": [[32, "viser.Icon.MIST"]], "mist_off (viser.icon attribute)": [[32, "viser.Icon.MIST_OFF"]], "mobiledata (viser.icon attribute)": [[32, "viser.Icon.MOBILEDATA"]], "mobiledata_off (viser.icon attribute)": [[32, "viser.Icon.MOBILEDATA_OFF"]], "moneybag (viser.icon attribute)": [[32, "viser.Icon.MONEYBAG"]], "mood_angry (viser.icon attribute)": [[32, "viser.Icon.MOOD_ANGRY"]], "mood_annoyed (viser.icon attribute)": [[32, "viser.Icon.MOOD_ANNOYED"]], "mood_annoyed_2 (viser.icon attribute)": [[32, "viser.Icon.MOOD_ANNOYED_2"]], "mood_boy (viser.icon attribute)": [[32, "viser.Icon.MOOD_BOY"]], "mood_check (viser.icon attribute)": [[32, "viser.Icon.MOOD_CHECK"]], "mood_cog (viser.icon attribute)": [[32, "viser.Icon.MOOD_COG"]], "mood_confuzed (viser.icon attribute)": [[32, "viser.Icon.MOOD_CONFUZED"]], "mood_confuzed_filled (viser.icon attribute)": [[32, "viser.Icon.MOOD_CONFUZED_FILLED"]], "mood_crazy_happy (viser.icon attribute)": [[32, "viser.Icon.MOOD_CRAZY_HAPPY"]], "mood_cry (viser.icon attribute)": [[32, "viser.Icon.MOOD_CRY"]], "mood_dollar (viser.icon attribute)": [[32, "viser.Icon.MOOD_DOLLAR"]], "mood_edit (viser.icon attribute)": [[32, "viser.Icon.MOOD_EDIT"]], "mood_empty (viser.icon attribute)": [[32, "viser.Icon.MOOD_EMPTY"]], "mood_empty_filled (viser.icon attribute)": [[32, "viser.Icon.MOOD_EMPTY_FILLED"]], "mood_happy (viser.icon attribute)": [[32, "viser.Icon.MOOD_HAPPY"]], "mood_happy_filled (viser.icon attribute)": [[32, "viser.Icon.MOOD_HAPPY_FILLED"]], "mood_heart (viser.icon attribute)": [[32, "viser.Icon.MOOD_HEART"]], "mood_kid (viser.icon attribute)": [[32, "viser.Icon.MOOD_KID"]], "mood_kid_filled (viser.icon attribute)": [[32, "viser.Icon.MOOD_KID_FILLED"]], "mood_look_left (viser.icon attribute)": [[32, "viser.Icon.MOOD_LOOK_LEFT"]], "mood_look_right (viser.icon attribute)": [[32, "viser.Icon.MOOD_LOOK_RIGHT"]], "mood_minus (viser.icon attribute)": [[32, "viser.Icon.MOOD_MINUS"]], "mood_nerd (viser.icon attribute)": [[32, "viser.Icon.MOOD_NERD"]], "mood_nervous (viser.icon attribute)": [[32, "viser.Icon.MOOD_NERVOUS"]], "mood_neutral (viser.icon attribute)": [[32, "viser.Icon.MOOD_NEUTRAL"]], "mood_neutral_filled (viser.icon attribute)": [[32, "viser.Icon.MOOD_NEUTRAL_FILLED"]], "mood_off (viser.icon attribute)": [[32, "viser.Icon.MOOD_OFF"]], "mood_pin (viser.icon attribute)": [[32, "viser.Icon.MOOD_PIN"]], "mood_plus (viser.icon attribute)": [[32, "viser.Icon.MOOD_PLUS"]], "mood_sad (viser.icon attribute)": [[32, "viser.Icon.MOOD_SAD"]], "mood_sad_2 (viser.icon attribute)": [[32, "viser.Icon.MOOD_SAD_2"]], "mood_sad_dizzy (viser.icon attribute)": [[32, "viser.Icon.MOOD_SAD_DIZZY"]], "mood_sad_filled (viser.icon attribute)": [[32, "viser.Icon.MOOD_SAD_FILLED"]], "mood_sad_squint (viser.icon attribute)": [[32, "viser.Icon.MOOD_SAD_SQUINT"]], "mood_search (viser.icon attribute)": [[32, "viser.Icon.MOOD_SEARCH"]], "mood_share (viser.icon attribute)": [[32, "viser.Icon.MOOD_SHARE"]], "mood_sick (viser.icon attribute)": [[32, "viser.Icon.MOOD_SICK"]], "mood_silence (viser.icon attribute)": [[32, "viser.Icon.MOOD_SILENCE"]], "mood_sing (viser.icon attribute)": [[32, "viser.Icon.MOOD_SING"]], "mood_smile (viser.icon attribute)": [[32, "viser.Icon.MOOD_SMILE"]], "mood_smile_beam (viser.icon attribute)": [[32, "viser.Icon.MOOD_SMILE_BEAM"]], "mood_smile_dizzy (viser.icon attribute)": [[32, "viser.Icon.MOOD_SMILE_DIZZY"]], "mood_smile_filled (viser.icon attribute)": [[32, "viser.Icon.MOOD_SMILE_FILLED"]], "mood_suprised (viser.icon attribute)": [[32, "viser.Icon.MOOD_SUPRISED"]], "mood_tongue (viser.icon attribute)": [[32, "viser.Icon.MOOD_TONGUE"]], "mood_tongue_wink (viser.icon attribute)": [[32, "viser.Icon.MOOD_TONGUE_WINK"]], "mood_tongue_wink_2 (viser.icon attribute)": [[32, "viser.Icon.MOOD_TONGUE_WINK_2"]], "mood_unamused (viser.icon attribute)": [[32, "viser.Icon.MOOD_UNAMUSED"]], "mood_up (viser.icon attribute)": [[32, "viser.Icon.MOOD_UP"]], "mood_wink (viser.icon attribute)": [[32, "viser.Icon.MOOD_WINK"]], "mood_wink_2 (viser.icon attribute)": [[32, "viser.Icon.MOOD_WINK_2"]], "mood_wrrr (viser.icon attribute)": [[32, "viser.Icon.MOOD_WRRR"]], "mood_x (viser.icon attribute)": [[32, "viser.Icon.MOOD_X"]], "mood_xd (viser.icon attribute)": [[32, "viser.Icon.MOOD_XD"]], "moon (viser.icon attribute)": [[32, "viser.Icon.MOON"]], "moon_2 (viser.icon attribute)": [[32, "viser.Icon.MOON_2"]], "moon_filled (viser.icon attribute)": [[32, "viser.Icon.MOON_FILLED"]], "moon_off (viser.icon attribute)": [[32, "viser.Icon.MOON_OFF"]], "moon_stars (viser.icon attribute)": [[32, "viser.Icon.MOON_STARS"]], "moped (viser.icon attribute)": [[32, "viser.Icon.MOPED"]], "motorbike (viser.icon attribute)": [[32, "viser.Icon.MOTORBIKE"]], "mountain (viser.icon attribute)": [[32, "viser.Icon.MOUNTAIN"]], "mountain_off (viser.icon attribute)": [[32, "viser.Icon.MOUNTAIN_OFF"]], "mouse (viser.icon attribute)": [[32, "viser.Icon.MOUSE"]], "mouse_2 (viser.icon attribute)": [[32, "viser.Icon.MOUSE_2"]], "mouse_off (viser.icon attribute)": [[32, "viser.Icon.MOUSE_OFF"]], "moustache (viser.icon attribute)": [[32, "viser.Icon.MOUSTACHE"]], "movie (viser.icon attribute)": [[32, "viser.Icon.MOVIE"]], "movie_off (viser.icon attribute)": [[32, "viser.Icon.MOVIE_OFF"]], "mug (viser.icon attribute)": [[32, "viser.Icon.MUG"]], "mug_off (viser.icon attribute)": [[32, "viser.Icon.MUG_OFF"]], "multiplier_0_5x (viser.icon attribute)": [[32, "viser.Icon.MULTIPLIER_0_5X"]], "multiplier_1x (viser.icon attribute)": [[32, "viser.Icon.MULTIPLIER_1X"]], "multiplier_1_5x (viser.icon attribute)": [[32, "viser.Icon.MULTIPLIER_1_5X"]], "multiplier_2x (viser.icon attribute)": [[32, "viser.Icon.MULTIPLIER_2X"]], "mushroom (viser.icon attribute)": [[32, "viser.Icon.MUSHROOM"]], "mushroom_filled (viser.icon attribute)": [[32, "viser.Icon.MUSHROOM_FILLED"]], "mushroom_off (viser.icon attribute)": [[32, "viser.Icon.MUSHROOM_OFF"]], "music (viser.icon attribute)": [[32, "viser.Icon.MUSIC"]], "music_off (viser.icon attribute)": [[32, "viser.Icon.MUSIC_OFF"]], "navigation (viser.icon attribute)": [[32, "viser.Icon.NAVIGATION"]], "navigation_filled (viser.icon attribute)": [[32, "viser.Icon.NAVIGATION_FILLED"]], "navigation_north (viser.icon attribute)": [[32, "viser.Icon.NAVIGATION_NORTH"]], "navigation_off (viser.icon attribute)": [[32, "viser.Icon.NAVIGATION_OFF"]], "needle (viser.icon attribute)": [[32, "viser.Icon.NEEDLE"]], "needle_thread (viser.icon attribute)": [[32, "viser.Icon.NEEDLE_THREAD"]], "network (viser.icon attribute)": [[32, "viser.Icon.NETWORK"]], "network_off (viser.icon attribute)": [[32, "viser.Icon.NETWORK_OFF"]], "news (viser.icon attribute)": [[32, "viser.Icon.NEWS"]], "news_off (viser.icon attribute)": [[32, "viser.Icon.NEWS_OFF"]], "new_section (viser.icon attribute)": [[32, "viser.Icon.NEW_SECTION"]], "nfc (viser.icon attribute)": [[32, "viser.Icon.NFC"]], "nfc_off (viser.icon attribute)": [[32, "viser.Icon.NFC_OFF"]], "north_star (viser.icon attribute)": [[32, "viser.Icon.NORTH_STAR"]], "note (viser.icon attribute)": [[32, "viser.Icon.NOTE"]], "notebook (viser.icon attribute)": [[32, "viser.Icon.NOTEBOOK"]], "notebook_off (viser.icon attribute)": [[32, "viser.Icon.NOTEBOOK_OFF"]], "notes (viser.icon attribute)": [[32, "viser.Icon.NOTES"]], "notes_off (viser.icon attribute)": [[32, "viser.Icon.NOTES_OFF"]], "note_off (viser.icon attribute)": [[32, "viser.Icon.NOTE_OFF"]], "notification (viser.icon attribute)": [[32, "viser.Icon.NOTIFICATION"]], "notification_off (viser.icon attribute)": [[32, "viser.Icon.NOTIFICATION_OFF"]], "no_copyright (viser.icon attribute)": [[32, "viser.Icon.NO_COPYRIGHT"]], "no_creative_commons (viser.icon attribute)": [[32, "viser.Icon.NO_CREATIVE_COMMONS"]], "no_derivatives (viser.icon attribute)": [[32, "viser.Icon.NO_DERIVATIVES"]], "number (viser.icon attribute)": [[32, "viser.Icon.NUMBER"]], "numbers (viser.icon attribute)": [[32, "viser.Icon.NUMBERS"]], "number_0 (viser.icon attribute)": [[32, "viser.Icon.NUMBER_0"]], "number_1 (viser.icon attribute)": [[32, "viser.Icon.NUMBER_1"]], "number_2 (viser.icon attribute)": [[32, "viser.Icon.NUMBER_2"]], "number_3 (viser.icon attribute)": [[32, "viser.Icon.NUMBER_3"]], "number_4 (viser.icon attribute)": [[32, "viser.Icon.NUMBER_4"]], "number_5 (viser.icon attribute)": [[32, "viser.Icon.NUMBER_5"]], "number_6 (viser.icon attribute)": [[32, "viser.Icon.NUMBER_6"]], "number_7 (viser.icon attribute)": [[32, "viser.Icon.NUMBER_7"]], "number_8 (viser.icon attribute)": [[32, "viser.Icon.NUMBER_8"]], "number_9 (viser.icon attribute)": [[32, "viser.Icon.NUMBER_9"]], "nurse (viser.icon attribute)": [[32, "viser.Icon.NURSE"]], "octagon (viser.icon attribute)": [[32, "viser.Icon.OCTAGON"]], "octagon_filled (viser.icon attribute)": [[32, "viser.Icon.OCTAGON_FILLED"]], "octagon_off (viser.icon attribute)": [[32, "viser.Icon.OCTAGON_OFF"]], "octahedron (viser.icon attribute)": [[32, "viser.Icon.OCTAHEDRON"]], "octahedron_off (viser.icon attribute)": [[32, "viser.Icon.OCTAHEDRON_OFF"]], "octahedron_plus (viser.icon attribute)": [[32, "viser.Icon.OCTAHEDRON_PLUS"]], "old (viser.icon attribute)": [[32, "viser.Icon.OLD"]], "olympics (viser.icon attribute)": [[32, "viser.Icon.OLYMPICS"]], "olympics_off (viser.icon attribute)": [[32, "viser.Icon.OLYMPICS_OFF"]], "om (viser.icon attribute)": [[32, "viser.Icon.OM"]], "omega (viser.icon attribute)": [[32, "viser.Icon.OMEGA"]], "outbound (viser.icon attribute)": [[32, "viser.Icon.OUTBOUND"]], "outlet (viser.icon attribute)": [[32, "viser.Icon.OUTLET"]], "oval (viser.icon attribute)": [[32, "viser.Icon.OVAL"]], "oval_filled (viser.icon attribute)": [[32, "viser.Icon.OVAL_FILLED"]], "oval_vertical (viser.icon attribute)": [[32, "viser.Icon.OVAL_VERTICAL"]], "oval_vertical_filled (viser.icon attribute)": [[32, "viser.Icon.OVAL_VERTICAL_FILLED"]], "overline (viser.icon attribute)": [[32, "viser.Icon.OVERLINE"]], "package (viser.icon attribute)": [[32, "viser.Icon.PACKAGE"]], "packages (viser.icon attribute)": [[32, "viser.Icon.PACKAGES"]], "package_export (viser.icon attribute)": [[32, "viser.Icon.PACKAGE_EXPORT"]], "package_import (viser.icon attribute)": [[32, "viser.Icon.PACKAGE_IMPORT"]], "package_off (viser.icon attribute)": [[32, "viser.Icon.PACKAGE_OFF"]], "pacman (viser.icon attribute)": [[32, "viser.Icon.PACMAN"]], "page_break (viser.icon attribute)": [[32, "viser.Icon.PAGE_BREAK"]], "paint (viser.icon attribute)": [[32, "viser.Icon.PAINT"]], "paint_filled (viser.icon attribute)": [[32, "viser.Icon.PAINT_FILLED"]], "paint_off (viser.icon attribute)": [[32, "viser.Icon.PAINT_OFF"]], "palette (viser.icon attribute)": [[32, "viser.Icon.PALETTE"]], "palette_off (viser.icon attribute)": [[32, "viser.Icon.PALETTE_OFF"]], "panorama_horizontal (viser.icon attribute)": [[32, "viser.Icon.PANORAMA_HORIZONTAL"]], "panorama_horizontal_off (viser.icon attribute)": [[32, "viser.Icon.PANORAMA_HORIZONTAL_OFF"]], "panorama_vertical (viser.icon attribute)": [[32, "viser.Icon.PANORAMA_VERTICAL"]], "panorama_vertical_off (viser.icon attribute)": [[32, "viser.Icon.PANORAMA_VERTICAL_OFF"]], "paperclip (viser.icon attribute)": [[32, "viser.Icon.PAPERCLIP"]], "paper_bag (viser.icon attribute)": [[32, "viser.Icon.PAPER_BAG"]], "paper_bag_off (viser.icon attribute)": [[32, "viser.Icon.PAPER_BAG_OFF"]], "parachute (viser.icon attribute)": [[32, "viser.Icon.PARACHUTE"]], "parachute_off (viser.icon attribute)": [[32, "viser.Icon.PARACHUTE_OFF"]], "parentheses (viser.icon attribute)": [[32, "viser.Icon.PARENTHESES"]], "parentheses_off (viser.icon attribute)": [[32, "viser.Icon.PARENTHESES_OFF"]], "parking (viser.icon attribute)": [[32, "viser.Icon.PARKING"]], "parking_off (viser.icon attribute)": [[32, "viser.Icon.PARKING_OFF"]], "password (viser.icon attribute)": [[32, "viser.Icon.PASSWORD"]], "paw (viser.icon attribute)": [[32, "viser.Icon.PAW"]], "paw_filled (viser.icon attribute)": [[32, "viser.Icon.PAW_FILLED"]], "paw_off (viser.icon attribute)": [[32, "viser.Icon.PAW_OFF"]], "pdf (viser.icon attribute)": [[32, "viser.Icon.PDF"]], "peace (viser.icon attribute)": [[32, "viser.Icon.PEACE"]], "pencil (viser.icon attribute)": [[32, "viser.Icon.PENCIL"]], "pencil_minus (viser.icon attribute)": [[32, "viser.Icon.PENCIL_MINUS"]], "pencil_off (viser.icon attribute)": [[32, "viser.Icon.PENCIL_OFF"]], "pencil_plus (viser.icon attribute)": [[32, "viser.Icon.PENCIL_PLUS"]], "pennant (viser.icon attribute)": [[32, "viser.Icon.PENNANT"]], "pennant_2 (viser.icon attribute)": [[32, "viser.Icon.PENNANT_2"]], "pennant_2_filled (viser.icon attribute)": [[32, "viser.Icon.PENNANT_2_FILLED"]], "pennant_filled (viser.icon attribute)": [[32, "viser.Icon.PENNANT_FILLED"]], "pennant_off (viser.icon attribute)": [[32, "viser.Icon.PENNANT_OFF"]], "pentagon (viser.icon attribute)": [[32, "viser.Icon.PENTAGON"]], "pentagon_filled (viser.icon attribute)": [[32, "viser.Icon.PENTAGON_FILLED"]], "pentagon_off (viser.icon attribute)": [[32, "viser.Icon.PENTAGON_OFF"]], "pentagram (viser.icon attribute)": [[32, "viser.Icon.PENTAGRAM"]], "pepper (viser.icon attribute)": [[32, "viser.Icon.PEPPER"]], "pepper_off (viser.icon attribute)": [[32, "viser.Icon.PEPPER_OFF"]], "percentage (viser.icon attribute)": [[32, "viser.Icon.PERCENTAGE"]], "perfume (viser.icon attribute)": [[32, "viser.Icon.PERFUME"]], "perspective (viser.icon attribute)": [[32, "viser.Icon.PERSPECTIVE"]], "perspective_off (viser.icon attribute)": [[32, "viser.Icon.PERSPECTIVE_OFF"]], "phone (viser.icon attribute)": [[32, "viser.Icon.PHONE"]], "phone_call (viser.icon attribute)": [[32, "viser.Icon.PHONE_CALL"]], "phone_calling (viser.icon attribute)": [[32, "viser.Icon.PHONE_CALLING"]], "phone_check (viser.icon attribute)": [[32, "viser.Icon.PHONE_CHECK"]], "phone_filled (viser.icon attribute)": [[32, "viser.Icon.PHONE_FILLED"]], "phone_incoming (viser.icon attribute)": [[32, "viser.Icon.PHONE_INCOMING"]], "phone_off (viser.icon attribute)": [[32, "viser.Icon.PHONE_OFF"]], "phone_outgoing (viser.icon attribute)": [[32, "viser.Icon.PHONE_OUTGOING"]], "phone_pause (viser.icon attribute)": [[32, "viser.Icon.PHONE_PAUSE"]], "phone_plus (viser.icon attribute)": [[32, "viser.Icon.PHONE_PLUS"]], "phone_x (viser.icon attribute)": [[32, "viser.Icon.PHONE_X"]], "photo (viser.icon attribute)": [[32, "viser.Icon.PHOTO"]], "photo_ai (viser.icon attribute)": [[32, "viser.Icon.PHOTO_AI"]], "photo_bolt (viser.icon attribute)": [[32, "viser.Icon.PHOTO_BOLT"]], "photo_cancel (viser.icon attribute)": [[32, "viser.Icon.PHOTO_CANCEL"]], "photo_check (viser.icon attribute)": [[32, "viser.Icon.PHOTO_CHECK"]], "photo_code (viser.icon attribute)": [[32, "viser.Icon.PHOTO_CODE"]], "photo_cog (viser.icon attribute)": [[32, "viser.Icon.PHOTO_COG"]], "photo_dollar (viser.icon attribute)": [[32, "viser.Icon.PHOTO_DOLLAR"]], "photo_down (viser.icon attribute)": [[32, "viser.Icon.PHOTO_DOWN"]], "photo_edit (viser.icon attribute)": [[32, "viser.Icon.PHOTO_EDIT"]], "photo_exclamation (viser.icon attribute)": [[32, "viser.Icon.PHOTO_EXCLAMATION"]], "photo_filled (viser.icon attribute)": [[32, "viser.Icon.PHOTO_FILLED"]], "photo_heart (viser.icon attribute)": [[32, "viser.Icon.PHOTO_HEART"]], "photo_minus (viser.icon attribute)": [[32, "viser.Icon.PHOTO_MINUS"]], "photo_off (viser.icon attribute)": [[32, "viser.Icon.PHOTO_OFF"]], "photo_pause (viser.icon attribute)": [[32, "viser.Icon.PHOTO_PAUSE"]], "photo_pin (viser.icon attribute)": [[32, "viser.Icon.PHOTO_PIN"]], "photo_plus (viser.icon attribute)": [[32, "viser.Icon.PHOTO_PLUS"]], "photo_question (viser.icon attribute)": [[32, "viser.Icon.PHOTO_QUESTION"]], "photo_search (viser.icon attribute)": [[32, "viser.Icon.PHOTO_SEARCH"]], "photo_sensor (viser.icon attribute)": [[32, "viser.Icon.PHOTO_SENSOR"]], "photo_sensor_2 (viser.icon attribute)": [[32, "viser.Icon.PHOTO_SENSOR_2"]], "photo_sensor_3 (viser.icon attribute)": [[32, "viser.Icon.PHOTO_SENSOR_3"]], "photo_share (viser.icon attribute)": [[32, "viser.Icon.PHOTO_SHARE"]], "photo_shield (viser.icon attribute)": [[32, "viser.Icon.PHOTO_SHIELD"]], "photo_star (viser.icon attribute)": [[32, "viser.Icon.PHOTO_STAR"]], "photo_up (viser.icon attribute)": [[32, "viser.Icon.PHOTO_UP"]], "photo_x (viser.icon attribute)": [[32, "viser.Icon.PHOTO_X"]], "physotherapist (viser.icon attribute)": [[32, "viser.Icon.PHYSOTHERAPIST"]], "piano (viser.icon attribute)": [[32, "viser.Icon.PIANO"]], "pick (viser.icon attribute)": [[32, "viser.Icon.PICK"]], "picture_in_picture (viser.icon attribute)": [[32, "viser.Icon.PICTURE_IN_PICTURE"]], "picture_in_picture_off (viser.icon attribute)": [[32, "viser.Icon.PICTURE_IN_PICTURE_OFF"]], "picture_in_picture_on (viser.icon attribute)": [[32, "viser.Icon.PICTURE_IN_PICTURE_ON"]], "picture_in_picture_top (viser.icon attribute)": [[32, "viser.Icon.PICTURE_IN_PICTURE_TOP"]], "pig (viser.icon attribute)": [[32, "viser.Icon.PIG"]], "pig_money (viser.icon attribute)": [[32, "viser.Icon.PIG_MONEY"]], "pig_off (viser.icon attribute)": [[32, "viser.Icon.PIG_OFF"]], "pilcrow (viser.icon attribute)": [[32, "viser.Icon.PILCROW"]], "pill (viser.icon attribute)": [[32, "viser.Icon.PILL"]], "pills (viser.icon attribute)": [[32, "viser.Icon.PILLS"]], "pill_off (viser.icon attribute)": [[32, "viser.Icon.PILL_OFF"]], "pin (viser.icon attribute)": [[32, "viser.Icon.PIN"]], "ping_pong (viser.icon attribute)": [[32, "viser.Icon.PING_PONG"]], "pinned (viser.icon attribute)": [[32, "viser.Icon.PINNED"]], "pinned_filled (viser.icon attribute)": [[32, "viser.Icon.PINNED_FILLED"]], "pinned_off (viser.icon attribute)": [[32, "viser.Icon.PINNED_OFF"]], "pin_filled (viser.icon attribute)": [[32, "viser.Icon.PIN_FILLED"]], "pizza (viser.icon attribute)": [[32, "viser.Icon.PIZZA"]], "pizza_off (viser.icon attribute)": [[32, "viser.Icon.PIZZA_OFF"]], "placeholder (viser.icon attribute)": [[32, "viser.Icon.PLACEHOLDER"]], "plane (viser.icon attribute)": [[32, "viser.Icon.PLANE"]], "planet (viser.icon attribute)": [[32, "viser.Icon.PLANET"]], "planet_off (viser.icon attribute)": [[32, "viser.Icon.PLANET_OFF"]], "plane_arrival (viser.icon attribute)": [[32, "viser.Icon.PLANE_ARRIVAL"]], "plane_departure (viser.icon attribute)": [[32, "viser.Icon.PLANE_DEPARTURE"]], "plane_inflight (viser.icon attribute)": [[32, "viser.Icon.PLANE_INFLIGHT"]], "plane_off (viser.icon attribute)": [[32, "viser.Icon.PLANE_OFF"]], "plane_tilt (viser.icon attribute)": [[32, "viser.Icon.PLANE_TILT"]], "plant (viser.icon attribute)": [[32, "viser.Icon.PLANT"]], "plant_2 (viser.icon attribute)": [[32, "viser.Icon.PLANT_2"]], "plant_2_off (viser.icon attribute)": [[32, "viser.Icon.PLANT_2_OFF"]], "plant_off (viser.icon attribute)": [[32, "viser.Icon.PLANT_OFF"]], "player_eject (viser.icon attribute)": [[32, "viser.Icon.PLAYER_EJECT"]], "player_eject_filled (viser.icon attribute)": [[32, "viser.Icon.PLAYER_EJECT_FILLED"]], "player_pause (viser.icon attribute)": [[32, "viser.Icon.PLAYER_PAUSE"]], "player_pause_filled (viser.icon attribute)": [[32, "viser.Icon.PLAYER_PAUSE_FILLED"]], "player_play (viser.icon attribute)": [[32, "viser.Icon.PLAYER_PLAY"]], "player_play_filled (viser.icon attribute)": [[32, "viser.Icon.PLAYER_PLAY_FILLED"]], "player_record (viser.icon attribute)": [[32, "viser.Icon.PLAYER_RECORD"]], "player_record_filled (viser.icon attribute)": [[32, "viser.Icon.PLAYER_RECORD_FILLED"]], "player_skip_back (viser.icon attribute)": [[32, "viser.Icon.PLAYER_SKIP_BACK"]], "player_skip_back_filled (viser.icon attribute)": [[32, "viser.Icon.PLAYER_SKIP_BACK_FILLED"]], "player_skip_forward (viser.icon attribute)": [[32, "viser.Icon.PLAYER_SKIP_FORWARD"]], "player_skip_forward_filled (viser.icon attribute)": [[32, "viser.Icon.PLAYER_SKIP_FORWARD_FILLED"]], "player_stop (viser.icon attribute)": [[32, "viser.Icon.PLAYER_STOP"]], "player_stop_filled (viser.icon attribute)": [[32, "viser.Icon.PLAYER_STOP_FILLED"]], "player_track_next (viser.icon attribute)": [[32, "viser.Icon.PLAYER_TRACK_NEXT"]], "player_track_next_filled (viser.icon attribute)": [[32, "viser.Icon.PLAYER_TRACK_NEXT_FILLED"]], "player_track_prev (viser.icon attribute)": [[32, "viser.Icon.PLAYER_TRACK_PREV"]], "player_track_prev_filled (viser.icon attribute)": [[32, "viser.Icon.PLAYER_TRACK_PREV_FILLED"]], "playlist (viser.icon attribute)": [[32, "viser.Icon.PLAYLIST"]], "playlist_add (viser.icon attribute)": [[32, "viser.Icon.PLAYLIST_ADD"]], "playlist_off (viser.icon attribute)": [[32, "viser.Icon.PLAYLIST_OFF"]], "playlist_x (viser.icon attribute)": [[32, "viser.Icon.PLAYLIST_X"]], "playstation_circle (viser.icon attribute)": [[32, "viser.Icon.PLAYSTATION_CIRCLE"]], "playstation_square (viser.icon attribute)": [[32, "viser.Icon.PLAYSTATION_SQUARE"]], "playstation_triangle (viser.icon attribute)": [[32, "viser.Icon.PLAYSTATION_TRIANGLE"]], "playstation_x (viser.icon attribute)": [[32, "viser.Icon.PLAYSTATION_X"]], "play_basketball (viser.icon attribute)": [[32, "viser.Icon.PLAY_BASKETBALL"]], "play_card (viser.icon attribute)": [[32, "viser.Icon.PLAY_CARD"]], "play_card_off (viser.icon attribute)": [[32, "viser.Icon.PLAY_CARD_OFF"]], "play_football (viser.icon attribute)": [[32, "viser.Icon.PLAY_FOOTBALL"]], "play_handball (viser.icon attribute)": [[32, "viser.Icon.PLAY_HANDBALL"]], "play_volleyball (viser.icon attribute)": [[32, "viser.Icon.PLAY_VOLLEYBALL"]], "plug (viser.icon attribute)": [[32, "viser.Icon.PLUG"]], "plug_connected (viser.icon attribute)": [[32, "viser.Icon.PLUG_CONNECTED"]], "plug_connected_x (viser.icon attribute)": [[32, "viser.Icon.PLUG_CONNECTED_X"]], "plug_off (viser.icon attribute)": [[32, "viser.Icon.PLUG_OFF"]], "plug_x (viser.icon attribute)": [[32, "viser.Icon.PLUG_X"]], "plus (viser.icon attribute)": [[32, "viser.Icon.PLUS"]], "plus_equal (viser.icon attribute)": [[32, "viser.Icon.PLUS_EQUAL"]], "plus_minus (viser.icon attribute)": [[32, "viser.Icon.PLUS_MINUS"]], "png (viser.icon attribute)": [[32, "viser.Icon.PNG"]], "podium (viser.icon attribute)": [[32, "viser.Icon.PODIUM"]], "podium_off (viser.icon attribute)": [[32, "viser.Icon.PODIUM_OFF"]], "point (viser.icon attribute)": [[32, "viser.Icon.POINT"]], "pointer (viser.icon attribute)": [[32, "viser.Icon.POINTER"]], "pointer_bolt (viser.icon attribute)": [[32, "viser.Icon.POINTER_BOLT"]], "pointer_cancel (viser.icon attribute)": [[32, "viser.Icon.POINTER_CANCEL"]], "pointer_check (viser.icon attribute)": [[32, "viser.Icon.POINTER_CHECK"]], "pointer_code (viser.icon attribute)": [[32, "viser.Icon.POINTER_CODE"]], "pointer_cog (viser.icon attribute)": [[32, "viser.Icon.POINTER_COG"]], "pointer_dollar (viser.icon attribute)": [[32, "viser.Icon.POINTER_DOLLAR"]], "pointer_down (viser.icon attribute)": [[32, "viser.Icon.POINTER_DOWN"]], "pointer_exclamation (viser.icon attribute)": [[32, "viser.Icon.POINTER_EXCLAMATION"]], "pointer_heart (viser.icon attribute)": [[32, "viser.Icon.POINTER_HEART"]], "pointer_minus (viser.icon attribute)": [[32, "viser.Icon.POINTER_MINUS"]], "pointer_off (viser.icon attribute)": [[32, "viser.Icon.POINTER_OFF"]], "pointer_pause (viser.icon attribute)": [[32, "viser.Icon.POINTER_PAUSE"]], "pointer_pin (viser.icon attribute)": [[32, "viser.Icon.POINTER_PIN"]], "pointer_plus (viser.icon attribute)": [[32, "viser.Icon.POINTER_PLUS"]], "pointer_question (viser.icon attribute)": [[32, "viser.Icon.POINTER_QUESTION"]], "pointer_search (viser.icon attribute)": [[32, "viser.Icon.POINTER_SEARCH"]], "pointer_share (viser.icon attribute)": [[32, "viser.Icon.POINTER_SHARE"]], "pointer_star (viser.icon attribute)": [[32, "viser.Icon.POINTER_STAR"]], "pointer_up (viser.icon attribute)": [[32, "viser.Icon.POINTER_UP"]], "pointer_x (viser.icon attribute)": [[32, "viser.Icon.POINTER_X"]], "point_filled (viser.icon attribute)": [[32, "viser.Icon.POINT_FILLED"]], "point_off (viser.icon attribute)": [[32, "viser.Icon.POINT_OFF"]], "pokeball (viser.icon attribute)": [[32, "viser.Icon.POKEBALL"]], "pokeball_off (viser.icon attribute)": [[32, "viser.Icon.POKEBALL_OFF"]], "poker_chip (viser.icon attribute)": [[32, "viser.Icon.POKER_CHIP"]], "polaroid (viser.icon attribute)": [[32, "viser.Icon.POLAROID"]], "polaroid_filled (viser.icon attribute)": [[32, "viser.Icon.POLAROID_FILLED"]], "polygon (viser.icon attribute)": [[32, "viser.Icon.POLYGON"]], "polygon_off (viser.icon attribute)": [[32, "viser.Icon.POLYGON_OFF"]], "poo (viser.icon attribute)": [[32, "viser.Icon.POO"]], "pool (viser.icon attribute)": [[32, "viser.Icon.POOL"]], "pool_off (viser.icon attribute)": [[32, "viser.Icon.POOL_OFF"]], "power (viser.icon attribute)": [[32, "viser.Icon.POWER"]], "pray (viser.icon attribute)": [[32, "viser.Icon.PRAY"]], "premium_rights (viser.icon attribute)": [[32, "viser.Icon.PREMIUM_RIGHTS"]], "prescription (viser.icon attribute)": [[32, "viser.Icon.PRESCRIPTION"]], "presentation (viser.icon attribute)": [[32, "viser.Icon.PRESENTATION"]], "presentation_analytics (viser.icon attribute)": [[32, "viser.Icon.PRESENTATION_ANALYTICS"]], "presentation_off (viser.icon attribute)": [[32, "viser.Icon.PRESENTATION_OFF"]], "printer (viser.icon attribute)": [[32, "viser.Icon.PRINTER"]], "printer_off (viser.icon attribute)": [[32, "viser.Icon.PRINTER_OFF"]], "prism (viser.icon attribute)": [[32, "viser.Icon.PRISM"]], "prism_off (viser.icon attribute)": [[32, "viser.Icon.PRISM_OFF"]], "prism_plus (viser.icon attribute)": [[32, "viser.Icon.PRISM_PLUS"]], "prison (viser.icon attribute)": [[32, "viser.Icon.PRISON"]], "progress (viser.icon attribute)": [[32, "viser.Icon.PROGRESS"]], "progress_alert (viser.icon attribute)": [[32, "viser.Icon.PROGRESS_ALERT"]], "progress_bolt (viser.icon attribute)": [[32, "viser.Icon.PROGRESS_BOLT"]], "progress_check (viser.icon attribute)": [[32, "viser.Icon.PROGRESS_CHECK"]], "progress_down (viser.icon attribute)": [[32, "viser.Icon.PROGRESS_DOWN"]], "progress_help (viser.icon attribute)": [[32, "viser.Icon.PROGRESS_HELP"]], "progress_x (viser.icon attribute)": [[32, "viser.Icon.PROGRESS_X"]], "prompt (viser.icon attribute)": [[32, "viser.Icon.PROMPT"]], "propeller (viser.icon attribute)": [[32, "viser.Icon.PROPELLER"]], "propeller_off (viser.icon attribute)": [[32, "viser.Icon.PROPELLER_OFF"]], "pumpkin_scary (viser.icon attribute)": [[32, "viser.Icon.PUMPKIN_SCARY"]], "puzzle (viser.icon attribute)": [[32, "viser.Icon.PUZZLE"]], "puzzle_2 (viser.icon attribute)": [[32, "viser.Icon.PUZZLE_2"]], "puzzle_filled (viser.icon attribute)": [[32, "viser.Icon.PUZZLE_FILLED"]], "puzzle_off (viser.icon attribute)": [[32, "viser.Icon.PUZZLE_OFF"]], "pyramid (viser.icon attribute)": [[32, "viser.Icon.PYRAMID"]], "pyramid_off (viser.icon attribute)": [[32, "viser.Icon.PYRAMID_OFF"]], "pyramid_plus (viser.icon attribute)": [[32, "viser.Icon.PYRAMID_PLUS"]], "qrcode (viser.icon attribute)": [[32, "viser.Icon.QRCODE"]], "qrcode_off (viser.icon attribute)": [[32, "viser.Icon.QRCODE_OFF"]], "question_mark (viser.icon attribute)": [[32, "viser.Icon.QUESTION_MARK"]], "quote (viser.icon attribute)": [[32, "viser.Icon.QUOTE"]], "quote_off (viser.icon attribute)": [[32, "viser.Icon.QUOTE_OFF"]], "radar (viser.icon attribute)": [[32, "viser.Icon.RADAR"]], "radar_2 (viser.icon attribute)": [[32, "viser.Icon.RADAR_2"]], "radar_off (viser.icon attribute)": [[32, "viser.Icon.RADAR_OFF"]], "radio (viser.icon attribute)": [[32, "viser.Icon.RADIO"]], "radioactive (viser.icon attribute)": [[32, "viser.Icon.RADIOACTIVE"]], "radioactive_filled (viser.icon attribute)": [[32, "viser.Icon.RADIOACTIVE_FILLED"]], "radioactive_off (viser.icon attribute)": [[32, "viser.Icon.RADIOACTIVE_OFF"]], "radio_off (viser.icon attribute)": [[32, "viser.Icon.RADIO_OFF"]], "radius_bottom_left (viser.icon attribute)": [[32, "viser.Icon.RADIUS_BOTTOM_LEFT"]], "radius_bottom_right (viser.icon attribute)": [[32, "viser.Icon.RADIUS_BOTTOM_RIGHT"]], "radius_top_left (viser.icon attribute)": [[32, "viser.Icon.RADIUS_TOP_LEFT"]], "radius_top_right (viser.icon attribute)": [[32, "viser.Icon.RADIUS_TOP_RIGHT"]], "rainbow (viser.icon attribute)": [[32, "viser.Icon.RAINBOW"]], "rainbow_off (viser.icon attribute)": [[32, "viser.Icon.RAINBOW_OFF"]], "rating_12_plus (viser.icon attribute)": [[32, "viser.Icon.RATING_12_PLUS"]], "rating_14_plus (viser.icon attribute)": [[32, "viser.Icon.RATING_14_PLUS"]], "rating_16_plus (viser.icon attribute)": [[32, "viser.Icon.RATING_16_PLUS"]], "rating_18_plus (viser.icon attribute)": [[32, "viser.Icon.RATING_18_PLUS"]], "rating_21_plus (viser.icon attribute)": [[32, "viser.Icon.RATING_21_PLUS"]], "razor (viser.icon attribute)": [[32, "viser.Icon.RAZOR"]], "razor_electric (viser.icon attribute)": [[32, "viser.Icon.RAZOR_ELECTRIC"]], "receipt (viser.icon attribute)": [[32, "viser.Icon.RECEIPT"]], "receipt_2 (viser.icon attribute)": [[32, "viser.Icon.RECEIPT_2"]], "receipt_off (viser.icon attribute)": [[32, "viser.Icon.RECEIPT_OFF"]], "receipt_refund (viser.icon attribute)": [[32, "viser.Icon.RECEIPT_REFUND"]], "receipt_tax (viser.icon attribute)": [[32, "viser.Icon.RECEIPT_TAX"]], "recharging (viser.icon attribute)": [[32, "viser.Icon.RECHARGING"]], "record_mail (viser.icon attribute)": [[32, "viser.Icon.RECORD_MAIL"]], "record_mail_off (viser.icon attribute)": [[32, "viser.Icon.RECORD_MAIL_OFF"]], "rectangle (viser.icon attribute)": [[32, "viser.Icon.RECTANGLE"]], "rectangle_filled (viser.icon attribute)": [[32, "viser.Icon.RECTANGLE_FILLED"]], "rectangle_rounded_bottom (viser.icon attribute)": [[32, "viser.Icon.RECTANGLE_ROUNDED_BOTTOM"]], "rectangle_rounded_top (viser.icon attribute)": [[32, "viser.Icon.RECTANGLE_ROUNDED_TOP"]], "rectangle_vertical (viser.icon attribute)": [[32, "viser.Icon.RECTANGLE_VERTICAL"]], "rectangle_vertical_filled (viser.icon attribute)": [[32, "viser.Icon.RECTANGLE_VERTICAL_FILLED"]], "rectangular_prism (viser.icon attribute)": [[32, "viser.Icon.RECTANGULAR_PRISM"]], "rectangular_prism_off (viser.icon attribute)": [[32, "viser.Icon.RECTANGULAR_PRISM_OFF"]], "rectangular_prism_plus (viser.icon attribute)": [[32, "viser.Icon.RECTANGULAR_PRISM_PLUS"]], "recycle (viser.icon attribute)": [[32, "viser.Icon.RECYCLE"]], "recycle_off (viser.icon attribute)": [[32, "viser.Icon.RECYCLE_OFF"]], "refresh (viser.icon attribute)": [[32, "viser.Icon.REFRESH"]], "refresh_alert (viser.icon attribute)": [[32, "viser.Icon.REFRESH_ALERT"]], "refresh_dot (viser.icon attribute)": [[32, "viser.Icon.REFRESH_DOT"]], "refresh_off (viser.icon attribute)": [[32, "viser.Icon.REFRESH_OFF"]], "regex (viser.icon attribute)": [[32, "viser.Icon.REGEX"]], "regex_off (viser.icon attribute)": [[32, "viser.Icon.REGEX_OFF"]], "registered (viser.icon attribute)": [[32, "viser.Icon.REGISTERED"]], "relation_many_to_many (viser.icon attribute)": [[32, "viser.Icon.RELATION_MANY_TO_MANY"]], "relation_one_to_many (viser.icon attribute)": [[32, "viser.Icon.RELATION_ONE_TO_MANY"]], "relation_one_to_one (viser.icon attribute)": [[32, "viser.Icon.RELATION_ONE_TO_ONE"]], "reload (viser.icon attribute)": [[32, "viser.Icon.RELOAD"]], "repeat (viser.icon attribute)": [[32, "viser.Icon.REPEAT"]], "repeat_off (viser.icon attribute)": [[32, "viser.Icon.REPEAT_OFF"]], "repeat_once (viser.icon attribute)": [[32, "viser.Icon.REPEAT_ONCE"]], "replace (viser.icon attribute)": [[32, "viser.Icon.REPLACE"]], "replace_filled (viser.icon attribute)": [[32, "viser.Icon.REPLACE_FILLED"]], "replace_off (viser.icon attribute)": [[32, "viser.Icon.REPLACE_OFF"]], "report (viser.icon attribute)": [[32, "viser.Icon.REPORT"]], "report_analytics (viser.icon attribute)": [[32, "viser.Icon.REPORT_ANALYTICS"]], "report_medical (viser.icon attribute)": [[32, "viser.Icon.REPORT_MEDICAL"]], "report_money (viser.icon attribute)": [[32, "viser.Icon.REPORT_MONEY"]], "report_off (viser.icon attribute)": [[32, "viser.Icon.REPORT_OFF"]], "report_search (viser.icon attribute)": [[32, "viser.Icon.REPORT_SEARCH"]], "reserved_line (viser.icon attribute)": [[32, "viser.Icon.RESERVED_LINE"]], "resize (viser.icon attribute)": [[32, "viser.Icon.RESIZE"]], "restore (viser.icon attribute)": [[32, "viser.Icon.RESTORE"]], "rewind_backward_10 (viser.icon attribute)": [[32, "viser.Icon.REWIND_BACKWARD_10"]], "rewind_backward_15 (viser.icon attribute)": [[32, "viser.Icon.REWIND_BACKWARD_15"]], "rewind_backward_20 (viser.icon attribute)": [[32, "viser.Icon.REWIND_BACKWARD_20"]], "rewind_backward_30 (viser.icon attribute)": [[32, "viser.Icon.REWIND_BACKWARD_30"]], "rewind_backward_40 (viser.icon attribute)": [[32, "viser.Icon.REWIND_BACKWARD_40"]], "rewind_backward_5 (viser.icon attribute)": [[32, "viser.Icon.REWIND_BACKWARD_5"]], "rewind_backward_50 (viser.icon attribute)": [[32, "viser.Icon.REWIND_BACKWARD_50"]], "rewind_backward_60 (viser.icon attribute)": [[32, "viser.Icon.REWIND_BACKWARD_60"]], "rewind_forward_10 (viser.icon attribute)": [[32, "viser.Icon.REWIND_FORWARD_10"]], "rewind_forward_15 (viser.icon attribute)": [[32, "viser.Icon.REWIND_FORWARD_15"]], "rewind_forward_20 (viser.icon attribute)": [[32, "viser.Icon.REWIND_FORWARD_20"]], "rewind_forward_30 (viser.icon attribute)": [[32, "viser.Icon.REWIND_FORWARD_30"]], "rewind_forward_40 (viser.icon attribute)": [[32, "viser.Icon.REWIND_FORWARD_40"]], "rewind_forward_5 (viser.icon attribute)": [[32, "viser.Icon.REWIND_FORWARD_5"]], "rewind_forward_50 (viser.icon attribute)": [[32, "viser.Icon.REWIND_FORWARD_50"]], "rewind_forward_60 (viser.icon attribute)": [[32, "viser.Icon.REWIND_FORWARD_60"]], "ribbon_health (viser.icon attribute)": [[32, "viser.Icon.RIBBON_HEALTH"]], "rings (viser.icon attribute)": [[32, "viser.Icon.RINGS"]], "ripple (viser.icon attribute)": [[32, "viser.Icon.RIPPLE"]], "ripple_off (viser.icon attribute)": [[32, "viser.Icon.RIPPLE_OFF"]], "road (viser.icon attribute)": [[32, "viser.Icon.ROAD"]], "road_off (viser.icon attribute)": [[32, "viser.Icon.ROAD_OFF"]], "road_sign (viser.icon attribute)": [[32, "viser.Icon.ROAD_SIGN"]], "robot (viser.icon attribute)": [[32, "viser.Icon.ROBOT"]], "robot_off (viser.icon attribute)": [[32, "viser.Icon.ROBOT_OFF"]], "rocket (viser.icon attribute)": [[32, "viser.Icon.ROCKET"]], "rocket_off (viser.icon attribute)": [[32, "viser.Icon.ROCKET_OFF"]], "rollercoaster (viser.icon attribute)": [[32, "viser.Icon.ROLLERCOASTER"]], "rollercoaster_off (viser.icon attribute)": [[32, "viser.Icon.ROLLERCOASTER_OFF"]], "roller_skating (viser.icon attribute)": [[32, "viser.Icon.ROLLER_SKATING"]], "rosette (viser.icon attribute)": [[32, "viser.Icon.ROSETTE"]], "rosette_filled (viser.icon attribute)": [[32, "viser.Icon.ROSETTE_FILLED"]], "rosette_number_0 (viser.icon attribute)": [[32, "viser.Icon.ROSETTE_NUMBER_0"]], "rosette_number_1 (viser.icon attribute)": [[32, "viser.Icon.ROSETTE_NUMBER_1"]], "rosette_number_2 (viser.icon attribute)": [[32, "viser.Icon.ROSETTE_NUMBER_2"]], "rosette_number_3 (viser.icon attribute)": [[32, "viser.Icon.ROSETTE_NUMBER_3"]], "rosette_number_4 (viser.icon attribute)": [[32, "viser.Icon.ROSETTE_NUMBER_4"]], "rosette_number_5 (viser.icon attribute)": [[32, "viser.Icon.ROSETTE_NUMBER_5"]], "rosette_number_6 (viser.icon attribute)": [[32, "viser.Icon.ROSETTE_NUMBER_6"]], "rosette_number_7 (viser.icon attribute)": [[32, "viser.Icon.ROSETTE_NUMBER_7"]], "rosette_number_8 (viser.icon attribute)": [[32, "viser.Icon.ROSETTE_NUMBER_8"]], "rosette_number_9 (viser.icon attribute)": [[32, "viser.Icon.ROSETTE_NUMBER_9"]], "rotate (viser.icon attribute)": [[32, "viser.Icon.ROTATE"]], "rotate_2 (viser.icon attribute)": [[32, "viser.Icon.ROTATE_2"]], "rotate_360 (viser.icon attribute)": [[32, "viser.Icon.ROTATE_360"]], "rotate_clockwise (viser.icon attribute)": [[32, "viser.Icon.ROTATE_CLOCKWISE"]], "rotate_clockwise_2 (viser.icon attribute)": [[32, "viser.Icon.ROTATE_CLOCKWISE_2"]], "rotate_dot (viser.icon attribute)": [[32, "viser.Icon.ROTATE_DOT"]], "rotate_rectangle (viser.icon attribute)": [[32, "viser.Icon.ROTATE_RECTANGLE"]], "route (viser.icon attribute)": [[32, "viser.Icon.ROUTE"]], "router (viser.icon attribute)": [[32, "viser.Icon.ROUTER"]], "router_off (viser.icon attribute)": [[32, "viser.Icon.ROUTER_OFF"]], "route_2 (viser.icon attribute)": [[32, "viser.Icon.ROUTE_2"]], "route_off (viser.icon attribute)": [[32, "viser.Icon.ROUTE_OFF"]], "row_insert_bottom (viser.icon attribute)": [[32, "viser.Icon.ROW_INSERT_BOTTOM"]], "row_insert_top (viser.icon attribute)": [[32, "viser.Icon.ROW_INSERT_TOP"]], "row_remove (viser.icon attribute)": [[32, "viser.Icon.ROW_REMOVE"]], "rss (viser.icon attribute)": [[32, "viser.Icon.RSS"]], "rubber_stamp (viser.icon attribute)": [[32, "viser.Icon.RUBBER_STAMP"]], "rubber_stamp_off (viser.icon attribute)": [[32, "viser.Icon.RUBBER_STAMP_OFF"]], "ruler (viser.icon attribute)": [[32, "viser.Icon.RULER"]], "ruler_2 (viser.icon attribute)": [[32, "viser.Icon.RULER_2"]], "ruler_2_off (viser.icon attribute)": [[32, "viser.Icon.RULER_2_OFF"]], "ruler_3 (viser.icon attribute)": [[32, "viser.Icon.RULER_3"]], "ruler_measure (viser.icon attribute)": [[32, "viser.Icon.RULER_MEASURE"]], "ruler_off (viser.icon attribute)": [[32, "viser.Icon.RULER_OFF"]], "run (viser.icon attribute)": [[32, "viser.Icon.RUN"]], "sailboat (viser.icon attribute)": [[32, "viser.Icon.SAILBOAT"]], "sailboat_2 (viser.icon attribute)": [[32, "viser.Icon.SAILBOAT_2"]], "sailboat_off (viser.icon attribute)": [[32, "viser.Icon.SAILBOAT_OFF"]], "salad (viser.icon attribute)": [[32, "viser.Icon.SALAD"]], "salt (viser.icon attribute)": [[32, "viser.Icon.SALT"]], "satellite (viser.icon attribute)": [[32, "viser.Icon.SATELLITE"]], "satellite_off (viser.icon attribute)": [[32, "viser.Icon.SATELLITE_OFF"]], "sausage (viser.icon attribute)": [[32, "viser.Icon.SAUSAGE"]], "scale (viser.icon attribute)": [[32, "viser.Icon.SCALE"]], "scale_off (viser.icon attribute)": [[32, "viser.Icon.SCALE_OFF"]], "scale_outline (viser.icon attribute)": [[32, "viser.Icon.SCALE_OUTLINE"]], "scale_outline_off (viser.icon attribute)": [[32, "viser.Icon.SCALE_OUTLINE_OFF"]], "scan (viser.icon attribute)": [[32, "viser.Icon.SCAN"]], "scan_eye (viser.icon attribute)": [[32, "viser.Icon.SCAN_EYE"]], "schema (viser.icon attribute)": [[32, "viser.Icon.SCHEMA"]], "schema_off (viser.icon attribute)": [[32, "viser.Icon.SCHEMA_OFF"]], "school (viser.icon attribute)": [[32, "viser.Icon.SCHOOL"]], "school_bell (viser.icon attribute)": [[32, "viser.Icon.SCHOOL_BELL"]], "school_off (viser.icon attribute)": [[32, "viser.Icon.SCHOOL_OFF"]], "scissors (viser.icon attribute)": [[32, "viser.Icon.SCISSORS"]], "scissors_off (viser.icon attribute)": [[32, "viser.Icon.SCISSORS_OFF"]], "scooter (viser.icon attribute)": [[32, "viser.Icon.SCOOTER"]], "scooter_electric (viser.icon attribute)": [[32, "viser.Icon.SCOOTER_ELECTRIC"]], "scoreboard (viser.icon attribute)": [[32, "viser.Icon.SCOREBOARD"]], "screenshot (viser.icon attribute)": [[32, "viser.Icon.SCREENSHOT"]], "screen_share (viser.icon attribute)": [[32, "viser.Icon.SCREEN_SHARE"]], "screen_share_off (viser.icon attribute)": [[32, "viser.Icon.SCREEN_SHARE_OFF"]], "scribble (viser.icon attribute)": [[32, "viser.Icon.SCRIBBLE"]], "scribble_off (viser.icon attribute)": [[32, "viser.Icon.SCRIBBLE_OFF"]], "script (viser.icon attribute)": [[32, "viser.Icon.SCRIPT"]], "script_minus (viser.icon attribute)": [[32, "viser.Icon.SCRIPT_MINUS"]], "script_plus (viser.icon attribute)": [[32, "viser.Icon.SCRIPT_PLUS"]], "script_x (viser.icon attribute)": [[32, "viser.Icon.SCRIPT_X"]], "scuba_mask (viser.icon attribute)": [[32, "viser.Icon.SCUBA_MASK"]], "scuba_mask_off (viser.icon attribute)": [[32, "viser.Icon.SCUBA_MASK_OFF"]], "sdk (viser.icon attribute)": [[32, "viser.Icon.SDK"]], "search (viser.icon attribute)": [[32, "viser.Icon.SEARCH"]], "search_off (viser.icon attribute)": [[32, "viser.Icon.SEARCH_OFF"]], "section (viser.icon attribute)": [[32, "viser.Icon.SECTION"]], "section_sign (viser.icon attribute)": [[32, "viser.Icon.SECTION_SIGN"]], "seeding (viser.icon attribute)": [[32, "viser.Icon.SEEDING"]], "seeding_off (viser.icon attribute)": [[32, "viser.Icon.SEEDING_OFF"]], "select (viser.icon attribute)": [[32, "viser.Icon.SELECT"]], "selector (viser.icon attribute)": [[32, "viser.Icon.SELECTOR"]], "select_all (viser.icon attribute)": [[32, "viser.Icon.SELECT_ALL"]], "send (viser.icon attribute)": [[32, "viser.Icon.SEND"]], "send_off (viser.icon attribute)": [[32, "viser.Icon.SEND_OFF"]], "seo (viser.icon attribute)": [[32, "viser.Icon.SEO"]], "separator (viser.icon attribute)": [[32, "viser.Icon.SEPARATOR"]], "separator_horizontal (viser.icon attribute)": [[32, "viser.Icon.SEPARATOR_HORIZONTAL"]], "separator_vertical (viser.icon attribute)": [[32, "viser.Icon.SEPARATOR_VERTICAL"]], "server (viser.icon attribute)": [[32, "viser.Icon.SERVER"]], "server_2 (viser.icon attribute)": [[32, "viser.Icon.SERVER_2"]], "server_bolt (viser.icon attribute)": [[32, "viser.Icon.SERVER_BOLT"]], "server_cog (viser.icon attribute)": [[32, "viser.Icon.SERVER_COG"]], "server_off (viser.icon attribute)": [[32, "viser.Icon.SERVER_OFF"]], "servicemark (viser.icon attribute)": [[32, "viser.Icon.SERVICEMARK"]], "settings (viser.icon attribute)": [[32, "viser.Icon.SETTINGS"]], "settings_2 (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_2"]], "settings_automation (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_AUTOMATION"]], "settings_bolt (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_BOLT"]], "settings_cancel (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_CANCEL"]], "settings_check (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_CHECK"]], "settings_code (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_CODE"]], "settings_cog (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_COG"]], "settings_dollar (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_DOLLAR"]], "settings_down (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_DOWN"]], "settings_exclamation (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_EXCLAMATION"]], "settings_filled (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_FILLED"]], "settings_heart (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_HEART"]], "settings_minus (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_MINUS"]], "settings_off (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_OFF"]], "settings_pause (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_PAUSE"]], "settings_pin (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_PIN"]], "settings_plus (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_PLUS"]], "settings_question (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_QUESTION"]], "settings_search (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_SEARCH"]], "settings_share (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_SHARE"]], "settings_star (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_STAR"]], "settings_up (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_UP"]], "settings_x (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_X"]], "shadow (viser.icon attribute)": [[32, "viser.Icon.SHADOW"]], "shadow_off (viser.icon attribute)": [[32, "viser.Icon.SHADOW_OFF"]], "shape (viser.icon attribute)": [[32, "viser.Icon.SHAPE"]], "shape_2 (viser.icon attribute)": [[32, "viser.Icon.SHAPE_2"]], "shape_3 (viser.icon attribute)": [[32, "viser.Icon.SHAPE_3"]], "shape_off (viser.icon attribute)": [[32, "viser.Icon.SHAPE_OFF"]], "share (viser.icon attribute)": [[32, "viser.Icon.SHARE"]], "share_2 (viser.icon attribute)": [[32, "viser.Icon.SHARE_2"]], "share_3 (viser.icon attribute)": [[32, "viser.Icon.SHARE_3"]], "share_off (viser.icon attribute)": [[32, "viser.Icon.SHARE_OFF"]], "shield (viser.icon attribute)": [[32, "viser.Icon.SHIELD"]], "shield_bolt (viser.icon attribute)": [[32, "viser.Icon.SHIELD_BOLT"]], "shield_cancel (viser.icon attribute)": [[32, "viser.Icon.SHIELD_CANCEL"]], "shield_check (viser.icon attribute)": [[32, "viser.Icon.SHIELD_CHECK"]], "shield_checkered (viser.icon attribute)": [[32, "viser.Icon.SHIELD_CHECKERED"]], "shield_checkered_filled (viser.icon attribute)": [[32, "viser.Icon.SHIELD_CHECKERED_FILLED"]], "shield_check_filled (viser.icon attribute)": [[32, "viser.Icon.SHIELD_CHECK_FILLED"]], "shield_chevron (viser.icon attribute)": [[32, "viser.Icon.SHIELD_CHEVRON"]], "shield_code (viser.icon attribute)": [[32, "viser.Icon.SHIELD_CODE"]], "shield_cog (viser.icon attribute)": [[32, "viser.Icon.SHIELD_COG"]], "shield_dollar (viser.icon attribute)": [[32, "viser.Icon.SHIELD_DOLLAR"]], "shield_down (viser.icon attribute)": [[32, "viser.Icon.SHIELD_DOWN"]], "shield_exclamation (viser.icon attribute)": [[32, "viser.Icon.SHIELD_EXCLAMATION"]], "shield_filled (viser.icon attribute)": [[32, "viser.Icon.SHIELD_FILLED"]], "shield_half (viser.icon attribute)": [[32, "viser.Icon.SHIELD_HALF"]], "shield_half_filled (viser.icon attribute)": [[32, "viser.Icon.SHIELD_HALF_FILLED"]], "shield_heart (viser.icon attribute)": [[32, "viser.Icon.SHIELD_HEART"]], "shield_lock (viser.icon attribute)": [[32, "viser.Icon.SHIELD_LOCK"]], "shield_lock_filled (viser.icon attribute)": [[32, "viser.Icon.SHIELD_LOCK_FILLED"]], "shield_minus (viser.icon attribute)": [[32, "viser.Icon.SHIELD_MINUS"]], "shield_off (viser.icon attribute)": [[32, "viser.Icon.SHIELD_OFF"]], "shield_pause (viser.icon attribute)": [[32, "viser.Icon.SHIELD_PAUSE"]], "shield_pin (viser.icon attribute)": [[32, "viser.Icon.SHIELD_PIN"]], "shield_plus (viser.icon attribute)": [[32, "viser.Icon.SHIELD_PLUS"]], "shield_question (viser.icon attribute)": [[32, "viser.Icon.SHIELD_QUESTION"]], "shield_search (viser.icon attribute)": [[32, "viser.Icon.SHIELD_SEARCH"]], "shield_share (viser.icon attribute)": [[32, "viser.Icon.SHIELD_SHARE"]], "shield_star (viser.icon attribute)": [[32, "viser.Icon.SHIELD_STAR"]], "shield_up (viser.icon attribute)": [[32, "viser.Icon.SHIELD_UP"]], "shield_x (viser.icon attribute)": [[32, "viser.Icon.SHIELD_X"]], "ship (viser.icon attribute)": [[32, "viser.Icon.SHIP"]], "ship_off (viser.icon attribute)": [[32, "viser.Icon.SHIP_OFF"]], "shirt (viser.icon attribute)": [[32, "viser.Icon.SHIRT"]], "shirt_filled (viser.icon attribute)": [[32, "viser.Icon.SHIRT_FILLED"]], "shirt_off (viser.icon attribute)": [[32, "viser.Icon.SHIRT_OFF"]], "shirt_sport (viser.icon attribute)": [[32, "viser.Icon.SHIRT_SPORT"]], "shi_jumping (viser.icon attribute)": [[32, "viser.Icon.SHI_JUMPING"]], "shoe (viser.icon attribute)": [[32, "viser.Icon.SHOE"]], "shoe_off (viser.icon attribute)": [[32, "viser.Icon.SHOE_OFF"]], "shopping_bag (viser.icon attribute)": [[32, "viser.Icon.SHOPPING_BAG"]], "shopping_cart (viser.icon attribute)": [[32, "viser.Icon.SHOPPING_CART"]], "shopping_cart_discount (viser.icon attribute)": [[32, "viser.Icon.SHOPPING_CART_DISCOUNT"]], "shopping_cart_off (viser.icon attribute)": [[32, "viser.Icon.SHOPPING_CART_OFF"]], "shopping_cart_plus (viser.icon attribute)": [[32, "viser.Icon.SHOPPING_CART_PLUS"]], "shopping_cart_x (viser.icon attribute)": [[32, "viser.Icon.SHOPPING_CART_X"]], "shovel (viser.icon attribute)": [[32, "viser.Icon.SHOVEL"]], "shredder (viser.icon attribute)": [[32, "viser.Icon.SHREDDER"]], "signal_2g (viser.icon attribute)": [[32, "viser.Icon.SIGNAL_2G"]], "signal_3g (viser.icon attribute)": [[32, "viser.Icon.SIGNAL_3G"]], "signal_4g (viser.icon attribute)": [[32, "viser.Icon.SIGNAL_4G"]], "signal_4g_plus (viser.icon attribute)": [[32, "viser.Icon.SIGNAL_4G_PLUS"]], "signal_5g (viser.icon attribute)": [[32, "viser.Icon.SIGNAL_5G"]], "signal_6g (viser.icon attribute)": [[32, "viser.Icon.SIGNAL_6G"]], "signal_e (viser.icon attribute)": [[32, "viser.Icon.SIGNAL_E"]], "signal_g (viser.icon attribute)": [[32, "viser.Icon.SIGNAL_G"]], "signal_h (viser.icon attribute)": [[32, "viser.Icon.SIGNAL_H"]], "signal_h_plus (viser.icon attribute)": [[32, "viser.Icon.SIGNAL_H_PLUS"]], "signal_lte (viser.icon attribute)": [[32, "viser.Icon.SIGNAL_LTE"]], "signature (viser.icon attribute)": [[32, "viser.Icon.SIGNATURE"]], "signature_off (viser.icon attribute)": [[32, "viser.Icon.SIGNATURE_OFF"]], "sign_left (viser.icon attribute)": [[32, "viser.Icon.SIGN_LEFT"]], "sign_left_filled (viser.icon attribute)": [[32, "viser.Icon.SIGN_LEFT_FILLED"]], "sign_right (viser.icon attribute)": [[32, "viser.Icon.SIGN_RIGHT"]], "sign_right_filled (viser.icon attribute)": [[32, "viser.Icon.SIGN_RIGHT_FILLED"]], "sitemap (viser.icon attribute)": [[32, "viser.Icon.SITEMAP"]], "sitemap_off (viser.icon attribute)": [[32, "viser.Icon.SITEMAP_OFF"]], "skateboard (viser.icon attribute)": [[32, "viser.Icon.SKATEBOARD"]], "skateboarding (viser.icon attribute)": [[32, "viser.Icon.SKATEBOARDING"]], "skateboard_off (viser.icon attribute)": [[32, "viser.Icon.SKATEBOARD_OFF"]], "skull (viser.icon attribute)": [[32, "viser.Icon.SKULL"]], "slash (viser.icon attribute)": [[32, "viser.Icon.SLASH"]], "slashes (viser.icon attribute)": [[32, "viser.Icon.SLASHES"]], "sleigh (viser.icon attribute)": [[32, "viser.Icon.SLEIGH"]], "slice (viser.icon attribute)": [[32, "viser.Icon.SLICE"]], "slideshow (viser.icon attribute)": [[32, "viser.Icon.SLIDESHOW"]], "smart_home (viser.icon attribute)": [[32, "viser.Icon.SMART_HOME"]], "smart_home_off (viser.icon attribute)": [[32, "viser.Icon.SMART_HOME_OFF"]], "smoking (viser.icon attribute)": [[32, "viser.Icon.SMOKING"]], "smoking_no (viser.icon attribute)": [[32, "viser.Icon.SMOKING_NO"]], "snowflake (viser.icon attribute)": [[32, "viser.Icon.SNOWFLAKE"]], "snowflake_off (viser.icon attribute)": [[32, "viser.Icon.SNOWFLAKE_OFF"]], "snowman (viser.icon attribute)": [[32, "viser.Icon.SNOWMAN"]], "soccer_field (viser.icon attribute)": [[32, "viser.Icon.SOCCER_FIELD"]], "social (viser.icon attribute)": [[32, "viser.Icon.SOCIAL"]], "social_off (viser.icon attribute)": [[32, "viser.Icon.SOCIAL_OFF"]], "sock (viser.icon attribute)": [[32, "viser.Icon.SOCK"]], "sofa (viser.icon attribute)": [[32, "viser.Icon.SOFA"]], "sofa_off (viser.icon attribute)": [[32, "viser.Icon.SOFA_OFF"]], "solar_panel (viser.icon attribute)": [[32, "viser.Icon.SOLAR_PANEL"]], "solar_panel_2 (viser.icon attribute)": [[32, "viser.Icon.SOLAR_PANEL_2"]], "sort_0_9 (viser.icon attribute)": [[32, "viser.Icon.SORT_0_9"]], "sort_9_0 (viser.icon attribute)": [[32, "viser.Icon.SORT_9_0"]], "sort_ascending (viser.icon attribute)": [[32, "viser.Icon.SORT_ASCENDING"]], "sort_ascending_2 (viser.icon attribute)": [[32, "viser.Icon.SORT_ASCENDING_2"]], "sort_ascending_letters (viser.icon attribute)": [[32, "viser.Icon.SORT_ASCENDING_LETTERS"]], "sort_ascending_numbers (viser.icon attribute)": [[32, "viser.Icon.SORT_ASCENDING_NUMBERS"]], "sort_a_z (viser.icon attribute)": [[32, "viser.Icon.SORT_A_Z"]], "sort_descending (viser.icon attribute)": [[32, "viser.Icon.SORT_DESCENDING"]], "sort_descending_2 (viser.icon attribute)": [[32, "viser.Icon.SORT_DESCENDING_2"]], "sort_descending_letters (viser.icon attribute)": [[32, "viser.Icon.SORT_DESCENDING_LETTERS"]], "sort_descending_numbers (viser.icon attribute)": [[32, "viser.Icon.SORT_DESCENDING_NUMBERS"]], "sort_z_a (viser.icon attribute)": [[32, "viser.Icon.SORT_Z_A"]], "sos (viser.icon attribute)": [[32, "viser.Icon.SOS"]], "soup (viser.icon attribute)": [[32, "viser.Icon.SOUP"]], "soup_off (viser.icon attribute)": [[32, "viser.Icon.SOUP_OFF"]], "source_code (viser.icon attribute)": [[32, "viser.Icon.SOURCE_CODE"]], "space (viser.icon attribute)": [[32, "viser.Icon.SPACE"]], "space_off (viser.icon attribute)": [[32, "viser.Icon.SPACE_OFF"]], "spacing_horizontal (viser.icon attribute)": [[32, "viser.Icon.SPACING_HORIZONTAL"]], "spacing_vertical (viser.icon attribute)": [[32, "viser.Icon.SPACING_VERTICAL"]], "spade (viser.icon attribute)": [[32, "viser.Icon.SPADE"]], "spade_filled (viser.icon attribute)": [[32, "viser.Icon.SPADE_FILLED"]], "sparkles (viser.icon attribute)": [[32, "viser.Icon.SPARKLES"]], "speakerphone (viser.icon attribute)": [[32, "viser.Icon.SPEAKERPHONE"]], "speedboat (viser.icon attribute)": [[32, "viser.Icon.SPEEDBOAT"]], "sphere (viser.icon attribute)": [[32, "viser.Icon.SPHERE"]], "sphere_off (viser.icon attribute)": [[32, "viser.Icon.SPHERE_OFF"]], "sphere_plus (viser.icon attribute)": [[32, "viser.Icon.SPHERE_PLUS"]], "spider (viser.icon attribute)": [[32, "viser.Icon.SPIDER"]], "spiral (viser.icon attribute)": [[32, "viser.Icon.SPIRAL"]], "spiral_off (viser.icon attribute)": [[32, "viser.Icon.SPIRAL_OFF"]], "sport_billard (viser.icon attribute)": [[32, "viser.Icon.SPORT_BILLARD"]], "spray (viser.icon attribute)": [[32, "viser.Icon.SPRAY"]], "spy (viser.icon attribute)": [[32, "viser.Icon.SPY"]], "spy_off (viser.icon attribute)": [[32, "viser.Icon.SPY_OFF"]], "sql (viser.icon attribute)": [[32, "viser.Icon.SQL"]], "square (viser.icon attribute)": [[32, "viser.Icon.SQUARE"]], "squares_diagonal (viser.icon attribute)": [[32, "viser.Icon.SQUARES_DIAGONAL"]], "squares_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARES_FILLED"]], "square_0_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_0_FILLED"]], "square_1_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_1_FILLED"]], "square_2_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_2_FILLED"]], "square_3_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_3_FILLED"]], "square_4_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_4_FILLED"]], "square_5_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_5_FILLED"]], "square_6_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_6_FILLED"]], "square_7_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_7_FILLED"]], "square_8_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_8_FILLED"]], "square_9_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_9_FILLED"]], "square_arrow_down (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ARROW_DOWN"]], "square_arrow_left (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ARROW_LEFT"]], "square_arrow_right (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ARROW_RIGHT"]], "square_arrow_up (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ARROW_UP"]], "square_asterisk (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ASTERISK"]], "square_check (viser.icon attribute)": [[32, "viser.Icon.SQUARE_CHECK"]], "square_check_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_CHECK_FILLED"]], "square_chevrons_down (viser.icon attribute)": [[32, "viser.Icon.SQUARE_CHEVRONS_DOWN"]], "square_chevrons_left (viser.icon attribute)": [[32, "viser.Icon.SQUARE_CHEVRONS_LEFT"]], "square_chevrons_right (viser.icon attribute)": [[32, "viser.Icon.SQUARE_CHEVRONS_RIGHT"]], "square_chevrons_up (viser.icon attribute)": [[32, "viser.Icon.SQUARE_CHEVRONS_UP"]], "square_chevron_down (viser.icon attribute)": [[32, "viser.Icon.SQUARE_CHEVRON_DOWN"]], "square_chevron_left (viser.icon attribute)": [[32, "viser.Icon.SQUARE_CHEVRON_LEFT"]], "square_chevron_right (viser.icon attribute)": [[32, "viser.Icon.SQUARE_CHEVRON_RIGHT"]], "square_chevron_up (viser.icon attribute)": [[32, "viser.Icon.SQUARE_CHEVRON_UP"]], "square_dot (viser.icon attribute)": [[32, "viser.Icon.SQUARE_DOT"]], "square_f0 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F0"]], "square_f0_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F0_FILLED"]], "square_f1 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F1"]], "square_f1_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F1_FILLED"]], "square_f2 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F2"]], "square_f2_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F2_FILLED"]], "square_f3 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F3"]], "square_f3_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F3_FILLED"]], "square_f4 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F4"]], "square_f4_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F4_FILLED"]], "square_f5 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F5"]], "square_f5_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F5_FILLED"]], "square_f6 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F6"]], "square_f6_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F6_FILLED"]], "square_f7 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F7"]], "square_f7_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F7_FILLED"]], "square_f8 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F8"]], "square_f8_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F8_FILLED"]], "square_f9 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F9"]], "square_f9_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F9_FILLED"]], "square_forbid (viser.icon attribute)": [[32, "viser.Icon.SQUARE_FORBID"]], "square_forbid_2 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_FORBID_2"]], "square_half (viser.icon attribute)": [[32, "viser.Icon.SQUARE_HALF"]], "square_key (viser.icon attribute)": [[32, "viser.Icon.SQUARE_KEY"]], "square_letter_a (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_A"]], "square_letter_b (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_B"]], "square_letter_c (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_C"]], "square_letter_d (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_D"]], "square_letter_e (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_E"]], "square_letter_f (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_F"]], "square_letter_g (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_G"]], "square_letter_h (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_H"]], "square_letter_i (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_I"]], "square_letter_j (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_J"]], "square_letter_k (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_K"]], "square_letter_l (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_L"]], "square_letter_m (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_M"]], "square_letter_n (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_N"]], "square_letter_o (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_O"]], "square_letter_p (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_P"]], "square_letter_q (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_Q"]], "square_letter_r (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_R"]], "square_letter_s (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_S"]], "square_letter_t (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_T"]], "square_letter_u (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_U"]], "square_letter_v (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_V"]], "square_letter_w (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_W"]], "square_letter_x (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_X"]], "square_letter_y (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_Y"]], "square_letter_z (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_Z"]], "square_minus (viser.icon attribute)": [[32, "viser.Icon.SQUARE_MINUS"]], "square_number_0 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_NUMBER_0"]], "square_number_1 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_NUMBER_1"]], "square_number_2 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_NUMBER_2"]], "square_number_3 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_NUMBER_3"]], "square_number_4 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_NUMBER_4"]], "square_number_5 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_NUMBER_5"]], "square_number_6 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_NUMBER_6"]], "square_number_7 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_NUMBER_7"]], "square_number_8 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_NUMBER_8"]], "square_number_9 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_NUMBER_9"]], "square_off (viser.icon attribute)": [[32, "viser.Icon.SQUARE_OFF"]], "square_plus (viser.icon attribute)": [[32, "viser.Icon.SQUARE_PLUS"]], "square_root (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROOT"]], "square_root_2 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROOT_2"]], "square_rotated (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROTATED"]], "square_rotated_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROTATED_FILLED"]], "square_rotated_forbid (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROTATED_FORBID"]], "square_rotated_forbid_2 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROTATED_FORBID_2"]], "square_rotated_off (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROTATED_OFF"]], "square_rounded (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED"]], "square_rounded_arrow_down (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_ARROW_DOWN"]], "square_rounded_arrow_down_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_ARROW_DOWN_FILLED"]], "square_rounded_arrow_left (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_ARROW_LEFT"]], "square_rounded_arrow_left_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_ARROW_LEFT_FILLED"]], "square_rounded_arrow_right (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_ARROW_RIGHT"]], "square_rounded_arrow_right_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_ARROW_RIGHT_FILLED"]], "square_rounded_arrow_up (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_ARROW_UP"]], "square_rounded_arrow_up_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_ARROW_UP_FILLED"]], "square_rounded_check (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHECK"]], "square_rounded_check_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHECK_FILLED"]], "square_rounded_chevrons_down (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_DOWN"]], "square_rounded_chevrons_down_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_DOWN_FILLED"]], "square_rounded_chevrons_left (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_LEFT"]], "square_rounded_chevrons_left_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_LEFT_FILLED"]], "square_rounded_chevrons_right (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_RIGHT"]], "square_rounded_chevrons_right_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_RIGHT_FILLED"]], "square_rounded_chevrons_up (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_UP"]], "square_rounded_chevrons_up_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_UP_FILLED"]], "square_rounded_chevron_down (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRON_DOWN"]], "square_rounded_chevron_down_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRON_DOWN_FILLED"]], "square_rounded_chevron_left (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRON_LEFT"]], "square_rounded_chevron_left_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRON_LEFT_FILLED"]], "square_rounded_chevron_right (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRON_RIGHT"]], "square_rounded_chevron_right_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRON_RIGHT_FILLED"]], "square_rounded_chevron_up (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRON_UP"]], "square_rounded_chevron_up_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRON_UP_FILLED"]], "square_rounded_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_FILLED"]], "square_rounded_letter_a (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_A"]], "square_rounded_letter_b (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_B"]], "square_rounded_letter_c (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_C"]], "square_rounded_letter_d (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_D"]], "square_rounded_letter_e (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_E"]], "square_rounded_letter_f (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_F"]], "square_rounded_letter_g (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_G"]], "square_rounded_letter_h (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_H"]], "square_rounded_letter_i (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_I"]], "square_rounded_letter_j (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_J"]], "square_rounded_letter_k (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_K"]], "square_rounded_letter_l (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_L"]], "square_rounded_letter_m (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_M"]], "square_rounded_letter_n (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_N"]], "square_rounded_letter_o (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_O"]], "square_rounded_letter_p (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_P"]], "square_rounded_letter_q (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_Q"]], "square_rounded_letter_r (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_R"]], "square_rounded_letter_s (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_S"]], "square_rounded_letter_t (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_T"]], "square_rounded_letter_u (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_U"]], "square_rounded_letter_v (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_V"]], "square_rounded_letter_w (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_W"]], "square_rounded_letter_x (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_X"]], "square_rounded_letter_y (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_Y"]], "square_rounded_letter_z (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_Z"]], "square_rounded_minus (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_MINUS"]], "square_rounded_number_0 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_0"]], "square_rounded_number_0_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_0_FILLED"]], "square_rounded_number_1 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_1"]], "square_rounded_number_1_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_1_FILLED"]], "square_rounded_number_2 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_2"]], "square_rounded_number_2_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_2_FILLED"]], "square_rounded_number_3 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_3"]], "square_rounded_number_3_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_3_FILLED"]], "square_rounded_number_4 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_4"]], "square_rounded_number_4_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_4_FILLED"]], "square_rounded_number_5 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_5"]], "square_rounded_number_5_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_5_FILLED"]], "square_rounded_number_6 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_6"]], "square_rounded_number_6_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_6_FILLED"]], "square_rounded_number_7 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_7"]], "square_rounded_number_7_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_7_FILLED"]], "square_rounded_number_8 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_8"]], "square_rounded_number_8_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_8_FILLED"]], "square_rounded_number_9 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_9"]], "square_rounded_number_9_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_9_FILLED"]], "square_rounded_plus (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_PLUS"]], "square_rounded_plus_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_PLUS_FILLED"]], "square_rounded_x (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_X"]], "square_rounded_x_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_X_FILLED"]], "square_toggle (viser.icon attribute)": [[32, "viser.Icon.SQUARE_TOGGLE"]], "square_toggle_horizontal (viser.icon attribute)": [[32, "viser.Icon.SQUARE_TOGGLE_HORIZONTAL"]], "square_x (viser.icon attribute)": [[32, "viser.Icon.SQUARE_X"]], "stack (viser.icon attribute)": [[32, "viser.Icon.STACK"]], "stack_2 (viser.icon attribute)": [[32, "viser.Icon.STACK_2"]], "stack_3 (viser.icon attribute)": [[32, "viser.Icon.STACK_3"]], "stack_pop (viser.icon attribute)": [[32, "viser.Icon.STACK_POP"]], "stack_push (viser.icon attribute)": [[32, "viser.Icon.STACK_PUSH"]], "stairs (viser.icon attribute)": [[32, "viser.Icon.STAIRS"]], "stairs_down (viser.icon attribute)": [[32, "viser.Icon.STAIRS_DOWN"]], "stairs_up (viser.icon attribute)": [[32, "viser.Icon.STAIRS_UP"]], "star (viser.icon attribute)": [[32, "viser.Icon.STAR"]], "stars (viser.icon attribute)": [[32, "viser.Icon.STARS"]], "stars_filled (viser.icon attribute)": [[32, "viser.Icon.STARS_FILLED"]], "stars_off (viser.icon attribute)": [[32, "viser.Icon.STARS_OFF"]], "star_filled (viser.icon attribute)": [[32, "viser.Icon.STAR_FILLED"]], "star_half (viser.icon attribute)": [[32, "viser.Icon.STAR_HALF"]], "star_half_filled (viser.icon attribute)": [[32, "viser.Icon.STAR_HALF_FILLED"]], "star_off (viser.icon attribute)": [[32, "viser.Icon.STAR_OFF"]], "status_change (viser.icon attribute)": [[32, "viser.Icon.STATUS_CHANGE"]], "steam (viser.icon attribute)": [[32, "viser.Icon.STEAM"]], "steering_wheel (viser.icon attribute)": [[32, "viser.Icon.STEERING_WHEEL"]], "steering_wheel_off (viser.icon attribute)": [[32, "viser.Icon.STEERING_WHEEL_OFF"]], "step_into (viser.icon attribute)": [[32, "viser.Icon.STEP_INTO"]], "step_out (viser.icon attribute)": [[32, "viser.Icon.STEP_OUT"]], "stereo_glasses (viser.icon attribute)": [[32, "viser.Icon.STEREO_GLASSES"]], "stethoscope (viser.icon attribute)": [[32, "viser.Icon.STETHOSCOPE"]], "stethoscope_off (viser.icon attribute)": [[32, "viser.Icon.STETHOSCOPE_OFF"]], "sticker (viser.icon attribute)": [[32, "viser.Icon.STICKER"]], "storm (viser.icon attribute)": [[32, "viser.Icon.STORM"]], "storm_off (viser.icon attribute)": [[32, "viser.Icon.STORM_OFF"]], "stretching (viser.icon attribute)": [[32, "viser.Icon.STRETCHING"]], "stretching_2 (viser.icon attribute)": [[32, "viser.Icon.STRETCHING_2"]], "strikethrough (viser.icon attribute)": [[32, "viser.Icon.STRIKETHROUGH"]], "submarine (viser.icon attribute)": [[32, "viser.Icon.SUBMARINE"]], "subscript (viser.icon attribute)": [[32, "viser.Icon.SUBSCRIPT"]], "subtask (viser.icon attribute)": [[32, "viser.Icon.SUBTASK"]], "sum (viser.icon attribute)": [[32, "viser.Icon.SUM"]], "sum_off (viser.icon attribute)": [[32, "viser.Icon.SUM_OFF"]], "sun (viser.icon attribute)": [[32, "viser.Icon.SUN"]], "sunglasses (viser.icon attribute)": [[32, "viser.Icon.SUNGLASSES"]], "sunrise (viser.icon attribute)": [[32, "viser.Icon.SUNRISE"]], "sunset (viser.icon attribute)": [[32, "viser.Icon.SUNSET"]], "sunset_2 (viser.icon attribute)": [[32, "viser.Icon.SUNSET_2"]], "sun_filled (viser.icon attribute)": [[32, "viser.Icon.SUN_FILLED"]], "sun_high (viser.icon attribute)": [[32, "viser.Icon.SUN_HIGH"]], "sun_low (viser.icon attribute)": [[32, "viser.Icon.SUN_LOW"]], "sun_moon (viser.icon attribute)": [[32, "viser.Icon.SUN_MOON"]], "sun_off (viser.icon attribute)": [[32, "viser.Icon.SUN_OFF"]], "sun_wind (viser.icon attribute)": [[32, "viser.Icon.SUN_WIND"]], "superscript (viser.icon attribute)": [[32, "viser.Icon.SUPERSCRIPT"]], "svg (viser.icon attribute)": [[32, "viser.Icon.SVG"]], "swimming (viser.icon attribute)": [[32, "viser.Icon.SWIMMING"]], "swipe (viser.icon attribute)": [[32, "viser.Icon.SWIPE"]], "switch (viser.icon attribute)": [[32, "viser.Icon.SWITCH"]], "switch_2 (viser.icon attribute)": [[32, "viser.Icon.SWITCH_2"]], "switch_3 (viser.icon attribute)": [[32, "viser.Icon.SWITCH_3"]], "switch_horizontal (viser.icon attribute)": [[32, "viser.Icon.SWITCH_HORIZONTAL"]], "switch_vertical (viser.icon attribute)": [[32, "viser.Icon.SWITCH_VERTICAL"]], "sword (viser.icon attribute)": [[32, "viser.Icon.SWORD"]], "swords (viser.icon attribute)": [[32, "viser.Icon.SWORDS"]], "sword_off (viser.icon attribute)": [[32, "viser.Icon.SWORD_OFF"]], "s_turn_down (viser.icon attribute)": [[32, "viser.Icon.S_TURN_DOWN"]], "s_turn_left (viser.icon attribute)": [[32, "viser.Icon.S_TURN_LEFT"]], "s_turn_right (viser.icon attribute)": [[32, "viser.Icon.S_TURN_RIGHT"]], "s_turn_up (viser.icon attribute)": [[32, "viser.Icon.S_TURN_UP"]], "table (viser.icon attribute)": [[32, "viser.Icon.TABLE"]], "table_alias (viser.icon attribute)": [[32, "viser.Icon.TABLE_ALIAS"]], "table_column (viser.icon attribute)": [[32, "viser.Icon.TABLE_COLUMN"]], "table_down (viser.icon attribute)": [[32, "viser.Icon.TABLE_DOWN"]], "table_export (viser.icon attribute)": [[32, "viser.Icon.TABLE_EXPORT"]], "table_filled (viser.icon attribute)": [[32, "viser.Icon.TABLE_FILLED"]], "table_heart (viser.icon attribute)": [[32, "viser.Icon.TABLE_HEART"]], "table_import (viser.icon attribute)": [[32, "viser.Icon.TABLE_IMPORT"]], "table_minus (viser.icon attribute)": [[32, "viser.Icon.TABLE_MINUS"]], "table_off (viser.icon attribute)": [[32, "viser.Icon.TABLE_OFF"]], "table_options (viser.icon attribute)": [[32, "viser.Icon.TABLE_OPTIONS"]], "table_plus (viser.icon attribute)": [[32, "viser.Icon.TABLE_PLUS"]], "table_row (viser.icon attribute)": [[32, "viser.Icon.TABLE_ROW"]], "table_share (viser.icon attribute)": [[32, "viser.Icon.TABLE_SHARE"]], "table_shortcut (viser.icon attribute)": [[32, "viser.Icon.TABLE_SHORTCUT"]], "tag (viser.icon attribute)": [[32, "viser.Icon.TAG"]], "tags (viser.icon attribute)": [[32, "viser.Icon.TAGS"]], "tags_off (viser.icon attribute)": [[32, "viser.Icon.TAGS_OFF"]], "tag_off (viser.icon attribute)": [[32, "viser.Icon.TAG_OFF"]], "tallymarks (viser.icon attribute)": [[32, "viser.Icon.TALLYMARKS"]], "tallymark_1 (viser.icon attribute)": [[32, "viser.Icon.TALLYMARK_1"]], "tallymark_2 (viser.icon attribute)": [[32, "viser.Icon.TALLYMARK_2"]], "tallymark_3 (viser.icon attribute)": [[32, "viser.Icon.TALLYMARK_3"]], "tallymark_4 (viser.icon attribute)": [[32, "viser.Icon.TALLYMARK_4"]], "tank (viser.icon attribute)": [[32, "viser.Icon.TANK"]], "target (viser.icon attribute)": [[32, "viser.Icon.TARGET"]], "target_arrow (viser.icon attribute)": [[32, "viser.Icon.TARGET_ARROW"]], "target_off (viser.icon attribute)": [[32, "viser.Icon.TARGET_OFF"]], "teapot (viser.icon attribute)": [[32, "viser.Icon.TEAPOT"]], "telescope (viser.icon attribute)": [[32, "viser.Icon.TELESCOPE"]], "telescope_off (viser.icon attribute)": [[32, "viser.Icon.TELESCOPE_OFF"]], "temperature (viser.icon attribute)": [[32, "viser.Icon.TEMPERATURE"]], "temperature_celsius (viser.icon attribute)": [[32, "viser.Icon.TEMPERATURE_CELSIUS"]], "temperature_fahrenheit (viser.icon attribute)": [[32, "viser.Icon.TEMPERATURE_FAHRENHEIT"]], "temperature_minus (viser.icon attribute)": [[32, "viser.Icon.TEMPERATURE_MINUS"]], "temperature_off (viser.icon attribute)": [[32, "viser.Icon.TEMPERATURE_OFF"]], "temperature_plus (viser.icon attribute)": [[32, "viser.Icon.TEMPERATURE_PLUS"]], "template (viser.icon attribute)": [[32, "viser.Icon.TEMPLATE"]], "template_off (viser.icon attribute)": [[32, "viser.Icon.TEMPLATE_OFF"]], "tent (viser.icon attribute)": [[32, "viser.Icon.TENT"]], "tent_off (viser.icon attribute)": [[32, "viser.Icon.TENT_OFF"]], "terminal (viser.icon attribute)": [[32, "viser.Icon.TERMINAL"]], "terminal_2 (viser.icon attribute)": [[32, "viser.Icon.TERMINAL_2"]], "test_pipe (viser.icon attribute)": [[32, "viser.Icon.TEST_PIPE"]], "test_pipe_2 (viser.icon attribute)": [[32, "viser.Icon.TEST_PIPE_2"]], "test_pipe_off (viser.icon attribute)": [[32, "viser.Icon.TEST_PIPE_OFF"]], "tex (viser.icon attribute)": [[32, "viser.Icon.TEX"]], "texture (viser.icon attribute)": [[32, "viser.Icon.TEXTURE"]], "text_caption (viser.icon attribute)": [[32, "viser.Icon.TEXT_CAPTION"]], "text_color (viser.icon attribute)": [[32, "viser.Icon.TEXT_COLOR"]], "text_decrease (viser.icon attribute)": [[32, "viser.Icon.TEXT_DECREASE"]], "text_direction_ltr (viser.icon attribute)": [[32, "viser.Icon.TEXT_DIRECTION_LTR"]], "text_direction_rtl (viser.icon attribute)": [[32, "viser.Icon.TEXT_DIRECTION_RTL"]], "text_increase (viser.icon attribute)": [[32, "viser.Icon.TEXT_INCREASE"]], "text_orientation (viser.icon attribute)": [[32, "viser.Icon.TEXT_ORIENTATION"]], "text_plus (viser.icon attribute)": [[32, "viser.Icon.TEXT_PLUS"]], "text_recognition (viser.icon attribute)": [[32, "viser.Icon.TEXT_RECOGNITION"]], "text_resize (viser.icon attribute)": [[32, "viser.Icon.TEXT_RESIZE"]], "text_size (viser.icon attribute)": [[32, "viser.Icon.TEXT_SIZE"]], "text_spellcheck (viser.icon attribute)": [[32, "viser.Icon.TEXT_SPELLCHECK"]], "text_wrap (viser.icon attribute)": [[32, "viser.Icon.TEXT_WRAP"]], "text_wrap_disabled (viser.icon attribute)": [[32, "viser.Icon.TEXT_WRAP_DISABLED"]], "theater (viser.icon attribute)": [[32, "viser.Icon.THEATER"]], "thermometer (viser.icon attribute)": [[32, "viser.Icon.THERMOMETER"]], "thumb_down (viser.icon attribute)": [[32, "viser.Icon.THUMB_DOWN"]], "thumb_down_filled (viser.icon attribute)": [[32, "viser.Icon.THUMB_DOWN_FILLED"]], "thumb_down_off (viser.icon attribute)": [[32, "viser.Icon.THUMB_DOWN_OFF"]], "thumb_up (viser.icon attribute)": [[32, "viser.Icon.THUMB_UP"]], "thumb_up_filled (viser.icon attribute)": [[32, "viser.Icon.THUMB_UP_FILLED"]], "thumb_up_off (viser.icon attribute)": [[32, "viser.Icon.THUMB_UP_OFF"]], "ticket (viser.icon attribute)": [[32, "viser.Icon.TICKET"]], "ticket_off (viser.icon attribute)": [[32, "viser.Icon.TICKET_OFF"]], "tic_tac (viser.icon attribute)": [[32, "viser.Icon.TIC_TAC"]], "tie (viser.icon attribute)": [[32, "viser.Icon.TIE"]], "tilde (viser.icon attribute)": [[32, "viser.Icon.TILDE"]], "tilt_shift (viser.icon attribute)": [[32, "viser.Icon.TILT_SHIFT"]], "tilt_shift_off (viser.icon attribute)": [[32, "viser.Icon.TILT_SHIFT_OFF"]], "timeline (viser.icon attribute)": [[32, "viser.Icon.TIMELINE"]], "timeline_event (viser.icon attribute)": [[32, "viser.Icon.TIMELINE_EVENT"]], "timeline_event_exclamation (viser.icon attribute)": [[32, "viser.Icon.TIMELINE_EVENT_EXCLAMATION"]], "timeline_event_minus (viser.icon attribute)": [[32, "viser.Icon.TIMELINE_EVENT_MINUS"]], "timeline_event_plus (viser.icon attribute)": [[32, "viser.Icon.TIMELINE_EVENT_PLUS"]], "timeline_event_text (viser.icon attribute)": [[32, "viser.Icon.TIMELINE_EVENT_TEXT"]], "timeline_event_x (viser.icon attribute)": [[32, "viser.Icon.TIMELINE_EVENT_X"]], "time_duration_0 (viser.icon attribute)": [[32, "viser.Icon.TIME_DURATION_0"]], "time_duration_10 (viser.icon attribute)": [[32, "viser.Icon.TIME_DURATION_10"]], "time_duration_15 (viser.icon attribute)": [[32, "viser.Icon.TIME_DURATION_15"]], "time_duration_30 (viser.icon attribute)": [[32, "viser.Icon.TIME_DURATION_30"]], "time_duration_45 (viser.icon attribute)": [[32, "viser.Icon.TIME_DURATION_45"]], "time_duration_5 (viser.icon attribute)": [[32, "viser.Icon.TIME_DURATION_5"]], "time_duration_60 (viser.icon attribute)": [[32, "viser.Icon.TIME_DURATION_60"]], "time_duration_90 (viser.icon attribute)": [[32, "viser.Icon.TIME_DURATION_90"]], "time_duration_off (viser.icon attribute)": [[32, "viser.Icon.TIME_DURATION_OFF"]], "tir (viser.icon attribute)": [[32, "viser.Icon.TIR"]], "toggle_left (viser.icon attribute)": [[32, "viser.Icon.TOGGLE_LEFT"]], "toggle_right (viser.icon attribute)": [[32, "viser.Icon.TOGGLE_RIGHT"]], "toilet_paper (viser.icon attribute)": [[32, "viser.Icon.TOILET_PAPER"]], "toilet_paper_off (viser.icon attribute)": [[32, "viser.Icon.TOILET_PAPER_OFF"]], "toml (viser.icon attribute)": [[32, "viser.Icon.TOML"]], "tool (viser.icon attribute)": [[32, "viser.Icon.TOOL"]], "tools (viser.icon attribute)": [[32, "viser.Icon.TOOLS"]], "tools_kitchen (viser.icon attribute)": [[32, "viser.Icon.TOOLS_KITCHEN"]], "tools_kitchen_2 (viser.icon attribute)": [[32, "viser.Icon.TOOLS_KITCHEN_2"]], "tools_kitchen_2_off (viser.icon attribute)": [[32, "viser.Icon.TOOLS_KITCHEN_2_OFF"]], "tools_kitchen_off (viser.icon attribute)": [[32, "viser.Icon.TOOLS_KITCHEN_OFF"]], "tools_off (viser.icon attribute)": [[32, "viser.Icon.TOOLS_OFF"]], "tooltip (viser.icon attribute)": [[32, "viser.Icon.TOOLTIP"]], "topology_bus (viser.icon attribute)": [[32, "viser.Icon.TOPOLOGY_BUS"]], "topology_complex (viser.icon attribute)": [[32, "viser.Icon.TOPOLOGY_COMPLEX"]], "topology_full (viser.icon attribute)": [[32, "viser.Icon.TOPOLOGY_FULL"]], "topology_full_hierarchy (viser.icon attribute)": [[32, "viser.Icon.TOPOLOGY_FULL_HIERARCHY"]], "topology_ring (viser.icon attribute)": [[32, "viser.Icon.TOPOLOGY_RING"]], "topology_ring_2 (viser.icon attribute)": [[32, "viser.Icon.TOPOLOGY_RING_2"]], "topology_ring_3 (viser.icon attribute)": [[32, "viser.Icon.TOPOLOGY_RING_3"]], "topology_star (viser.icon attribute)": [[32, "viser.Icon.TOPOLOGY_STAR"]], "topology_star_2 (viser.icon attribute)": [[32, "viser.Icon.TOPOLOGY_STAR_2"]], "topology_star_3 (viser.icon attribute)": [[32, "viser.Icon.TOPOLOGY_STAR_3"]], "topology_star_ring (viser.icon attribute)": [[32, "viser.Icon.TOPOLOGY_STAR_RING"]], "topology_star_ring_2 (viser.icon attribute)": [[32, "viser.Icon.TOPOLOGY_STAR_RING_2"]], "topology_star_ring_3 (viser.icon attribute)": [[32, "viser.Icon.TOPOLOGY_STAR_RING_3"]], "torii (viser.icon attribute)": [[32, "viser.Icon.TORII"]], "tornado (viser.icon attribute)": [[32, "viser.Icon.TORNADO"]], "tournament (viser.icon attribute)": [[32, "viser.Icon.TOURNAMENT"]], "tower (viser.icon attribute)": [[32, "viser.Icon.TOWER"]], "tower_off (viser.icon attribute)": [[32, "viser.Icon.TOWER_OFF"]], "track (viser.icon attribute)": [[32, "viser.Icon.TRACK"]], "tractor (viser.icon attribute)": [[32, "viser.Icon.TRACTOR"]], "trademark (viser.icon attribute)": [[32, "viser.Icon.TRADEMARK"]], "traffic_cone (viser.icon attribute)": [[32, "viser.Icon.TRAFFIC_CONE"]], "traffic_cone_off (viser.icon attribute)": [[32, "viser.Icon.TRAFFIC_CONE_OFF"]], "traffic_lights (viser.icon attribute)": [[32, "viser.Icon.TRAFFIC_LIGHTS"]], "traffic_lights_off (viser.icon attribute)": [[32, "viser.Icon.TRAFFIC_LIGHTS_OFF"]], "train (viser.icon attribute)": [[32, "viser.Icon.TRAIN"]], "transfer_in (viser.icon attribute)": [[32, "viser.Icon.TRANSFER_IN"]], "transfer_out (viser.icon attribute)": [[32, "viser.Icon.TRANSFER_OUT"]], "transform (viser.icon attribute)": [[32, "viser.Icon.TRANSFORM"]], "transform_filled (viser.icon attribute)": [[32, "viser.Icon.TRANSFORM_FILLED"]], "transition_bottom (viser.icon attribute)": [[32, "viser.Icon.TRANSITION_BOTTOM"]], "transition_left (viser.icon attribute)": [[32, "viser.Icon.TRANSITION_LEFT"]], "transition_right (viser.icon attribute)": [[32, "viser.Icon.TRANSITION_RIGHT"]], "transition_top (viser.icon attribute)": [[32, "viser.Icon.TRANSITION_TOP"]], "trash (viser.icon attribute)": [[32, "viser.Icon.TRASH"]], "trash_filled (viser.icon attribute)": [[32, "viser.Icon.TRASH_FILLED"]], "trash_off (viser.icon attribute)": [[32, "viser.Icon.TRASH_OFF"]], "trash_x (viser.icon attribute)": [[32, "viser.Icon.TRASH_X"]], "trash_x_filled (viser.icon attribute)": [[32, "viser.Icon.TRASH_X_FILLED"]], "treadmill (viser.icon attribute)": [[32, "viser.Icon.TREADMILL"]], "tree (viser.icon attribute)": [[32, "viser.Icon.TREE"]], "trees (viser.icon attribute)": [[32, "viser.Icon.TREES"]], "trekking (viser.icon attribute)": [[32, "viser.Icon.TREKKING"]], "trending_down (viser.icon attribute)": [[32, "viser.Icon.TRENDING_DOWN"]], "trending_down_2 (viser.icon attribute)": [[32, "viser.Icon.TRENDING_DOWN_2"]], "trending_down_3 (viser.icon attribute)": [[32, "viser.Icon.TRENDING_DOWN_3"]], "trending_up (viser.icon attribute)": [[32, "viser.Icon.TRENDING_UP"]], "trending_up_2 (viser.icon attribute)": [[32, "viser.Icon.TRENDING_UP_2"]], "trending_up_3 (viser.icon attribute)": [[32, "viser.Icon.TRENDING_UP_3"]], "triangle (viser.icon attribute)": [[32, "viser.Icon.TRIANGLE"]], "triangles (viser.icon attribute)": [[32, "viser.Icon.TRIANGLES"]], "triangle_filled (viser.icon attribute)": [[32, "viser.Icon.TRIANGLE_FILLED"]], "triangle_inverted (viser.icon attribute)": [[32, "viser.Icon.TRIANGLE_INVERTED"]], "triangle_inverted_filled (viser.icon attribute)": [[32, "viser.Icon.TRIANGLE_INVERTED_FILLED"]], "triangle_off (viser.icon attribute)": [[32, "viser.Icon.TRIANGLE_OFF"]], "triangle_square_circle (viser.icon attribute)": [[32, "viser.Icon.TRIANGLE_SQUARE_CIRCLE"]], "trident (viser.icon attribute)": [[32, "viser.Icon.TRIDENT"]], "trolley (viser.icon attribute)": [[32, "viser.Icon.TROLLEY"]], "trophy (viser.icon attribute)": [[32, "viser.Icon.TROPHY"]], "trophy_filled (viser.icon attribute)": [[32, "viser.Icon.TROPHY_FILLED"]], "trophy_off (viser.icon attribute)": [[32, "viser.Icon.TROPHY_OFF"]], "trowel (viser.icon attribute)": [[32, "viser.Icon.TROWEL"]], "truck (viser.icon attribute)": [[32, "viser.Icon.TRUCK"]], "truck_delivery (viser.icon attribute)": [[32, "viser.Icon.TRUCK_DELIVERY"]], "truck_loading (viser.icon attribute)": [[32, "viser.Icon.TRUCK_LOADING"]], "truck_off (viser.icon attribute)": [[32, "viser.Icon.TRUCK_OFF"]], "truck_return (viser.icon attribute)": [[32, "viser.Icon.TRUCK_RETURN"]], "txt (viser.icon attribute)": [[32, "viser.Icon.TXT"]], "typography (viser.icon attribute)": [[32, "viser.Icon.TYPOGRAPHY"]], "typography_off (viser.icon attribute)": [[32, "viser.Icon.TYPOGRAPHY_OFF"]], "ufo (viser.icon attribute)": [[32, "viser.Icon.UFO"]], "ufo_off (viser.icon attribute)": [[32, "viser.Icon.UFO_OFF"]], "umbrella (viser.icon attribute)": [[32, "viser.Icon.UMBRELLA"]], "umbrella_filled (viser.icon attribute)": [[32, "viser.Icon.UMBRELLA_FILLED"]], "umbrella_off (viser.icon attribute)": [[32, "viser.Icon.UMBRELLA_OFF"]], "underline (viser.icon attribute)": [[32, "viser.Icon.UNDERLINE"]], "unlink (viser.icon attribute)": [[32, "viser.Icon.UNLINK"]], "upload (viser.icon attribute)": [[32, "viser.Icon.UPLOAD"]], "urgent (viser.icon attribute)": [[32, "viser.Icon.URGENT"]], "usb (viser.icon attribute)": [[32, "viser.Icon.USB"]], "user (viser.icon attribute)": [[32, "viser.Icon.USER"]], "users (viser.icon attribute)": [[32, "viser.Icon.USERS"]], "users_group (viser.icon attribute)": [[32, "viser.Icon.USERS_GROUP"]], "users_minus (viser.icon attribute)": [[32, "viser.Icon.USERS_MINUS"]], "users_plus (viser.icon attribute)": [[32, "viser.Icon.USERS_PLUS"]], "user_bolt (viser.icon attribute)": [[32, "viser.Icon.USER_BOLT"]], "user_cancel (viser.icon attribute)": [[32, "viser.Icon.USER_CANCEL"]], "user_check (viser.icon attribute)": [[32, "viser.Icon.USER_CHECK"]], "user_circle (viser.icon attribute)": [[32, "viser.Icon.USER_CIRCLE"]], "user_code (viser.icon attribute)": [[32, "viser.Icon.USER_CODE"]], "user_cog (viser.icon attribute)": [[32, "viser.Icon.USER_COG"]], "user_dollar (viser.icon attribute)": [[32, "viser.Icon.USER_DOLLAR"]], "user_down (viser.icon attribute)": [[32, "viser.Icon.USER_DOWN"]], "user_edit (viser.icon attribute)": [[32, "viser.Icon.USER_EDIT"]], "user_exclamation (viser.icon attribute)": [[32, "viser.Icon.USER_EXCLAMATION"]], "user_heart (viser.icon attribute)": [[32, "viser.Icon.USER_HEART"]], "user_minus (viser.icon attribute)": [[32, "viser.Icon.USER_MINUS"]], "user_off (viser.icon attribute)": [[32, "viser.Icon.USER_OFF"]], "user_pause (viser.icon attribute)": [[32, "viser.Icon.USER_PAUSE"]], "user_pin (viser.icon attribute)": [[32, "viser.Icon.USER_PIN"]], "user_plus (viser.icon attribute)": [[32, "viser.Icon.USER_PLUS"]], "user_question (viser.icon attribute)": [[32, "viser.Icon.USER_QUESTION"]], "user_search (viser.icon attribute)": [[32, "viser.Icon.USER_SEARCH"]], "user_share (viser.icon attribute)": [[32, "viser.Icon.USER_SHARE"]], "user_shield (viser.icon attribute)": [[32, "viser.Icon.USER_SHIELD"]], "user_star (viser.icon attribute)": [[32, "viser.Icon.USER_STAR"]], "user_up (viser.icon attribute)": [[32, "viser.Icon.USER_UP"]], "user_x (viser.icon attribute)": [[32, "viser.Icon.USER_X"]], "uv_index (viser.icon attribute)": [[32, "viser.Icon.UV_INDEX"]], "ux_circle (viser.icon attribute)": [[32, "viser.Icon.UX_CIRCLE"]], "vaccine (viser.icon attribute)": [[32, "viser.Icon.VACCINE"]], "vaccine_bottle (viser.icon attribute)": [[32, "viser.Icon.VACCINE_BOTTLE"]], "vaccine_bottle_off (viser.icon attribute)": [[32, "viser.Icon.VACCINE_BOTTLE_OFF"]], "vaccine_off (viser.icon attribute)": [[32, "viser.Icon.VACCINE_OFF"]], "vacuum_cleaner (viser.icon attribute)": [[32, "viser.Icon.VACUUM_CLEANER"]], "variable (viser.icon attribute)": [[32, "viser.Icon.VARIABLE"]], "variable_minus (viser.icon attribute)": [[32, "viser.Icon.VARIABLE_MINUS"]], "variable_off (viser.icon attribute)": [[32, "viser.Icon.VARIABLE_OFF"]], "variable_plus (viser.icon attribute)": [[32, "viser.Icon.VARIABLE_PLUS"]], "vector (viser.icon attribute)": [[32, "viser.Icon.VECTOR"]], "vector_bezier (viser.icon attribute)": [[32, "viser.Icon.VECTOR_BEZIER"]], "vector_bezier_2 (viser.icon attribute)": [[32, "viser.Icon.VECTOR_BEZIER_2"]], "vector_bezier_arc (viser.icon attribute)": [[32, "viser.Icon.VECTOR_BEZIER_ARC"]], "vector_bezier_circle (viser.icon attribute)": [[32, "viser.Icon.VECTOR_BEZIER_CIRCLE"]], "vector_off (viser.icon attribute)": [[32, "viser.Icon.VECTOR_OFF"]], "vector_spline (viser.icon attribute)": [[32, "viser.Icon.VECTOR_SPLINE"]], "vector_triangle (viser.icon attribute)": [[32, "viser.Icon.VECTOR_TRIANGLE"]], "vector_triangle_off (viser.icon attribute)": [[32, "viser.Icon.VECTOR_TRIANGLE_OFF"]], "venus (viser.icon attribute)": [[32, "viser.Icon.VENUS"]], "versions (viser.icon attribute)": [[32, "viser.Icon.VERSIONS"]], "versions_filled (viser.icon attribute)": [[32, "viser.Icon.VERSIONS_FILLED"]], "versions_off (viser.icon attribute)": [[32, "viser.Icon.VERSIONS_OFF"]], "video (viser.icon attribute)": [[32, "viser.Icon.VIDEO"]], "video_minus (viser.icon attribute)": [[32, "viser.Icon.VIDEO_MINUS"]], "video_off (viser.icon attribute)": [[32, "viser.Icon.VIDEO_OFF"]], "video_plus (viser.icon attribute)": [[32, "viser.Icon.VIDEO_PLUS"]], "viewfinder (viser.icon attribute)": [[32, "viser.Icon.VIEWFINDER"]], "viewfinder_off (viser.icon attribute)": [[32, "viser.Icon.VIEWFINDER_OFF"]], "viewport_narrow (viser.icon attribute)": [[32, "viser.Icon.VIEWPORT_NARROW"]], "viewport_wide (viser.icon attribute)": [[32, "viser.Icon.VIEWPORT_WIDE"]], "view_360 (viser.icon attribute)": [[32, "viser.Icon.VIEW_360"]], "view_360_off (viser.icon attribute)": [[32, "viser.Icon.VIEW_360_OFF"]], "vinyl (viser.icon attribute)": [[32, "viser.Icon.VINYL"]], "vip (viser.icon attribute)": [[32, "viser.Icon.VIP"]], "vip_off (viser.icon attribute)": [[32, "viser.Icon.VIP_OFF"]], "virus (viser.icon attribute)": [[32, "viser.Icon.VIRUS"]], "virus_off (viser.icon attribute)": [[32, "viser.Icon.VIRUS_OFF"]], "virus_search (viser.icon attribute)": [[32, "viser.Icon.VIRUS_SEARCH"]], "vocabulary (viser.icon attribute)": [[32, "viser.Icon.VOCABULARY"]], "vocabulary_off (viser.icon attribute)": [[32, "viser.Icon.VOCABULARY_OFF"]], "volcano (viser.icon attribute)": [[32, "viser.Icon.VOLCANO"]], "volume (viser.icon attribute)": [[32, "viser.Icon.VOLUME"]], "volume_2 (viser.icon attribute)": [[32, "viser.Icon.VOLUME_2"]], "volume_3 (viser.icon attribute)": [[32, "viser.Icon.VOLUME_3"]], "volume_off (viser.icon attribute)": [[32, "viser.Icon.VOLUME_OFF"]], "walk (viser.icon attribute)": [[32, "viser.Icon.WALK"]], "wall (viser.icon attribute)": [[32, "viser.Icon.WALL"]], "wallet (viser.icon attribute)": [[32, "viser.Icon.WALLET"]], "wallet_off (viser.icon attribute)": [[32, "viser.Icon.WALLET_OFF"]], "wallpaper (viser.icon attribute)": [[32, "viser.Icon.WALLPAPER"]], "wallpaper_off (viser.icon attribute)": [[32, "viser.Icon.WALLPAPER_OFF"]], "wall_off (viser.icon attribute)": [[32, "viser.Icon.WALL_OFF"]], "wand (viser.icon attribute)": [[32, "viser.Icon.WAND"]], "wand_off (viser.icon attribute)": [[32, "viser.Icon.WAND_OFF"]], "wash (viser.icon attribute)": [[32, "viser.Icon.WASH"]], "wash_dry (viser.icon attribute)": [[32, "viser.Icon.WASH_DRY"]], "wash_dryclean (viser.icon attribute)": [[32, "viser.Icon.WASH_DRYCLEAN"]], "wash_dryclean_off (viser.icon attribute)": [[32, "viser.Icon.WASH_DRYCLEAN_OFF"]], "wash_dry_1 (viser.icon attribute)": [[32, "viser.Icon.WASH_DRY_1"]], "wash_dry_2 (viser.icon attribute)": [[32, "viser.Icon.WASH_DRY_2"]], "wash_dry_3 (viser.icon attribute)": [[32, "viser.Icon.WASH_DRY_3"]], "wash_dry_a (viser.icon attribute)": [[32, "viser.Icon.WASH_DRY_A"]], "wash_dry_dip (viser.icon attribute)": [[32, "viser.Icon.WASH_DRY_DIP"]], "wash_dry_f (viser.icon attribute)": [[32, "viser.Icon.WASH_DRY_F"]], "wash_dry_flat (viser.icon attribute)": [[32, "viser.Icon.WASH_DRY_FLAT"]], "wash_dry_hang (viser.icon attribute)": [[32, "viser.Icon.WASH_DRY_HANG"]], "wash_dry_off (viser.icon attribute)": [[32, "viser.Icon.WASH_DRY_OFF"]], "wash_dry_p (viser.icon attribute)": [[32, "viser.Icon.WASH_DRY_P"]], "wash_dry_shade (viser.icon attribute)": [[32, "viser.Icon.WASH_DRY_SHADE"]], "wash_dry_w (viser.icon attribute)": [[32, "viser.Icon.WASH_DRY_W"]], "wash_eco (viser.icon attribute)": [[32, "viser.Icon.WASH_ECO"]], "wash_gentle (viser.icon attribute)": [[32, "viser.Icon.WASH_GENTLE"]], "wash_hand (viser.icon attribute)": [[32, "viser.Icon.WASH_HAND"]], "wash_machine (viser.icon attribute)": [[32, "viser.Icon.WASH_MACHINE"]], "wash_off (viser.icon attribute)": [[32, "viser.Icon.WASH_OFF"]], "wash_press (viser.icon attribute)": [[32, "viser.Icon.WASH_PRESS"]], "wash_temperature_1 (viser.icon attribute)": [[32, "viser.Icon.WASH_TEMPERATURE_1"]], "wash_temperature_2 (viser.icon attribute)": [[32, "viser.Icon.WASH_TEMPERATURE_2"]], "wash_temperature_3 (viser.icon attribute)": [[32, "viser.Icon.WASH_TEMPERATURE_3"]], "wash_temperature_4 (viser.icon attribute)": [[32, "viser.Icon.WASH_TEMPERATURE_4"]], "wash_temperature_5 (viser.icon attribute)": [[32, "viser.Icon.WASH_TEMPERATURE_5"]], "wash_temperature_6 (viser.icon attribute)": [[32, "viser.Icon.WASH_TEMPERATURE_6"]], "wash_tumble_dry (viser.icon attribute)": [[32, "viser.Icon.WASH_TUMBLE_DRY"]], "wash_tumble_off (viser.icon attribute)": [[32, "viser.Icon.WASH_TUMBLE_OFF"]], "waterpolo (viser.icon attribute)": [[32, "viser.Icon.WATERPOLO"]], "wave_saw_tool (viser.icon attribute)": [[32, "viser.Icon.WAVE_SAW_TOOL"]], "wave_sine (viser.icon attribute)": [[32, "viser.Icon.WAVE_SINE"]], "wave_square (viser.icon attribute)": [[32, "viser.Icon.WAVE_SQUARE"]], "webhook (viser.icon attribute)": [[32, "viser.Icon.WEBHOOK"]], "webhook_off (viser.icon attribute)": [[32, "viser.Icon.WEBHOOK_OFF"]], "weight (viser.icon attribute)": [[32, "viser.Icon.WEIGHT"]], "wheelchair (viser.icon attribute)": [[32, "viser.Icon.WHEELCHAIR"]], "wheelchair_off (viser.icon attribute)": [[32, "viser.Icon.WHEELCHAIR_OFF"]], "whirl (viser.icon attribute)": [[32, "viser.Icon.WHIRL"]], "wifi (viser.icon attribute)": [[32, "viser.Icon.WIFI"]], "wifi_0 (viser.icon attribute)": [[32, "viser.Icon.WIFI_0"]], "wifi_1 (viser.icon attribute)": [[32, "viser.Icon.WIFI_1"]], "wifi_2 (viser.icon attribute)": [[32, "viser.Icon.WIFI_2"]], "wifi_off (viser.icon attribute)": [[32, "viser.Icon.WIFI_OFF"]], "wind (viser.icon attribute)": [[32, "viser.Icon.WIND"]], "windmill (viser.icon attribute)": [[32, "viser.Icon.WINDMILL"]], "windmill_filled (viser.icon attribute)": [[32, "viser.Icon.WINDMILL_FILLED"]], "windmill_off (viser.icon attribute)": [[32, "viser.Icon.WINDMILL_OFF"]], "window (viser.icon attribute)": [[32, "viser.Icon.WINDOW"]], "window_maximize (viser.icon attribute)": [[32, "viser.Icon.WINDOW_MAXIMIZE"]], "window_minimize (viser.icon attribute)": [[32, "viser.Icon.WINDOW_MINIMIZE"]], "window_off (viser.icon attribute)": [[32, "viser.Icon.WINDOW_OFF"]], "windsock (viser.icon attribute)": [[32, "viser.Icon.WINDSOCK"]], "wind_off (viser.icon attribute)": [[32, "viser.Icon.WIND_OFF"]], "wiper (viser.icon attribute)": [[32, "viser.Icon.WIPER"]], "wiper_wash (viser.icon attribute)": [[32, "viser.Icon.WIPER_WASH"]], "woman (viser.icon attribute)": [[32, "viser.Icon.WOMAN"]], "wood (viser.icon attribute)": [[32, "viser.Icon.WOOD"]], "world (viser.icon attribute)": [[32, "viser.Icon.WORLD"]], "world_bolt (viser.icon attribute)": [[32, "viser.Icon.WORLD_BOLT"]], "world_cancel (viser.icon attribute)": [[32, "viser.Icon.WORLD_CANCEL"]], "world_check (viser.icon attribute)": [[32, "viser.Icon.WORLD_CHECK"]], "world_code (viser.icon attribute)": [[32, "viser.Icon.WORLD_CODE"]], "world_cog (viser.icon attribute)": [[32, "viser.Icon.WORLD_COG"]], "world_dollar (viser.icon attribute)": [[32, "viser.Icon.WORLD_DOLLAR"]], "world_down (viser.icon attribute)": [[32, "viser.Icon.WORLD_DOWN"]], "world_download (viser.icon attribute)": [[32, "viser.Icon.WORLD_DOWNLOAD"]], "world_exclamation (viser.icon attribute)": [[32, "viser.Icon.WORLD_EXCLAMATION"]], "world_heart (viser.icon attribute)": [[32, "viser.Icon.WORLD_HEART"]], "world_latitude (viser.icon attribute)": [[32, "viser.Icon.WORLD_LATITUDE"]], "world_longitude (viser.icon attribute)": [[32, "viser.Icon.WORLD_LONGITUDE"]], "world_minus (viser.icon attribute)": [[32, "viser.Icon.WORLD_MINUS"]], "world_off (viser.icon attribute)": [[32, "viser.Icon.WORLD_OFF"]], "world_pause (viser.icon attribute)": [[32, "viser.Icon.WORLD_PAUSE"]], "world_pin (viser.icon attribute)": [[32, "viser.Icon.WORLD_PIN"]], "world_plus (viser.icon attribute)": [[32, "viser.Icon.WORLD_PLUS"]], "world_question (viser.icon attribute)": [[32, "viser.Icon.WORLD_QUESTION"]], "world_search (viser.icon attribute)": [[32, "viser.Icon.WORLD_SEARCH"]], "world_share (viser.icon attribute)": [[32, "viser.Icon.WORLD_SHARE"]], "world_star (viser.icon attribute)": [[32, "viser.Icon.WORLD_STAR"]], "world_up (viser.icon attribute)": [[32, "viser.Icon.WORLD_UP"]], "world_upload (viser.icon attribute)": [[32, "viser.Icon.WORLD_UPLOAD"]], "world_www (viser.icon attribute)": [[32, "viser.Icon.WORLD_WWW"]], "world_x (viser.icon attribute)": [[32, "viser.Icon.WORLD_X"]], "wrecking_ball (viser.icon attribute)": [[32, "viser.Icon.WRECKING_BALL"]], "writing (viser.icon attribute)": [[32, "viser.Icon.WRITING"]], "writing_off (viser.icon attribute)": [[32, "viser.Icon.WRITING_OFF"]], "writing_sign (viser.icon attribute)": [[32, "viser.Icon.WRITING_SIGN"]], "writing_sign_off (viser.icon attribute)": [[32, "viser.Icon.WRITING_SIGN_OFF"]], "x (viser.icon attribute)": [[32, "viser.Icon.X"]], "xbox_a (viser.icon attribute)": [[32, "viser.Icon.XBOX_A"]], "xbox_b (viser.icon attribute)": [[32, "viser.Icon.XBOX_B"]], "xbox_x (viser.icon attribute)": [[32, "viser.Icon.XBOX_X"]], "xbox_y (viser.icon attribute)": [[32, "viser.Icon.XBOX_Y"]], "xd (viser.icon attribute)": [[32, "viser.Icon.XD"]], "yin_yang (viser.icon attribute)": [[32, "viser.Icon.YIN_YANG"]], "yin_yang_filled (viser.icon attribute)": [[32, "viser.Icon.YIN_YANG_FILLED"]], "yoga (viser.icon attribute)": [[32, "viser.Icon.YOGA"]], "zeppelin (viser.icon attribute)": [[32, "viser.Icon.ZEPPELIN"]], "zeppelin_off (viser.icon attribute)": [[32, "viser.Icon.ZEPPELIN_OFF"]], "zip (viser.icon attribute)": [[32, "viser.Icon.ZIP"]], "zodiac_aquarius (viser.icon attribute)": [[32, "viser.Icon.ZODIAC_AQUARIUS"]], "zodiac_aries (viser.icon attribute)": [[32, "viser.Icon.ZODIAC_ARIES"]], "zodiac_cancer (viser.icon attribute)": [[32, "viser.Icon.ZODIAC_CANCER"]], "zodiac_capricorn (viser.icon attribute)": [[32, "viser.Icon.ZODIAC_CAPRICORN"]], "zodiac_gemini (viser.icon attribute)": [[32, "viser.Icon.ZODIAC_GEMINI"]], "zodiac_leo (viser.icon attribute)": [[32, "viser.Icon.ZODIAC_LEO"]], "zodiac_libra (viser.icon attribute)": [[32, "viser.Icon.ZODIAC_LIBRA"]], "zodiac_pisces (viser.icon attribute)": [[32, "viser.Icon.ZODIAC_PISCES"]], "zodiac_sagittarius (viser.icon attribute)": [[32, "viser.Icon.ZODIAC_SAGITTARIUS"]], "zodiac_scorpio (viser.icon attribute)": [[32, "viser.Icon.ZODIAC_SCORPIO"]], "zodiac_taurus (viser.icon attribute)": [[32, "viser.Icon.ZODIAC_TAURUS"]], "zodiac_virgo (viser.icon attribute)": [[32, "viser.Icon.ZODIAC_VIRGO"]], "zoom_cancel (viser.icon attribute)": [[32, "viser.Icon.ZOOM_CANCEL"]], "zoom_check (viser.icon attribute)": [[32, "viser.Icon.ZOOM_CHECK"]], "zoom_check_filled (viser.icon attribute)": [[32, "viser.Icon.ZOOM_CHECK_FILLED"]], "zoom_code (viser.icon attribute)": [[32, "viser.Icon.ZOOM_CODE"]], "zoom_exclamation (viser.icon attribute)": [[32, "viser.Icon.ZOOM_EXCLAMATION"]], "zoom_filled (viser.icon attribute)": [[32, "viser.Icon.ZOOM_FILLED"]], "zoom_in (viser.icon attribute)": [[32, "viser.Icon.ZOOM_IN"]], "zoom_in_area (viser.icon attribute)": [[32, "viser.Icon.ZOOM_IN_AREA"]], "zoom_in_area_filled (viser.icon attribute)": [[32, "viser.Icon.ZOOM_IN_AREA_FILLED"]], "zoom_in_filled (viser.icon attribute)": [[32, "viser.Icon.ZOOM_IN_FILLED"]], "zoom_money (viser.icon attribute)": [[32, "viser.Icon.ZOOM_MONEY"]], "zoom_out (viser.icon attribute)": [[32, "viser.Icon.ZOOM_OUT"]], "zoom_out_area (viser.icon attribute)": [[32, "viser.Icon.ZOOM_OUT_AREA"]], "zoom_out_filled (viser.icon attribute)": [[32, "viser.Icon.ZOOM_OUT_FILLED"]], "zoom_pan (viser.icon attribute)": [[32, "viser.Icon.ZOOM_PAN"]], "zoom_question (viser.icon attribute)": [[32, "viser.Icon.ZOOM_QUESTION"]], "zoom_replace (viser.icon attribute)": [[32, "viser.Icon.ZOOM_REPLACE"]], "zoom_reset (viser.icon attribute)": [[32, "viser.Icon.ZOOM_RESET"]], "zzz (viser.icon attribute)": [[32, "viser.Icon.ZZZ"]], "zzz_off (viser.icon attribute)": [[32, "viser.Icon.ZZZ_OFF"]], "__new__() (viser.iconname method)": [[32, "viser.IconName.__new__"]], "message (class in viser.infra)": [[34, "viser.infra.Message"]], "typescriptannotationoverride (class in viser.infra)": [[34, "viser.infra.TypeScriptAnnotationOverride"]], "websockclientconnection (class in viser.infra)": [[34, "viser.infra.WebsockClientConnection"]], "websockmessagehandler (class in viser.infra)": [[34, "viser.infra.WebsockMessageHandler"]], "websockserver (class in viser.infra)": [[34, "viser.infra.WebsockServer"]], "annotation (viser.infra.typescriptannotationoverride attribute)": [[34, "viser.infra.TypeScriptAnnotationOverride.annotation"]], "as_serializable_dict() (viser.infra.message method)": [[34, "viser.infra.Message.as_serializable_dict"]], "atomic() (viser.infra.websockclientconnection method)": [[34, "viser.infra.WebsockClientConnection.atomic"]], "atomic() (viser.infra.websockmessagehandler method)": [[34, "viser.infra.WebsockMessageHandler.atomic"]], "atomic() (viser.infra.websockserver method)": [[34, "viser.infra.WebsockServer.atomic"]], "deserialize() (viser.infra.message class method)": [[34, "viser.infra.Message.deserialize"]], "excluded_self_client (viser.infra.message attribute)": [[34, "viser.infra.Message.excluded_self_client"]], "flush() (viser.infra.websockserver method)": [[34, "viser.infra.WebsockServer.flush"]], "flush_client() (viser.infra.websockserver method)": [[34, "viser.infra.WebsockServer.flush_client"]], "generate_typescript_interfaces() (in module viser.infra)": [[34, "viser.infra.generate_typescript_interfaces"]], "get_subclasses() (viser.infra.message class method)": [[34, "viser.infra.Message.get_subclasses"]], "on_client_connect() (viser.infra.websockserver method)": [[34, "viser.infra.WebsockServer.on_client_connect"]], "on_client_disconnect() (viser.infra.websockserver method)": [[34, "viser.infra.WebsockServer.on_client_disconnect"]], "queue_message() (viser.infra.websockclientconnection method)": [[34, "viser.infra.WebsockClientConnection.queue_message"]], "queue_message() (viser.infra.websockmessagehandler method)": [[34, "viser.infra.WebsockMessageHandler.queue_message"]], "queue_message() (viser.infra.websockserver method)": [[34, "viser.infra.WebsockServer.queue_message"]], "redundancy_key() (viser.infra.message method)": [[34, "viser.infra.Message.redundancy_key"]], "register_handler() (viser.infra.websockclientconnection method)": [[34, "viser.infra.WebsockClientConnection.register_handler"]], "register_handler() (viser.infra.websockmessagehandler method)": [[34, "viser.infra.WebsockMessageHandler.register_handler"]], "register_handler() (viser.infra.websockserver method)": [[34, "viser.infra.WebsockServer.register_handler"]], "start() (viser.infra.websockserver method)": [[34, "viser.infra.WebsockServer.start"]], "stop() (viser.infra.websockserver method)": [[34, "viser.infra.WebsockServer.stop"]], "unregister_handler() (viser.infra.websockclientconnection method)": [[34, "viser.infra.WebsockClientConnection.unregister_handler"]], "unregister_handler() (viser.infra.websockmessagehandler method)": [[34, "viser.infra.WebsockMessageHandler.unregister_handler"]], "unregister_handler() (viser.infra.websockserver method)": [[34, "viser.infra.WebsockServer.unregister_handler"]], "unsafe_send_message() (viser.infra.websockclientconnection method)": [[34, "viser.infra.WebsockClientConnection.unsafe_send_message"]], "unsafe_send_message() (viser.infra.websockmessagehandler method)": [[34, "viser.infra.WebsockMessageHandler.unsafe_send_message"]], "unsafe_send_message() (viser.infra.websockserver method)": [[34, "viser.infra.WebsockServer.unsafe_send_message"]], "viser.infra": [[34, "module-viser.infra"]], "sceneapi (class in viser)": [[35, "viser.SceneApi"]], "add_3d_gui_container() (viser.sceneapi method)": [[35, "viser.SceneApi.add_3d_gui_container"]], "add_batched_axes() (viser.sceneapi method)": [[35, "viser.SceneApi.add_batched_axes"]], "add_box() (viser.sceneapi method)": [[35, "viser.SceneApi.add_box"]], "add_camera_frustum() (viser.sceneapi method)": [[35, "viser.SceneApi.add_camera_frustum"]], "add_frame() (viser.sceneapi method)": [[35, "viser.SceneApi.add_frame"]], "add_glb() (viser.sceneapi method)": [[35, "viser.SceneApi.add_glb"]], "add_grid() (viser.sceneapi method)": [[35, "viser.SceneApi.add_grid"]], "add_icosphere() (viser.sceneapi method)": [[35, "viser.SceneApi.add_icosphere"]], "add_image() (viser.sceneapi method)": [[35, "viser.SceneApi.add_image"]], "add_label() (viser.sceneapi method)": [[35, "viser.SceneApi.add_label"]], "add_mesh_simple() (viser.sceneapi method)": [[35, "viser.SceneApi.add_mesh_simple"]], "add_mesh_trimesh() (viser.sceneapi method)": [[35, "viser.SceneApi.add_mesh_trimesh"]], "add_point_cloud() (viser.sceneapi method)": [[35, "viser.SceneApi.add_point_cloud"]], "add_spline_catmull_rom() (viser.sceneapi method)": [[35, "viser.SceneApi.add_spline_catmull_rom"]], "add_spline_cubic_bezier() (viser.sceneapi method)": [[35, "viser.SceneApi.add_spline_cubic_bezier"]], "add_transform_controls() (viser.sceneapi method)": [[35, "viser.SceneApi.add_transform_controls"]], "on_pointer_callback_removed() (viser.sceneapi method)": [[35, "viser.SceneApi.on_pointer_callback_removed"]], "on_pointer_event() (viser.sceneapi method)": [[35, "viser.SceneApi.on_pointer_event"]], "remove_pointer_callback() (viser.sceneapi method)": [[35, "viser.SceneApi.remove_pointer_callback"]], "reset() (viser.sceneapi method)": [[35, "viser.SceneApi.reset"]], "set_background_image() (viser.sceneapi method)": [[35, "viser.SceneApi.set_background_image"]], "set_global_visibility() (viser.sceneapi method)": [[35, "viser.SceneApi.set_global_visibility"]], "set_up_direction() (viser.sceneapi method)": [[35, "viser.SceneApi.set_up_direction"]], "world_axes (viser.sceneapi attribute)": [[35, "viser.SceneApi.world_axes"]], "batchedaxeshandle (class in viser)": [[36, "viser.BatchedAxesHandle"]], "camerafrustumhandle (class in viser)": [[36, "viser.CameraFrustumHandle"]], "framehandle (class in viser)": [[36, "viser.FrameHandle"]], "glbhandle (class in viser)": [[36, "viser.GlbHandle"]], "gui3dcontainerhandle (class in viser)": [[36, "viser.Gui3dContainerHandle"]], "imagehandle (class in viser)": [[36, "viser.ImageHandle"]], "labelhandle (class in viser)": [[36, "viser.LabelHandle"]], "meshhandle (class in viser)": [[36, "viser.MeshHandle"]], "pointcloudhandle (class in viser)": [[36, "viser.PointCloudHandle"]], "scenenodehandle (class in viser)": [[36, "viser.SceneNodeHandle"]], "transformcontrolshandle (class in viser)": [[36, "viser.TransformControlsHandle"]], "on_click() (viser.batchedaxeshandle method)": [[36, "viser.BatchedAxesHandle.on_click"]], "on_click() (viser.camerafrustumhandle method)": [[36, "viser.CameraFrustumHandle.on_click"]], "on_click() (viser.framehandle method)": [[36, "viser.FrameHandle.on_click"]], "on_click() (viser.glbhandle method)": [[36, "viser.GlbHandle.on_click"]], "on_click() (viser.imagehandle method)": [[36, "viser.ImageHandle.on_click"]], "on_click() (viser.meshhandle method)": [[36, "viser.MeshHandle.on_click"]], "on_click() (viser.transformcontrolshandle method)": [[36, "viser.TransformControlsHandle.on_click"]], "on_update() (viser.transformcontrolshandle method)": [[36, "viser.TransformControlsHandle.on_update"]], "position (viser.batchedaxeshandle property)": [[36, "viser.BatchedAxesHandle.position"]], "position (viser.camerafrustumhandle property)": [[36, "viser.CameraFrustumHandle.position"]], "position (viser.framehandle property)": [[36, "viser.FrameHandle.position"]], "position (viser.glbhandle property)": [[36, "viser.GlbHandle.position"]], "position (viser.gui3dcontainerhandle property)": [[36, "viser.Gui3dContainerHandle.position"]], "position (viser.imagehandle property)": [[36, "viser.ImageHandle.position"]], "position (viser.labelhandle property)": [[36, "viser.LabelHandle.position"]], "position (viser.meshhandle property)": [[36, "viser.MeshHandle.position"]], "position (viser.pointcloudhandle property)": [[36, "viser.PointCloudHandle.position"]], "position (viser.scenenodehandle property)": [[36, "viser.SceneNodeHandle.position"]], "position (viser.transformcontrolshandle property)": [[36, "viser.TransformControlsHandle.position"]], "remove() (viser.batchedaxeshandle method)": [[36, "viser.BatchedAxesHandle.remove"]], "remove() (viser.camerafrustumhandle method)": [[36, "viser.CameraFrustumHandle.remove"]], "remove() (viser.framehandle method)": [[36, "viser.FrameHandle.remove"]], "remove() (viser.glbhandle method)": [[36, "viser.GlbHandle.remove"]], "remove() (viser.gui3dcontainerhandle method)": [[36, "viser.Gui3dContainerHandle.remove"]], "remove() (viser.imagehandle method)": [[36, "viser.ImageHandle.remove"]], "remove() (viser.labelhandle method)": [[36, "viser.LabelHandle.remove"]], "remove() (viser.meshhandle method)": [[36, "viser.MeshHandle.remove"]], "remove() (viser.pointcloudhandle method)": [[36, "viser.PointCloudHandle.remove"]], "remove() (viser.scenenodehandle method)": [[36, "viser.SceneNodeHandle.remove"]], "remove() (viser.transformcontrolshandle method)": [[36, "viser.TransformControlsHandle.remove"]], "update_timestamp (viser.transformcontrolshandle property)": [[36, "viser.TransformControlsHandle.update_timestamp"]], "visible (viser.batchedaxeshandle property)": [[36, "viser.BatchedAxesHandle.visible"]], "visible (viser.camerafrustumhandle property)": [[36, "viser.CameraFrustumHandle.visible"]], "visible (viser.framehandle property)": [[36, "viser.FrameHandle.visible"]], "visible (viser.glbhandle property)": [[36, "viser.GlbHandle.visible"]], "visible (viser.gui3dcontainerhandle property)": [[36, "viser.Gui3dContainerHandle.visible"]], "visible (viser.imagehandle property)": [[36, "viser.ImageHandle.visible"]], "visible (viser.labelhandle property)": [[36, "viser.LabelHandle.visible"]], "visible (viser.meshhandle property)": [[36, "viser.MeshHandle.visible"]], "visible (viser.pointcloudhandle property)": [[36, "viser.PointCloudHandle.visible"]], "visible (viser.scenenodehandle property)": [[36, "viser.SceneNodeHandle.visible"]], "visible (viser.transformcontrolshandle property)": [[36, "viser.TransformControlsHandle.visible"]], "wxyz (viser.batchedaxeshandle property)": [[36, "viser.BatchedAxesHandle.wxyz"]], "wxyz (viser.camerafrustumhandle property)": [[36, "viser.CameraFrustumHandle.wxyz"]], "wxyz (viser.framehandle property)": [[36, "viser.FrameHandle.wxyz"]], "wxyz (viser.glbhandle property)": [[36, "viser.GlbHandle.wxyz"]], "wxyz (viser.gui3dcontainerhandle property)": [[36, "viser.Gui3dContainerHandle.wxyz"]], "wxyz (viser.imagehandle property)": [[36, "viser.ImageHandle.wxyz"]], "wxyz (viser.labelhandle property)": [[36, "viser.LabelHandle.wxyz"]], "wxyz (viser.meshhandle property)": [[36, "viser.MeshHandle.wxyz"]], "wxyz (viser.pointcloudhandle property)": [[36, "viser.PointCloudHandle.wxyz"]], "wxyz (viser.scenenodehandle property)": [[36, "viser.SceneNodeHandle.wxyz"]], "wxyz (viser.transformcontrolshandle property)": [[36, "viser.TransformControlsHandle.wxyz"]], "viserserver (class in viser)": [[37, "viser.ViserServer"]], "atomic() (viser.viserserver method)": [[37, "viser.ViserServer.atomic"]], "disconnect_share_url() (viser.viserserver method)": [[37, "viser.ViserServer.disconnect_share_url"]], "flush() (viser.viserserver method)": [[37, "viser.ViserServer.flush"]], "get_clients() (viser.viserserver method)": [[37, "viser.ViserServer.get_clients"]], "get_host() (viser.viserserver method)": [[37, "viser.ViserServer.get_host"]], "get_port() (viser.viserserver method)": [[37, "viser.ViserServer.get_port"]], "gui (viser.viserserver attribute)": [[37, "viser.ViserServer.gui"]], "on_client_connect() (viser.viserserver method)": [[37, "viser.ViserServer.on_client_connect"]], "on_client_disconnect() (viser.viserserver method)": [[37, "viser.ViserServer.on_client_disconnect"]], "request_share_url() (viser.viserserver method)": [[37, "viser.ViserServer.request_share_url"]], "scene (viser.viserserver attribute)": [[37, "viser.ViserServer.scene"]], "send_file_download() (viser.viserserver method)": [[37, "viser.ViserServer.send_file_download"]], "stop() (viser.viserserver method)": [[37, "viser.ViserServer.stop"]], "matrixliegroup (class in viser.transforms)": [[38, "viser.transforms.MatrixLieGroup"]], "se2 (class in viser.transforms)": [[38, "viser.transforms.SE2"]], "se3 (class in viser.transforms)": [[38, "viser.transforms.SE3"]], "sebase (class in viser.transforms)": [[38, "viser.transforms.SEBase"]], "so2 (class in viser.transforms)": [[38, "viser.transforms.SO2"]], "so3 (class in viser.transforms)": [[38, "viser.transforms.SO3"]], "sobase (class in viser.transforms)": [[38, "viser.transforms.SOBase"]], "__matmul__() (viser.transforms.matrixliegroup method)": [[38, "viser.transforms.MatrixLieGroup.__matmul__"]], "__matmul__() (viser.transforms.se2 method)": [[38, "viser.transforms.SE2.__matmul__"]], "__matmul__() (viser.transforms.se3 method)": [[38, "viser.transforms.SE3.__matmul__"]], "__matmul__() (viser.transforms.sebase method)": [[38, "viser.transforms.SEBase.__matmul__"]], "__matmul__() (viser.transforms.so2 method)": [[38, "viser.transforms.SO2.__matmul__"]], "__matmul__() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.__matmul__"]], "__matmul__() (viser.transforms.sobase method)": [[38, "viser.transforms.SOBase.__matmul__"]], "adjoint() (viser.transforms.matrixliegroup method)": [[38, "viser.transforms.MatrixLieGroup.adjoint"]], "adjoint() (viser.transforms.se2 method)": [[38, "viser.transforms.SE2.adjoint"]], "adjoint() (viser.transforms.se3 method)": [[38, "viser.transforms.SE3.adjoint"]], "adjoint() (viser.transforms.sebase method)": [[38, "viser.transforms.SEBase.adjoint"]], "adjoint() (viser.transforms.so2 method)": [[38, "viser.transforms.SO2.adjoint"]], "adjoint() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.adjoint"]], "adjoint() (viser.transforms.sobase method)": [[38, "viser.transforms.SOBase.adjoint"]], "apply() (viser.transforms.matrixliegroup method)": [[38, "viser.transforms.MatrixLieGroup.apply"]], "apply() (viser.transforms.se2 method)": [[38, "viser.transforms.SE2.apply"]], "apply() (viser.transforms.se3 method)": [[38, "viser.transforms.SE3.apply"]], "apply() (viser.transforms.sebase method)": [[38, "viser.transforms.SEBase.apply"]], "apply() (viser.transforms.so2 method)": [[38, "viser.transforms.SO2.apply"]], "apply() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.apply"]], "apply() (viser.transforms.sobase method)": [[38, "viser.transforms.SOBase.apply"]], "as_matrix() (viser.transforms.matrixliegroup method)": [[38, "viser.transforms.MatrixLieGroup.as_matrix"]], "as_matrix() (viser.transforms.se2 method)": [[38, "viser.transforms.SE2.as_matrix"]], "as_matrix() (viser.transforms.se3 method)": [[38, "viser.transforms.SE3.as_matrix"]], "as_matrix() (viser.transforms.sebase method)": [[38, "viser.transforms.SEBase.as_matrix"]], "as_matrix() (viser.transforms.so2 method)": [[38, "viser.transforms.SO2.as_matrix"]], "as_matrix() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.as_matrix"]], "as_matrix() (viser.transforms.sobase method)": [[38, "viser.transforms.SOBase.as_matrix"]], "as_quaternion_xyzw() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.as_quaternion_xyzw"]], "as_radians() (viser.transforms.so2 method)": [[38, "viser.transforms.SO2.as_radians"]], "as_rpy_radians() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.as_rpy_radians"]], "compute_pitch_radians() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.compute_pitch_radians"]], "compute_roll_radians() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.compute_roll_radians"]], "compute_yaw_radians() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.compute_yaw_radians"]], "exp() (viser.transforms.matrixliegroup class method)": [[38, "viser.transforms.MatrixLieGroup.exp"]], "exp() (viser.transforms.se2 class method)": [[38, "viser.transforms.SE2.exp"]], "exp() (viser.transforms.se3 class method)": [[38, "viser.transforms.SE3.exp"]], "exp() (viser.transforms.sebase class method)": [[38, "viser.transforms.SEBase.exp"]], "exp() (viser.transforms.so2 class method)": [[38, "viser.transforms.SO2.exp"]], "exp() (viser.transforms.so3 class method)": [[38, "viser.transforms.SO3.exp"]], "exp() (viser.transforms.sobase class method)": [[38, "viser.transforms.SOBase.exp"]], "from_matrix() (viser.transforms.matrixliegroup class method)": [[38, "viser.transforms.MatrixLieGroup.from_matrix"]], "from_matrix() (viser.transforms.se2 class method)": [[38, "viser.transforms.SE2.from_matrix"]], "from_matrix() (viser.transforms.se3 class method)": [[38, "viser.transforms.SE3.from_matrix"]], "from_matrix() (viser.transforms.sebase class method)": [[38, "viser.transforms.SEBase.from_matrix"]], "from_matrix() (viser.transforms.so2 class method)": [[38, "viser.transforms.SO2.from_matrix"]], "from_matrix() (viser.transforms.so3 class method)": [[38, "viser.transforms.SO3.from_matrix"]], "from_matrix() (viser.transforms.sobase class method)": [[38, "viser.transforms.SOBase.from_matrix"]], "from_quaternion_xyzw() (viser.transforms.so3 static method)": [[38, "viser.transforms.SO3.from_quaternion_xyzw"]], "from_radians() (viser.transforms.so2 static method)": [[38, "viser.transforms.SO2.from_radians"]], "from_rotation() (viser.transforms.se2 class method)": [[38, "viser.transforms.SE2.from_rotation"]], "from_rotation() (viser.transforms.se3 class method)": [[38, "viser.transforms.SE3.from_rotation"]], "from_rotation() (viser.transforms.sebase class method)": [[38, "viser.transforms.SEBase.from_rotation"]], "from_rotation_and_translation() (viser.transforms.se2 class method)": [[38, "viser.transforms.SE2.from_rotation_and_translation"]], "from_rotation_and_translation() (viser.transforms.se3 class method)": [[38, "viser.transforms.SE3.from_rotation_and_translation"]], "from_rotation_and_translation() (viser.transforms.sebase class method)": [[38, "viser.transforms.SEBase.from_rotation_and_translation"]], "from_rpy_radians() (viser.transforms.so3 static method)": [[38, "viser.transforms.SO3.from_rpy_radians"]], "from_translation() (viser.transforms.se2 class method)": [[38, "viser.transforms.SE2.from_translation"]], "from_translation() (viser.transforms.se3 class method)": [[38, "viser.transforms.SE3.from_translation"]], "from_translation() (viser.transforms.sebase class method)": [[38, "viser.transforms.SEBase.from_translation"]], "from_x_radians() (viser.transforms.so3 static method)": [[38, "viser.transforms.SO3.from_x_radians"]], "from_xy_theta() (viser.transforms.se2 static method)": [[38, "viser.transforms.SE2.from_xy_theta"]], "from_y_radians() (viser.transforms.so3 static method)": [[38, "viser.transforms.SO3.from_y_radians"]], "from_z_radians() (viser.transforms.so3 static method)": [[38, "viser.transforms.SO3.from_z_radians"]], "get_batch_axes() (viser.transforms.matrixliegroup method)": [[38, "viser.transforms.MatrixLieGroup.get_batch_axes"]], "get_batch_axes() (viser.transforms.se2 method)": [[38, "viser.transforms.SE2.get_batch_axes"]], "get_batch_axes() (viser.transforms.se3 method)": [[38, "viser.transforms.SE3.get_batch_axes"]], "get_batch_axes() (viser.transforms.sebase method)": [[38, "viser.transforms.SEBase.get_batch_axes"]], "get_batch_axes() (viser.transforms.so2 method)": [[38, "viser.transforms.SO2.get_batch_axes"]], "get_batch_axes() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.get_batch_axes"]], "get_batch_axes() (viser.transforms.sobase method)": [[38, "viser.transforms.SOBase.get_batch_axes"]], "identity() (viser.transforms.matrixliegroup class method)": [[38, "viser.transforms.MatrixLieGroup.identity"]], "identity() (viser.transforms.se2 class method)": [[38, "viser.transforms.SE2.identity"]], "identity() (viser.transforms.se3 class method)": [[38, "viser.transforms.SE3.identity"]], "identity() (viser.transforms.sebase class method)": [[38, "viser.transforms.SEBase.identity"]], "identity() (viser.transforms.so2 class method)": [[38, "viser.transforms.SO2.identity"]], "identity() (viser.transforms.so3 class method)": [[38, "viser.transforms.SO3.identity"]], "identity() (viser.transforms.sobase class method)": [[38, "viser.transforms.SOBase.identity"]], "inverse() (viser.transforms.matrixliegroup method)": [[38, "viser.transforms.MatrixLieGroup.inverse"]], "inverse() (viser.transforms.se2 method)": [[38, "viser.transforms.SE2.inverse"]], "inverse() (viser.transforms.se3 method)": [[38, "viser.transforms.SE3.inverse"]], "inverse() (viser.transforms.sebase method)": [[38, "viser.transforms.SEBase.inverse"]], "inverse() (viser.transforms.so2 method)": [[38, "viser.transforms.SO2.inverse"]], "inverse() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.inverse"]], "inverse() (viser.transforms.sobase method)": [[38, "viser.transforms.SOBase.inverse"]], "log() (viser.transforms.matrixliegroup method)": [[38, "viser.transforms.MatrixLieGroup.log"]], "log() (viser.transforms.se2 method)": [[38, "viser.transforms.SE2.log"]], "log() (viser.transforms.se3 method)": [[38, "viser.transforms.SE3.log"]], "log() (viser.transforms.sebase method)": [[38, "viser.transforms.SEBase.log"]], "log() (viser.transforms.so2 method)": [[38, "viser.transforms.SO2.log"]], "log() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.log"]], "log() (viser.transforms.sobase method)": [[38, "viser.transforms.SOBase.log"]], "matrix_dim (viser.transforms.matrixliegroup attribute)": [[38, "viser.transforms.MatrixLieGroup.matrix_dim"]], "matrix_dim (viser.transforms.se2 attribute)": [[38, "viser.transforms.SE2.matrix_dim"]], "matrix_dim (viser.transforms.se3 attribute)": [[38, "viser.transforms.SE3.matrix_dim"]], "matrix_dim (viser.transforms.sebase attribute)": [[38, "viser.transforms.SEBase.matrix_dim"]], "matrix_dim (viser.transforms.so2 attribute)": [[38, "viser.transforms.SO2.matrix_dim"]], "matrix_dim (viser.transforms.so3 attribute)": [[38, "viser.transforms.SO3.matrix_dim"]], "matrix_dim (viser.transforms.sobase attribute)": [[38, "viser.transforms.SOBase.matrix_dim"]], "multiply() (viser.transforms.matrixliegroup method)": [[38, "viser.transforms.MatrixLieGroup.multiply"]], "multiply() (viser.transforms.se2 method)": [[38, "viser.transforms.SE2.multiply"]], "multiply() (viser.transforms.se3 method)": [[38, "viser.transforms.SE3.multiply"]], "multiply() (viser.transforms.sebase method)": [[38, "viser.transforms.SEBase.multiply"]], "multiply() (viser.transforms.so2 method)": [[38, "viser.transforms.SO2.multiply"]], "multiply() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.multiply"]], "multiply() (viser.transforms.sobase method)": [[38, "viser.transforms.SOBase.multiply"]], "normalize() (viser.transforms.matrixliegroup method)": [[38, "viser.transforms.MatrixLieGroup.normalize"]], "normalize() (viser.transforms.se2 method)": [[38, "viser.transforms.SE2.normalize"]], "normalize() (viser.transforms.se3 method)": [[38, "viser.transforms.SE3.normalize"]], "normalize() (viser.transforms.sebase method)": [[38, "viser.transforms.SEBase.normalize"]], "normalize() (viser.transforms.so2 method)": [[38, "viser.transforms.SO2.normalize"]], "normalize() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.normalize"]], "normalize() (viser.transforms.sobase method)": [[38, "viser.transforms.SOBase.normalize"]], "parameters() (viser.transforms.matrixliegroup method)": [[38, "viser.transforms.MatrixLieGroup.parameters"]], "parameters() (viser.transforms.se2 method)": [[38, "viser.transforms.SE2.parameters"]], "parameters() (viser.transforms.se3 method)": [[38, "viser.transforms.SE3.parameters"]], "parameters() (viser.transforms.sebase method)": [[38, "viser.transforms.SEBase.parameters"]], "parameters() (viser.transforms.so2 method)": [[38, "viser.transforms.SO2.parameters"]], "parameters() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.parameters"]], "parameters() (viser.transforms.sobase method)": [[38, "viser.transforms.SOBase.parameters"]], "parameters_dim (viser.transforms.matrixliegroup attribute)": [[38, "viser.transforms.MatrixLieGroup.parameters_dim"]], "parameters_dim (viser.transforms.se2 attribute)": [[38, "viser.transforms.SE2.parameters_dim"]], "parameters_dim (viser.transforms.se3 attribute)": [[38, "viser.transforms.SE3.parameters_dim"]], "parameters_dim (viser.transforms.sebase attribute)": [[38, "viser.transforms.SEBase.parameters_dim"]], "parameters_dim (viser.transforms.so2 attribute)": [[38, "viser.transforms.SO2.parameters_dim"]], "parameters_dim (viser.transforms.so3 attribute)": [[38, "viser.transforms.SO3.parameters_dim"]], "parameters_dim (viser.transforms.sobase attribute)": [[38, "viser.transforms.SOBase.parameters_dim"]], "rotation() (viser.transforms.se2 method)": [[38, "viser.transforms.SE2.rotation"]], "rotation() (viser.transforms.se3 method)": [[38, "viser.transforms.SE3.rotation"]], "rotation() (viser.transforms.sebase method)": [[38, "viser.transforms.SEBase.rotation"]], "space_dim (viser.transforms.matrixliegroup attribute)": [[38, "viser.transforms.MatrixLieGroup.space_dim"]], "space_dim (viser.transforms.se2 attribute)": [[38, "viser.transforms.SE2.space_dim"]], "space_dim (viser.transforms.se3 attribute)": [[38, "viser.transforms.SE3.space_dim"]], "space_dim (viser.transforms.sebase attribute)": [[38, "viser.transforms.SEBase.space_dim"]], "space_dim (viser.transforms.so2 attribute)": [[38, "viser.transforms.SO2.space_dim"]], "space_dim (viser.transforms.so3 attribute)": [[38, "viser.transforms.SO3.space_dim"]], "space_dim (viser.transforms.sobase attribute)": [[38, "viser.transforms.SOBase.space_dim"]], "tangent_dim (viser.transforms.matrixliegroup attribute)": [[38, "viser.transforms.MatrixLieGroup.tangent_dim"]], "tangent_dim (viser.transforms.se2 attribute)": [[38, "viser.transforms.SE2.tangent_dim"]], "tangent_dim (viser.transforms.se3 attribute)": [[38, "viser.transforms.SE3.tangent_dim"]], "tangent_dim (viser.transforms.sebase attribute)": [[38, "viser.transforms.SEBase.tangent_dim"]], "tangent_dim (viser.transforms.so2 attribute)": [[38, "viser.transforms.SO2.tangent_dim"]], "tangent_dim (viser.transforms.so3 attribute)": [[38, "viser.transforms.SO3.tangent_dim"]], "tangent_dim (viser.transforms.sobase attribute)": [[38, "viser.transforms.SOBase.tangent_dim"]], "translation() (viser.transforms.se2 method)": [[38, "viser.transforms.SE2.translation"]], "translation() (viser.transforms.se3 method)": [[38, "viser.transforms.SE3.translation"]], "translation() (viser.transforms.sebase method)": [[38, "viser.transforms.SEBase.translation"]], "unit_complex (viser.transforms.so2 attribute)": [[38, "viser.transforms.SO2.unit_complex"]], "unit_complex_xy (viser.transforms.se2 attribute)": [[38, "viser.transforms.SE2.unit_complex_xy"]], "viser.transforms": [[38, "module-viser.transforms"]], "wxyz (viser.transforms.so3 attribute)": [[38, "viser.transforms.SO3.wxyz"]], "wxyz_xyz (viser.transforms.se3 attribute)": [[38, "viser.transforms.SE3.wxyz_xyz"]]}}) \ No newline at end of file +Search.setIndex({"docnames": ["camera_handles", "client_handles", "conventions", "development", "events", "examples/00_coordinate_frames", "examples/01_image", "examples/02_gui", "examples/03_gui_callbacks", "examples/04_camera_poses", "examples/05_camera_commands", "examples/06_mesh", "examples/07_record3d_visualizer", "examples/08_smpl_visualizer", "examples/09_urdf_visualizer", "examples/10_realsense", "examples/11_colmap_visualizer", "examples/12_click_meshes", "examples/13_theming", "examples/14_markdown", "examples/15_gui_in_scene", "examples/16_modal", "examples/17_background_composite", "examples/18_splines", "examples/19_get_renders", "examples/20_scene_pointer", "examples/21_set_up_direction", "examples/22_games", "examples/23_plotly", "extras", "gui_api", "gui_handles", "icons", "index", "infrastructure", "scene_api", "scene_handles", "server", "transforms"], "filenames": ["camera_handles.md", "client_handles.md", "conventions.md", "development.md", "events.md", "examples/00_coordinate_frames.rst", "examples/01_image.rst", "examples/02_gui.rst", "examples/03_gui_callbacks.rst", "examples/04_camera_poses.rst", "examples/05_camera_commands.rst", "examples/06_mesh.rst", "examples/07_record3d_visualizer.rst", "examples/08_smpl_visualizer.rst", "examples/09_urdf_visualizer.rst", "examples/10_realsense.rst", "examples/11_colmap_visualizer.rst", "examples/12_click_meshes.rst", "examples/13_theming.rst", "examples/14_markdown.rst", "examples/15_gui_in_scene.rst", "examples/16_modal.rst", "examples/17_background_composite.rst", "examples/18_splines.rst", "examples/19_get_renders.rst", "examples/20_scene_pointer.rst", "examples/21_set_up_direction.rst", "examples/22_games.rst", "examples/23_plotly.rst", "extras.md", "gui_api.md", "gui_handles.md", "icons.md", "index.md", "infrastructure.md", "scene_api.md", "scene_handles.md", "server.md", "transforms.md"], "titles": ["Camera Handles", "Client Handles", "Frame Conventions", "Development", "Events", "Coordinate frames", "Images", "GUI basics", "GUI callbacks", "Camera poses", "Camera commands", "Meshes", "Record3D visualizer", "SMPL model visualizer", "Robot URDF visualizer", "RealSense visualizer", "COLMAP visualizer", "Mesh click events", "Theming", "Markdown Demonstration", "3D GUI Elements", "Modal basics", "Depth compositing", "Splines", "Get Renders", "Scene pointer events.", "Set Up Direction", "Games", "Plotly.", "Record3D + URDF Helpers", "GUI API", "GUI Handles", "Icons", "viser", "Communication", "Scene API", "Scene Handles", "Viser Server", "Transforms"], "terms": {"class": [0, 1, 4, 13, 29, 30, 31, 32, 34, 35, 36, 37, 38], "viser": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 38], "camerahandl": [0, 1, 9], "sourc": [0, 1, 3, 4, 29, 30, 31, 32, 34, 35, 36, 37, 38], "A": [0, 1, 3, 14, 15, 29, 30, 31, 35, 36], "read": [0, 1, 7, 9, 10, 13, 15, 31, 35, 36], "write": [0, 1, 3, 7, 10, 31, 32], "state": [0, 1, 31, 35, 36, 37], "particular": [0, 7, 34], "client": [0, 4, 7, 9, 10, 16, 20, 21, 24, 25, 30, 31, 33, 34, 35, 36, 37], "typic": [0, 3, 35, 38], "access": [0, 32, 37], "via": [0, 1, 3, 18, 31, 32, 35, 36, 37, 38], "clienthandl": [0, 1, 2, 4, 9, 10, 20, 21, 25, 29, 31, 36, 37], "properti": [0, 4, 31, 36], "thi": [0, 1, 2, 3, 4, 5, 9, 13, 14, 16, 20, 21, 22, 25, 28, 30, 31, 34, 35, 36, 37, 38], "correspond": [0, 2, 3, 4, 10, 34], "wxyz": [0, 2, 5, 6, 8, 9, 10, 11, 12, 13, 16, 20, 25, 27, 35, 36, 38], "ndarrai": [0, 13, 15, 25, 29, 30, 35, 36, 38], "ani": [0, 1, 3, 8, 14, 29, 34, 35, 37, 38], "dtype": [0, 6, 7, 15, 22, 29, 38], "float64": 0, "r": [0, 2, 15, 28, 32, 36], "p_world": 0, "t": [0, 2, 12, 15, 16, 25, 28, 31, 32, 34, 36, 37], "p_camera": 0, "synchron": [0, 1, 3, 18, 31, 34, 36, 37], "automat": [0, 3, 7, 10, 30, 31, 34, 35, 36, 37], "when": [0, 1, 3, 4, 7, 8, 10, 12, 13, 14, 15, 20, 22, 31, 34, 35, 36, 37], "assign": [0, 2, 31, 36], "posit": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 20, 22, 23, 24, 25, 27, 29, 31, 34, 35, 36, 37], "The": [0, 2, 3, 14, 17, 21, 30, 32, 34, 35], "look_at": [0, 10, 20], "point": [0, 2, 7, 8, 12, 15, 16, 32, 35, 36, 38], "up_direct": [0, 16], "vector": [0, 7, 30, 32, 35, 38], "ar": [0, 1, 2, 3, 4, 5, 7, 8, 10, 13, 17, 25, 30, 31, 32, 34, 35, 37, 38], "maintain": 0, "updat": [0, 1, 4, 7, 8, 9, 12, 13, 14, 25, 28, 29, 31, 34, 37], "which": [0, 2, 3, 4, 30, 31, 35, 37, 38], "mean": [0, 35], "often": [0, 35], "also": [0, 1, 3, 8, 10, 14, 15, 33, 35], "affect": [0, 4, 35], "fov": [0, 9, 12, 16, 25, 35], "float": [0, 4, 13, 14, 18, 28, 29, 30, 31, 32, 35, 36, 38], "vertic": [0, 11, 13, 25, 27, 32, 35], "field": [0, 2, 32, 34, 35, 38], "view": [0, 13, 15, 25, 32, 35], "radian": [0, 35, 38], "aspect": [0, 9, 12, 16, 25, 28, 30, 31, 32, 35], "canva": 0, "width": [0, 8, 16, 18, 24, 30, 32, 35], "divid": [0, 32, 35], "height": [0, 8, 16, 24, 27, 30, 32, 35], "Not": 0, "update_timestamp": [0, 9, 31, 36], "look": [0, 32], "set": [0, 2, 3, 4, 5, 7, 10, 12, 13, 14, 16, 20, 25, 28, 30, 31, 32, 34, 35, 36, 38], "up": [0, 2, 16, 25, 32, 35], "direct": [0, 4, 16, 25, 32, 35], "on_upd": [0, 8, 9, 12, 13, 14, 16, 19, 26, 31, 36], "callback": [0, 4, 7, 17, 25, 31, 34, 35, 36, 37], "callabl": [0, 31, 34, 35, 36, 37], "none": [0, 1, 4, 6, 7, 8, 9, 10, 12, 13, 14, 16, 17, 18, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37], "attach": [0, 8, 31, 34, 35, 36, 37], "run": [0, 3, 9, 32, 33, 34, 35, 37], "new": [0, 9, 17, 30, 32, 34, 35], "messag": [0, 1, 25, 30, 32, 34, 37], "i": [0, 1, 2, 3, 4, 5, 7, 8, 10, 12, 13, 14, 15, 16, 17, 20, 21, 23, 24, 25, 27, 30, 31, 32, 33, 34, 35, 36, 37, 38], "receiv": [0, 34], "paramet": [0, 1, 2, 10, 13, 29, 30, 31, 34, 35, 36, 37, 38], "return": [0, 1, 13, 15, 20, 25, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38], "type": [0, 1, 3, 4, 15, 20, 25, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38], "get_rend": [0, 24], "int": [0, 1, 4, 10, 12, 13, 15, 16, 17, 20, 27, 29, 30, 34, 35, 37, 38], "transport_format": 0, "liter": [0, 4, 27, 30, 31, 35], "png": [0, 6, 18, 28, 32, 35], "jpeg": [0, 6, 35], "request": [0, 32, 37], "render": [0, 6, 22, 29, 33, 35, 36], "from": [0, 1, 2, 3, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 18, 19, 20, 24, 25, 27, 28, 29, 31, 34, 35, 36, 37, 38], "block": [0, 15, 32, 33, 37], "until": [0, 37], "": [0, 1, 8, 13, 16, 24, 25, 29, 32, 34, 35, 37, 38], "done": [0, 3, 15, 24, 35], "numpi": [0, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 20, 22, 23, 24, 25, 27, 28, 35, 38], "arrai": [0, 7, 10, 12, 13, 14, 15, 16, 20, 25, 35, 38], "imag": [0, 4, 12, 16, 18, 22, 24, 25, 28, 30, 35, 36], "should": [0, 1, 2, 3, 10, 13, 14, 20, 30, 31, 32, 34, 35, 37, 38], "browser": [0, 3, 32, 37], "transport": [0, 35], "format": [0, 3, 6, 15, 32, 35], "lossi": 0, "h": [0, 16, 32, 35], "w": [0, 3, 16, 32, 35, 38], "3": [0, 2, 6, 7, 8, 10, 12, 13, 14, 15, 16, 17, 20, 22, 23, 24, 25, 27, 28, 30, 32, 35, 38], "rgb": [0, 12, 15, 16, 29, 30, 35], "lossless": 0, "4": [0, 6, 7, 10, 12, 13, 17, 20, 27, 32, 35, 38], "rgba": [0, 30], "can": [0, 1, 2, 3, 6, 7, 8, 9, 10, 14, 20, 22, 25, 26, 30, 31, 32, 33, 34, 35, 36, 37, 38], "caus": 0, "memori": 0, "issu": 0, "frontend": [0, 3], "call": [0, 2, 8, 31, 32, 35, 37], "too": 0, "quickli": 0, "higher": 0, "resolut": 0, "creat": [1, 7, 10, 14, 20, 25, 27, 28, 31, 35, 36, 37], "each": [1, 2, 10, 20, 27, 30, 31, 35, 36, 38], "connect": [1, 3, 7, 9, 10, 15, 20, 27, 31, 32, 33, 34, 36, 37], "server": [1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 34, 35, 36], "us": [1, 2, 3, 4, 6, 7, 15, 21, 22, 25, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38], "commun": [1, 3, 32], "just": [1, 8, 14, 15], "one": [1, 3, 10, 12, 17, 32, 35, 37], "well": [1, 36, 38], "camera": [1, 15, 16, 20, 24, 25, 32, 33, 35, 36], "similar": [1, 35], "viserserv": [1, 2, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 36, 37], "expos": [1, 2], "scene": [1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 22, 23, 24, 26, 27, 29, 33, 37], "gui": [1, 4, 9, 12, 13, 14, 16, 17, 18, 19, 21, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37], "interfac": [1, 3, 14, 30, 34, 35, 38], "If": [1, 2, 3, 35, 38], "exampl": [1, 3, 5, 6, 7, 9, 20, 21, 22, 24, 25, 28, 29, 33, 34, 36, 37, 38], "sceneapi": [1, 35, 37], "add_point_cloud": [1, 7, 8, 12, 15, 16, 35, 37], "method": [1, 18, 34, 35, 37], "element": [1, 4, 7, 8, 13, 16, 18, 30, 31, 32, 34, 35, 36, 37, 38], "local": [1, 2, 13, 14, 31, 35, 36, 37], "onli": [1, 4, 7, 31, 34], "specif": [1, 31, 34, 35, 36], "interact": [1, 10, 13, 20, 25, 30, 31, 33, 35, 36, 37], "3d": [1, 2, 4, 6, 22, 28, 32, 33, 35, 36, 37, 38], "guiapi": [1, 30, 32, 37], "client_id": [1, 4, 9, 34], "uniqu": [1, 34], "id": [1, 4, 9, 16, 32, 37], "manipul": [1, 35], "viewport": [1, 24, 32], "flush": [1, 10, 12, 27, 34, 37], "outgo": [1, 32, 34, 37], "buffer": [1, 32, 34, 37], "immedi": [1, 34, 37], "sent": [1, 34, 37], "default": [1, 2, 30, 33, 34, 35, 37, 38], "thei": [1, 25, 34, 37], "window": [1, 30, 32, 34, 37], "atom": [1, 10, 12, 20, 32, 34, 37], "contextmanag": [1, 15, 37], "context": [1, 15, 30, 31, 34, 35, 36, 37], "where": [1, 2, 25, 30, 31, 34, 35, 37], "all": [1, 2, 5, 9, 12, 13, 16, 25, 30, 31, 32, 34, 35, 36, 37], "group": [1, 30, 31, 32, 34, 37, 38], "appli": [1, 14, 18, 29, 34, 35, 37, 38], "treat": [1, 34, 37], "soft": [1, 34, 37], "constraint": [1, 34, 37], "help": [1, 14, 26, 32, 34, 35, 37], "thing": [1, 34, 37], "like": [1, 2, 3, 4, 32, 34, 35, 37], "anim": [1, 34, 37], "we": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 20, 22, 25, 30, 31, 32, 34, 35, 37], "want": [1, 22, 34, 35, 37], "orient": [1, 2, 10, 13, 20, 32, 34, 35, 36, 37], "happen": [1, 10, 31, 34, 37], "manag": [1, 15, 34, 37], "send_file_download": [1, 24, 37], "filenam": [1, 37], "str": [1, 9, 11, 14, 25, 29, 30, 31, 32, 34, 35, 37], "content": [1, 7, 18, 19, 21, 30, 31, 32, 35, 37], "byte": [1, 7, 24, 34, 35, 37], "chunk_siz": [1, 37], "1048576": [1, 37], "send": [1, 6, 7, 13, 16, 24, 32, 34, 37], "file": [1, 3, 7, 13, 14, 29, 30, 32, 35, 37], "download": [1, 3, 13, 32, 37], "name": [1, 5, 7, 11, 12, 13, 16, 17, 22, 25, 29, 32, 34, 35, 37, 38], "infer": [1, 31, 37], "mime": [1, 30, 37], "number": [1, 7, 30, 32, 35, 37], "time": [1, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 37], "In": [2, 3, 5, 10, 20, 22, 38], "note": [2, 3, 15, 25, 32, 38], "describ": 2, "object": [2, 29, 30, 34, 35, 36, 37, 38], "add": [2, 5, 6, 7, 8, 12, 14, 25, 29, 30, 31, 32, 35, 37], "instanti": [2, 31, 37], "node": [2, 4, 5, 7, 20, 35, 36], "structur": [2, 13, 27], "determin": [2, 21, 35], "base_link": 2, "shoulder": 2, "wrist": 2, "signifi": 2, "three": [2, 32], "child": [2, 35], "transform": [2, 10, 11, 12, 13, 16, 20, 25, 27, 32, 33, 35, 36], "given": [2, 27, 35], "both": [2, 20, 30, 32, 34, 35], "its": 2, "move": [2, 10, 14, 20, 25, 32, 36], "Its": 2, "parent": [2, 6, 11, 12, 13, 16, 19, 25, 35], "unaffect": 2, "defin": [2, 3, 4, 5, 13, 34, 35], "pair": [2, 15], "unit": [2, 3], "quaternion": [2, 35, 36, 38], "term": [2, 35, 38], "alwai": 2, "4d": [2, 32], "translat": [2, 10, 16, 20, 34, 35, 38], "These": [2, 5, 10, 34, 36], "p_": 2, "mathrm": 2, "begin": 2, "bmatrix": 2, "end": [2, 30, 32], "1": [2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 15, 16, 17, 19, 20, 22, 25, 26, 27, 28, 29, 30, 32, 34, 35, 38], "form": [2, 32, 35], "so": [2, 13, 25, 32, 38], "matrix": [2, 32, 38], "mathbb": 2, "space": [2, 32, 35, 38], "z": [2, 8, 28, 32, 35, 38], "upward": 2, "overridden": [2, 35], "set_up_direct": [2, 13, 25, 26, 35], "python": [2, 24, 32, 33, 34, 35], "api": [2, 24, 32, 33, 37], "colmap": 2, "opencv": [2, 4, 25, 35], "forward": [2, 13, 32, 35], "y": [2, 8, 13, 17, 25, 28, 32, 35, 38], "right": [2, 4, 32, 35], "x": [2, 8, 13, 17, 25, 27, 28, 32, 35, 38], "confusingli": 2, "differ": [2, 30, 32, 35, 37, 38], "nerfstudio": [2, 18], "adopt": 2, "opengl": [2, 35], "blender": [2, 32, 35], "convers": [2, 35], "between": [2, 3, 14, 17, 30, 31, 36, 37, 38], "two": [2, 3, 15, 27, 30, 32, 37], "simpl": [2, 11, 17, 32], "180": [2, 18], "degre": 2, "rotat": [2, 10, 16, 20, 32, 35, 38], "around": [2, 10, 20, 28], "axi": [2, 8, 25, 32, 35, 38], "outlin": [3, 32], "current": [3, 4, 9, 12, 15, 16, 18, 31, 32, 34, 35], "practic": 3, "tool": [3, 32, 33], "workflow": 3, "assum": 3, "repositori": 3, "clone": 3, "recommend": 3, "an": [3, 4, 7, 13, 27, 29, 30, 32, 33, 34, 35, 37, 38], "edit": [3, 7, 32], "ideal": 3, "virtual": 3, "environ": 3, "eg": 3, "conda": 3, "packag": [3, 14, 30, 32], "cd": 3, "pip": [3, 33], "e": [3, 25, 32, 35], "depend": [3, 33], "after": [3, 31, 33], "script": [3, 29, 32, 33], "runnabl": 3, "few": 3, "them": [3, 9, 17, 20, 35], "requir": [3, 13, 14, 15, 30, 34], "asset": [3, 6, 11, 12, 16, 19, 25, 28, 32, 35], "lint": 3, "check": [3, 18, 25, 32], "first": [3, 13, 25, 30, 32, 37, 38], "dev": 3, "pre": [3, 7], "commit": [3, 32], "It": [3, 13, 14, 35], "would": 3, "hard": [3, 13], "test": [3, 25, 32, 35], "reli": [3, 37], "static": [3, 31, 38], "robust": 3, "To": [3, 11, 12, 16, 25, 33, 34, 37], "your": 3, "code": [3, 32], "you": [3, 33, 34], "follow": [3, 35, 38], "backend": 3, "share": [3, 12, 18, 30, 32, 34, 35, 37], "definit": [3, 34, 38], "On": [3, 37], "dataclass": [3, 13, 34, 38], "src": 3, "_messag": [3, 4], "py": [3, 14], "typescript": [3, 32, 34], "websocketmessag": 3, "tsx": 3, "ones": [3, 13, 22, 25], "manual": [3, 30, 32, 35], "modifi": [3, 25], "instead": [3, 4], "chang": [3, 7, 12, 13, 32], "made": 3, "sync_message_def": 3, "For": [3, 4, 10, 16, 20, 31, 34, 35], "start": [3, 14, 15, 18, 28, 32, 34], "launch": [3, 34, 37], "relev": 3, "good": 3, "place": [3, 12, 31, 35, 36, 38], "05_camera_command": 3, "url": [3, 33, 37], "print": [3, 7, 9, 11, 12, 16, 24, 33, 34], "http": [3, 13, 14, 18, 32, 33, 34], "localhost": [3, 33], "8080": [3, 33], "open": [3, 20, 28, 30, 32], "built": 3, "version": [3, 32], "react": [3, 32], "websocket": [3, 34], "applic": [3, 34, 37], "detect": [3, 9, 30, 31, 34, 36], "startup": 3, "re": [3, 12, 13, 34], "build": [3, 32, 33, 34], "okai": 3, "quick": 3, "faster": [3, 35], "iter": [3, 32], "reflect": [3, 7], "make": [3, 13, 22, 23, 25], "without": 3, "full": [3, 25, 32], "more": [3, 21, 38], "step": [3, 7, 8, 12, 13, 14, 16, 26, 30, 32], "nodej": [3, 32], "yarn": 3, "directori": [3, 16, 30], "web": [3, 33, 34, 37], "address": [3, 32, 37], "need": [3, 13, 25, 31], "tab": [3, 13, 30, 31], "prettier": 3, "npx": 3, "small": [4, 18, 30, 32], "pass": 4, "function": [4, 31, 32, 35], "click": [4, 8, 10, 12, 20, 25, 27, 30, 31, 32, 33, 35, 36], "trigger": [4, 35], "scenepointerev": [4, 25, 35], "pointer": [4, 32, 35], "event_typ": [4, 25, 35], "scenepointereventtyp": 4, "wa": [4, 10, 31], "support": [4, 10, 14, 18, 19, 35, 36], "box": [4, 13, 17, 22, 25, 32, 35], "select": [4, 17, 25, 32, 33, 35], "ray_origin": [4, 25], "tupl": [4, 13, 15, 29, 30, 31, 35, 38], "origin": [4, 10, 20, 25, 35, 37], "rai": [4, 25], "world": [4, 7, 32, 35], "coordin": [4, 10, 15, 17, 20, 25, 35, 36, 38], "ray_direct": [4, 25], "screen_po": [4, 25], "list": [4, 12, 13, 14, 25, 28, 32, 34], "screen": [4, 32], "0": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 34, 35], "upper": [4, 14, 25, 32], "left": [4, 25, 28, 32], "corner": [4, 25, 32], "bottom": [4, 32], "includ": [4, 18, 33], "min": [4, 7, 8, 12, 13, 14, 16, 25, 30, 32], "max": [4, 7, 8, 12, 13, 14, 16, 30, 32, 35], "deprec": 4, "scenenodepointerev": [4, 36], "target": [4, 29, 32, 38], "tscenenodehandl": [4, 36], "guievent": [4, 16, 24, 31], "inform": [4, 34, 35], "associ": [4, 31, 37], "input": [4, 7, 14, 21, 30, 31, 32, 33], "tguihandl": [4, 31], "basic": 5, "visual": [5, 6, 11, 25, 28, 29, 30, 31, 32, 33, 35, 36, 37], "hierarch": 5, "tree": [5, 29, 32, 35], "branch": [5, 32], "rel": [5, 30], "import": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 32], "random": [5, 6, 7, 8, 10, 13, 16, 20, 22, 23, 24, 32], "while": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "true": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 35, 37], "some": [5, 7, 12, 23, 27], "viewer": [5, 6], "add_fram": [5, 8, 10, 12, 16, 20, 35, 36], "2": [5, 6, 9, 11, 12, 13, 14, 15, 16, 19, 23, 25, 27, 28, 30, 32, 35, 38], "leaf": [5, 32], "sleep": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "5": [5, 7, 8, 10, 11, 13, 17, 20, 22, 23, 24, 25, 27, 32, 35], "remov": [5, 14, 15, 19, 20, 25, 27, 31, 32, 35, 36], "backgrond": 6, "displai": [6, 17, 20, 30, 35], "behind": 6, "nerf": [6, 18, 22], "textur": [6, 15, 32], "pathlib": [6, 11, 12, 13, 16, 19, 25], "path": [6, 11, 12, 13, 14, 16, 19, 25, 29, 30, 34, 35], "imageio": [6, 16, 24], "v3": [6, 16, 24], "iio": [6, 16, 24], "onp": [6, 7, 8, 10, 11, 12, 13, 14, 16, 20, 22, 23, 24, 25, 27, 28, 35, 38], "def": [6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28], "main": [6, 7, 8, 12, 13, 14, 15, 16, 17, 18, 21, 23, 24, 26, 27, 28, 30, 37], "background": [6, 22, 35], "set_background_imag": [6, 22, 35], "imread": [6, 16], "__file__": [6, 11, 12, 16, 19, 25], "cal_logo": [6, 28], "add_imag": [6, 35], "img": [6, 16, 18, 22], "nois": 6, "randint": [6, 8, 22], "256": [6, 8], "size": [6, 7, 8, 10, 13, 16, 20, 22, 23, 24, 30, 32, 35], "400": 6, "uint8": [6, 7, 15, 22, 29], "1e": [6, 14, 16], "__name__": [6, 7, 8, 12, 13, 14, 15, 16, 17, 18, 21, 23, 24, 26, 27, 28], "__main__": [6, 7, 8, 12, 13, 14, 15, 16, 17, 18, 21, 23, 24, 26, 27, 28], "common": [7, 32, 35], "slider": [7, 8, 12, 14, 30, 33, 35], "checkbox": [7, 19, 30, 32, 33], "add_fold": [7, 8, 12, 17, 30], "gui_count": 7, "add_numb": [7, 16, 17, 30], "counter": [7, 17, 19, 32], "initial_valu": [7, 8, 9, 12, 13, 14, 16, 17, 18, 19, 21, 26, 30], "disabl": [7, 9, 12, 17, 25, 30, 31, 32, 35], "gui_slid": 7, "add_slid": [7, 8, 12, 13, 14, 16, 30], "100": [7, 12, 16, 23, 38], "gui_vector2": 7, "add_vector2": [7, 30], "gui_vector3": 7, "add_vector3": [7, 13, 26, 30], "25": [7, 27], "text": [7, 10, 18, 30, 32, 33, 35], "toggl": [7, 12, 32, 34], "gui_checkbox_hid": 7, "add_checkbox": [7, 8, 12, 13, 18, 19, 30], "hide": [7, 12, 31, 32, 35], "fals": [7, 12, 13, 16, 25, 30, 35], "gui_text": 7, "add_text": [7, 9, 21, 30], "hello": 7, "gui_button": 7, "add_button": [7, 8, 12, 13, 14, 16, 18, 19, 20, 21, 24, 25, 27, 30, 32, 37], "button": [7, 8, 12, 14, 18, 19, 24, 25, 30, 31, 33], "gui_checkbox_dis": 7, "gui_rgb": [7, 13], "add_rgb": [7, 13, 18, 30], "color": [7, 8, 12, 13, 15, 16, 17, 18, 23, 24, 25, 27, 28, 29, 30, 32, 35], "255": [7, 13, 22, 27, 35], "gui_multi_slid": 7, "add_multi_slid": [7, 30], "multi": [7, 30], "30": [7, 12, 15, 18, 23, 24, 27, 32], "mark": [7, 30, 32], "50": [7, 28, 32], "70": 7, "7": [7, 25, 27, 32, 38], "99": [7, 28], "gui_slider_posit": 7, "10": [7, 8, 11, 12, 14, 15, 17, 18, 22, 23, 24, 25, 27, 28, 32, 35], "gui_upload_button": 7, "add_upload_button": [7, 30], "upload": [7, 30, 32], "icon": [7, 13, 18, 25, 30, 31], "on_upload": 7, "_": [7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27], "valu": [7, 8, 12, 13, 14, 16, 17, 18, 19, 21, 26, 30, 31, 34, 38], "len": [7, 16, 25], "gener": [7, 13, 24, 25, 32, 34, 35, 38], "cloud": [7, 8, 12, 15, 16, 32, 35, 36], "point_posit": 7, "uniform": [7, 10, 20, 23, 24], "low": [7, 32], "high": [7, 32, 37], "5000": 7, "color_coeff": 7, "shape": [7, 11, 12, 13, 15, 16, 25, 32, 35, 38], "point_cloud": [7, 8, 12, 15], "float32": [7, 15, 22, 29], "tile": 7, "reshap": [7, 15, 25], "astyp": [7, 15], "point_shap": [7, 12, 35], "circl": [7, 32, 35], "visibl": [7, 9, 12, 13, 19, 26, 30, 31, 35, 36], "handl": [7, 13, 17, 25, 30, 34, 35, 37], "linspac": [7, 27, 28], "int64": 7, "01": [7, 12, 13, 26, 27, 28], "asynchron": [8, 34], "usag": 8, "soon": 8, "get": [8, 9, 11, 12, 13, 15, 16, 18, 25, 31, 32, 34, 38], "typing_extens": [8, 27], "assert_nev": [8, 27], "gui_reset_scen": 8, "reset": [8, 13, 14, 16, 24, 25, 27, 32, 35], "gui_plan": 8, "add_dropdown": [8, 14, 18, 30], "grid": [8, 17, 32, 35], "plane": [8, 25, 32, 35], "xz": [8, 35], "xy": [8, 32, 35], "yx": [8, 35], "yz": [8, 35], "zx": [8, 35], "zy": [8, 35], "update_plan": 8, "add_grid": [8, 35], "20": [8, 10, 12, 20, 24, 28, 32, 35], "width_seg": [8, 35], "height_seg": [8, 35], "lambda": [8, 14, 18, 21, 25, 27, 32], "control": [8, 12, 13, 16, 18, 30, 31, 32, 33, 35, 36], "gui_show_fram": 8, "show": [8, 9, 18, 20, 21, 22, 25, 30, 31, 32, 35, 37], "frame": [8, 10, 12, 15, 16, 20, 25, 27, 29, 32, 35, 36, 38], "gui_show_everyth": 8, "everyth": [8, 35], "gui_axi": 8, "gui_include_z": 8, "dropdown": [8, 30, 31], "option": [8, 10, 12, 15, 20, 29, 30, 31, 32, 34, 35], "els": [8, 14, 17, 18, 27], "gui_loc": 8, "locat": [8, 25, 32, 35], "05": [8, 11, 12, 13, 16, 25], "gui_num_point": 8, "1000": [8, 22, 34, 35], "200_000": 8, "10_000": 8, "draw_fram": 8, "po": 8, "elif": [8, 27], "show_ax": [8, 12, 35], "axes_length": [8, 12, 16, 35], "draw_point": 8, "num_point": 8, "normal": [8, 10, 13, 20, 23, 24, 38], "here": [8, 13, 19], "whenev": [8, 9, 13], "item": [8, 9, 14], "set_global_vis": [8, 35], "on_click": [8, 10, 12, 13, 14, 16, 17, 18, 19, 20, 21, 24, 25, 27, 31, 36], "final": 8, "let": [8, 31], "initi": [8, 14, 30, 35], "loop": [8, 12, 13, 32, 35], "infinit": 8, "how": [9, 22, 25], "world_ax": [9, 19, 26, 35], "on_client_connect": [9, 10, 20, 21, 25, 34, 37], "f": [9, 10, 11, 12, 13, 16, 17, 18, 19, 20, 23, 24, 25, 27, 32, 35], "gui_info": 9, "get_client": [9, 16, 37], "kei": [9, 25, 32, 34, 35], "twxyz": 9, "tposit": 9, "tfov": 9, "taspect": 9, "tlast": 9, "addit": 10, "sync": 10, "tf": [10, 11, 12, 13, 16, 20, 25, 27], "num_fram": [10, 12, 20, 29], "handler": [10, 20, 34], "rng": [10, 20], "default_rng": [10, 20], "make_fram": [10, 20], "sampl": [10, 13, 20], "linalg": [10, 13, 20, 25], "norm": [10, 13, 20, 25], "label": [10, 13, 14, 17, 18, 20, 28, 30, 31, 35, 36, 37], "frame_": [10, 16, 20], "add_label": [10, 35], "t_world_curr": [10, 20], "se3": [10, 16, 20, 25, 38], "from_rotation_and_transl": [10, 16, 20, 25, 38], "so3": [10, 11, 12, 13, 16, 20, 25, 27, 38], "t_world_target": [10, 20], "from_transl": [10, 20, 38], "t_current_target": [10, 20], "invers": [10, 16, 20, 25, 38], "j": [10, 17, 20, 27, 32], "rang": [10, 12, 13, 15, 17, 20, 23, 24, 27], "t_world_set": [10, 20], "exp": [10, 12, 13, 20, 38], "log": [10, 13, 20, 38], "19": [10, 20], "togeth": 10, "prevent": 10, "jitter": 10, "might": 10, "befor": 10, "other": [10, 34, 38], "60": [10, 12, 20, 32], "mous": [10, 20, 32], "orbit": [10, 20], "demo": [11, 12, 16, 25], "data": [11, 12, 16, 25, 28, 32], "see": [11, 12, 13, 14, 16, 25, 33, 37], "download_dragon_mesh": [11, 25], "sh": [11, 12, 16, 25], "trimesh": [11, 22, 25, 27, 35], "load_mesh": [11, 25], "dragon": [11, 25], "obj": [11, 25], "assert": [11, 13, 15, 16, 24], "isinst": 11, "apply_scal": [11, 25], "face": [11, 13, 27, 32, 35], "load": [11, 12, 13, 14, 16, 29, 32, 35], "add_mesh_simpl": [11, 13, 27, 35], "from_x_radian": [11, 38], "pi": [11, 12, 14, 27, 28, 32], "add_mesh_trimesh": [11, 22, 25, 27, 35], "smooth": [11, 35], "pars": 12, "stream": [12, 15], "captur": [12, 29, 32], "download_record3d_d": 12, "tyro": [12, 13, 14, 16], "extra": [12, 14, 16, 29], "tqdm": [12, 15, 16], "auto": [12, 15, 16, 32], "data_path": 12, "record3d_d": 12, "downsample_factor": [12, 16, 29], "max_fram": 12, "bool": [12, 13, 29, 30, 31, 35, 36, 37], "request_share_url": [12, 37], "loader": [12, 14, 32], "record3dload": [12, 29], "playback": 12, "ui": [12, 32], "gui_timestep": 12, "timestep": 12, "gui_next_fram": 12, "next": [12, 32], "gui_prev_fram": 12, "prev": [12, 32], "gui_plai": 12, "plai": [12, 27, 32], "gui_framer": 12, "fp": [12, 15], "gui_framerate_opt": 12, "add_button_group": [12, 30], "framer": [12, 32], "prev_timestep": 12, "nonloc": [12, 16, 20, 27], "current_timestep": 12, "frame_nod": 12, "framehandl": [12, 16, 35, 36], "get_fram": [12, 29], "get_point_cloud": [12, 29], "base": [12, 17, 25, 33, 34, 35, 36, 38], "append": [12, 13, 14, 24, 25], "point_siz": [12, 15, 16, 35], "round": [12, 32, 35], "frustum": [12, 16, 32, 35, 36], "arctan2": [12, 16], "k": [12, 27, 29, 32], "add_camera_frustum": [12, 16, 35], "scale": [12, 13, 16, 25, 27, 29, 32, 35], "15": [12, 16, 21, 32], "from_matrix": [12, 38], "t_world_camera": [12, 16, 29], "ax": [12, 32, 35, 38], "axes_radiu": [12, 16, 35], "005": [12, 16], "enumer": [12, 13], "cli": [12, 13, 14, 16], "human": 13, "bodi": 13, "npz": 13, "instruct": 13, "github": [13, 14, 18, 32], "com": [13, 14, 18], "vchouta": 13, "smplx": 13, "readm": 13, "ov": 13, "__future__": [13, 14, 15, 25], "annot": [13, 14, 15, 25, 34, 35], "np": [13, 15], "frozen": 13, "smploutput": 13, "t_world_joint": 13, "num_joint": 13, "t_parent_joint": 13, "smplhelper": 13, "helper": [13, 14], "famili": 13, "implement": [13, 27, 34, 38], "__init__": 13, "self": [13, 31, 35, 36, 38], "model_path": 13, "suffix": 13, "lower": [13, 14, 32], "body_dict": 13, "dict": [13, 28, 29, 34, 37], "allow_pickl": 13, "_j_regressor": 13, "j_regressor": 13, "_weight": 13, "weight": [13, 32], "_v_templat": 13, "v_templat": 13, "_posedir": 13, "posedir": 13, "_shapedir": 13, "shapedir": 13, "_face": 13, "num_beta": 13, "parent_idx": 13, "kintree_t": 13, "get_output": 13, "beta": [13, 32], "joint_rotmat": 13, "joint": [13, 14, 29], "pose": [13, 38], "ident": [13, 38], "v_tpose": 13, "einsum": 13, "vxb": 13, "b": [13, 28, 32, 37], "vx": [13, 38], "j_tpose": 13, "jv": 13, "jx": 13, "se": [13, 32, 38], "zero": [13, 32], "ey": [13, 32], "kinemat": [13, 35], "copi": [13, 32, 37], "linear": 13, "blend": 13, "skin": 13, "pose_delta": 13, "flatten": 13, "v_blend": 13, "byn": 13, "n": [13, 15, 32, 35, 38], "v_delta": 13, "v_pose": 13, "jxy": 13, "vj": 13, "vjy": 13, "configure_them": [13, 16, 18, 20, 25, 27, 30], "control_layout": [13, 16, 18, 30], "collaps": [13, 16, 18, 30, 32], "ll": 13, "comput": [13, 15, 30, 32, 38], "mesh": [13, 14, 22, 25, 27, 29, 35, 36], "gui_el": 13, "make_gui_el": 13, "do": [13, 35], "noth": 13, "02": 13, "continu": [13, 16], "output": [13, 16, 38], "smpl_output": 13, "gui_beta": 13, "gui_joint": [13, 14], "as_matrix": [13, 25, 38], "wirefram": [13, 35], "gui_wirefram": 13, "match": [13, 25, 30], "gizmo": [13, 32, 33, 35, 36], "transform_control": 13, "guielement": 13, "contain": [13, 31, 32, 35, 36, 38], "guiinputhandl": [13, 14, 30, 31], "transformcontrolshandl": [13, 35, 36], "flag": [13, 32, 34], "flip": [13, 32], "tab_group": 13, "add_tab_group": [13, 30], "set_chang": 13, "out": [13, 32], "later": 13, "add_tab": [13, 31], "viewfind": [13, 32], "90": [13, 32, 35], "200": [13, 35], "gui_show_control": 13, "gui_reset_shap": 13, "gui_random_shap": 13, "loc": 13, "angl": [13, 14, 29, 32, 38], "gui_reset_joint": 13, "gui_random_joint": 13, "uniformli": 13, "directli": [13, 20, 37], "convert": [13, 34], "quat": 13, "set_callback_in_closur": 13, "prefixed_joint_nam": 13, "prefix": 13, "joint_": 13, "add_transform_control": [13, 35], "depth_test": [13, 35], "75": 13, "count": 13, "disable_ax": [13, 35], "disable_slid": [13, 35], "axisangl": 13, "descript": [13, 14, 18, 32], "__doc__": 13, "yourdfpi": [14, 29], "robot_descript": 14, "work": [14, 30, 31, 37], "clemens": 14, "viserurdf": [14, 29], "lightweight": 14, "take": [14, 38], "load_robot_descript": 14, "subset": 14, "avail": [14, 15], "robot_model_list": 14, "panda_descript": 14, "ur10_descript": 14, "ur3_descript": 14, "ur5_descript": 14, "cassie_descript": 14, "skydio_x2_descript": 14, "allegro_hand_descript": 14, "barrett_hand_descript": 14, "robotiq_2f85_descript": 14, "atlas_drc_descript": 14, "atlas_v4_descript": 14, "draco3_descript": 14, "g1_descript": 14, "h1_descript": 14, "anymal_c_descript": 14, "go2_descript": 14, "mini_cheetah_descript": 14, "logic": [14, 32], "initial_angl": 14, "update_robot_model": 14, "robot_nam": 14, "loading_mod": 14, "add_mod": [14, 21, 30], "add_markdown": [14, 18, 19, 21, 30], "termin": [14, 32], "progress": [14, 32], "ad": [14, 31, 32, 34, 35, 36, 37], "u": [14, 26, 31, 32], "etc": [14, 33, 35], "urdf_or_path": [14, 29], "close": [14, 15, 20, 21, 32, 35, 37], "clear": [14, 25, 32], "joint_nam": 14, "get_actuated_joint_limit": [14, 29], "configur": [14, 15, 29, 30], "update_cfg": [14, 29], "robot_model_nam": 14, "model": [14, 16, 32], "reset_button": 14, "g": [14, 25, 32, 35], "zip": [14, 32], "d": [15, 32], "pyrealsense2": 15, "contextlib": 15, "npt": 15, "ignor": [15, 25, 28, 35], "realsense_pipelin": 15, "yield": 15, "pipelin": 15, "depth": [15, 29, 35], "config": 15, "pipeline_wrapp": 15, "resolv": [15, 30], "enable_stream": 15, "z16": 15, "rgb8": 15, "point_cloud_arrays_from_fram": 15, "depth_fram": 15, "color_fram": 15, "map": [15, 29, 32, 37], "process": 15, "could": [15, 16, 37], "tune": 15, "pointcloud": 15, "decim": [15, 32], "decimation_filt": 15, "set_opt": 15, "filter_magnitud": 15, "downsampl": [15, 16], "calcul": [15, 32], "intrins": [15, 25], "map_to": 15, "texture_uv": 15, "asanyarrai": 15, "get_texture_coordin": 15, "color_imag": 15, "get_data": 15, "color_h": 15, "color_w": 15, "aren": 15, "our": [15, 30, 31, 33, 35, 38], "clamp": 15, "pixel": 15, "clip": 15, "get_vertic": 15, "int32": 15, "10000000": 15, "wait": 15, "coher": 15, "wait_for_fram": 15, "get_depth_fram": 15, "get_color_fram": 15, "spars": 16, "reconstruct": 16, "download_colmap_garden": 16, "read_cameras_binari": 16, "read_images_binari": 16, "read_points3d_binari": 16, "colmap_path": 16, "colmap_garden": 16, "images_path": 16, "images_8": 16, "arg": 16, "factor": [16, 29, 35], "titlebar_cont": [16, 18, 25, 30], "info": [16, 32], "bin": 16, "points3d": 16, "gui_reset_up": 16, "hint": [16, 17, 30], "event": [16, 24, 27, 32, 34, 35, 36], "gui_point": 16, "50_000": 16, "gui_fram": 16, "gui_point_s": 16, "visualize_colmap": 16, "optim": 16, "ton": 16, "p_id": 16, "xyz": [16, 38], "points_select": 16, "choic": [16, 35], "replac": [16, 17, 32], "pcd": 16, "interpret": 16, "img_id": 16, "im": 16, "shuffl": [16, 32], "sort": [16, 32], "attach_callback": 16, "camerafrustumhandl": [16, 35, 36], "cam": 16, "camera_id": 16, "skip": [16, 32], "don": [16, 32, 34], "exist": 16, "image_filenam": 16, "qvec": 16, "tvec": 16, "pinhol": 16, "param": 16, "fx": 16, "fy": 16, "cx": 16, "cy": 16, "expect": 16, "got": 16, "need_upd": 16, "index": [17, 29, 32], "last": [17, 31, 32, 38], "matplotlib": 17, "grid_shap": 17, "x_valu": 17, "y_valu": 17, "add_swappable_mesh": 17, "swap": 17, "grai": [17, 30], "sphere": [17, 25, 27, 32, 35], "chosen": 17, "colormap": 17, "tab20": 17, "create_mesh": 17, "8": [17, 32], "add_box": [17, 27, 35], "sphere_": 17, "dimens": [17, 27, 32, 35, 38], "add_icospher": [17, 27, 35], "radiu": [17, 25, 27, 32, 35], "old": [17, 32], "becaus": 17, "same": [17, 30, 34, 35, 38], "light": [18, 32], "titlebarbutton": 18, "titlebarconfig": [18, 25, 30], "titlebarimag": 18, "href": 18, "studio": [18, 32], "project": [18, 25, 31, 38], "document": 18, "doc": [18, 33], "image_url_light": 18, "_static": 18, "logo": [18, 30], "image_url_dark": 18, "dark": [18, 30], "image_alt": 18, "titlebar_them": 18, "gui_theme_cod": 18, "yet": 18, "titlebar": 18, "dark_mod": [18, 20, 27, 30], "mode": [18, 30], "show_logo": [18, 30], "show_share_button": [18, 30], "brand_color": [18, 25, 30], "brand": [18, 30, 32], "230": 18, "layout": [18, 28, 30, 32], "fix": [18, 30, 35], "control_width": [18, 30], "medium": [18, 30, 32], "larg": [18, 30, 32], "synchronize_them": 18, "ha": 19, "mdx": 19, "markdown_count": 19, "absolut": 19, "blurb": 19, "markdown_sourc": 19, "mdx_exampl": 19, "read_text": 19, "markdown_blurb": 19, "image_root": [19, 30], "add_3d_gui_contain": [20, 35], "allow": [20, 31, 35, 37], "standard": [20, 35, 38], "incorpor": 20, "action": [20, 38], "perform": [20, 32], "displayed_3d_contain": 20, "gui3dcontainerhandl": [20, 35, 36], "previous": [20, 34], "go_to": 20, "go": [20, 28, 30, 31, 32], "randomize_orient": 20, "bit": 20, "below": [21, 30], "titl": [21, 28, 30], "gui_titl": 21, "my": [21, 32], "modal_button": 21, "insid": [21, 25, 35], "2d": [22, 25, 30, 35, 36, 37, 38], "occlud": 22, "geometri": [22, 29, 32], "creation": [22, 25, 27, 35], "squar": [22, 32, 35, 38], "middl": [22, 32], "portal": 22, "250": 22, "750": 22, "cube": [22, 32], "ball": [23, 32], "add_spline_catmull_rom": [23, 24, 27, 35], "catmull_": [23, 24], "tension": [23, 24, 35], "line_width": [23, 24, 35], "segment": [23, 35], "control_point": [23, 35], "add_spline_cubic_bezi": [23, 35], "cubic_bezier_": 23, "gif": [24, 32], "720": 24, "1280": 24, "imwrit": 24, "extens": 24, "specifi": [25, 30, 32], "intersect": [25, 32], "cast": [25, 32], "theme": 25, "130": 25, "150": 25, "mesh_handl": 25, "hit_pos_handl": 25, "glbhandl": [25, 35, 36], "oper": [25, 38], "per": 25, "basi": 25, "global": [25, 26, 30, 35], "give": 25, "nice": 25, "click_button_handl": 25, "on_pointer_ev": [25, 35], "r_world_mesh": 25, "r_mesh_world": 25, "intersector": 25, "ray_triangl": 25, "raymeshintersector": 25, "hit_po": 25, "intersects_loc": 25, "remove_pointer_callback": [25, 35], "hit": 25, "distanc": 25, "hit_pos_mesh": 25, "icospher": [25, 35], "vertex_color": 25, "hit_pos_": 25, "on_pointer_callback_remov": [25, 35], "rect": [25, 35], "paint_button_handl": 25, "paint": [25, 32], "put": [25, 32], "r_camera_world": 25, "hstack": 25, "onto": [25, 34], "vertices_proj": 25, "tan": 25, "sure": 25, "lie": [25, 38], "onc": [25, 32, 35], "mask": [25, 29, 32], "whether": [25, 30, 35, 36], "9": [25, 32], "clear_button_handl": 25, "gui_up": 26, "player": [27, 32], "play_connect_4": 27, "tic": [27, 32], "tac": [27, 32], "toe": 27, "play_tic_tac_to": 27, "num_row": 27, "6": [27, 28, 32, 38], "num_col": 27, "whose_turn": 27, "red": [27, 30], "yellow": [27, 30], "pieces_in_col": 27, "board": [27, 32], "col": 27, "row": [27, 32], "annulu": 27, "45": [27, 32], "55": 27, "125": 27, "from_y_radian": [27, 38], "column": [27, 32], "setup_column": 27, "drop": [27, 32], "piec": 27, "cylind": [27, 32], "game_piec": 27, "row_anim": 27, "o": [27, 32], "gridlin": 27, "127": 27, "from_z_radian": [27, 38], "draw_symbol": 27, "symbol": [27, 32], "draw": [27, 35], "cell": [27, 32, 35], "35": 27, "setup_cel": 27, "clickabl": 27, "plot": [28, 30], "express": 28, "px": 28, "graph_object": 28, "pil": 28, "create_sinusoidal_wav": 28, "figur": [28, 30, 31], "sinusoid": 28, "wave": [28, 32], "x_data": 28, "y_data": 28, "sin": [28, 38], "fig": 28, "line": [28, 32, 35], "margin": [28, 32], "tight": [28, 35], "automargin": 28, "update_layout": 28, "l": [28, 32], "reduc": 28, "line_plot_tim": 28, "line_plot": 28, "add_plotli": [28, 30], "imshow": 28, "scatter": 28, "scatter_3d": 28, "iri": 28, "sepal_length": 28, "sepal_width": 28, "petal_width": 28, "speci": 28, "legend": 28, "yanchor": 28, "top": [28, 32, 37], "xanchor": 28, "util": 29, "record3dfram": 29, "singl": [29, 34, 35, 37], "either": [29, 30, 35], "resiz": [29, 32, 35], "root_node_nam": 29, "root": [29, 30, 32, 34], "mesh_color_overrid": 29, "overrid": [29, 34], "order": [29, 30, 31, 32], "actuat": 29, "limit": [29, 35], "get_actuated_joint_nam": 29, "invidividu": [30, 35], "set_panel_label": 30, "appear": 30, "panel": [30, 31, 32, 37], "front": [30, 35], "bar": [30, 32], "boolean": [30, 35], "indic": [30, 35], "enabl": 30, "integ": [30, 37], "repres": [30, 35], "expand_by_default": 30, "guifolderhandl": [30, 31], "folder": [30, 31, 32], "popul": 30, "smallest": 30, "compon": [30, 32, 37], "guimodalhandl": 30, "modal": 30, "popup": 30, "guitabgrouphandl": [30, 31], "guimarkdownhandl": [30, 31], "markdown": [30, 31, 32], "guiplotlyhandl": [30, 31], "plotli": [30, 31], "instal": 30, "ratio": [30, 31, 32, 35], "pink": 30, "grape": 30, "violet": 30, "indigo": 30, "blue": 30, "cyan": 30, "green": [30, 32], "lime": 30, "orang": 30, "teal": 30, "iconnam": [30, 31, 32], "guibuttonhandl": [30, 31], "everi": 30, "back": [30, 32, 35], "hover": 30, "mime_typ": 30, "guiuploadbuttonhandl": 30, "filter": [30, 32], "sequenc": 30, "tliteralstr": 30, "guibuttongrouphandl": [30, 31], "tstring": 30, "intorfloat": 30, "user": [30, 31, 32], "bound": 30, "precis": [30, 38], "minimum": 30, "maximum": 30, "length": [30, 35, 38], "guidropdownhandl": [30, 31], "numer": 30, "provid": [30, 34, 35, 37], "string": [30, 35, 37], "min_rang": 30, "fixed_endpoint": 30, "endpoint": 30, "picker": [30, 32], "add_rgba": 30, "func": [31, 35, 36], "thread": [31, 32, 37], "__post_init__": 31, "regist": [31, 32, 34], "ourself": 31, "construct": [31, 38], "disallow": 31, "dictat": 31, "perman": [31, 36], "timestamp": 31, "temporarili": 31, "press": [31, 32], "cannot": 31, "style": [31, 32], "stringtyp": 31, "care": 31, "about": [31, 35], "consist": 31, "possibl": 31, "most": [31, 35], "flexibl": 31, "declar": 31, "guitabhandl": 31, "enum": 32, "alia": 32, "__new__": 32, "kwarg": 32, "referenc": 32, "tabler": 32, "subclass": [32, 34], "reason": 32, "thousand": [32, 35], "result": 32, "hundr": 32, "millisecond": 32, "icon_123": 32, "123": 32, "icon_24_hour": 32, "24": 32, "hour": 32, "icon_2fa": 32, "2fa": 32, "icon_360": 32, "360": 32, "icon_360_view": 32, "icon_3d_cube_spher": 32, "icon_3d_cube_sphere_off": 32, "off": 32, "icon_3d_rot": 32, "a_b": 32, "a_b_2": 32, "a_b_off": 32, "abacu": 32, "abacus_off": 32, "abc": [32, 34, 38], "access_point": 32, "access_point_off": 32, "accessible_off": 32, "accessible_off_fil": 32, "fill": 32, "activ": [32, 35], "activity_heartbeat": 32, "heartbeat": 32, "ad_2": 32, "ad_circl": 32, "ad_circle_fil": 32, "ad_circle_off": 32, "ad_fil": 32, "ad_off": 32, "address_book": 32, "book": 32, "address_book_off": 32, "adjust": 32, "adjustments_alt": 32, "alt": 32, "adjustments_bolt": 32, "bolt": 32, "adjustments_cancel": 32, "cancel": 32, "adjustments_check": 32, "adjustments_cod": 32, "adjustments_cog": 32, "cog": 32, "adjustments_dollar": 32, "dollar": 32, "adjustments_down": 32, "down": [32, 35], "adjustments_exclam": 32, "exclam": 32, "adjustments_fil": 32, "adjustments_heart": 32, "heart": 32, "adjustments_horizont": 32, "horizont": 32, "adjustments_minu": 32, "minu": 32, "adjustments_off": 32, "adjustments_paus": 32, "paus": 32, "adjustments_pin": 32, "pin": 32, "adjustments_plu": 32, "plu": 32, "adjustments_quest": 32, "question": 32, "adjustments_search": 32, "search": 32, "adjustments_shar": 32, "adjustments_star": 32, "star": 32, "adjustments_up": 32, "adjustments_x": 32, "aerial_lift": 32, "aerial": 32, "lift": 32, "affili": 32, "affiliate_fil": 32, "air_balloon": 32, "air": 32, "balloon": 32, "air_condit": 32, "condit": 32, "air_conditioning_dis": 32, "alarm": 32, "alarm_fil": 32, "alarm_minu": 32, "alarm_minus_fil": 32, "alarm_off": 32, "alarm_plu": 32, "alarm_plus_fil": 32, "alarm_snooz": 32, "snooz": 32, "alarm_snooze_fil": 32, "album": 32, "album_off": 32, "alert_circl": 32, "alert": 32, "alert_circle_fil": 32, "alert_hexagon": 32, "hexagon": 32, "alert_hexagon_fil": 32, "alert_octagon": 32, "octagon": 32, "alert_octagon_fil": 32, "alert_smal": 32, "alert_squar": 32, "alert_square_fil": 32, "alert_square_round": 32, "alert_square_rounded_fil": 32, "alert_triangl": 32, "triangl": 32, "alert_triangle_fil": 32, "alien": 32, "alien_fil": 32, "align_box_bottom_cent": 32, "align": 32, "center": 32, "align_box_bottom_center_fil": 32, "align_box_bottom_left": 32, "align_box_bottom_left_fil": 32, "align_box_bottom_right": 32, "align_box_bottom_right_fil": 32, "align_box_center_bottom": 32, "align_box_center_middl": 32, "align_box_center_middle_fil": 32, "align_box_center_stretch": 32, "stretch": 32, "align_box_center_top": 32, "align_box_left_bottom": 32, "align_box_left_bottom_fil": 32, "align_box_left_middl": 32, "align_box_left_middle_fil": 32, "align_box_left_stretch": 32, "align_box_left_top": 32, "align_box_left_top_fil": 32, "align_box_right_bottom": 32, "align_box_right_bottom_fil": 32, "align_box_right_middl": 32, "align_box_right_middle_fil": 32, "align_box_right_stretch": 32, "align_box_right_top": 32, "align_box_right_top_fil": 32, "align_box_top_cent": 32, "align_box_top_center_fil": 32, "align_box_top_left": 32, "align_box_top_left_fil": 32, "align_box_top_right": 32, "align_box_top_right_fil": 32, "align_cent": 32, "align_justifi": 32, "justifi": 32, "align_left": 32, "align_right": 32, "alpha": 32, "alphabet_cyril": 32, "alphabet": 32, "cyril": 32, "alphabet_greek": 32, "greek": 32, "alphabet_latin": 32, "latin": 32, "ambul": 32, "ampersand": 32, "analyz": 32, "analyze_fil": 32, "analyze_off": 32, "anchor": 32, "anchor_off": 32, "ankh": 32, "antenna": 32, "antenna_bars_1": 32, "antenna_bars_2": 32, "antenna_bars_3": 32, "antenna_bars_4": 32, "antenna_bars_5": 32, "antenna_bars_off": 32, "antenna_off": 32, "apertur": 32, "aperture_off": 32, "api_app": 32, "app": 32, "api_app_off": 32, "api_off": 32, "app_window": 32, "app_window_fil": 32, "appl": 32, "apps_fil": 32, "apps_off": 32, "archiv": 32, "archive_fil": 32, "archive_off": 32, "armchair": 32, "armchair_2": 32, "armchair_2_off": 32, "armchair_off": 32, "arrow_autofit_cont": 32, "arrow": 32, "autofit": 32, "arrow_autofit_content_fil": 32, "arrow_autofit_down": 32, "arrow_autofit_height": 32, "arrow_autofit_left": 32, "arrow_autofit_right": 32, "arrow_autofit_up": 32, "arrow_autofit_width": 32, "arrow_back": 32, "arrow_back_up": 32, "arrow_back_up_doubl": 32, "doubl": [32, 35], "arrow_badge_down": 32, "badg": 32, "arrow_badge_down_fil": 32, "arrow_badge_left": 32, "arrow_badge_left_fil": 32, "arrow_badge_right": 32, "arrow_badge_right_fil": 32, "arrow_badge_up": 32, "arrow_badge_up_fil": 32, "arrow_bar_both": 32, "arrow_bar_down": 32, "arrow_bar_left": 32, "arrow_bar_right": 32, "arrow_bar_to_down": 32, "arrow_bar_to_left": 32, "arrow_bar_to_right": 32, "arrow_bar_to_up": 32, "arrow_bar_up": 32, "arrow_bear_left": 32, "bear": 32, "arrow_bear_left_2": 32, "arrow_bear_right": 32, "arrow_bear_right_2": 32, "arrow_big_down": 32, "big": 32, "arrow_big_down_fil": 32, "arrow_big_down_lin": 32, "arrow_big_down_line_fil": 32, "arrow_big_down_lines_fil": 32, "arrow_big_left": 32, "arrow_big_left_fil": 32, "arrow_big_left_lin": 32, "arrow_big_left_line_fil": 32, "arrow_big_left_lines_fil": 32, "arrow_big_right": 32, "arrow_big_right_fil": 32, "arrow_big_right_lin": 32, "arrow_big_right_line_fil": 32, "arrow_big_right_lines_fil": 32, "arrow_big_up": 32, "arrow_big_up_fil": 32, "arrow_big_up_lin": 32, "arrow_big_up_line_fil": 32, "arrow_big_up_lines_fil": 32, "arrow_bounc": 32, "bounc": 32, "arrow_capsul": 32, "capsul": 32, "arrow_curve_left": 32, "curv": [32, 35], "arrow_curve_right": 32, "arrow_down": 32, "arrow_down_bar": 32, "arrow_down_circl": 32, "arrow_down_left": 32, "arrow_down_left_circl": 32, "arrow_down_rhombu": 32, "rhombu": 32, "arrow_down_right": 32, "arrow_down_right_circl": 32, "arrow_down_squar": 32, "arrow_down_tail": 32, "tail": 32, "arrow_elbow_left": 32, "elbow": 32, "arrow_elbow_right": 32, "arrow_fork": 32, "fork": 32, "arrow_forward": 32, "arrow_forward_up": 32, "arrow_forward_up_doubl": 32, "arrow_guid": 32, "guid": 32, "arrow_iter": 32, "arrow_left": 32, "arrow_left_bar": 32, "arrow_left_circl": 32, "arrow_left_rhombu": 32, "arrow_left_right": 32, "arrow_left_squar": 32, "arrow_left_tail": 32, "arrow_loop_left": 32, "arrow_loop_left_2": 32, "arrow_loop_right": 32, "arrow_loop_right_2": 32, "arrow_merg": 32, "merg": 32, "arrow_merge_both": 32, "arrow_merge_left": 32, "arrow_merge_right": 32, "arrow_move_down": 32, "arrow_move_left": 32, "arrow_move_right": 32, "arrow_move_up": 32, "arrow_narrow_down": 32, "narrow": 32, "arrow_narrow_left": 32, "arrow_narrow_right": 32, "arrow_narrow_up": 32, "arrow_ramp_left": 32, "ramp": 32, "arrow_ramp_left_2": 32, "arrow_ramp_left_3": 32, "arrow_ramp_right": 32, "arrow_ramp_right_2": 32, "arrow_ramp_right_3": 32, "arrow_right": 32, "arrow_right_bar": 32, "arrow_right_circl": 32, "arrow_right_rhombu": 32, "arrow_right_squar": 32, "arrow_right_tail": 32, "arrow_rotary_first_left": 32, "rotari": 32, "arrow_rotary_first_right": 32, "arrow_rotary_last_left": 32, "arrow_rotary_last_right": 32, "arrow_rotary_left": 32, "arrow_rotary_right": 32, "arrow_rotary_straight": 32, "straight": 32, "arrow_roundabout_left": 32, "roundabout": 32, "arrow_roundabout_right": 32, "arrow_sharp_turn_left": 32, "sharp": 32, "turn": 32, "arrow_sharp_turn_right": 32, "arrow_up": 32, "arrow_up_bar": 32, "arrow_up_circl": 32, "arrow_up_left": 32, "arrow_up_left_circl": 32, "arrow_up_rhombu": 32, "arrow_up_right": 32, "arrow_up_right_circl": 32, "arrow_up_squar": 32, "arrow_up_tail": 32, "arrow_wave_left_down": 32, "arrow_wave_left_up": 32, "arrow_wave_right_down": 32, "arrow_wave_right_up": 32, "arrow_zig_zag": 32, "zig": 32, "zag": 32, "arrows_cross": 32, "cross": 32, "arrows_diagon": 32, "diagon": 32, "arrows_diagonal_2": 32, "arrows_diagonal_minim": 32, "minim": 32, "arrows_diagonal_minimize_2": 32, "arrows_diff": 32, "diff": 32, "arrows_double_ne_sw": 32, "ne": 32, "sw": 32, "arrows_double_nw_s": 32, "nw": 32, "arrows_double_se_nw": 32, "arrows_double_sw_n": 32, "arrows_down": 32, "arrows_down_up": 32, "arrows_exchang": 32, "exchang": 32, "arrows_exchange_2": 32, "arrows_horizont": 32, "arrows_join": 32, "join": 32, "arrows_join_2": 32, "arrows_left": 32, "arrows_left_down": 32, "arrows_left_right": 32, "arrows_maxim": 32, "maxim": 32, "arrows_minim": 32, "arrows_mov": 32, "arrows_move_horizont": 32, "arrows_move_vert": 32, "arrows_random": 32, "arrows_right": 32, "arrows_right_down": 32, "arrows_right_left": 32, "arrows_shuffl": 32, "arrows_shuffle_2": 32, "arrows_sort": 32, "arrows_split": 32, "split": 32, "arrows_split_2": 32, "arrows_transfer_down": 32, "transfer": 32, "arrows_transfer_up": 32, "arrows_up": 32, "arrows_up_down": 32, "arrows_up_left": 32, "arrows_up_right": 32, "arrows_vert": 32, "artboard": 32, "artboard_fil": 32, "artboard_off": 32, "articl": 32, "article_filled_fil": 32, "article_off": 32, "aspect_ratio": 32, "aspect_ratio_fil": 32, "aspect_ratio_off": 32, "assembli": 32, "assembly_off": 32, "asterisk": 32, "asterisk_simpl": 32, "AT": 32, "at_off": 32, "atom_2": 32, "atom_2_fil": 32, "atom_off": 32, "augmented_r": 32, "augment": 32, "realiti": 32, "augmented_reality_2": 32, "augmented_reality_off": 32, "award": 32, "award_fil": 32, "award_off": 32, "axis_x": 32, "axis_i": 32, "baby_bottl": 32, "babi": 32, "bottl": 32, "baby_carriag": 32, "carriag": 32, "backho": 32, "backpack": 32, "backpack_off": 32, "backslash": 32, "backspac": 32, "backspace_fil": 32, "badge_3d": 32, "badge_4k": 32, "4k": 32, "badge_8k": 32, "8k": 32, "badge_ad": 32, "badge_ar": 32, "badge_cc": 32, "cc": 32, "badge_fil": 32, "badge_hd": 32, "hd": 32, "badge_off": 32, "badge_sd": 32, "sd": 32, "badge_tm": 32, "tm": 32, "badge_vo": 32, "vo": 32, "badge_vr": 32, "vr": 32, "badge_wc": 32, "wc": 32, "badges_fil": 32, "badges_off": 32, "baguett": 32, "ball_american_footbal": 32, "american": 32, "footbal": 32, "ball_american_football_off": 32, "ball_basebal": 32, "basebal": 32, "ball_basketbal": 32, "basketbal": 32, "ball_bowl": 32, "bowl": 32, "ball_footbal": 32, "ball_football_off": 32, "ball_tenni": 32, "tenni": 32, "ball_volleybal": 32, "volleybal": 32, "balloon_fil": 32, "balloon_off": 32, "ballpen": 32, "ballpen_fil": 32, "ballpen_off": 32, "ban": 32, "bandag": 32, "bandage_fil": 32, "bandage_off": 32, "barbel": 32, "barbell_off": 32, "barcod": 32, "barcode_off": 32, "barrel": 32, "barrel_off": 32, "barrier_block": 32, "barrier": 32, "barrier_block_off": 32, "baselin": 32, "baseline_density_larg": 32, "densiti": 32, "baseline_density_medium": 32, "baseline_density_smal": 32, "basket": 32, "basket_fil": 32, "basket_off": 32, "bat": 32, "bath": 32, "bath_fil": 32, "bath_off": 32, "batteri": 32, "battery_1": 32, "battery_1_fil": 32, "battery_2": 32, "battery_2_fil": 32, "battery_3": 32, "battery_3_fil": 32, "battery_4": 32, "battery_4_fil": 32, "battery_automot": 32, "automot": 32, "battery_charg": 32, "charg": 32, "battery_charging_2": 32, "battery_eco": 32, "eco": 32, "battery_fil": 32, "battery_off": 32, "beach": 32, "beach_off": 32, "bed": 32, "bed_fil": 32, "bed_off": 32, "beer": 32, "beer_fil": 32, "beer_off": 32, "bell": 32, "bell_bolt": 32, "bell_cancel": 32, "bell_check": 32, "bell_cod": 32, "bell_cog": 32, "bell_dollar": 32, "bell_down": 32, "bell_exclam": 32, "bell_fil": 32, "bell_heart": 32, "bell_minu": 32, "bell_minus_fil": 32, "bell_off": 32, "bell_paus": 32, "bell_pin": 32, "bell_plu": 32, "bell_plus_fil": 32, "bell_quest": 32, "bell_ring": 32, "ring": 32, "bell_ringing_2": 32, "bell_ringing_2_fil": 32, "bell_ringing_fil": 32, "bell_school": 32, "school": 32, "bell_search": 32, "bell_shar": 32, "bell_star": 32, "bell_up": 32, "bell_x": 32, "bell_x_fil": 32, "bell_z": 32, "bell_z_fil": 32, "bibl": 32, "bike": 32, "bike_off": 32, "binari": [32, 35], "binary_off": 32, "binary_tre": 32, "binary_tree_2": 32, "biohazard": 32, "biohazard_off": 32, "blade": 32, "blade_fil": 32, "bleach": 32, "bleach_chlorin": 32, "chlorin": 32, "bleach_no_chlorin": 32, "bleach_off": 32, "blockquot": 32, "bluetooth": 32, "bluetooth_connect": 32, "bluetooth_off": 32, "bluetooth_x": 32, "blur": 32, "blur_off": 32, "bmp": 32, "bold": 32, "bold_off": 32, "bolt_off": 32, "bomb": 32, "bomb_fil": 32, "bone": 32, "bone_off": 32, "bong": 32, "bong_off": 32, "book_2": 32, "book_download": 32, "book_fil": 32, "book_off": 32, "book_upload": 32, "bookmark": 32, "bookmark_edit": 32, "bookmark_fil": 32, "bookmark_minu": 32, "bookmark_off": 32, "bookmark_plu": 32, "bookmark_quest": 32, "bookmarks_off": 32, "books_off": 32, "border_al": 32, "border": 32, "border_bottom": 32, "border_corn": 32, "border_horizont": 32, "border_inn": 32, "inner": 32, "border_left": 32, "border_non": 32, "border_out": 32, "outer": 32, "border_radiu": 32, "border_right": 32, "border_sid": 32, "side": [32, 35], "border_styl": 32, "border_style_2": 32, "border_top": 32, "border_vert": 32, "bottle_fil": 32, "bottle_off": 32, "bounce_left": 32, "bounce_right": 32, "bow": 32, "box_align_bottom": 32, "box_align_bottom_fil": 32, "box_align_bottom_left": 32, "box_align_bottom_left_fil": 32, "box_align_bottom_right": 32, "box_align_bottom_right_fil": 32, "box_align_left": 32, "box_align_left_fil": 32, "box_align_right": 32, "box_align_right_fil": 32, "box_align_top": 32, "box_align_top_fil": 32, "box_align_top_left": 32, "box_align_top_left_fil": 32, "box_align_top_right": 32, "box_align_top_right_fil": 32, "box_margin": 32, "box_model": 32, "box_model_2": 32, "box_model_2_off": 32, "box_model_off": 32, "box_multipl": 32, "multipl": [32, 35, 38], "box_multiple_0": 32, "box_multiple_1": 32, "box_multiple_2": 32, "box_multiple_3": 32, "box_multiple_4": 32, "box_multiple_5": 32, "box_multiple_6": 32, "box_multiple_7": 32, "box_multiple_8": 32, "box_multiple_9": 32, "box_off": 32, "box_pad": 32, "pad": 32, "box_seam": 32, "seam": 32, "brace": 32, "braces_off": 32, "bracket": 32, "brackets_contain": 32, "brackets_contain_end": 32, "brackets_contain_start": 32, "brackets_off": 32, "braill": 32, "brain": 32, "brand_4chan": 32, "4chan": 32, "brand_abstract": 32, "abstract": [32, 34, 38], "brand_adob": 32, "adob": 32, "brand_adonis_j": 32, "adoni": 32, "brand_airbnb": 32, "airbnb": 32, "brand_airt": 32, "airtabl": 32, "brand_algolia": 32, "algolia": 32, "brand_alipai": 32, "alipai": 32, "brand_alpine_j": 32, "alpin": 32, "brand_amazon": 32, "amazon": 32, "brand_amd": 32, "amd": 32, "brand_amigo": 32, "amigo": 32, "brand_among_u": 32, "among": 32, "brand_android": 32, "android": 32, "brand_angular": 32, "angular": 32, "brand_ans": 32, "ansibl": 32, "brand_ao3": 32, "ao3": 32, "brand_appgalleri": 32, "appgalleri": 32, "brand_appl": 32, "brand_apple_arcad": 32, "arcad": 32, "brand_apple_podcast": 32, "podcast": 32, "brand_appstor": 32, "appstor": 32, "brand_asana": 32, "asana": 32, "brand_aw": 32, "aw": 32, "brand_azur": 32, "azur": 32, "brand_backbon": 32, "backbon": 32, "brand_badoo": 32, "badoo": 32, "brand_baidu": 32, "baidu": 32, "brand_bandcamp": 32, "bandcamp": 32, "brand_bandlab": 32, "bandlab": 32, "brand_beat": 32, "beat": 32, "brand_beh": 32, "behanc": 32, "brand_bilibili": 32, "bilibili": 32, "brand_bin": 32, "binanc": 32, "brand_b": 32, "bing": 32, "brand_bitbucket": 32, "bitbucket": 32, "brand_blackberri": 32, "blackberri": 32, "brand_blend": 32, "brand_blogg": 32, "blogger": 32, "brand_book": 32, "brand_bootstrap": 32, "bootstrap": 32, "brand_bulma": 32, "bulma": 32, "brand_bumbl": 32, "bumbl": 32, "brand_bunpo": 32, "bunpo": 32, "brand_c_sharp": 32, "c": 32, "brand_cak": 32, "cake": 32, "brand_cakephp": 32, "cakephp": 32, "brand_campaignmonitor": 32, "campaignmonitor": 32, "brand_carbon": 32, "carbon": 32, "brand_cashapp": 32, "cashapp": 32, "brand_chrom": 32, "chrome": 32, "brand_cinema_4d": 32, "cinema": 32, "brand_citymapp": 32, "citymapp": 32, "brand_cloudflar": 32, "cloudflar": 32, "brand_codecov": 32, "codecov": 32, "brand_codepen": 32, "codepen": 32, "brand_codesandbox": 32, "codesandbox": 32, "brand_cohost": 32, "cohost": 32, "brand_coinbas": 32, "coinbas": 32, "brand_comedy_centr": 32, "comedi": 32, "central": 32, "brand_coreo": 32, "coreo": 32, "brand_couchdb": 32, "couchdb": 32, "brand_couchsurf": 32, "couchsurf": 32, "brand_cpp": 32, "cpp": 32, "brand_craft": 32, "craft": 32, "brand_crunchbas": 32, "crunchbas": 32, "brand_css3": 32, "css3": 32, "brand_ctemplar": 32, "ctemplar": 32, "brand_cucumb": 32, "cucumb": 32, "brand_cupra": 32, "cupra": 32, "brand_cypress": 32, "cypress": 32, "brand_d3": 32, "d3": 32, "brand_days_count": 32, "dai": 32, "brand_dco": 32, "dco": 32, "brand_debian": 32, "debian": 32, "brand_deez": 32, "deezer": 32, "brand_deliveroo": 32, "deliveroo": 32, "brand_deno": 32, "deno": 32, "brand_denodo": 32, "denodo": 32, "brand_deviantart": 32, "deviantart": 32, "brand_digg": 32, "digg": 32, "brand_dingtalk": 32, "dingtalk": 32, "brand_discord": 32, "discord": 32, "brand_discord_fil": 32, "brand_disnei": 32, "disnei": 32, "brand_disqu": 32, "disqu": 32, "brand_django": 32, "django": 32, "brand_dock": 32, "docker": 32, "brand_doctrin": 32, "doctrin": 32, "brand_dolby_digit": 32, "dolbi": 32, "digit": 32, "brand_douban": 32, "douban": 32, "brand_dribbbl": 32, "dribbbl": 32, "brand_dribbble_fil": 32, "brand_drop": 32, "brand_drup": 32, "drupal": 32, "brand_edg": 32, "edg": 32, "brand_elast": 32, "elast": 32, "brand_electronic_art": 32, "electron": 32, "art": 32, "brand_emb": 32, "ember": 32, "brand_envato": 32, "envato": 32, "brand_etsi": 32, "etsi": 32, "brand_evernot": 32, "evernot": 32, "brand_facebook": 32, "facebook": 32, "brand_facebook_fil": 32, "brand_feedli": 32, "feedli": 32, "brand_figma": 32, "figma": 32, "brand_filezilla": 32, "filezilla": 32, "brand_find": 32, "finder": 32, "brand_firebas": 32, "firebas": 32, "brand_firefox": 32, "firefox": 32, "brand_fiverr": 32, "fiverr": 32, "brand_flickr": 32, "flickr": 32, "brand_flightradar24": 32, "flightradar24": 32, "brand_flipboard": 32, "flipboard": 32, "brand_flutt": 32, "flutter": 32, "brand_fortnit": 32, "fortnit": 32, "brand_foursquar": 32, "foursquar": 32, "brand_fram": 32, "brand_framer_mot": 32, "motion": 32, "brand_funim": 32, "funim": 32, "brand_gatsbi": 32, "gatsbi": 32, "brand_git": 32, "git": 32, "brand_github": 32, "brand_github_copilot": 32, "copilot": 32, "brand_github_fil": 32, "brand_gitlab": 32, "gitlab": 32, "brand_gmail": 32, "gmail": 32, "brand_golang": 32, "golang": 32, "brand_googl": 32, "googl": 32, "brand_google_analyt": 32, "analyt": 32, "brand_google_big_queri": 32, "queri": 32, "brand_google_dr": 32, "drive": 32, "brand_google_fit": 32, "fit": 32, "brand_google_hom": 32, "home": 32, "brand_google_map": 32, "brand_google_on": 32, "brand_google_photo": 32, "photo": 32, "brand_google_plai": 32, "brand_google_podcast": 32, "brand_grammarli": 32, "grammarli": 32, "brand_graphql": 32, "graphql": 32, "brand_gravatar": 32, "gravatar": 32, "brand_grindr": 32, "grindr": 32, "brand_guardian": 32, "guardian": 32, "brand_gumroad": 32, "gumroad": 32, "brand_hbo": 32, "hbo": 32, "brand_headlessui": 32, "headlessui": 32, "brand_hexo": 32, "hexo": 32, "brand_hipchat": 32, "hipchat": 32, "brand_html5": 32, "html5": 32, "brand_inertia": 32, "inertia": 32, "brand_instagram": 32, "instagram": 32, "brand_intercom": 32, "intercom": 32, "brand_itch": 32, "itch": 32, "brand_javascript": 32, "javascript": 32, "brand_juejin": 32, "juejin": 32, "brand_kbin": 32, "kbin": 32, "brand_kick": 32, "kick": 32, "brand_kickstart": 32, "kickstart": 32, "brand_kotlin": 32, "kotlin": 32, "brand_laravel": 32, "laravel": 32, "brand_lastfm": 32, "lastfm": 32, "brand_leetcod": 32, "leetcod": 32, "brand_letterboxd": 32, "letterboxd": 32, "brand_lin": 32, "brand_linkedin": 32, "linkedin": 32, "brand_linktre": 32, "linktre": 32, "brand_linqpad": 32, "linqpad": 32, "brand_loom": 32, "loom": 32, "brand_mailgun": 32, "mailgun": 32, "brand_mantin": 32, "mantin": 32, "brand_mastercard": 32, "mastercard": 32, "brand_mastodon": 32, "mastodon": 32, "brand_matrix": 32, "brand_mcdonald": 32, "mcdonald": 32, "brand_medium": 32, "brand_merced": 32, "merced": 32, "brand_messeng": 32, "messeng": 32, "brand_meta": 32, "meta": 32, "brand_microsoft_team": 32, "microsoft": 32, "team": 32, "brand_minecraft": 32, "minecraft": 32, "brand_miniprogram": 32, "miniprogram": 32, "brand_mixpanel": 32, "mixpanel": 32, "brand_mondai": 32, "mondai": 32, "brand_mongodb": 32, "mongodb": 32, "brand_my_oppo": 32, "oppo": 32, "brand_mysql": 32, "mysql": 32, "brand_national_geograph": 32, "nation": 32, "geograph": 32, "brand_nem": 32, "nem": 32, "brand_netbean": 32, "netbean": 32, "brand_netease_mus": 32, "neteas": 32, "music": 32, "brand_netflix": 32, "netflix": 32, "brand_nexo": 32, "nexo": 32, "brand_nextcloud": 32, "nextcloud": 32, "brand_nextj": 32, "nextj": 32, "brand_nodej": 32, "brand_nord_vpn": 32, "nord": 32, "vpn": 32, "brand_not": 32, "notion": 32, "brand_npm": 32, "npm": 32, "brand_nuxt": 32, "nuxt": 32, "brand_nytim": 32, "nytim": 32, "brand_oauth": 32, "oauth": 32, "brand_offic": 32, "offic": 32, "brand_ok_ru": 32, "ok": 32, "ru": 32, "brand_onedr": 32, "onedr": 32, "brand_onlyfan": 32, "onlyfan": 32, "brand_open_sourc": 32, "brand_openai": 32, "openai": 32, "brand_openvpn": 32, "openvpn": 32, "brand_opera": 32, "opera": 32, "brand_pagekit": 32, "pagekit": 32, "brand_patreon": 32, "patreon": 32, "brand_payp": 32, "paypal": 32, "brand_paypal_fil": 32, "brand_paypai": 32, "paypai": 32, "brand_peanut": 32, "peanut": 32, "brand_pepsi": 32, "pepsi": 32, "brand_php": 32, "php": 32, "brand_picsart": 32, "picsart": 32, "brand_pinterest": 32, "pinterest": 32, "brand_planetscal": 32, "planetscal": 32, "brand_pocket": 32, "pocket": 32, "brand_polym": 32, "polym": 32, "brand_powershel": 32, "powershel": 32, "brand_prisma": 32, "prisma": 32, "brand_producthunt": 32, "producthunt": 32, "brand_pushbullet": 32, "pushbullet": 32, "brand_pushov": 32, "pushov": 32, "brand_python": 32, "brand_qq": 32, "qq": 32, "brand_radix_ui": 32, "radix": 32, "brand_react": 32, "brand_react_n": 32, "nativ": 32, "brand_reason": 32, "brand_reddit": 32, "reddit": 32, "brand_redhat": 32, "redhat": 32, "brand_redux": 32, "redux": 32, "brand_revolut": 32, "revolut": 32, "brand_rumbl": 32, "rumbl": 32, "brand_rust": 32, "rust": 32, "brand_safari": 32, "safari": 32, "brand_samsungpass": 32, "samsungpass": 32, "brand_sass": 32, "sass": 32, "brand_sentri": 32, "sentri": 32, "brand_sharik": 32, "sharik": 32, "brand_shazam": 32, "shazam": 32, "brand_shope": 32, "shope": 32, "brand_sketch": 32, "sketch": 32, "brand_skyp": 32, "skype": 32, "brand_slack": 32, "slack": 32, "brand_snapchat": 32, "snapchat": 32, "brand_snapse": 32, "snapse": 32, "brand_snowflak": 32, "snowflak": 32, "brand_socket_io": 32, "socket": 32, "io": 32, "brand_solidj": 32, "solidj": 32, "brand_soundcloud": 32, "soundcloud": 32, "brand_spacehei": 32, "spacehei": 32, "brand_speedtest": 32, "speedtest": 32, "brand_spotifi": 32, "spotifi": 32, "brand_stackoverflow": 32, "stackoverflow": 32, "brand_stackshar": 32, "stackshar": 32, "brand_steam": 32, "steam": 32, "brand_storj": 32, "storj": 32, "brand_storybook": 32, "storybook": 32, "brand_storytel": 32, "storytel": 32, "brand_strava": 32, "strava": 32, "brand_strip": 32, "stripe": 32, "brand_sublime_text": 32, "sublim": 32, "brand_sugar": 32, "sugar": 32, "brand_supabas": 32, "supabas": 32, "brand_superhuman": 32, "superhuman": 32, "brand_supernova": 32, "supernova": 32, "brand_surfshark": 32, "surfshark": 32, "brand_svelt": 32, "svelt": 32, "brand_swift": 32, "swift": 32, "brand_symfoni": 32, "symfoni": 32, "brand_tabl": 32, "brand_tailwind": 32, "tailwind": 32, "brand_taobao": 32, "taobao": 32, "brand_t": 32, "ted": 32, "brand_telegram": 32, "telegram": 32, "brand_terraform": 32, "terraform": 32, "brand_teth": 32, "tether": 32, "brand_threej": 32, "threej": 32, "brand_tid": 32, "tidal": 32, "brand_tikto_fil": 32, "tikto": 32, "brand_tiktok": 32, "tiktok": 32, "brand_tind": 32, "tinder": 32, "brand_topbuzz": 32, "topbuzz": 32, "brand_torchain": 32, "torchain": 32, "brand_toyota": 32, "toyota": 32, "brand_trello": 32, "trello": 32, "brand_tripadvisor": 32, "tripadvisor": 32, "brand_tumblr": 32, "tumblr": 32, "brand_twilio": 32, "twilio": 32, "brand_twitch": 32, "twitch": 32, "brand_twitt": 32, "twitter": 32, "brand_twitter_fil": 32, "brand_typescript": 32, "brand_ub": 32, "uber": 32, "brand_ubuntu": 32, "ubuntu": 32, "brand_un": 32, "uniti": 32, "brand_unsplash": 32, "unsplash": 32, "brand_upwork": 32, "upwork": 32, "brand_valor": 32, "valor": 32, "brand_vercel": 32, "vercel": 32, "brand_vimeo": 32, "vimeo": 32, "brand_vint": 32, "vint": 32, "brand_visa": 32, "visa": 32, "brand_visual_studio": 32, "brand_vit": 32, "vite": 32, "brand_vivaldi": 32, "vivaldi": 32, "brand_vk": 32, "vk": 32, "brand_vlc": 32, "vlc": 32, "brand_volkswagen": 32, "volkswagen": 32, "brand_vsco": 32, "vsco": 32, "brand_vscod": 32, "vscode": 32, "brand_vu": 32, "vue": 32, "brand_walmart": 32, "walmart": 32, "brand_waz": 32, "waze": 32, "brand_webflow": 32, "webflow": 32, "brand_wechat": 32, "wechat": 32, "brand_weibo": 32, "weibo": 32, "brand_whatsapp": 32, "whatsapp": 32, "brand_wikipedia": 32, "wikipedia": 32, "brand_window": 32, "brand_windi": 32, "windi": 32, "brand_wish": 32, "wish": 32, "brand_wix": 32, "wix": 32, "brand_wordpress": 32, "wordpress": 32, "brand_xamarin": 32, "xamarin": 32, "brand_xbox": 32, "xbox": 32, "brand_x": 32, "xing": 32, "brand_yahoo": 32, "yahoo": 32, "brand_yandex": 32, "yandex": 32, "brand_yats": 32, "yats": 32, "brand_ycombin": 32, "ycombin": 32, "brand_youtub": 32, "youtub": 32, "brand_youtube_kid": 32, "kid": 32, "brand_zalando": 32, "zalando": 32, "brand_zapi": 32, "zapier": 32, "brand_zeit": 32, "zeit": 32, "brand_zhihu": 32, "zhihu": 32, "brand_zoom": 32, "zoom": 32, "brand_zulip": 32, "zulip": 32, "brand_zwift": 32, "zwift": 32, "bread": 32, "bread_off": 32, "briefcas": 32, "briefcase_off": 32, "bright": 32, "brightness_2": 32, "brightness_down": 32, "brightness_half": 32, "half": 32, "brightness_off": 32, "brightness_up": 32, "broadcast": [32, 34, 38], "broadcast_off": 32, "browser_check": 32, "browser_off": 32, "browser_plu": 32, "browser_x": 32, "brush": 32, "brush_off": 32, "bucket": 32, "bucket_droplet": 32, "droplet": 32, "bucket_off": 32, "bug": 32, "bug_off": 32, "building_arch": 32, "arch": 32, "building_bank": 32, "bank": 32, "building_bridg": 32, "bridg": 32, "building_bridge_2": 32, "building_broadcast_tow": 32, "tower": 32, "building_carousel": 32, "carousel": 32, "building_castl": 32, "castl": 32, "building_church": 32, "church": 32, "building_circu": 32, "circu": 32, "building_commun": 32, "building_cottag": 32, "cottag": 32, "building_est": 32, "estat": 32, "building_factori": 32, "factori": 32, "building_factory_2": 32, "building_fortress": 32, "fortress": 32, "building_hospit": 32, "hospit": 32, "building_lighthous": 32, "lighthous": 32, "building_monu": 32, "monument": 32, "building_mosqu": 32, "mosqu": 32, "building_pavilion": 32, "pavilion": 32, "building_skyscrap": 32, "skyscrap": 32, "building_stadium": 32, "stadium": 32, "building_stor": 32, "store": 32, "building_tunnel": 32, "tunnel": [32, 37], "building_warehous": 32, "warehous": 32, "building_wind_turbin": 32, "wind": 32, "turbin": 32, "bulb": 32, "bulb_fil": 32, "bulb_off": 32, "bulldoz": 32, "bu": 32, "bus_off": 32, "bus_stop": 32, "stop": [32, 34, 37], "businessplan": 32, "butterfli": 32, "cactu": 32, "cactus_off": 32, "cake_off": 32, "calculator_off": 32, "calendar": 32, "calendar_bolt": 32, "calendar_cancel": 32, "calendar_check": 32, "calendar_cod": 32, "calendar_cog": 32, "calendar_dollar": 32, "calendar_down": 32, "calendar_du": 32, "due": 32, "calendar_ev": 32, "calendar_exclam": 32, "calendar_heart": 32, "calendar_minu": 32, "calendar_off": 32, "calendar_paus": 32, "calendar_pin": 32, "calendar_plu": 32, "calendar_quest": 32, "calendar_repeat": 32, "repeat": 32, "calendar_search": 32, "calendar_shar": 32, "calendar_star": 32, "calendar_stat": 32, "stat": 32, "calendar_tim": 32, "calendar_up": 32, "calendar_x": 32, "camera_bolt": 32, "camera_cancel": 32, "camera_check": 32, "camera_cod": 32, "camera_cog": 32, "camera_dollar": 32, "camera_down": 32, "camera_exclam": 32, "camera_fil": 32, "camera_heart": 32, "camera_minu": 32, "camera_off": 32, "camera_paus": 32, "camera_pin": 32, "camera_plu": 32, "camera_quest": 32, "camera_rot": 32, "camera_search": 32, "camera_selfi": 32, "selfi": 32, "camera_shar": 32, "camera_star": 32, "camera_up": 32, "camera_x": 32, "camper": 32, "campfir": 32, "candl": 32, "candi": 32, "candy_off": 32, "cane": 32, "cannabi": 32, "capsule_horizont": 32, "capture_off": 32, "car": 32, "car_cran": 32, "crane": 32, "car_crash": 32, "crash": 32, "car_off": 32, "car_turbin": 32, "caravan": 32, "cardboard": 32, "cardboards_off": 32, "card": 32, "caret_down": 32, "caret": 32, "caret_left": 32, "caret_right": 32, "caret_up": 32, "carousel_horizont": 32, "carousel_horizontal_fil": 32, "carousel_vert": 32, "carousel_vertical_fil": 32, "carrot": 32, "carrot_off": 32, "cash": 32, "cash_banknot": 32, "banknot": 32, "cash_banknote_off": 32, "cash_off": 32, "cast_off": 32, "cat": 32, "categori": 32, "category_2": 32, "ce": 32, "ce_off": 32, "cell_signal_1": 32, "signal": 32, "cell_signal_2": 32, "cell_signal_3": 32, "cell_signal_4": 32, "cell_signal_5": 32, "cell_signal_off": 32, "certif": 32, "certificate_2": 32, "certificate_2_off": 32, "certificate_off": 32, "chair_director": 32, "chair": 32, "director": 32, "chalkboard": 32, "chalkboard_off": 32, "charging_pil": 32, "pile": 32, "chart_arc": 32, "chart": 32, "arc": 32, "chart_arcs_3": 32, "chart_area": 32, "area": 32, "chart_area_fil": 32, "chart_area_lin": 32, "chart_area_line_fil": 32, "chart_arrow": 32, "chart_arrows_vert": 32, "chart_bar": 32, "chart_bar_off": 32, "chart_bubbl": 32, "bubbl": 32, "chart_bubble_fil": 32, "chart_candl": 32, "chart_candle_fil": 32, "chart_circl": 32, "chart_donut": 32, "donut": 32, "chart_donut_2": 32, "chart_donut_3": 32, "chart_donut_4": 32, "chart_donut_fil": 32, "chart_dot": 32, "dot": 32, "chart_dots_2": 32, "chart_dots_3": 32, "chart_grid_dot": 32, "chart_histogram": 32, "histogram": 32, "chart_infograph": 32, "infograph": 32, "chart_lin": 32, "chart_pi": 32, "pie": 32, "chart_pie_2": 32, "chart_pie_3": 32, "chart_pie_4": 32, "chart_pie_fil": 32, "chart_pie_off": 32, "chart_ppf": 32, "ppf": 32, "chart_radar": 32, "radar": 32, "chart_sankei": 32, "sankei": 32, "chart_treemap": 32, "treemap": 32, "checklist": 32, "checkup_list": 32, "checkup": 32, "chees": 32, "chef_hat": 32, "chef": 32, "hat": 32, "chef_hat_off": 32, "cherri": 32, "cherry_fil": 32, "chess": 32, "chess_bishop": 32, "bishop": 32, "chess_bishop_fil": 32, "chess_fil": 32, "chess_k": 32, "king": 32, "chess_king_fil": 32, "chess_knight": 32, "knight": 32, "chess_knight_fil": 32, "chess_queen": 32, "queen": 32, "chess_queen_fil": 32, "chess_rook": 32, "rook": 32, "chess_rook_fil": 32, "chevron_compact_down": 32, "chevron": 32, "compact": 32, "chevron_compact_left": 32, "chevron_compact_right": 32, "chevron_compact_up": 32, "chevron_down": 32, "chevron_down_left": 32, "chevron_down_right": 32, "chevron_left": 32, "chevron_left_pip": 32, "pipe": 32, "chevron_right": 32, "chevron_right_pip": 32, "chevron_up": 32, "chevron_up_left": 32, "chevron_up_right": 32, "chevrons_down": 32, "chevrons_down_left": 32, "chevrons_down_right": 32, "chevrons_left": 32, "chevrons_right": 32, "chevrons_up": 32, "chevrons_up_left": 32, "chevrons_up_right": 32, "chisel": 32, "christmas_tre": 32, "christma": 32, "christmas_tree_off": 32, "circle_0_fil": 32, "circle_1_fil": 32, "circle_2_fil": 32, "circle_3_fil": 32, "circle_4_fil": 32, "circle_5_fil": 32, "circle_6_fil": 32, "circle_7_fil": 32, "circle_8_fil": 32, "circle_9_fil": 32, "circle_arrow_down": 32, "circle_arrow_down_fil": 32, "circle_arrow_down_left": 32, "circle_arrow_down_left_fil": 32, "circle_arrow_down_right": 32, "circle_arrow_down_right_fil": 32, "circle_arrow_left": 32, "circle_arrow_left_fil": 32, "circle_arrow_right": 32, "circle_arrow_right_fil": 32, "circle_arrow_up": 32, "circle_arrow_up_fil": 32, "circle_arrow_up_left": 32, "circle_arrow_up_left_fil": 32, "circle_arrow_up_right": 32, "circle_arrow_up_right_fil": 32, "circle_caret_down": 32, "circle_caret_left": 32, "circle_caret_right": 32, "circle_caret_up": 32, "circle_check": 32, "circle_check_fil": 32, "circle_chevron_down": 32, "circle_chevron_left": 32, "circle_chevron_right": 32, "circle_chevron_up": 32, "circle_chevrons_down": 32, "circle_chevrons_left": 32, "circle_chevrons_right": 32, "circle_chevrons_up": 32, "circle_dash": 32, "dash": 32, "circle_dot": 32, "circle_dot_fil": 32, "circle_fil": 32, "circle_half": 32, "circle_half_2": 32, "circle_half_vert": 32, "circle_kei": 32, "circle_key_fil": 32, "circle_letter_a": 32, "letter": 32, "circle_letter_b": 32, "circle_letter_c": 32, "circle_letter_d": 32, "circle_letter_": 32, "circle_letter_f": 32, "circle_letter_g": 32, "circle_letter_h": 32, "circle_letter_i": 32, "circle_letter_j": 32, "circle_letter_k": 32, "circle_letter_l": 32, "circle_letter_m": 32, "m": 32, "circle_letter_n": 32, "circle_letter_o": 32, "circle_letter_p": 32, "p": 32, "circle_letter_q": 32, "q": 32, "circle_letter_r": 32, "circle_letter_t": 32, "circle_letter_u": 32, "circle_letter_v": 32, "v": [32, 35], "circle_letter_w": 32, "circle_letter_x": 32, "circle_letter_z": 32, "circle_minu": 32, "circle_number_0": 32, "circle_number_1": 32, "circle_number_2": 32, "circle_number_3": 32, "circle_number_4": 32, "circle_number_5": 32, "circle_number_6": 32, "circle_number_7": 32, "circle_number_8": 32, "circle_number_9": 32, "circle_off": 32, "circle_plu": 32, "circle_rectangl": 32, "rectangl": 32, "circle_rectangle_off": 32, "circle_squar": 32, "circle_triangl": 32, "circle_x": 32, "circle_x_fil": 32, "circles_fil": 32, "circles_rel": 32, "relat": 32, "circuit_ammet": 32, "circuit": 32, "ammet": 32, "circuit_batteri": 32, "circuit_bulb": 32, "circuit_capacitor": 32, "capacitor": 32, "circuit_capacitor_polar": 32, "polar": 32, "circuit_cel": 32, "circuit_cell_plu": 32, "circuit_changeov": 32, "changeov": 32, "circuit_diod": 32, "diod": 32, "circuit_diode_zen": 32, "zener": 32, "circuit_ground": 32, "ground": [32, 35], "circuit_ground_digit": 32, "circuit_inductor": 32, "inductor": 32, "circuit_motor": 32, "motor": 32, "circuit_pushbutton": 32, "pushbutton": 32, "circuit_resistor": 32, "resistor": 32, "circuit_switch_clos": 32, "switch": [32, 38], "circuit_switch_open": 32, "circuit_voltmet": 32, "voltmet": 32, "clear_al": 32, "clear_format": 32, "clipboard": 32, "clipboard_check": 32, "clipboard_copi": 32, "clipboard_data": 32, "clipboard_heart": 32, "clipboard_list": 32, "clipboard_off": 32, "clipboard_plu": 32, "clipboard_text": 32, "clipboard_typographi": 32, "typographi": 32, "clipboard_x": 32, "clock": 32, "clock_2": 32, "clock_bolt": 32, "clock_cancel": 32, "clock_check": 32, "clock_cod": 32, "clock_cog": 32, "clock_dollar": 32, "clock_down": 32, "clock_edit": 32, "clock_exclam": 32, "clock_fil": 32, "clock_heart": 32, "clock_hour_1": 32, "clock_hour_10": 32, "clock_hour_11": 32, "11": 32, "clock_hour_12": 32, "12": 32, "clock_hour_2": 32, "clock_hour_3": 32, "clock_hour_4": 32, "clock_hour_5": 32, "clock_hour_6": 32, "clock_hour_7": 32, "clock_hour_8": 32, "clock_hour_9": 32, "clock_minu": 32, "clock_off": 32, "clock_paus": 32, "clock_pin": 32, "clock_plai": 32, "clock_plu": 32, "clock_quest": 32, "clock_record": 32, "record": 32, "clock_search": 32, "clock_shar": 32, "clock_shield": 32, "shield": 32, "clock_star": 32, "clock_stop": 32, "clock_up": 32, "clock_x": 32, "clothes_rack": 32, "cloth": 32, "rack": 32, "clothes_rack_off": 32, "cloud_bolt": 32, "cloud_cancel": 32, "cloud_check": 32, "cloud_cod": 32, "cloud_cog": 32, "cloud_comput": 32, "cloud_data_connect": 32, "cloud_dollar": 32, "cloud_down": 32, "cloud_download": 32, "cloud_exclam": 32, "cloud_fil": 32, "cloud_fog": 32, "fog": 32, "cloud_heart": 32, "cloud_lock": 32, "lock": 32, "cloud_lock_open": 32, "cloud_minu": 32, "cloud_off": 32, "cloud_paus": 32, "cloud_pin": 32, "cloud_plu": 32, "cloud_quest": 32, "cloud_rain": 32, "rain": 32, "cloud_search": 32, "cloud_shar": 32, "cloud_snow": 32, "snow": 32, "cloud_star": 32, "cloud_storm": 32, "storm": 32, "cloud_up": 32, "cloud_upload": 32, "cloud_x": 32, "clover": 32, "clover_2": 32, "club": 32, "clubs_fil": 32, "code_asterix": 32, "asterix": 32, "code_circl": 32, "code_circle_2": 32, "code_dot": 32, "code_minu": 32, "code_off": 32, "code_plu": 32, "coffe": 32, "coffee_off": 32, "coffin": 32, "coin": 32, "coin_bitcoin": 32, "bitcoin": 32, "coin_euro": 32, "euro": 32, "coin_monero": 32, "monero": 32, "coin_off": 32, "coin_pound": 32, "pound": 32, "coin_rupe": 32, "rupe": 32, "coin_yen": 32, "yen": 32, "coin_yuan": 32, "yuan": 32, "color_filt": 32, "color_pick": 32, "color_picker_off": 32, "color_swatch": 32, "swatch": 32, "color_swatch_off": 32, "column_insert_left": 32, "insert": 32, "column_insert_right": 32, "column_remov": 32, "columns_1": 32, "columns_2": 32, "columns_3": 32, "columns_off": 32, "comet": 32, "command": 32, "command_off": 32, "compass": 32, "compass_off": 32, "components_off": 32, "cone": 32, "cone_2": 32, "cone_off": 32, "cone_plu": 32, "confetti": 32, "confetti_off": 32, "confuciu": 32, "container_off": 32, "contrast": 32, "contrast_2": 32, "contrast_2_off": 32, "contrast_off": 32, "cooker": 32, "cooki": 32, "cookie_man": 32, "man": 32, "cookie_off": 32, "copy_off": 32, "copyleft": 32, "copyleft_fil": 32, "copyleft_off": 32, "copyright": 32, "copyright_fil": 32, "copyright_off": 32, "corner_down_left": 32, "corner_down_left_doubl": 32, "corner_down_right": 32, "corner_down_right_doubl": 32, "corner_left_down": 32, "corner_left_down_doubl": 32, "corner_left_up": 32, "corner_left_up_doubl": 32, "corner_right_down": 32, "corner_right_down_doubl": 32, "corner_right_up": 32, "corner_right_up_doubl": 32, "corner_up_left": 32, "corner_up_left_doubl": 32, "corner_up_right": 32, "corner_up_right_doubl": 32, "cpu": 32, "cpu_2": 32, "cpu_off": 32, "crane_off": 32, "creative_common": 32, "creativ": 32, "creative_commons_bi": 32, "creative_commons_nc": 32, "nc": 32, "creative_commons_nd": 32, "nd": 32, "creative_commons_off": 32, "creative_commons_sa": 32, "sa": 32, "creative_commons_zero": 32, "credit_card": 32, "credit": 32, "credit_card_off": 32, "cricket": 32, "crop": 32, "cross_fil": 32, "cross_off": 32, "crosshair": 32, "crown": 32, "crown_off": 32, "crutch": 32, "crutches_off": 32, "crystal_bal": 32, "crystal": 32, "csv": 32, "cube_off": 32, "cube_plu": 32, "cube_send": 32, "cube_unfold": 32, "unfold": 32, "cup": 32, "cup_off": 32, "curl": 32, "curly_loop": 32, "curli": 32, "currenc": 32, "currency_afghani": 32, "afghani": 32, "currency_bahraini": 32, "bahraini": 32, "currency_baht": 32, "baht": 32, "currency_bitcoin": 32, "currency_c": 32, "cent": 32, "currency_dinar": 32, "dinar": 32, "currency_dirham": 32, "dirham": 32, "currency_dogecoin": 32, "dogecoin": 32, "currency_dollar": 32, "currency_dollar_australian": 32, "australian": 32, "currency_dollar_brunei": 32, "brunei": 32, "currency_dollar_canadian": 32, "canadian": 32, "currency_dollar_guyanes": 32, "guyanes": 32, "currency_dollar_off": 32, "currency_dollar_singapor": 32, "singapor": 32, "currency_dollar_zimbabwean": 32, "zimbabwean": 32, "currency_dong": 32, "dong": 32, "currency_dram": 32, "dram": 32, "currency_ethereum": 32, "ethereum": 32, "currency_euro": 32, "currency_euro_off": 32, "currency_florin": 32, "florin": 32, "currency_forint": 32, "forint": 32, "currency_frank": 32, "frank": 32, "currency_guarani": 32, "guarani": 32, "currency_hryvnia": 32, "hryvnia": 32, "currency_iranian_ri": 32, "iranian": 32, "rial": 32, "currency_kip": 32, "kip": 32, "currency_krone_czech": 32, "krone": 32, "czech": 32, "currency_krone_danish": 32, "danish": 32, "currency_krone_swedish": 32, "swedish": 32, "currency_lari": 32, "lari": 32, "currency_leu": 32, "leu": 32, "currency_lira": 32, "lira": 32, "currency_litecoin": 32, "litecoin": 32, "currency_lyd": 32, "lyd": 32, "currency_manat": 32, "manat": 32, "currency_monero": 32, "currency_naira": 32, "naira": 32, "currency_nano": 32, "nano": 32, "currency_off": 32, "currency_paanga": 32, "paanga": 32, "currency_peso": 32, "peso": 32, "currency_pound": 32, "currency_pound_off": 32, "currency_quetz": 32, "quetzal": 32, "currency_r": 32, "real": 32, "currency_renminbi": 32, "renminbi": 32, "currency_rippl": 32, "rippl": 32, "currency_riy": 32, "riyal": 32, "currency_rubel": 32, "rubel": 32, "currency_rufiyaa": 32, "rufiyaa": 32, "currency_rupe": 32, "currency_rupee_nepales": 32, "nepales": 32, "currency_shekel": 32, "shekel": 32, "currency_solana": 32, "solana": 32, "currency_som": 32, "som": 32, "currency_taka": 32, "taka": 32, "currency_teng": 32, "teng": 32, "currency_tugrik": 32, "tugrik": 32, "currency_won": 32, "won": [32, 34], "currency_yen": 32, "currency_yen_off": 32, "currency_yuan": 32, "currency_zloti": 32, "zloti": 32, "current_loc": 32, "current_location_off": 32, "cursor_off": 32, "cursor": 32, "cursor_text": 32, "cut": 32, "cylinder_off": 32, "cylinder_plu": 32, "dashboard": 32, "dashboard_off": 32, "databas": 32, "database_cog": 32, "database_dollar": 32, "database_edit": 32, "database_exclam": 32, "database_export": 32, "export": 32, "database_heart": 32, "database_import": 32, "database_leak": 32, "leak": 32, "database_minu": 32, "database_off": 32, "database_plu": 32, "database_search": 32, "database_shar": 32, "database_star": 32, "database_x": 32, "deer": 32, "delta": 32, "dental": 32, "dental_broken": 32, "broken": 32, "dental_off": 32, "deselect": 32, "detail": 32, "details_off": 32, "device_airpod": 32, "devic": 32, "airpod": 32, "device_airpods_cas": 32, "case": [32, 35], "device_airtag": 32, "airtag": 32, "device_analyt": 32, "device_audio_tap": 32, "audio": 32, "tape": 32, "device_camera_phon": 32, "phone": 32, "device_cctv": 32, "cctv": 32, "device_cctv_off": 32, "device_computer_camera": 32, "device_computer_camera_off": 32, "device_desktop": 32, "desktop": 32, "device_desktop_analyt": 32, "device_desktop_bolt": 32, "device_desktop_cancel": 32, "device_desktop_check": 32, "device_desktop_cod": 32, "device_desktop_cog": 32, "device_desktop_dollar": 32, "device_desktop_down": 32, "device_desktop_exclam": 32, "device_desktop_heart": 32, "device_desktop_minu": 32, "device_desktop_off": 32, "device_desktop_paus": 32, "device_desktop_pin": 32, "device_desktop_plu": 32, "device_desktop_quest": 32, "device_desktop_search": 32, "device_desktop_shar": 32, "device_desktop_star": 32, "device_desktop_up": 32, "device_desktop_x": 32, "device_floppi": 32, "floppi": 32, "device_gamepad": 32, "gamepad": 32, "device_gamepad_2": 32, "device_heart_monitor": 32, "monitor": 32, "device_heart_monitor_fil": 32, "device_imac": 32, "imac": 32, "device_imac_bolt": 32, "device_imac_cancel": 32, "device_imac_check": 32, "device_imac_cod": 32, "device_imac_cog": 32, "device_imac_dollar": 32, "device_imac_down": 32, "device_imac_exclam": 32, "device_imac_heart": 32, "device_imac_minu": 32, "device_imac_off": 32, "device_imac_paus": 32, "device_imac_pin": 32, "device_imac_plu": 32, "device_imac_quest": 32, "device_imac_search": 32, "device_imac_shar": 32, "device_imac_star": 32, "device_imac_up": 32, "device_imac_x": 32, "device_ipad": 32, "ipad": 32, "device_ipad_bolt": 32, "device_ipad_cancel": 32, "device_ipad_check": 32, "device_ipad_cod": 32, "device_ipad_cog": 32, "device_ipad_dollar": 32, "device_ipad_down": 32, "device_ipad_exclam": 32, "device_ipad_heart": 32, "device_ipad_horizont": 32, "device_ipad_horizontal_bolt": 32, "device_ipad_horizontal_cancel": 32, "device_ipad_horizontal_check": 32, "device_ipad_horizontal_cod": 32, "device_ipad_horizontal_cog": 32, "device_ipad_horizontal_dollar": 32, "device_ipad_horizontal_down": 32, "device_ipad_horizontal_exclam": 32, "device_ipad_horizontal_heart": 32, "device_ipad_horizontal_minu": 32, "device_ipad_horizontal_off": 32, "device_ipad_horizontal_paus": 32, "device_ipad_horizontal_pin": 32, "device_ipad_horizontal_plu": 32, "device_ipad_horizontal_quest": 32, "device_ipad_horizontal_search": 32, "device_ipad_horizontal_shar": 32, "device_ipad_horizontal_star": 32, "device_ipad_horizontal_up": 32, "device_ipad_horizontal_x": 32, "device_ipad_minu": 32, "device_ipad_off": 32, "device_ipad_paus": 32, "device_ipad_pin": 32, "device_ipad_plu": 32, "device_ipad_quest": 32, "device_ipad_search": 32, "device_ipad_shar": 32, "device_ipad_star": 32, "device_ipad_up": 32, "device_ipad_x": 32, "device_landline_phon": 32, "landlin": 32, "device_laptop": 32, "laptop": 32, "device_laptop_off": 32, "device_mobil": 32, "mobil": [32, 38], "device_mobile_bolt": 32, "device_mobile_cancel": 32, "device_mobile_charg": 32, "device_mobile_check": 32, "device_mobile_cod": 32, "device_mobile_cog": 32, "device_mobile_dollar": 32, "device_mobile_down": 32, "device_mobile_exclam": 32, "device_mobile_fil": 32, "device_mobile_heart": 32, "device_mobile_messag": 32, "device_mobile_minu": 32, "device_mobile_off": 32, "device_mobile_paus": 32, "device_mobile_pin": 32, "device_mobile_plu": 32, "device_mobile_quest": 32, "device_mobile_rot": 32, "device_mobile_search": 32, "device_mobile_shar": 32, "device_mobile_star": 32, "device_mobile_up": 32, "device_mobile_vibr": 32, "vibrat": 32, "device_mobile_x": 32, "device_nintendo": 32, "nintendo": 32, "device_nintendo_off": 32, "device_remot": 32, "remot": 32, "device_sd_card": 32, "device_sim": 32, "sim": 32, "device_sim_1": 32, "device_sim_2": 32, "device_sim_3": 32, "device_speak": 32, "speaker": 32, "device_speaker_off": 32, "device_tablet": 32, "tablet": 32, "device_tablet_bolt": 32, "device_tablet_cancel": 32, "device_tablet_check": 32, "device_tablet_cod": 32, "device_tablet_cog": 32, "device_tablet_dollar": 32, "device_tablet_down": 32, "device_tablet_exclam": 32, "device_tablet_fil": 32, "device_tablet_heart": 32, "device_tablet_minu": 32, "device_tablet_off": 32, "device_tablet_paus": 32, "device_tablet_pin": 32, "device_tablet_plu": 32, "device_tablet_quest": 32, "device_tablet_search": 32, "device_tablet_shar": 32, "device_tablet_star": 32, "device_tablet_up": 32, "device_tablet_x": 32, "device_tv": 32, "tv": 32, "device_tv_off": 32, "device_tv_old": 32, "device_vision_pro": 32, "vision": 32, "pro": 32, "device_watch": 32, "watch": 32, "device_watch_bolt": 32, "device_watch_cancel": 32, "device_watch_check": 32, "device_watch_cod": 32, "device_watch_cog": 32, "device_watch_dollar": 32, "device_watch_down": 32, "device_watch_exclam": 32, "device_watch_heart": 32, "device_watch_minu": 32, "device_watch_off": 32, "device_watch_paus": 32, "device_watch_pin": 32, "device_watch_plu": 32, "device_watch_quest": 32, "device_watch_search": 32, "device_watch_shar": 32, "device_watch_star": 32, "device_watch_stat": 32, "device_watch_stats_2": 32, "device_watch_up": 32, "device_watch_x": 32, "devices_2": 32, "devices_bolt": 32, "devices_cancel": 32, "devices_check": 32, "devices_cod": 32, "devices_cog": 32, "devices_dollar": 32, "devices_down": 32, "devices_exclam": 32, "devices_heart": 32, "devices_minu": 32, "devices_off": 32, "devices_paus": 32, "devices_pc": 32, "pc": 32, "devices_pc_off": 32, "devices_pin": 32, "devices_plu": 32, "devices_quest": 32, "devices_search": 32, "devices_shar": 32, "devices_star": 32, "devices_up": 32, "devices_x": 32, "diabolo": 32, "diabolo_off": 32, "diabolo_plu": 32, "dialpad": 32, "dialpad_fil": 32, "dialpad_off": 32, "diamond": [32, 35], "diamond_fil": 32, "diamond_off": 32, "diamonds_fil": 32, "dice": 32, "dice_1": 32, "dice_1_fil": 32, "dice_2": 32, "dice_2_fil": 32, "dice_3": 32, "dice_3_fil": 32, "dice_4": 32, "dice_4_fil": 32, "dice_5": 32, "dice_5_fil": 32, "dice_6": 32, "dice_6_fil": 32, "dice_fil": 32, "direction_horizont": 32, "direction_sign": 32, "sign": 32, "direction_sign_fil": 32, "direction_sign_off": 32, "directions_off": 32, "disabled_2": 32, "disabled_off": 32, "disc": 32, "disc_golf": 32, "golf": 32, "disc_off": 32, "discount": 32, "discount_2": 32, "discount_2_off": 32, "discount_check": 32, "discount_check_fil": 32, "discount_off": 32, "dna": 32, "dna_2": 32, "dna_2_off": 32, "dna_off": 32, "dog": 32, "dog_bowl": 32, "door": 32, "door_ent": 32, "enter": 32, "door_exit": 32, "exit": 32, "door_off": 32, "dots_circle_horizont": 32, "dots_diagon": 32, "dots_diagonal_2": 32, "dots_vert": 32, "download_off": 32, "drag_drop": 32, "drag": 32, "drag_drop_2": 32, "drone": 32, "drone_off": 32, "drop_circl": 32, "droplet_bolt": 32, "droplet_cancel": 32, "droplet_check": 32, "droplet_cod": 32, "droplet_cog": 32, "droplet_dollar": 32, "droplet_down": 32, "droplet_exclam": 32, "droplet_fil": 32, "droplet_filled_2": 32, "droplet_half": 32, "droplet_half_2": 32, "droplet_half_fil": 32, "droplet_heart": 32, "droplet_minu": 32, "droplet_off": 32, "droplet_paus": 32, "droplet_pin": 32, "droplet_plu": 32, "droplet_quest": 32, "droplet_search": 32, "droplet_shar": 32, "droplet_star": 32, "droplet_up": 32, "droplet_x": 32, "dual_screen": 32, "dual": 32, "e_passport": 32, "passport": 32, "ear": 32, "ear_off": 32, "ease_in": 32, "eas": 32, "ease_in_control_point": 32, "ease_in_out": 32, "ease_in_out_control_point": 32, "ease_out": 32, "ease_out_control_point": 32, "edit_circl": 32, "edit_circle_off": 32, "edit_off": 32, "egg": 32, "egg_crack": 32, "crack": 32, "egg_fil": 32, "egg_fri": 32, "fri": 32, "egg_off": 32, "elev": 32, "elevator_off": 32, "emergency_b": 32, "emerg": 32, "empath": 32, "empathize_off": 32, "emphasi": 32, "engin": 32, "engine_off": 32, "equal": 32, "equal_doubl": 32, "equal_not": 32, "eras": 32, "eraser_off": 32, "error_404": 32, "error": 32, "404": 32, "error_404_off": 32, "exchange_off": 32, "exclamation_circl": 32, "exclamation_mark": 32, "exclamation_mark_off": 32, "explicit": 32, "explicit_off": 32, "exposur": 32, "exposure_0": 32, "exposure_minus_1": 32, "exposure_minus_2": 32, "exposure_off": 32, "exposure_plus_1": 32, "exposure_plus_2": 32, "external_link": 32, "extern": [32, 37], "link": 32, "external_link_off": 32, "eye_check": 32, "eye_clos": 32, "eye_cog": 32, "eye_edit": 32, "eye_exclam": 32, "eye_fil": 32, "eye_heart": 32, "eye_off": 32, "eye_t": 32, "tabl": 32, "eye_x": 32, "eyeglass": 32, "eyeglass_2": 32, "eyeglass_off": 32, "face_id": 32, "face_id_error": 32, "face_mask": 32, "face_mask_off": 32, "fall": 32, "feather": 32, "feather_off": 32, "fenc": 32, "fence_off": 32, "fidget_spinn": 32, "fidget": 32, "spinner": 32, "file_3d": 32, "file_alert": 32, "file_analyt": 32, "file_arrow_left": 32, "file_arrow_right": 32, "file_barcod": 32, "file_broken": 32, "file_certif": 32, "file_chart": 32, "file_check": 32, "file_cod": 32, "file_code_2": 32, "file_cv": 32, "cv": 32, "file_databas": 32, "file_delta": 32, "file_descript": 32, "file_diff": 32, "file_digit": 32, "file_dislik": 32, "dislik": 32, "file_dollar": 32, "file_dot": 32, "file_download": 32, "file_euro": 32, "file_export": 32, "file_fil": 32, "file_funct": 32, "file_horizont": 32, "file_import": 32, "file_infin": 32, "infin": 32, "file_info": 32, "file_invoic": 32, "invoic": 32, "file_lambda": 32, "file_lik": 32, "file_minu": 32, "file_mus": 32, "file_off": 32, "file_orient": 32, "file_pencil": 32, "pencil": 32, "file_perc": 32, "percent": 32, "file_phon": 32, "file_plu": 32, "file_pow": 32, "power": 32, "file_report": 32, "report": 32, "file_rss": 32, "rss": 32, "file_scissor": 32, "scissor": 32, "file_search": 32, "file_set": 32, "file_shredd": 32, "shredder": 32, "file_sign": 32, "file_spreadsheet": 32, "spreadsheet": 32, "file_stack": 32, "stack": 32, "file_star": 32, "file_symlink": 32, "symlink": 32, "file_text": 32, "file_text_ai": 32, "ai": 32, "file_tim": 32, "file_typographi": 32, "file_unknown": 32, "unknown": 32, "file_upload": 32, "file_vector": 32, "file_x": 32, "file_x_fil": 32, "file_zip": 32, "files_off": 32, "filter_cog": 32, "filter_dollar": 32, "filter_edit": 32, "filter_minu": 32, "filter_off": 32, "filter_plu": 32, "filter_star": 32, "filter_x": 32, "fingerprint": 32, "fingerprint_off": 32, "fire_extinguish": 32, "fire": 32, "extinguish": 32, "fire_hydr": 32, "hydrant": 32, "fire_hydrant_off": 32, "firetruck": 32, "first_aid_kit": 32, "aid": 32, "kit": 32, "first_aid_kit_off": 32, "fish": 32, "fish_bon": 32, "fish_christian": 32, "christian": 32, "fish_hook": 32, "hook": 32, "fish_hook_off": 32, "fish_off": 32, "flag_2": 32, "flag_2_fil": 32, "flag_2_off": 32, "flag_3": 32, "flag_3_fil": 32, "flag_fil": 32, "flag_off": 32, "flame": 32, "flame_off": 32, "flare": 32, "flask": 32, "flask_2": 32, "flask_2_off": 32, "flask_off": 32, "flip_flop": 32, "flop": 32, "flip_horizont": 32, "flip_vert": 32, "float_cent": 32, "float_left": 32, "float_non": 32, "float_right": 32, "flower": 32, "flower_off": 32, "focu": 32, "focus_2": 32, "focus_auto": 32, "focus_cent": 32, "fold": 32, "fold_down": 32, "fold_up": 32, "folder_bolt": 32, "folder_cancel": 32, "folder_check": 32, "folder_cod": 32, "folder_cog": 32, "folder_dollar": 32, "folder_down": 32, "folder_exclam": 32, "folder_fil": 32, "folder_heart": 32, "folder_minu": 32, "folder_off": 32, "folder_open": 32, "folder_paus": 32, "folder_pin": 32, "folder_plu": 32, "folder_quest": 32, "folder_search": 32, "folder_shar": 32, "folder_star": 32, "folder_symlink": 32, "folder_up": 32, "folder_x": 32, "folders_off": 32, "forbid": 32, "forbid_2": 32, "forklift": 32, "fountain": 32, "fountain_off": 32, "frame_off": 32, "free_right": 32, "free": 32, "freeze_column": 32, "freez": 32, "freeze_row": 32, "freeze_row_column": 32, "fridg": 32, "fridge_off": 32, "friend": 32, "friends_off": 32, "frustum_off": 32, "frustum_plu": 32, "function_off": 32, "garden_cart": 32, "garden": 32, "cart": 32, "garden_cart_off": 32, "gas_stat": 32, "ga": 32, "station": 32, "gas_station_off": 32, "gaug": 32, "gauge_off": 32, "gavel": 32, "gender_agend": 32, "gender": 32, "agend": 32, "gender_androgyn": 32, "androgyn": 32, "gender_bigend": 32, "bigend": 32, "gender_demiboi": 32, "demiboi": 32, "gender_demigirl": 32, "demigirl": 32, "gender_epicen": 32, "epicen": 32, "gender_femal": 32, "femal": 32, "gender_femm": 32, "femm": 32, "gender_genderfluid": 32, "genderfluid": 32, "gender_genderless": 32, "genderless": 32, "gender_genderqu": 32, "genderqu": 32, "gender_hermaphrodit": 32, "hermaphrodit": 32, "gender_intergend": 32, "intergend": 32, "gender_mal": 32, "male": 32, "gender_neutroi": 32, "neutroi": 32, "gender_third": 32, "third": 32, "gender_transgend": 32, "transgend": 32, "gender_trasvesti": 32, "trasvesti": 32, "ghost": 32, "ghost_2": 32, "ghost_2_fil": 32, "ghost_fil": 32, "ghost_off": 32, "gift": 32, "gift_card": 32, "gift_off": 32, "git_branch": 32, "git_branch_delet": 32, "delet": 32, "git_cherry_pick": 32, "pick": 32, "git_commit": 32, "git_compar": 32, "compar": 32, "git_fork": 32, "git_merg": 32, "git_pull_request": 32, "pull": 32, "git_pull_request_clos": 32, "git_pull_request_draft": 32, "draft": 32, "glass": 32, "glass_ful": 32, "glass_off": 32, "globe": 32, "globe_off": 32, "go_gam": 32, "game": 32, "golf_off": 32, "gp": 32, "gradient": 32, "grain": 32, "graph": 32, "graph_off": 32, "grave": 32, "grave_2": 32, "grid_dot": 32, "grid_pattern": 32, "pattern": 32, "grill": 32, "grill_fork": 32, "grill_off": 32, "grill_spatula": 32, "spatula": 32, "grip_horizont": 32, "grip": 32, "grip_vert": 32, "growth": 32, "guitar_pick": 32, "guitar": 32, "guitar_pick_fil": 32, "h_1": 32, "h_2": 32, "h_3": 32, "h_4": 32, "h_5": 32, "h_6": 32, "hammer": 32, "hammer_off": 32, "hand_click": 32, "hand": 32, "hand_fing": 32, "finger": 32, "hand_finger_off": 32, "hand_grab": 32, "grab": [32, 38], "hand_little_fing": 32, "littl": 32, "hand_middle_fing": 32, "hand_mov": 32, "hand_off": 32, "hand_ring_fing": 32, "hand_rock": 32, "rock": 32, "hand_sanit": 32, "sanit": 32, "hand_stop": 32, "hand_three_fing": 32, "hand_two_fing": 32, "hanger": 32, "hanger_2": 32, "hanger_off": 32, "hash": 32, "haze": 32, "haze_moon": 32, "moon": 32, "hdr": 32, "head": 32, "heading_off": 32, "headphon": 32, "headphones_fil": 32, "headphones_off": 32, "headset": 32, "headset_off": 32, "health_recognit": 32, "health": 32, "recognit": 32, "heart_broken": 32, "heart_fil": 32, "heart_handshak": 32, "handshak": 32, "heart_minu": 32, "heart_off": 32, "heart_plu": 32, "heart_rate_monitor": 32, "rate": 32, "hearts_off": 32, "helicopt": 32, "helicopter_land": 32, "land": 32, "helmet": 32, "helmet_off": 32, "help_circl": 32, "help_circle_fil": 32, "help_hexagon": 32, "help_hexagon_fil": 32, "help_octagon": 32, "help_octagon_fil": 32, "help_off": 32, "help_smal": 32, "help_squar": 32, "help_square_fil": 32, "help_square_round": 32, "help_square_rounded_fil": 32, "help_triangl": 32, "help_triangle_fil": 32, "hemispher": 32, "hemisphere_off": 32, "hemisphere_plu": 32, "hexagon_0_fil": 32, "hexagon_1_fil": 32, "hexagon_2_fil": 32, "hexagon_3_fil": 32, "hexagon_3d": 32, "hexagon_4_fil": 32, "hexagon_5_fil": 32, "hexagon_6_fil": 32, "hexagon_7_fil": 32, "hexagon_8_fil": 32, "hexagon_9_fil": 32, "hexagon_fil": 32, "hexagon_letter_a": 32, "hexagon_letter_b": 32, "hexagon_letter_c": 32, "hexagon_letter_d": 32, "hexagon_letter_": 32, "hexagon_letter_f": 32, "hexagon_letter_g": 32, "hexagon_letter_h": 32, "hexagon_letter_i": 32, "hexagon_letter_j": 32, "hexagon_letter_k": 32, "hexagon_letter_l": 32, "hexagon_letter_m": 32, "hexagon_letter_n": 32, "hexagon_letter_o": 32, "hexagon_letter_p": 32, "hexagon_letter_q": 32, "hexagon_letter_r": 32, "hexagon_letter_t": 32, "hexagon_letter_u": 32, "hexagon_letter_v": 32, "hexagon_letter_w": 32, "hexagon_letter_x": 32, "hexagon_letter_z": 32, "hexagon_number_0": 32, "hexagon_number_1": 32, "hexagon_number_2": 32, "hexagon_number_3": 32, "hexagon_number_4": 32, "hexagon_number_5": 32, "hexagon_number_6": 32, "hexagon_number_7": 32, "hexagon_number_8": 32, "hexagon_number_9": 32, "hexagon_off": 32, "hexagonal_pr": 32, "prism": 32, "hexagonal_prism_off": 32, "hexagonal_prism_plu": 32, "hexagonal_pyramid": 32, "pyramid": 32, "hexagonal_pyramid_off": 32, "hexagonal_pyramid_plu": 32, "hexagons_off": 32, "hierarchi": 32, "hierarchy_2": 32, "hierarchy_3": 32, "hierarchy_off": 32, "highlight": 32, "highlight_off": 32, "histori": 32, "history_off": 32, "history_toggl": 32, "home_2": 32, "home_bolt": 32, "home_cancel": 32, "home_check": 32, "home_cog": 32, "home_dollar": 32, "home_dot": 32, "home_down": 32, "home_eco": 32, "home_edit": 32, "home_exclam": 32, "home_hand": 32, "home_heart": 32, "home_infin": 32, "home_link": 32, "home_minu": 32, "home_mov": 32, "home_off": 32, "home_plu": 32, "home_quest": 32, "home_ribbon": 32, "ribbon": 32, "home_search": 32, "home_shar": 32, "home_shield": 32, "home_sign": 32, "home_star": 32, "home_stat": 32, "home_up": 32, "home_x": 32, "horse_toi": 32, "hors": 32, "toi": 32, "hotel_servic": 32, "hotel": 32, "servic": 32, "hourglass": 32, "hourglass_empti": 32, "empti": 32, "hourglass_fil": 32, "hourglass_high": 32, "hourglass_low": 32, "hourglass_off": 32, "html": 32, "http_connect": 32, "http_delet": 32, "http_get": 32, "http_head": 32, "http_option": 32, "http_patch": 32, "patch": 32, "http_post": 32, "post": 32, "http_put": 32, "http_que": 32, "que": 32, "http_trace": 32, "trace": 32, "ice_cream": 32, "ic": 32, "cream": 32, "ice_cream_2": 32, "ice_cream_off": 32, "ice_sk": 32, "skate": 32, "icons_off": 32, "id_badg": 32, "id_badge_2": 32, "id_badge_off": 32, "id_off": 32, "inbox": 32, "inbox_off": 32, "indent_decreas": 32, "indent": 32, "decreas": 32, "indent_increas": 32, "increas": 32, "infinity_off": 32, "info_circl": 32, "info_circle_fil": 32, "info_hexagon": 32, "info_hexagon_fil": 32, "info_octagon": 32, "info_octagon_fil": 32, "info_smal": 32, "info_squar": 32, "info_square_fil": 32, "info_square_round": 32, "info_square_rounded_fil": 32, "info_triangl": 32, "info_triangle_fil": 32, "inner_shadow_bottom": 32, "shadow": 32, "inner_shadow_bottom_fil": 32, "inner_shadow_bottom_left": 32, "inner_shadow_bottom_left_fil": 32, "inner_shadow_bottom_right": 32, "inner_shadow_bottom_right_fil": 32, "inner_shadow_left": 32, "inner_shadow_left_fil": 32, "inner_shadow_right": 32, "inner_shadow_right_fil": 32, "inner_shadow_top": 32, "inner_shadow_top_fil": 32, "inner_shadow_top_left": 32, "inner_shadow_top_left_fil": 32, "inner_shadow_top_right": 32, "inner_shadow_top_right_fil": 32, "input_search": 32, "iron": 32, "ironing_1": 32, "ironing_2": 32, "ironing_3": 32, "ironing_off": 32, "ironing_steam": 32, "ironing_steam_off": 32, "irregular_polyhedron": 32, "irregular": 32, "polyhedron": 32, "irregular_polyhedron_off": 32, "irregular_polyhedron_plu": 32, "ital": 32, "jacket": 32, "jetpack": 32, "jewish_star": 32, "jewish": 32, "jewish_star_fil": 32, "jpg": 32, "json": 32, "jump_rop": 32, "jump": 32, "rope": 32, "karat": 32, "kayak": 32, "kere": 32, "key_off": 32, "keyboard": 32, "keyboard_hid": 32, "keyboard_off": 32, "keyboard_show": 32, "keyfram": 32, "keyframe_align_cent": 32, "keyframe_align_horizont": 32, "keyframe_align_vert": 32, "ladder": 32, "ladder_off": 32, "lamp": 32, "lamp_2": 32, "lamp_off": 32, "lane": 32, "languag": 32, "language_hiragana": 32, "hiragana": 32, "language_katakana": 32, "katakana": 32, "language_off": 32, "lasso": 32, "lasso_off": 32, "lasso_polygon": 32, "polygon": 32, "layers_differ": 32, "layer": 32, "layers_intersect": 32, "layers_intersect_2": 32, "layers_link": 32, "layers_off": 32, "layers_subtract": 32, "subtract": 32, "layers_union": 32, "union": 32, "layout_2": 32, "layout_align_bottom": 32, "layout_align_cent": 32, "layout_align_left": 32, "layout_align_middl": 32, "layout_align_right": 32, "layout_align_top": 32, "layout_board": 32, "layout_board_split": 32, "layout_bottombar": 32, "bottombar": 32, "layout_bottombar_collaps": 32, "layout_bottombar_expand": 32, "expand": 32, "layout_card": 32, "layout_collag": 32, "collag": 32, "layout_column": 32, "layout_dashboard": 32, "layout_distribute_horizont": 32, "distribut": 32, "layout_distribute_vert": 32, "layout_grid": 32, "layout_grid_add": 32, "layout_grid_remov": 32, "layout_kanban": 32, "kanban": 32, "layout_list": 32, "layout_navbar": 32, "navbar": 32, "layout_navbar_collaps": 32, "layout_navbar_expand": 32, "layout_off": 32, "layout_row": 32, "layout_sidebar": 32, "sidebar": 32, "layout_sidebar_left_collaps": 32, "layout_sidebar_left_expand": 32, "layout_sidebar_right": 32, "layout_sidebar_right_collaps": 32, "layout_sidebar_right_expand": 32, "leaf_off": 32, "lego": 32, "lego_off": 32, "lemon": 32, "lemon_2": 32, "letter_a": 32, "letter_b": 32, "letter_c": 32, "letter_cas": 32, "letter_case_low": 32, "letter_case_toggl": 32, "letter_case_upp": 32, "letter_d": 32, "letter_": 32, "letter_f": 32, "letter_g": 32, "letter_h": 32, "letter_i": 32, "letter_j": 32, "letter_k": 32, "letter_l": 32, "letter_m": 32, "letter_n": 32, "letter_o": 32, "letter_p": 32, "letter_q": 32, "letter_r": 32, "letter_spac": 32, "letter_t": 32, "letter_u": 32, "letter_v": 32, "letter_w": 32, "letter_x": 32, "letter_z": 32, "licens": 32, "license_off": 32, "lifebuoi": 32, "lifebuoy_off": 32, "lighter": 32, "line_dash": 32, "line_dot": 32, "line_height": 32, "link_off": 32, "list_check": 32, "list_detail": 32, "list_numb": 32, "list_search": 32, "list_tre": 32, "live_photo": 32, "live": 32, "live_photo_off": 32, "live_view": 32, "load_balanc": 32, "balanc": 32, "loader_2": 32, "loader_3": 32, "loader_quart": 32, "quarter": 32, "location_broken": 32, "location_fil": 32, "location_off": 32, "lock_access": 32, "lock_access_off": 32, "lock_bolt": 32, "lock_cancel": 32, "lock_check": 32, "lock_cod": 32, "lock_cog": 32, "lock_dollar": 32, "lock_down": 32, "lock_exclam": 32, "lock_heart": 32, "lock_minu": 32, "lock_off": 32, "lock_open": 32, "lock_open_off": 32, "lock_paus": 32, "lock_pin": 32, "lock_plu": 32, "lock_quest": 32, "lock_search": 32, "lock_shar": 32, "lock_squar": 32, "lock_square_round": 32, "lock_square_rounded_fil": 32, "lock_star": 32, "lock_up": 32, "lock_x": 32, "logic_and": 32, "logic_buff": 32, "logic_nand": 32, "nand": 32, "logic_nor": 32, "nor": 32, "logic_not": 32, "logic_or": 32, "logic_xnor": 32, "xnor": 32, "logic_xor": 32, "xor": 32, "login": 32, "logout": 32, "logout_2": 32, "lollipop": 32, "lollipop_off": 32, "luggag": 32, "luggage_off": 32, "lung": 32, "lungs_off": 32, "macro": 32, "macro_off": 32, "magnet": 32, "magnet_off": 32, "mail": 32, "mail_ai": 32, "mail_bolt": 32, "mail_cancel": 32, "mail_check": 32, "mail_cod": 32, "mail_cog": 32, "mail_dollar": 32, "mail_down": 32, "mail_exclam": 32, "mail_fast": 32, "fast": 32, "mail_fil": 32, "mail_forward": 32, "mail_heart": 32, "mail_minu": 32, "mail_off": 32, "mail_open": 32, "mail_opened_fil": 32, "mail_paus": 32, "mail_pin": 32, "mail_plu": 32, "mail_quest": 32, "mail_search": 32, "mail_shar": 32, "mail_star": 32, "mail_up": 32, "mail_x": 32, "mailbox": 32, "mailbox_off": 32, "manual_gearbox": 32, "gearbox": 32, "map_2": 32, "map_off": 32, "map_pin": 32, "map_pin_bolt": 32, "map_pin_cancel": 32, "map_pin_check": 32, "map_pin_cod": 32, "map_pin_cog": 32, "map_pin_dollar": 32, "map_pin_down": 32, "map_pin_exclam": 32, "map_pin_fil": 32, "map_pin_heart": 32, "map_pin_minu": 32, "map_pin_off": 32, "map_pin_paus": 32, "map_pin_pin": 32, "map_pin_plu": 32, "map_pin_quest": 32, "map_pin_search": 32, "map_pin_shar": 32, "map_pin_star": 32, "map_pin_up": 32, "map_pin_x": 32, "map_search": 32, "markdown_off": 32, "marque": 32, "marquee_2": 32, "marquee_off": 32, "mar": 32, "mask_off": 32, "masks_theat": 32, "theater": 32, "masks_theater_off": 32, "massag": 32, "matchstick": 32, "math": 32, "math_1_divide_2": 32, "math_1_divide_3": 32, "math_avg": 32, "avg": 32, "math_equal_great": 32, "greater": 32, "math_equal_low": 32, "math_funct": 32, "math_function_off": 32, "math_function_i": 32, "math_great": 32, "math_integr": 32, "integr": [32, 38], "math_integral_x": 32, "math_low": 32, "math_max": 32, "math_min": 32, "math_not": 32, "math_off": 32, "math_pi": 32, "math_pi_divide_2": 32, "math_symbol": 32, "math_x_divide_2": 32, "math_x_divide_i": 32, "math_x_divide_y_2": 32, "math_x_minus_x": 32, "math_x_minus_i": 32, "math_x_plus_x": 32, "math_x_plus_i": 32, "math_xi": 32, "math_y_minus_i": 32, "math_y_plus_i": 32, "maximize_off": 32, "meat": 32, "meat_off": 32, "medal": 32, "medal_2": 32, "medical_cross": 32, "medic": 32, "medical_cross_circl": 32, "medical_cross_fil": 32, "medical_cross_off": 32, "medicine_syrup": 32, "medicin": 32, "syrup": 32, "meepl": 32, "menorah": 32, "menu": 32, "menu_2": 32, "menu_deep": 32, "deep": 32, "menu_ord": 32, "message_2": 32, "message_2_bolt": 32, "message_2_cancel": 32, "message_2_check": 32, "message_2_cod": 32, "message_2_cog": 32, "message_2_dollar": 32, "message_2_down": 32, "message_2_exclam": 32, "message_2_heart": 32, "message_2_minu": 32, "message_2_off": 32, "message_2_paus": 32, "message_2_pin": 32, "message_2_plu": 32, "message_2_quest": 32, "message_2_search": 32, "message_2_shar": 32, "message_2_star": 32, "message_2_up": 32, "message_2_x": 32, "message_bolt": 32, "message_cancel": 32, "message_chatbot": 32, "chatbot": 32, "message_check": 32, "message_circl": 32, "message_circle_2": 32, "message_circle_2_fil": 32, "message_circle_bolt": 32, "message_circle_cancel": 32, "message_circle_check": 32, "message_circle_cod": 32, "message_circle_cog": 32, "message_circle_dollar": 32, "message_circle_down": 32, "message_circle_exclam": 32, "message_circle_heart": 32, "message_circle_minu": 32, "message_circle_off": 32, "message_circle_paus": 32, "message_circle_pin": 32, "message_circle_plu": 32, "message_circle_quest": 32, "message_circle_search": 32, "message_circle_shar": 32, "message_circle_star": 32, "message_circle_up": 32, "message_circle_x": 32, "message_cod": 32, "message_cog": 32, "message_dollar": 32, "message_dot": 32, "message_down": 32, "message_exclam": 32, "message_forward": 32, "message_heart": 32, "message_languag": 32, "message_minu": 32, "message_off": 32, "message_paus": 32, "message_pin": 32, "message_plu": 32, "message_quest": 32, "message_report": 32, "message_search": 32, "message_shar": 32, "message_star": 32, "message_up": 32, "message_x": 32, "messages_off": 32, "meteor": 32, "meteor_off": 32, "michelin_bib_gourmand": 32, "michelin": 32, "bib": 32, "gourmand": 32, "michelin_star": 32, "michelin_star_green": 32, "mickei": 32, "mickey_fil": 32, "microphon": 32, "microphone_2": 32, "microphone_2_off": 32, "microphone_off": 32, "microscop": 32, "microscope_off": 32, "microwav": 32, "microwave_off": 32, "military_award": 32, "militari": 32, "military_rank": 32, "rank": 32, "milk": 32, "milk_off": 32, "milkshak": 32, "minus_vert": 32, "mist": 32, "mist_off": 32, "mobiledata": 32, "mobiledata_off": 32, "moneybag": 32, "mood_angri": 32, "mood": 32, "angri": 32, "mood_annoi": 32, "annoi": 32, "mood_annoyed_2": 32, "mood_boi": 32, "boi": 32, "mood_check": 32, "mood_cog": 32, "mood_confuz": 32, "confuz": 32, "mood_confuzed_fil": 32, "mood_crazy_happi": 32, "crazi": 32, "happi": 32, "mood_cri": 32, "cry": 32, "mood_dollar": 32, "mood_edit": 32, "mood_empti": 32, "mood_empty_fil": 32, "mood_happi": 32, "mood_happy_fil": 32, "mood_heart": 32, "mood_kid": 32, "mood_kid_fil": 32, "mood_look_left": 32, "mood_look_right": 32, "mood_minu": 32, "mood_nerd": 32, "nerd": 32, "mood_nerv": 32, "nervou": 32, "mood_neutr": 32, "neutral": 32, "mood_neutral_fil": 32, "mood_off": 32, "mood_pin": 32, "mood_plu": 32, "mood_sad": 32, "sad": 32, "mood_sad_2": 32, "mood_sad_dizzi": 32, "dizzi": 32, "mood_sad_fil": 32, "mood_sad_squint": 32, "squint": 32, "mood_search": 32, "mood_shar": 32, "mood_sick": 32, "sick": 32, "mood_sil": 32, "silenc": 32, "mood_s": 32, "sing": 32, "mood_smil": 32, "smile": 32, "mood_smile_beam": 32, "beam": 32, "mood_smile_dizzi": 32, "mood_smile_fil": 32, "mood_supris": 32, "supris": 32, "mood_tongu": 32, "tongu": 32, "mood_tongue_wink": 32, "wink": 32, "mood_tongue_wink_2": 32, "mood_unamus": 32, "unamus": 32, "mood_up": 32, "mood_wink": 32, "mood_wink_2": 32, "mood_wrrr": 32, "wrrr": 32, "mood_x": 32, "mood_xd": 32, "xd": 32, "moon_2": 32, "moon_fil": 32, "moon_off": 32, "moon_star": 32, "mope": 32, "motorbik": 32, "mountain": 32, "mountain_off": 32, "mouse_2": 32, "mouse_off": 32, "moustach": 32, "movi": 32, "movie_off": 32, "mug": 32, "mug_off": 32, "multiplier_0_5x": 32, "multipli": [32, 38], "5x": 32, "multiplier_1_5x": 32, "multiplier_1x": 32, "1x": 32, "multiplier_2x": 32, "2x": 32, "mushroom": 32, "mushroom_fil": 32, "mushroom_off": 32, "music_off": 32, "navig": [32, 33], "navigation_fil": 32, "navigation_north": 32, "north": 32, "navigation_off": 32, "needl": 32, "needle_thread": 32, "network": 32, "network_off": 32, "new_sect": 32, "section": [32, 35], "news_off": 32, "nfc": 32, "nfc_off": 32, "no_copyright": 32, "no_creative_common": 32, "no_deriv": 32, "deriv": 32, "north_star": 32, "note_off": 32, "notebook": 32, "notebook_off": 32, "notes_off": 32, "notif": 32, "notification_off": 32, "number_0": 32, "number_1": 32, "number_2": 32, "number_3": 32, "number_4": 32, "number_5": 32, "number_6": 32, "number_7": 32, "number_8": 32, "number_9": 32, "nurs": 32, "octagon_fil": 32, "octagon_off": 32, "octahedron": 32, "octahedron_off": 32, "octahedron_plu": 32, "olymp": 32, "olympics_off": 32, "om": 32, "omega": [32, 38], "outbound": 32, "outlet": 32, "oval": 32, "oval_fil": 32, "oval_vert": 32, "oval_vertical_fil": 32, "overlin": 32, "package_export": 32, "package_import": 32, "package_off": 32, "pacman": 32, "page_break": 32, "page": 32, "break": 32, "paint_fil": 32, "paint_off": 32, "palett": 32, "palette_off": 32, "panorama_horizont": 32, "panorama": 32, "panorama_horizontal_off": 32, "panorama_vert": 32, "panorama_vertical_off": 32, "paper_bag": 32, "paper": 32, "bag": 32, "paper_bag_off": 32, "paperclip": 32, "parachut": 32, "parachute_off": 32, "parenthes": 32, "parentheses_off": 32, "park": 32, "parking_off": 32, "password": 32, "paw": 32, "paw_fil": 32, "paw_off": 32, "pdf": 32, "peac": 32, "pencil_minu": 32, "pencil_off": 32, "pencil_plu": 32, "pennant": 32, "pennant_2": 32, "pennant_2_fil": 32, "pennant_fil": 32, "pennant_off": 32, "pentagon": 32, "pentagon_fil": 32, "pentagon_off": 32, "pentagram": 32, "pepper": 32, "pepper_off": 32, "percentag": 32, "perfum": 32, "perspect": [32, 35], "perspective_off": 32, "phone_cal": 32, "phone_check": 32, "phone_fil": 32, "phone_incom": 32, "incom": [32, 34], "phone_off": 32, "phone_outgo": 32, "phone_paus": 32, "phone_plu": 32, "phone_x": 32, "photo_ai": 32, "photo_bolt": 32, "photo_cancel": 32, "photo_check": 32, "photo_cod": 32, "photo_cog": 32, "photo_dollar": 32, "photo_down": 32, "photo_edit": 32, "photo_exclam": 32, "photo_fil": 32, "photo_heart": 32, "photo_minu": 32, "photo_off": 32, "photo_paus": 32, "photo_pin": 32, "photo_plu": 32, "photo_quest": 32, "photo_search": 32, "photo_sensor": 32, "sensor": 32, "photo_sensor_2": 32, "photo_sensor_3": 32, "photo_shar": 32, "photo_shield": 32, "photo_star": 32, "photo_up": 32, "photo_x": 32, "physotherapist": 32, "piano": 32, "picture_in_pictur": 32, "pictur": 32, "picture_in_picture_off": 32, "picture_in_picture_on": 32, "picture_in_picture_top": 32, "pig": 32, "pig_monei": 32, "monei": 32, "pig_off": 32, "pilcrow": 32, "pill": 32, "pill_off": 32, "pin_fil": 32, "ping_pong": 32, "ping": 32, "pong": 32, "pinned_fil": 32, "pinned_off": 32, "pizza": 32, "pizza_off": 32, "placehold": 32, "plane_arriv": 32, "arriv": 32, "plane_departur": 32, "departur": 32, "plane_inflight": 32, "inflight": 32, "plane_off": 32, "plane_tilt": 32, "tilt": 32, "planet": 32, "planet_off": 32, "plant": 32, "plant_2": 32, "plant_2_off": 32, "plant_off": 32, "play_basketbal": 32, "play_card": 32, "play_card_off": 32, "play_footbal": 32, "play_handbal": 32, "handbal": 32, "play_volleybal": 32, "player_eject": 32, "eject": 32, "player_eject_fil": 32, "player_paus": 32, "player_pause_fil": 32, "player_plai": 32, "player_play_fil": 32, "player_record": 32, "player_record_fil": 32, "player_skip_back": 32, "player_skip_back_fil": 32, "player_skip_forward": 32, "player_skip_forward_fil": 32, "player_stop": 32, "player_stop_fil": 32, "player_track_next": 32, "track": 32, "player_track_next_fil": 32, "player_track_prev": 32, "player_track_prev_fil": 32, "playlist": 32, "playlist_add": 32, "playlist_off": 32, "playlist_x": 32, "playstation_circl": 32, "playstat": 32, "playstation_squar": 32, "playstation_triangl": 32, "playstation_x": 32, "plug": 32, "plug_connect": 32, "plug_connected_x": 32, "plug_off": 32, "plug_x": 32, "plus_equ": 32, "plus_minu": 32, "podium": 32, "podium_off": 32, "point_fil": 32, "point_off": 32, "pointer_bolt": 32, "pointer_cancel": 32, "pointer_check": 32, "pointer_cod": 32, "pointer_cog": 32, "pointer_dollar": 32, "pointer_down": 32, "pointer_exclam": 32, "pointer_heart": 32, "pointer_minu": 32, "pointer_off": 32, "pointer_paus": 32, "pointer_pin": 32, "pointer_plu": 32, "pointer_quest": 32, "pointer_search": 32, "pointer_shar": 32, "pointer_star": 32, "pointer_up": 32, "pointer_x": 32, "pokebal": 32, "pokeball_off": 32, "poker_chip": 32, "poker": 32, "chip": 32, "polaroid": 32, "polaroid_fil": 32, "polygon_off": 32, "poo": 32, "pool": 32, "pool_off": 32, "prai": 32, "premium_right": 32, "premium": 32, "prescript": 32, "present": 32, "presentation_analyt": 32, "presentation_off": 32, "printer": 32, "printer_off": 32, "prism_off": 32, "prism_plu": 32, "prison": 32, "progress_alert": 32, "progress_bolt": 32, "progress_check": 32, "progress_down": 32, "progress_help": 32, "progress_x": 32, "prompt": 32, "propel": 32, "propeller_off": 32, "pumpkin_scari": 32, "pumpkin": 32, "scari": 32, "puzzl": 32, "puzzle_2": 32, "puzzle_fil": 32, "puzzle_off": 32, "pyramid_off": 32, "pyramid_plu": 32, "qrcode": 32, "qrcode_off": 32, "question_mark": 32, "quot": 32, "quote_off": 32, "radar_2": 32, "radar_off": 32, "radio": 32, "radio_off": 32, "radioact": 32, "radioactive_fil": 32, "radioactive_off": 32, "radius_bottom_left": 32, "radius_bottom_right": 32, "radius_top_left": 32, "radius_top_right": 32, "rainbow": 32, "rainbow_off": 32, "rating_12_plu": 32, "rating_14_plu": 32, "14": 32, "rating_16_plu": 32, "16": 32, "rating_18_plu": 32, "18": 32, "rating_21_plu": 32, "21": 32, "razor": 32, "razor_electr": 32, "electr": 32, "receipt": 32, "receipt_2": 32, "receipt_off": 32, "receipt_refund": 32, "refund": 32, "receipt_tax": 32, "tax": 32, "recharg": 32, "record_mail": 32, "record_mail_off": 32, "rectangle_fil": 32, "rectangle_rounded_bottom": 32, "rectangle_rounded_top": 32, "rectangle_vert": 32, "rectangle_vertical_fil": 32, "rectangular_pr": 32, "rectangular": 32, "rectangular_prism_off": 32, "rectangular_prism_plu": 32, "recycl": 32, "recycle_off": 32, "refresh": 32, "refresh_alert": 32, "refresh_dot": 32, "refresh_off": 32, "regex": 32, "regex_off": 32, "relation_many_to_mani": 32, "mani": [32, 35], "relation_one_to_mani": 32, "relation_one_to_on": 32, "reload": 32, "repeat_off": 32, "repeat_onc": 32, "replace_fil": 32, "replace_off": 32, "report_analyt": 32, "report_med": 32, "report_monei": 32, "report_off": 32, "report_search": 32, "reserved_lin": 32, "reserv": 32, "restor": 32, "rewind_backward_10": 32, "rewind": 32, "backward": [32, 34], "rewind_backward_15": 32, "rewind_backward_20": 32, "rewind_backward_30": 32, "rewind_backward_40": 32, "40": 32, "rewind_backward_5": 32, "rewind_backward_50": 32, "rewind_backward_60": 32, "rewind_forward_10": 32, "rewind_forward_15": 32, "rewind_forward_20": 32, "rewind_forward_30": 32, "rewind_forward_40": 32, "rewind_forward_5": 32, "rewind_forward_50": 32, "rewind_forward_60": 32, "ribbon_health": 32, "ripple_off": 32, "road": 32, "road_off": 32, "road_sign": 32, "robot": [32, 38], "robot_off": 32, "rocket": 32, "rocket_off": 32, "roller_sk": 32, "roller": 32, "rollercoast": 32, "rollercoaster_off": 32, "rosett": 32, "rosette_fil": 32, "rosette_number_0": 32, "rosette_number_1": 32, "rosette_number_2": 32, "rosette_number_3": 32, "rosette_number_4": 32, "rosette_number_5": 32, "rosette_number_6": 32, "rosette_number_7": 32, "rosette_number_8": 32, "rosette_number_9": 32, "rotate_2": 32, "rotate_360": 32, "rotate_clockwis": 32, "clockwis": 32, "rotate_clockwise_2": 32, "rotate_dot": 32, "rotate_rectangl": 32, "rout": 32, "route_2": 32, "route_off": 32, "router": 32, "router_off": 32, "row_insert_bottom": 32, "row_insert_top": 32, "row_remov": 32, "rubber_stamp": 32, "rubber": 32, "stamp": 32, "rubber_stamp_off": 32, "ruler": 32, "ruler_2": 32, "ruler_2_off": 32, "ruler_3": 32, "ruler_measur": 32, "measur": 32, "ruler_off": 32, "s_turn_down": 32, "s_turn_left": 32, "s_turn_right": 32, "s_turn_up": 32, "sailboat": 32, "sailboat_2": 32, "sailboat_off": 32, "salad": 32, "salt": 32, "satellit": 32, "satellite_off": 32, "sausag": 32, "scale_off": 32, "scale_outlin": 32, "scale_outline_off": 32, "scan": 32, "scan_ey": 32, "schema": 32, "schema_off": 32, "school_bel": 32, "school_off": 32, "scissors_off": 32, "scooter": 32, "scooter_electr": 32, "scoreboard": 32, "screen_shar": 32, "screen_share_off": 32, "screenshot": 32, "scribbl": 32, "scribble_off": 32, "script_minu": 32, "script_plu": 32, "script_x": 32, "scuba_mask": 32, "scuba": 32, "scuba_mask_off": 32, "sdk": 32, "search_off": 32, "section_sign": 32, "seed": 32, "seeding_off": 32, "select_al": 32, "selector": 32, "send_off": 32, "seo": 32, "separ": 32, "separator_horizont": 32, "separator_vert": 32, "server_2": 32, "server_bolt": 32, "server_cog": 32, "server_off": 32, "servicemark": 32, "settings_2": 32, "settings_autom": 32, "autom": 32, "settings_bolt": 32, "settings_cancel": 32, "settings_check": 32, "settings_cod": 32, "settings_cog": 32, "settings_dollar": 32, "settings_down": 32, "settings_exclam": 32, "settings_fil": 32, "settings_heart": 32, "settings_minu": 32, "settings_off": 32, "settings_paus": 32, "settings_pin": 32, "settings_plu": 32, "settings_quest": 32, "settings_search": 32, "settings_shar": 32, "settings_star": 32, "settings_up": 32, "settings_x": 32, "shadow_off": 32, "shape_2": 32, "shape_3": 32, "shape_off": 32, "share_2": 32, "share_3": 32, "share_off": 32, "shi_jump": 32, "shi": 32, "shield_bolt": 32, "shield_cancel": 32, "shield_check": 32, "shield_check_fil": 32, "checker": 32, "shield_checkered_fil": 32, "shield_chevron": 32, "shield_cod": 32, "shield_cog": 32, "shield_dollar": 32, "shield_down": 32, "shield_exclam": 32, "shield_fil": 32, "shield_half": 32, "shield_half_fil": 32, "shield_heart": 32, "shield_lock": 32, "shield_lock_fil": 32, "shield_minu": 32, "shield_off": 32, "shield_paus": 32, "shield_pin": 32, "shield_plu": 32, "shield_quest": 32, "shield_search": 32, "shield_shar": 32, "shield_star": 32, "shield_up": 32, "shield_x": 32, "ship": 32, "ship_off": 32, "shirt": 32, "shirt_fil": 32, "shirt_off": 32, "shirt_sport": 32, "sport": 32, "shoe": 32, "shoe_off": 32, "shopping_bag": 32, "shop": 32, "shopping_cart": 32, "shopping_cart_discount": 32, "shopping_cart_off": 32, "shopping_cart_plu": 32, "shopping_cart_x": 32, "shovel": 32, "sign_left": 32, "sign_left_fil": 32, "sign_right": 32, "sign_right_fil": 32, "signal_2g": 32, "2g": 32, "signal_3g": 32, "3g": 32, "signal_4g": 32, "4g": 32, "signal_4g_plu": 32, "signal_5g": 32, "5g": 32, "signal_6g": 32, "6g": 32, "signal_": 32, "signal_g": 32, "signal_h": 32, "signal_h_plu": 32, "signal_lt": 32, "lte": 32, "signatur": 32, "signature_off": 32, "sitemap": 32, "sitemap_off": 32, "skateboard": 32, "skateboard_off": 32, "skull": 32, "slash": 32, "sleigh": 32, "slice": 32, "slideshow": 32, "smart_hom": 32, "smart": 32, "smart_home_off": 32, "smoke": 32, "smoking_no": 32, "snowflake_off": 32, "snowman": 32, "soccer_field": 32, "soccer": 32, "social": 32, "social_off": 32, "sock": 32, "sofa": 32, "sofa_off": 32, "solar_panel": 32, "solar": 32, "solar_panel_2": 32, "sort_0_9": 32, "sort_9_0": 32, "sort_a_z": 32, "sort_ascend": 32, "ascend": 32, "sort_ascending_2": 32, "sort_ascending_lett": 32, "sort_ascending_numb": 32, "sort_descend": 32, "descend": 32, "sort_descending_2": 32, "sort_descending_lett": 32, "sort_descending_numb": 32, "sort_z_a": 32, "soup": 32, "soup_off": 32, "source_cod": 32, "space_off": 32, "spacing_horizont": 32, "spacing_vert": 32, "spade": 32, "spade_fil": 32, "sparkl": [32, 35], "speakerphon": 32, "speedboat": 32, "sphere_off": 32, "sphere_plu": 32, "spider": 32, "spiral": 32, "spiral_off": 32, "sport_billard": 32, "billard": 32, "sprai": 32, "spy": 32, "spy_off": 32, "sql": 32, "square_0_fil": 32, "square_1_fil": 32, "square_2_fil": 32, "square_3_fil": 32, "square_4_fil": 32, "square_5_fil": 32, "square_6_fil": 32, "square_7_fil": 32, "square_8_fil": 32, "square_9_fil": 32, "square_arrow_down": 32, "square_arrow_left": 32, "square_arrow_right": 32, "square_arrow_up": 32, "square_asterisk": 32, "square_check": 32, "square_check_fil": 32, "square_chevron_down": 32, "square_chevron_left": 32, "square_chevron_right": 32, "square_chevron_up": 32, "square_chevrons_down": 32, "square_chevrons_left": 32, "square_chevrons_right": 32, "square_chevrons_up": 32, "square_dot": 32, "square_f0": 32, "f0": 32, "square_f0_fil": 32, "square_f1": 32, "f1": 32, "square_f1_fil": 32, "square_f2": 32, "f2": 32, "square_f2_fil": 32, "square_f3": 32, "f3": 32, "square_f3_fil": 32, "square_f4": 32, "f4": 32, "square_f4_fil": 32, "square_f5": 32, "f5": 32, "square_f5_fil": 32, "square_f6": 32, "f6": 32, "square_f6_fil": 32, "square_f7": 32, "f7": 32, "square_f7_fil": 32, "square_f8": 32, "f8": 32, "square_f8_fil": 32, "square_f9": 32, "f9": 32, "square_f9_fil": 32, "square_forbid": 32, "square_forbid_2": 32, "square_half": 32, "square_kei": 32, "square_letter_a": 32, "square_letter_b": 32, "square_letter_c": 32, "square_letter_d": 32, "square_letter_": 32, "square_letter_f": 32, "square_letter_g": 32, "square_letter_h": 32, "square_letter_i": 32, "square_letter_j": 32, "square_letter_k": 32, "square_letter_l": 32, "square_letter_m": 32, "square_letter_n": 32, "square_letter_o": 32, "square_letter_p": 32, "square_letter_q": 32, "square_letter_r": 32, "square_letter_t": 32, "square_letter_u": 32, "square_letter_v": 32, "square_letter_w": 32, "square_letter_x": 32, "square_letter_z": 32, "square_minu": 32, "square_number_0": 32, "square_number_1": 32, "square_number_2": 32, "square_number_3": 32, "square_number_4": 32, "square_number_5": 32, "square_number_6": 32, "square_number_7": 32, "square_number_8": 32, "square_number_9": 32, "square_off": 32, "square_plu": 32, "square_root": 32, "square_root_2": 32, "square_rot": 32, "square_rotated_fil": 32, "square_rotated_forbid": 32, "square_rotated_forbid_2": 32, "square_rotated_off": 32, "square_round": 32, "square_rounded_arrow_down": 32, "square_rounded_arrow_down_fil": 32, "square_rounded_arrow_left": 32, "square_rounded_arrow_left_fil": 32, "square_rounded_arrow_right": 32, "square_rounded_arrow_right_fil": 32, "square_rounded_arrow_up": 32, "square_rounded_arrow_up_fil": 32, "square_rounded_check": 32, "square_rounded_check_fil": 32, "square_rounded_chevron_down": 32, "square_rounded_chevron_down_fil": 32, "square_rounded_chevron_left": 32, "square_rounded_chevron_left_fil": 32, "square_rounded_chevron_right": 32, "square_rounded_chevron_right_fil": 32, "square_rounded_chevron_up": 32, "square_rounded_chevron_up_fil": 32, "square_rounded_chevrons_down": 32, "square_rounded_chevrons_down_fil": 32, "square_rounded_chevrons_left": 32, "square_rounded_chevrons_left_fil": 32, "square_rounded_chevrons_right": 32, "square_rounded_chevrons_right_fil": 32, "square_rounded_chevrons_up": 32, "square_rounded_chevrons_up_fil": 32, "square_rounded_fil": 32, "square_rounded_letter_a": 32, "square_rounded_letter_b": 32, "square_rounded_letter_c": 32, "square_rounded_letter_d": 32, "square_rounded_letter_": 32, "square_rounded_letter_f": 32, "square_rounded_letter_g": 32, "square_rounded_letter_h": 32, "square_rounded_letter_i": 32, "square_rounded_letter_j": 32, "square_rounded_letter_k": 32, "square_rounded_letter_l": 32, "square_rounded_letter_m": 32, "square_rounded_letter_n": 32, "square_rounded_letter_o": 32, "square_rounded_letter_p": 32, "square_rounded_letter_q": 32, "square_rounded_letter_r": 32, "square_rounded_letter_t": 32, "square_rounded_letter_u": 32, "square_rounded_letter_v": 32, "square_rounded_letter_w": 32, "square_rounded_letter_x": 32, "square_rounded_letter_z": 32, "square_rounded_minu": 32, "square_rounded_number_0": 32, "square_rounded_number_0_fil": 32, "square_rounded_number_1": 32, "square_rounded_number_1_fil": 32, "square_rounded_number_2": 32, "square_rounded_number_2_fil": 32, "square_rounded_number_3": 32, "square_rounded_number_3_fil": 32, "square_rounded_number_4": 32, "square_rounded_number_4_fil": 32, "square_rounded_number_5": 32, "square_rounded_number_5_fil": 32, "square_rounded_number_6": 32, "square_rounded_number_6_fil": 32, "square_rounded_number_7": 32, "square_rounded_number_7_fil": 32, "square_rounded_number_8": 32, "square_rounded_number_8_fil": 32, "square_rounded_number_9": 32, "square_rounded_number_9_fil": 32, "square_rounded_plu": 32, "square_rounded_plus_fil": 32, "square_rounded_x": 32, "square_rounded_x_fil": 32, "square_toggl": 32, "square_toggle_horizont": 32, "square_x": 32, "squares_diagon": 32, "squares_fil": 32, "stack_2": 32, "stack_3": 32, "stack_pop": 32, "pop": 32, "stack_push": 32, "push": [32, 34], "stair": 32, "stairs_down": 32, "stairs_up": 32, "star_fil": 32, "star_half": 32, "star_half_fil": 32, "star_off": 32, "stars_fil": 32, "stars_off": 32, "status_chang": 32, "statu": 32, "steering_wheel": 32, "steer": 32, "wheel": 32, "steering_wheel_off": 32, "step_into": 32, "step_out": 32, "stereo_glass": 32, "stereo": 32, "stethoscop": 32, "stethoscope_off": 32, "sticker": 32, "storm_off": 32, "stretching_2": 32, "strikethrough": 32, "submarin": 32, "subscript": 32, "subtask": 32, "sum": 32, "sum_off": 32, "sun": 32, "sun_fil": 32, "sun_high": 32, "sun_low": 32, "sun_moon": 32, "sun_off": 32, "sun_wind": 32, "sunglass": 32, "sunris": 32, "sunset": 32, "sunset_2": 32, "superscript": 32, "svg": 32, "swim": 32, "swipe": 32, "switch_2": 32, "switch_3": 32, "switch_horizont": 32, "switch_vert": 32, "sword": 32, "sword_off": 32, "table_alia": 32, "table_column": 32, "table_down": 32, "table_export": 32, "table_fil": 32, "table_heart": 32, "table_import": 32, "table_minu": 32, "table_off": 32, "table_opt": 32, "table_plu": 32, "table_row": 32, "table_shar": 32, "table_shortcut": 32, "shortcut": 32, "tag": 32, "tag_off": 32, "tags_off": 32, "tallymark_1": 32, "tallymark": 32, "tallymark_2": 32, "tallymark_3": 32, "tallymark_4": 32, "tank": 32, "target_arrow": 32, "target_off": 32, "teapot": 32, "telescop": 32, "telescope_off": 32, "temperatur": 32, "temperature_celsiu": 32, "celsiu": 32, "temperature_fahrenheit": 32, "fahrenheit": 32, "temperature_minu": 32, "temperature_off": 32, "temperature_plu": 32, "templat": 32, "template_off": 32, "tent": 32, "tent_off": 32, "terminal_2": 32, "test_pip": 32, "test_pipe_2": 32, "test_pipe_off": 32, "tex": 32, "text_capt": 32, "caption": 32, "text_color": 32, "text_decreas": 32, "text_direction_ltr": 32, "ltr": 32, "text_direction_rtl": 32, "rtl": 32, "text_increas": 32, "text_orient": 32, "text_plu": 32, "text_recognit": 32, "text_res": 32, "text_siz": 32, "text_spellcheck": 32, "spellcheck": 32, "text_wrap": 32, "wrap": [32, 34], "text_wrap_dis": 32, "thermomet": 32, "thumb_down": 32, "thumb": 32, "thumb_down_fil": 32, "thumb_down_off": 32, "thumb_up": 32, "thumb_up_fil": 32, "thumb_up_off": 32, "tic_tac": 32, "ticket": 32, "ticket_off": 32, "tie": 32, "tild": 32, "tilt_shift": 32, "shift": 32, "tilt_shift_off": 32, "time_duration_0": 32, "durat": 32, "time_duration_10": 32, "time_duration_15": 32, "time_duration_30": 32, "time_duration_45": 32, "time_duration_5": 32, "time_duration_60": 32, "time_duration_90": 32, "time_duration_off": 32, "timelin": 32, "timeline_ev": 32, "timeline_event_exclam": 32, "timeline_event_minu": 32, "timeline_event_plu": 32, "timeline_event_text": 32, "timeline_event_x": 32, "tir": 32, "toggle_left": 32, "toggle_right": 32, "toilet_pap": 32, "toilet": 32, "toilet_paper_off": 32, "toml": 32, "tools_kitchen": 32, "kitchen": 32, "tools_kitchen_2": 32, "tools_kitchen_2_off": 32, "tools_kitchen_off": 32, "tools_off": 32, "tooltip": 32, "topology_bu": 32, "topologi": 32, "topology_complex": 32, "complex": [32, 35], "topology_ful": 32, "topology_full_hierarchi": 32, "topology_r": 32, "topology_ring_2": 32, "topology_ring_3": 32, "topology_star": 32, "topology_star_2": 32, "topology_star_3": 32, "topology_star_r": 32, "topology_star_ring_2": 32, "topology_star_ring_3": 32, "torii": 32, "tornado": 32, "tournament": 32, "tower_off": 32, "tractor": 32, "trademark": 32, "traffic_con": 32, "traffic": 32, "traffic_cone_off": 32, "traffic_light": 32, "traffic_lights_off": 32, "train": 32, "transfer_in": 32, "transfer_out": 32, "transform_fil": 32, "transition_bottom": 32, "transit": 32, "transition_left": 32, "transition_right": 32, "transition_top": 32, "trash": 32, "trash_fil": 32, "trash_off": 32, "trash_x": 32, "trash_x_fil": 32, "treadmil": 32, "trekk": 32, "trending_down": 32, "trend": 32, "trending_down_2": 32, "trending_down_3": 32, "trending_up": 32, "trending_up_2": 32, "trending_up_3": 32, "triangle_fil": 32, "triangle_invert": 32, "invert": 32, "triangle_inverted_fil": 32, "triangle_off": 32, "triangle_square_circl": 32, "trident": 32, "trollei": 32, "trophi": 32, "trophy_fil": 32, "trophy_off": 32, "trowel": 32, "truck": 32, "truck_deliveri": 32, "deliveri": 32, "truck_load": 32, "truck_off": 32, "truck_return": 32, "txt": 32, "typography_off": 32, "ufo": 32, "ufo_off": 32, "umbrella": 32, "umbrella_fil": 32, "umbrella_off": 32, "underlin": 32, "unlink": 32, "urgent": 32, "usb": 32, "user_bolt": 32, "user_cancel": 32, "user_check": 32, "user_circl": 32, "user_cod": 32, "user_cog": 32, "user_dollar": 32, "user_down": 32, "user_edit": 32, "user_exclam": 32, "user_heart": 32, "user_minu": 32, "user_off": 32, "user_paus": 32, "user_pin": 32, "user_plu": 32, "user_quest": 32, "user_search": 32, "user_shar": 32, "user_shield": 32, "user_star": 32, "user_up": 32, "user_x": 32, "users_group": 32, "users_minu": 32, "users_plu": 32, "uv_index": 32, "uv": 32, "ux_circl": 32, "ux": 32, "vaccin": 32, "vaccine_bottl": 32, "vaccine_bottle_off": 32, "vaccine_off": 32, "vacuum_clean": 32, "vacuum": 32, "cleaner": 32, "variabl": 32, "variable_minu": 32, "variable_off": 32, "variable_plu": 32, "vector_bezi": 32, "bezier": [32, 35], "vector_bezier_2": 32, "vector_bezier_arc": 32, "vector_bezier_circl": 32, "vector_off": 32, "vector_splin": 32, "spline": [32, 35], "vector_triangl": 32, "vector_triangle_off": 32, "venu": 32, "versions_fil": 32, "versions_off": 32, "video": 32, "video_minu": 32, "video_off": 32, "video_plu": 32, "view_360": 32, "view_360_off": 32, "viewfinder_off": 32, "viewport_narrow": 32, "viewport_wid": 32, "wide": 32, "vinyl": 32, "vip": 32, "vip_off": 32, "viru": 32, "virus_off": 32, "virus_search": 32, "vocabulari": 32, "vocabulary_off": 32, "volcano": 32, "volum": 32, "volume_2": 32, "volume_3": 32, "volume_off": 32, "walk": 32, "wall": 32, "wall_off": 32, "wallet": 32, "wallet_off": 32, "wallpap": 32, "wallpaper_off": 32, "wand": 32, "wand_off": 32, "wash": 32, "wash_dri": 32, "dry": 32, "wash_dry_1": 32, "wash_dry_2": 32, "wash_dry_3": 32, "wash_dry_a": 32, "wash_dry_dip": 32, "dip": 32, "wash_dry_f": 32, "wash_dry_flat": 32, "flat": [32, 35], "wash_dry_hang": 32, "hang": 32, "wash_dry_off": 32, "wash_dry_p": 32, "wash_dry_shad": 32, "shade": [32, 35], "wash_dry_w": 32, "wash_dryclean": 32, "dryclean": 32, "wash_dryclean_off": 32, "wash_eco": 32, "wash_gentl": 32, "gentl": 32, "wash_hand": 32, "wash_machin": 32, "machin": 32, "wash_off": 32, "wash_press": 32, "wash_temperature_1": 32, "wash_temperature_2": 32, "wash_temperature_3": 32, "wash_temperature_4": 32, "wash_temperature_5": 32, "wash_temperature_6": 32, "wash_tumble_dri": 32, "tumbl": 32, "wash_tumble_off": 32, "waterpolo": 32, "wave_saw_tool": 32, "saw": 32, "wave_sin": 32, "sine": 32, "wave_squar": 32, "webhook": 32, "webhook_off": 32, "wheelchair": 32, "wheelchair_off": 32, "whirl": 32, "wifi": 32, "wifi_0": 32, "wifi_1": 32, "wifi_2": 32, "wifi_off": 32, "wind_off": 32, "windmil": 32, "windmill_fil": 32, "windmill_off": 32, "window_maxim": 32, "window_minim": 32, "window_off": 32, "windsock": 32, "wiper": 32, "wiper_wash": 32, "woman": 32, "wood": 32, "world_bolt": 32, "world_cancel": 32, "world_check": 32, "world_cod": 32, "world_cog": 32, "world_dollar": 32, "world_down": 32, "world_download": 32, "world_exclam": 32, "world_heart": 32, "world_latitud": 32, "latitud": 32, "world_longitud": 32, "longitud": 32, "world_minu": 32, "world_off": 32, "world_paus": 32, "world_pin": 32, "world_plu": 32, "world_quest": 32, "world_search": 32, "world_shar": 32, "world_star": 32, "world_up": 32, "world_upload": 32, "world_www": 32, "www": 32, "world_x": 32, "wrecking_bal": 32, "wreck": 32, "writing_off": 32, "writing_sign": 32, "writing_sign_off": 32, "xbox_a": 32, "xbox_b": 32, "xbox_x": 32, "xbox_i": 32, "yin_yang": 32, "yin": 32, "yang": 32, "yin_yang_fil": 32, "yoga": 32, "zeppelin": 32, "zeppelin_off": 32, "zodiac_aquariu": 32, "zodiac": 32, "aquariu": 32, "zodiac_ari": 32, "ari": 32, "zodiac_canc": 32, "cancer": 32, "zodiac_capricorn": 32, "capricorn": 32, "zodiac_gemini": 32, "gemini": 32, "zodiac_leo": 32, "leo": 32, "zodiac_libra": 32, "libra": 32, "zodiac_pisc": 32, "pisc": 32, "zodiac_sagittariu": 32, "sagittariu": 32, "zodiac_scorpio": 32, "scorpio": 32, "zodiac_tauru": 32, "tauru": 32, "zodiac_virgo": 32, "virgo": 32, "zoom_cancel": 32, "zoom_check": 32, "zoom_check_fil": 32, "zoom_cod": 32, "zoom_exclam": 32, "zoom_fil": 32, "zoom_in": 32, "zoom_in_area": 32, "zoom_in_area_fil": 32, "zoom_in_fil": 32, "zoom_monei": 32, "zoom_out": 32, "zoom_out_area": 32, "zoom_out_fil": 32, "zoom_pan": 32, "pan": 32, "zoom_quest": 32, "zoom_replac": 32, "zoom_reset": 32, "zzz": 32, "zzz_off": 32, "librari": [33, 35], "featur": [33, 35, 37], "primit": [33, 35, 37], "programmat": 33, "entir": 33, "easi": 33, "over": [33, 35, 38], "ssh": 33, "develop": 33, "infra": 34, "infrastructur": 34, "port": [34, 37, 38], "individu": 34, "what": 34, "under": [34, 35], "hood": [34, 35], "unless": 34, "scratch": 34, "websockclientconnect": 34, "websockmessagehandl": 34, "listen": [34, 35], "unsafe_send_messag": 34, "queue_messag": 34, "safe": 34, "register_handl": 34, "message_cl": 34, "tmessag": 34, "clientid": 34, "unregister_handl": 34, "unregist": 34, "mix": 34, "websockserv": 34, "By": [34, 35], "retriev": 34, "host": [34, 37], "bind": [34, 37], "message_class": 34, "have": [34, 35, 37], "argument": [34, 35], "futur": 34, "http_server_root": 34, "verbos": [34, 37], "client_api_vers": 34, "compat": 34, "cb": [34, 37], "newli": [34, 37], "on_client_disconnect": [34, 37], "disconnect": [34, 37], "queue": 34, "persist": 34, "cull": 34, "redundancy_kei": 34, "flush_client": 34, "excluded_self_cli": 34, "as_serializable_dict": 34, "classmethod": [34, 38], "deseri": 34, "get_subclass": 34, "recurs": 34, "redund": 34, "keep": 34, "latest": 34, "typescriptannotationoverrid": 34, "generate_typescript_interfac": 34, "ro": 35, "altern": 35, "maya": 35, "hidden": 35, "ve": 35, "except": 35, "add_glb": 35, "glb_data": 35, "gltf": 35, "glb": [35, 36], "simpler": 35, "programat": 35, "pygltflib": 35, "payload": 35, "r_pl": 35, "t_pl": 35, "curve_typ": 35, "centripet": 35, "chordal": 35, "catmullrom": 35, "scenenodehandl": [35, 36], "catmul": 35, "rom": 35, "interpol": 35, "algorithm": 35, "cubic": 35, "jpeg_qual": 35, "represent": [35, 36, 38], "understand": 35, "coverag": 35, "convent": [35, 38], "qualiti": 35, "025": 35, "origin_radiu": 35, "trajectori": 35, "ten": 35, "batch": [35, 36, 38], "add_batched_ax": 35, "mai": 35, "better": 35, "than": 35, "batched_wxyz": 35, "batched_posit": 35, "batchedaxeshandl": [35, 36], "overlap": 35, "significantli": 35, "primari": 35, "wxyzs_batch": 35, "nx4": 35, "positions_batch": 35, "nx3": 35, "instanc": 35, "much": 35, "cell_color": 35, "cell_thick": 35, "cell_siz": 35, "section_color": 35, "140": 35, "section_thick": 35, "section_s": 35, "refer": [35, 38], "along": 35, "thick": 35, "labelhandl": [35, 36], "pointcloudhandl": [35, 36], "opac": 35, "materi": 35, "toon3": 35, "toon5": 35, "flat_shad": 35, "meshhandl": [35, 36], "vertex": 35, "opaqu": 35, "surfac": 35, "intern": [35, 38], "subdivis": 35, "composit": 35, "render_width": 35, "render_height": 35, "imagehandl": [35, 36], "auto_transform": 35, "active_ax": 35, "disable_rot": 35, "translation_limit": 35, "rotation_limit": 35, "exactli": 35, "anoth": [35, 38], "on_scene_pointer_remov": 35, "p_parent": 36, "p_local": 36, "equival": 36, "doe": 36, "level": 37, "core": 37, "shown": 37, "belong": 37, "get_host": 37, "get_port": 37, "public": 37, "establish": 37, "afterward": 37, "experiment": 37, "shouldn": 37, "critic": 37, "fail": 37, "disconnect_share_url": 37, "dictionari": 37, "rigid": 38, "jaxli": 38, "parameter": 38, "matrixliegroup": 38, "matrix_dim": 38, "classvar": 38, "parameters_dim": 38, "underli": 38, "tangent_dim": 38, "tangent": 38, "space_dim": 38, "__matmul__": 38, "overload": 38, "batch_ax": 38, "lead": 38, "member": 38, "representaiton": 38, "homogen": 38, "compos": 38, "expm": 38, "wedg": 38, "exponenti": 38, "vee": 38, "logm": 38, "adjoint": 38, "grouptyp": 38, "adj_t": 38, "twist": 38, "wrench": 38, "jacobian": 38, "across": 38, "get_batch_ax": 38, "sebas": 38, "containedsotyp": 38, "special": 38, "euclidean": 38, "dimension": 38, "from_rot": 38, "sobas": 38, "orthogon": 38, "se2": 38, "so2": 38, "proper": 38, "rule": 38, "co": 38, "vy": 38, "unit_complex_xi": 38, "from_xy_theta": 38, "theta": 38, "qw": 38, "qx": 38, "qy": 38, "qz": 38, "vz": 38, "omega_x": 38, "omega_i": 38, "omega_z": 38, "wxyz_xyz": 38, "onpt": 38, "unit_complex": 38, "from_radian": 38, "scalar": 38, "as_radian": 38, "from_rpy_radian": 38, "roll": 38, "pitch": 38, "yaw": 38, "euler": 38, "zyx": 38, "second": 38, "from_quaternion_xyzw": 38, "xyzw": 38, "constructor": 38, "as_quaternion_xyzw": 38, "as_rpy_radian": 38, "rollpitchyaw": 38, "compute_roll_radian": 38, "compute_pitch_radian": 38, "compute_yaw_radian": 38}, "objects": {"viser": [[36, 0, 1, "", "BatchedAxesHandle"], [36, 0, 1, "", "CameraFrustumHandle"], [0, 0, 1, "", "CameraHandle"], [1, 0, 1, "", "ClientHandle"], [36, 0, 1, "", "FrameHandle"], [36, 0, 1, "", "GlbHandle"], [36, 0, 1, "", "Gui3dContainerHandle"], [30, 0, 1, "", "GuiApi"], [31, 0, 1, "", "GuiButtonGroupHandle"], [31, 0, 1, "", "GuiButtonHandle"], [31, 0, 1, "", "GuiDropdownHandle"], [4, 0, 1, "", "GuiEvent"], [31, 0, 1, "", "GuiFolderHandle"], [31, 0, 1, "", "GuiInputHandle"], [31, 0, 1, "", "GuiMarkdownHandle"], [31, 0, 1, "", "GuiPlotlyHandle"], [31, 0, 1, "", "GuiTabGroupHandle"], [31, 0, 1, "", "GuiTabHandle"], [32, 0, 1, "", "Icon"], [32, 0, 1, "", "IconName"], [36, 0, 1, "", "ImageHandle"], [36, 0, 1, "", "LabelHandle"], [36, 0, 1, "", "MeshHandle"], [36, 0, 1, "", "PointCloudHandle"], [35, 0, 1, "", "SceneApi"], [36, 0, 1, "", "SceneNodeHandle"], [4, 0, 1, "", "SceneNodePointerEvent"], [4, 0, 1, "", "ScenePointerEvent"], [36, 0, 1, "", "TransformControlsHandle"], [37, 0, 1, "", "ViserServer"], [29, 4, 0, "-", "extras"], [34, 4, 0, "-", "infra"], [38, 4, 0, "-", "transforms"]], "viser.BatchedAxesHandle": [[36, 1, 1, "", "on_click"], [36, 2, 1, "", "position"], [36, 1, 1, "", "remove"], [36, 2, 1, "", "visible"], [36, 2, 1, "", "wxyz"]], "viser.CameraFrustumHandle": [[36, 1, 1, "", "on_click"], [36, 2, 1, "", "position"], [36, 1, 1, "", "remove"], [36, 2, 1, "", "visible"], [36, 2, 1, "", "wxyz"]], "viser.CameraHandle": [[0, 2, 1, "", "aspect"], [0, 2, 1, "", "client"], [0, 2, 1, "", "fov"], [0, 1, 1, "", "get_render"], [0, 2, 1, "", "look_at"], [0, 1, 1, "", "on_update"], [0, 2, 1, "", "position"], [0, 2, 1, "", "up_direction"], [0, 2, 1, "", "update_timestamp"], [0, 2, 1, "", "wxyz"]], "viser.ClientHandle": [[1, 1, 1, "", "atomic"], [1, 3, 1, "", "camera"], [1, 3, 1, "", "client_id"], [1, 1, 1, "", "flush"], [1, 3, 1, "", "gui"], [1, 3, 1, "", "scene"], [1, 1, 1, "", "send_file_download"]], "viser.FrameHandle": [[36, 1, 1, "", "on_click"], [36, 2, 1, "", "position"], [36, 1, 1, "", "remove"], [36, 2, 1, "", "visible"], [36, 2, 1, "", "wxyz"]], "viser.GlbHandle": [[36, 1, 1, "", "on_click"], [36, 2, 1, "", "position"], [36, 1, 1, "", "remove"], [36, 2, 1, "", "visible"], [36, 2, 1, "", "wxyz"]], "viser.Gui3dContainerHandle": [[36, 2, 1, "", "position"], [36, 1, 1, "", "remove"], [36, 2, 1, "", "visible"], [36, 2, 1, "", "wxyz"]], "viser.GuiApi": [[30, 1, 1, "", "add_button"], [30, 1, 1, "", "add_button_group"], [30, 1, 1, "", "add_checkbox"], [30, 1, 1, "", "add_dropdown"], [30, 1, 1, "", "add_folder"], [30, 1, 1, "", "add_markdown"], [30, 1, 1, "", "add_modal"], [30, 1, 1, "", "add_multi_slider"], [30, 1, 1, "", "add_number"], [30, 1, 1, "", "add_plotly"], [30, 1, 1, "", "add_rgb"], [30, 1, 1, "", "add_rgba"], [30, 1, 1, "", "add_slider"], [30, 1, 1, "", "add_tab_group"], [30, 1, 1, "", "add_text"], [30, 1, 1, "", "add_upload_button"], [30, 1, 1, "", "add_vector2"], [30, 1, 1, "", "add_vector3"], [30, 1, 1, "", "configure_theme"], [30, 1, 1, "", "set_panel_label"]], "viser.GuiButtonGroupHandle": [[31, 1, 1, "", "__post_init__"], [31, 2, 1, "", "disabled"], [31, 1, 1, "", "on_click"], [31, 2, 1, "", "order"], [31, 1, 1, "", "remove"], [31, 2, 1, "", "update_timestamp"], [31, 2, 1, "", "value"], [31, 2, 1, "", "visible"]], "viser.GuiButtonHandle": [[31, 1, 1, "", "__post_init__"], [31, 2, 1, "", "disabled"], [31, 1, 1, "", "on_click"], [31, 2, 1, "", "order"], [31, 1, 1, "", "remove"], [31, 2, 1, "", "update_timestamp"], [31, 2, 1, "", "value"], [31, 2, 1, "", "visible"]], "viser.GuiDropdownHandle": [[31, 1, 1, "", "__post_init__"], [31, 2, 1, "", "disabled"], [31, 1, 1, "", "on_update"], [31, 2, 1, "", "options"], [31, 2, 1, "", "order"], [31, 1, 1, "", "remove"], [31, 2, 1, "", "update_timestamp"], [31, 2, 1, "", "value"], [31, 2, 1, "", "visible"]], "viser.GuiEvent": [[4, 3, 1, "", "client"], [4, 3, 1, "", "client_id"], [4, 3, 1, "", "target"]], "viser.GuiFolderHandle": [[31, 2, 1, "", "order"], [31, 1, 1, "", "remove"]], "viser.GuiInputHandle": [[31, 1, 1, "", "__post_init__"], [31, 2, 1, "", "disabled"], [31, 1, 1, "", "on_update"], [31, 2, 1, "", "order"], [31, 1, 1, "", "remove"], [31, 2, 1, "", "update_timestamp"], [31, 2, 1, "", "value"], [31, 2, 1, "", "visible"]], "viser.GuiMarkdownHandle": [[31, 1, 1, "", "__post_init__"], [31, 2, 1, "", "content"], [31, 2, 1, "", "order"], [31, 1, 1, "", "remove"], [31, 2, 1, "", "visible"]], "viser.GuiPlotlyHandle": [[31, 1, 1, "", "__post_init__"], [31, 2, 1, "", "aspect"], [31, 2, 1, "", "figure"], [31, 2, 1, "", "order"], [31, 1, 1, "", "remove"], [31, 2, 1, "", "visible"]], "viser.GuiTabGroupHandle": [[31, 1, 1, "", "add_tab"], [31, 2, 1, "", "order"], [31, 1, 1, "", "remove"]], "viser.GuiTabHandle": [[31, 1, 1, "", "remove"]], "viser.Icon": [[32, 3, 1, "", "ABACUS"], [32, 3, 1, "", "ABACUS_OFF"], [32, 3, 1, "", "ABC"], [32, 3, 1, "", "ACCESSIBLE"], [32, 3, 1, "", "ACCESSIBLE_OFF"], [32, 3, 1, "", "ACCESSIBLE_OFF_FILLED"], [32, 3, 1, "", "ACCESS_POINT"], [32, 3, 1, "", "ACCESS_POINT_OFF"], [32, 3, 1, "", "ACTIVITY"], [32, 3, 1, "", "ACTIVITY_HEARTBEAT"], [32, 3, 1, "", "AD"], [32, 3, 1, "", "ADDRESS_BOOK"], [32, 3, 1, "", "ADDRESS_BOOK_OFF"], [32, 3, 1, "", "ADJUSTMENTS"], [32, 3, 1, "", "ADJUSTMENTS_ALT"], [32, 3, 1, "", "ADJUSTMENTS_BOLT"], [32, 3, 1, "", "ADJUSTMENTS_CANCEL"], [32, 3, 1, "", "ADJUSTMENTS_CHECK"], [32, 3, 1, "", "ADJUSTMENTS_CODE"], [32, 3, 1, "", "ADJUSTMENTS_COG"], [32, 3, 1, "", "ADJUSTMENTS_DOLLAR"], [32, 3, 1, "", "ADJUSTMENTS_DOWN"], [32, 3, 1, "", "ADJUSTMENTS_EXCLAMATION"], [32, 3, 1, "", "ADJUSTMENTS_FILLED"], [32, 3, 1, "", "ADJUSTMENTS_HEART"], [32, 3, 1, "", "ADJUSTMENTS_HORIZONTAL"], [32, 3, 1, "", "ADJUSTMENTS_MINUS"], [32, 3, 1, "", "ADJUSTMENTS_OFF"], [32, 3, 1, "", "ADJUSTMENTS_PAUSE"], [32, 3, 1, "", "ADJUSTMENTS_PIN"], [32, 3, 1, "", "ADJUSTMENTS_PLUS"], [32, 3, 1, "", "ADJUSTMENTS_QUESTION"], [32, 3, 1, "", "ADJUSTMENTS_SEARCH"], [32, 3, 1, "", "ADJUSTMENTS_SHARE"], [32, 3, 1, "", "ADJUSTMENTS_STAR"], [32, 3, 1, "", "ADJUSTMENTS_UP"], [32, 3, 1, "", "ADJUSTMENTS_X"], [32, 3, 1, "", "AD_2"], [32, 3, 1, "", "AD_CIRCLE"], [32, 3, 1, "", "AD_CIRCLE_FILLED"], [32, 3, 1, "", "AD_CIRCLE_OFF"], [32, 3, 1, "", "AD_FILLED"], [32, 3, 1, "", "AD_OFF"], [32, 3, 1, "", "AERIAL_LIFT"], [32, 3, 1, "", "AFFILIATE"], [32, 3, 1, "", "AFFILIATE_FILLED"], [32, 3, 1, "", "AIR_BALLOON"], [32, 3, 1, "", "AIR_CONDITIONING"], [32, 3, 1, "", "AIR_CONDITIONING_DISABLED"], [32, 3, 1, "", "ALARM"], [32, 3, 1, "", "ALARM_FILLED"], [32, 3, 1, "", "ALARM_MINUS"], [32, 3, 1, "", "ALARM_MINUS_FILLED"], [32, 3, 1, "", "ALARM_OFF"], [32, 3, 1, "", "ALARM_PLUS"], [32, 3, 1, "", "ALARM_PLUS_FILLED"], [32, 3, 1, "", "ALARM_SNOOZE"], [32, 3, 1, "", "ALARM_SNOOZE_FILLED"], [32, 3, 1, "", "ALBUM"], [32, 3, 1, "", "ALBUM_OFF"], [32, 3, 1, "", "ALERT_CIRCLE"], [32, 3, 1, "", "ALERT_CIRCLE_FILLED"], [32, 3, 1, "", "ALERT_HEXAGON"], [32, 3, 1, "", "ALERT_HEXAGON_FILLED"], [32, 3, 1, "", "ALERT_OCTAGON"], [32, 3, 1, "", "ALERT_OCTAGON_FILLED"], [32, 3, 1, "", "ALERT_SMALL"], [32, 3, 1, "", "ALERT_SQUARE"], [32, 3, 1, "", "ALERT_SQUARE_FILLED"], [32, 3, 1, "", "ALERT_SQUARE_ROUNDED"], [32, 3, 1, "", "ALERT_SQUARE_ROUNDED_FILLED"], [32, 3, 1, "", "ALERT_TRIANGLE"], [32, 3, 1, "", "ALERT_TRIANGLE_FILLED"], [32, 3, 1, "", "ALIEN"], [32, 3, 1, "", "ALIEN_FILLED"], [32, 3, 1, "", "ALIGN_BOX_BOTTOM_CENTER"], [32, 3, 1, "", "ALIGN_BOX_BOTTOM_CENTER_FILLED"], [32, 3, 1, "", "ALIGN_BOX_BOTTOM_LEFT"], [32, 3, 1, "", "ALIGN_BOX_BOTTOM_LEFT_FILLED"], [32, 3, 1, "", "ALIGN_BOX_BOTTOM_RIGHT"], [32, 3, 1, "", "ALIGN_BOX_BOTTOM_RIGHT_FILLED"], [32, 3, 1, "", "ALIGN_BOX_CENTER_BOTTOM"], [32, 3, 1, "", "ALIGN_BOX_CENTER_MIDDLE"], [32, 3, 1, "", "ALIGN_BOX_CENTER_MIDDLE_FILLED"], [32, 3, 1, "", "ALIGN_BOX_CENTER_STRETCH"], [32, 3, 1, "", "ALIGN_BOX_CENTER_TOP"], [32, 3, 1, "", "ALIGN_BOX_LEFT_BOTTOM"], [32, 3, 1, "", "ALIGN_BOX_LEFT_BOTTOM_FILLED"], [32, 3, 1, "", "ALIGN_BOX_LEFT_MIDDLE"], [32, 3, 1, "", "ALIGN_BOX_LEFT_MIDDLE_FILLED"], [32, 3, 1, "", "ALIGN_BOX_LEFT_STRETCH"], [32, 3, 1, "", "ALIGN_BOX_LEFT_TOP"], [32, 3, 1, "", "ALIGN_BOX_LEFT_TOP_FILLED"], [32, 3, 1, "", "ALIGN_BOX_RIGHT_BOTTOM"], [32, 3, 1, "", "ALIGN_BOX_RIGHT_BOTTOM_FILLED"], [32, 3, 1, "", "ALIGN_BOX_RIGHT_MIDDLE"], [32, 3, 1, "", "ALIGN_BOX_RIGHT_MIDDLE_FILLED"], [32, 3, 1, "", "ALIGN_BOX_RIGHT_STRETCH"], [32, 3, 1, "", "ALIGN_BOX_RIGHT_TOP"], [32, 3, 1, "", "ALIGN_BOX_RIGHT_TOP_FILLED"], [32, 3, 1, "", "ALIGN_BOX_TOP_CENTER"], [32, 3, 1, "", "ALIGN_BOX_TOP_CENTER_FILLED"], [32, 3, 1, "", "ALIGN_BOX_TOP_LEFT"], [32, 3, 1, "", "ALIGN_BOX_TOP_LEFT_FILLED"], [32, 3, 1, "", "ALIGN_BOX_TOP_RIGHT"], [32, 3, 1, "", "ALIGN_BOX_TOP_RIGHT_FILLED"], [32, 3, 1, "", "ALIGN_CENTER"], [32, 3, 1, "", "ALIGN_JUSTIFIED"], [32, 3, 1, "", "ALIGN_LEFT"], [32, 3, 1, "", "ALIGN_RIGHT"], [32, 3, 1, "", "ALPHA"], [32, 3, 1, "", "ALPHABET_CYRILLIC"], [32, 3, 1, "", "ALPHABET_GREEK"], [32, 3, 1, "", "ALPHABET_LATIN"], [32, 3, 1, "", "AMBULANCE"], [32, 3, 1, "", "AMPERSAND"], [32, 3, 1, "", "ANALYZE"], [32, 3, 1, "", "ANALYZE_FILLED"], [32, 3, 1, "", "ANALYZE_OFF"], [32, 3, 1, "", "ANCHOR"], [32, 3, 1, "", "ANCHOR_OFF"], [32, 3, 1, "", "ANGLE"], [32, 3, 1, "", "ANKH"], [32, 3, 1, "", "ANTENNA"], [32, 3, 1, "", "ANTENNA_BARS_1"], [32, 3, 1, "", "ANTENNA_BARS_2"], [32, 3, 1, "", "ANTENNA_BARS_3"], [32, 3, 1, "", "ANTENNA_BARS_4"], [32, 3, 1, "", "ANTENNA_BARS_5"], [32, 3, 1, "", "ANTENNA_BARS_OFF"], [32, 3, 1, "", "ANTENNA_OFF"], [32, 3, 1, "", "APERTURE"], [32, 3, 1, "", "APERTURE_OFF"], [32, 3, 1, "", "API"], [32, 3, 1, "", "API_APP"], [32, 3, 1, "", "API_APP_OFF"], [32, 3, 1, "", "API_OFF"], [32, 3, 1, "", "APPLE"], [32, 3, 1, "", "APPS"], [32, 3, 1, "", "APPS_FILLED"], [32, 3, 1, "", "APPS_OFF"], [32, 3, 1, "", "APP_WINDOW"], [32, 3, 1, "", "APP_WINDOW_FILLED"], [32, 3, 1, "", "ARCHIVE"], [32, 3, 1, "", "ARCHIVE_FILLED"], [32, 3, 1, "", "ARCHIVE_OFF"], [32, 3, 1, "", "ARMCHAIR"], [32, 3, 1, "", "ARMCHAIR_2"], [32, 3, 1, "", "ARMCHAIR_2_OFF"], [32, 3, 1, "", "ARMCHAIR_OFF"], [32, 3, 1, "", "ARROWS_CROSS"], [32, 3, 1, "", "ARROWS_DIAGONAL"], [32, 3, 1, "", "ARROWS_DIAGONAL_2"], [32, 3, 1, "", "ARROWS_DIAGONAL_MINIMIZE"], [32, 3, 1, "", "ARROWS_DIAGONAL_MINIMIZE_2"], [32, 3, 1, "", "ARROWS_DIFF"], [32, 3, 1, "", "ARROWS_DOUBLE_NE_SW"], [32, 3, 1, "", "ARROWS_DOUBLE_NW_SE"], [32, 3, 1, "", "ARROWS_DOUBLE_SE_NW"], [32, 3, 1, "", "ARROWS_DOUBLE_SW_NE"], [32, 3, 1, "", "ARROWS_DOWN"], [32, 3, 1, "", "ARROWS_DOWN_UP"], [32, 3, 1, "", "ARROWS_EXCHANGE"], [32, 3, 1, "", "ARROWS_EXCHANGE_2"], [32, 3, 1, "", "ARROWS_HORIZONTAL"], [32, 3, 1, "", "ARROWS_JOIN"], [32, 3, 1, "", "ARROWS_JOIN_2"], [32, 3, 1, "", "ARROWS_LEFT"], [32, 3, 1, "", "ARROWS_LEFT_DOWN"], [32, 3, 1, "", "ARROWS_LEFT_RIGHT"], [32, 3, 1, "", "ARROWS_MAXIMIZE"], [32, 3, 1, "", "ARROWS_MINIMIZE"], [32, 3, 1, "", "ARROWS_MOVE"], [32, 3, 1, "", "ARROWS_MOVE_HORIZONTAL"], [32, 3, 1, "", "ARROWS_MOVE_VERTICAL"], [32, 3, 1, "", "ARROWS_RANDOM"], [32, 3, 1, "", "ARROWS_RIGHT"], [32, 3, 1, "", "ARROWS_RIGHT_DOWN"], [32, 3, 1, "", "ARROWS_RIGHT_LEFT"], [32, 3, 1, "", "ARROWS_SHUFFLE"], [32, 3, 1, "", "ARROWS_SHUFFLE_2"], [32, 3, 1, "", "ARROWS_SORT"], [32, 3, 1, "", "ARROWS_SPLIT"], [32, 3, 1, "", "ARROWS_SPLIT_2"], [32, 3, 1, "", "ARROWS_TRANSFER_DOWN"], [32, 3, 1, "", "ARROWS_TRANSFER_UP"], [32, 3, 1, "", "ARROWS_UP"], [32, 3, 1, "", "ARROWS_UP_DOWN"], [32, 3, 1, "", "ARROWS_UP_LEFT"], [32, 3, 1, "", "ARROWS_UP_RIGHT"], [32, 3, 1, "", "ARROWS_VERTICAL"], [32, 3, 1, "", "ARROW_AUTOFIT_CONTENT"], [32, 3, 1, "", "ARROW_AUTOFIT_CONTENT_FILLED"], [32, 3, 1, "", "ARROW_AUTOFIT_DOWN"], [32, 3, 1, "", "ARROW_AUTOFIT_HEIGHT"], [32, 3, 1, "", "ARROW_AUTOFIT_LEFT"], [32, 3, 1, "", "ARROW_AUTOFIT_RIGHT"], [32, 3, 1, "", "ARROW_AUTOFIT_UP"], [32, 3, 1, "", "ARROW_AUTOFIT_WIDTH"], [32, 3, 1, "", "ARROW_BACK"], [32, 3, 1, "", "ARROW_BACK_UP"], [32, 3, 1, "", "ARROW_BACK_UP_DOUBLE"], [32, 3, 1, "", "ARROW_BADGE_DOWN"], [32, 3, 1, "", "ARROW_BADGE_DOWN_FILLED"], [32, 3, 1, "", "ARROW_BADGE_LEFT"], [32, 3, 1, "", "ARROW_BADGE_LEFT_FILLED"], [32, 3, 1, "", "ARROW_BADGE_RIGHT"], [32, 3, 1, "", "ARROW_BADGE_RIGHT_FILLED"], [32, 3, 1, "", "ARROW_BADGE_UP"], [32, 3, 1, "", "ARROW_BADGE_UP_FILLED"], [32, 3, 1, "", "ARROW_BAR_BOTH"], [32, 3, 1, "", "ARROW_BAR_DOWN"], [32, 3, 1, "", "ARROW_BAR_LEFT"], [32, 3, 1, "", "ARROW_BAR_RIGHT"], [32, 3, 1, "", "ARROW_BAR_TO_DOWN"], [32, 3, 1, "", "ARROW_BAR_TO_LEFT"], [32, 3, 1, "", "ARROW_BAR_TO_RIGHT"], [32, 3, 1, "", "ARROW_BAR_TO_UP"], [32, 3, 1, "", "ARROW_BAR_UP"], [32, 3, 1, "", "ARROW_BEAR_LEFT"], [32, 3, 1, "", "ARROW_BEAR_LEFT_2"], [32, 3, 1, "", "ARROW_BEAR_RIGHT"], [32, 3, 1, "", "ARROW_BEAR_RIGHT_2"], [32, 3, 1, "", "ARROW_BIG_DOWN"], [32, 3, 1, "", "ARROW_BIG_DOWN_FILLED"], [32, 3, 1, "", "ARROW_BIG_DOWN_LINE"], [32, 3, 1, "", "ARROW_BIG_DOWN_LINES"], [32, 3, 1, "", "ARROW_BIG_DOWN_LINES_FILLED"], [32, 3, 1, "", "ARROW_BIG_DOWN_LINE_FILLED"], [32, 3, 1, "", "ARROW_BIG_LEFT"], [32, 3, 1, "", "ARROW_BIG_LEFT_FILLED"], [32, 3, 1, "", "ARROW_BIG_LEFT_LINE"], [32, 3, 1, "", "ARROW_BIG_LEFT_LINES"], [32, 3, 1, "", "ARROW_BIG_LEFT_LINES_FILLED"], [32, 3, 1, "", "ARROW_BIG_LEFT_LINE_FILLED"], [32, 3, 1, "", "ARROW_BIG_RIGHT"], [32, 3, 1, "", "ARROW_BIG_RIGHT_FILLED"], [32, 3, 1, "", "ARROW_BIG_RIGHT_LINE"], [32, 3, 1, "", "ARROW_BIG_RIGHT_LINES"], [32, 3, 1, "", "ARROW_BIG_RIGHT_LINES_FILLED"], [32, 3, 1, "", "ARROW_BIG_RIGHT_LINE_FILLED"], [32, 3, 1, "", "ARROW_BIG_UP"], [32, 3, 1, "", "ARROW_BIG_UP_FILLED"], [32, 3, 1, "", "ARROW_BIG_UP_LINE"], [32, 3, 1, "", "ARROW_BIG_UP_LINES"], [32, 3, 1, "", "ARROW_BIG_UP_LINES_FILLED"], [32, 3, 1, "", "ARROW_BIG_UP_LINE_FILLED"], [32, 3, 1, "", "ARROW_BOUNCE"], [32, 3, 1, "", "ARROW_CAPSULE"], [32, 3, 1, "", "ARROW_CURVE_LEFT"], [32, 3, 1, "", "ARROW_CURVE_RIGHT"], [32, 3, 1, "", "ARROW_DOWN"], [32, 3, 1, "", "ARROW_DOWN_BAR"], [32, 3, 1, "", "ARROW_DOWN_CIRCLE"], [32, 3, 1, "", "ARROW_DOWN_LEFT"], [32, 3, 1, "", "ARROW_DOWN_LEFT_CIRCLE"], [32, 3, 1, "", "ARROW_DOWN_RHOMBUS"], [32, 3, 1, "", "ARROW_DOWN_RIGHT"], [32, 3, 1, "", "ARROW_DOWN_RIGHT_CIRCLE"], [32, 3, 1, "", "ARROW_DOWN_SQUARE"], [32, 3, 1, "", "ARROW_DOWN_TAIL"], [32, 3, 1, "", "ARROW_ELBOW_LEFT"], [32, 3, 1, "", "ARROW_ELBOW_RIGHT"], [32, 3, 1, "", "ARROW_FORK"], [32, 3, 1, "", "ARROW_FORWARD"], [32, 3, 1, "", "ARROW_FORWARD_UP"], [32, 3, 1, "", "ARROW_FORWARD_UP_DOUBLE"], [32, 3, 1, "", "ARROW_GUIDE"], [32, 3, 1, "", "ARROW_ITERATION"], [32, 3, 1, "", "ARROW_LEFT"], [32, 3, 1, "", "ARROW_LEFT_BAR"], [32, 3, 1, "", "ARROW_LEFT_CIRCLE"], [32, 3, 1, "", "ARROW_LEFT_RHOMBUS"], [32, 3, 1, "", "ARROW_LEFT_RIGHT"], [32, 3, 1, "", "ARROW_LEFT_SQUARE"], [32, 3, 1, "", "ARROW_LEFT_TAIL"], [32, 3, 1, "", "ARROW_LOOP_LEFT"], [32, 3, 1, "", "ARROW_LOOP_LEFT_2"], [32, 3, 1, "", "ARROW_LOOP_RIGHT"], [32, 3, 1, "", "ARROW_LOOP_RIGHT_2"], [32, 3, 1, "", "ARROW_MERGE"], [32, 3, 1, "", "ARROW_MERGE_BOTH"], [32, 3, 1, "", "ARROW_MERGE_LEFT"], [32, 3, 1, "", "ARROW_MERGE_RIGHT"], [32, 3, 1, "", "ARROW_MOVE_DOWN"], [32, 3, 1, "", "ARROW_MOVE_LEFT"], [32, 3, 1, "", "ARROW_MOVE_RIGHT"], [32, 3, 1, "", "ARROW_MOVE_UP"], [32, 3, 1, "", "ARROW_NARROW_DOWN"], [32, 3, 1, "", "ARROW_NARROW_LEFT"], [32, 3, 1, "", "ARROW_NARROW_RIGHT"], [32, 3, 1, "", "ARROW_NARROW_UP"], [32, 3, 1, "", "ARROW_RAMP_LEFT"], [32, 3, 1, "", "ARROW_RAMP_LEFT_2"], [32, 3, 1, "", "ARROW_RAMP_LEFT_3"], [32, 3, 1, "", "ARROW_RAMP_RIGHT"], [32, 3, 1, "", "ARROW_RAMP_RIGHT_2"], [32, 3, 1, "", "ARROW_RAMP_RIGHT_3"], [32, 3, 1, "", "ARROW_RIGHT"], [32, 3, 1, "", "ARROW_RIGHT_BAR"], [32, 3, 1, "", "ARROW_RIGHT_CIRCLE"], [32, 3, 1, "", "ARROW_RIGHT_RHOMBUS"], [32, 3, 1, "", "ARROW_RIGHT_SQUARE"], [32, 3, 1, "", "ARROW_RIGHT_TAIL"], [32, 3, 1, "", "ARROW_ROTARY_FIRST_LEFT"], [32, 3, 1, "", "ARROW_ROTARY_FIRST_RIGHT"], [32, 3, 1, "", "ARROW_ROTARY_LAST_LEFT"], [32, 3, 1, "", "ARROW_ROTARY_LAST_RIGHT"], [32, 3, 1, "", "ARROW_ROTARY_LEFT"], [32, 3, 1, "", "ARROW_ROTARY_RIGHT"], [32, 3, 1, "", "ARROW_ROTARY_STRAIGHT"], [32, 3, 1, "", "ARROW_ROUNDABOUT_LEFT"], [32, 3, 1, "", "ARROW_ROUNDABOUT_RIGHT"], [32, 3, 1, "", "ARROW_SHARP_TURN_LEFT"], [32, 3, 1, "", "ARROW_SHARP_TURN_RIGHT"], [32, 3, 1, "", "ARROW_UP"], [32, 3, 1, "", "ARROW_UP_BAR"], [32, 3, 1, "", "ARROW_UP_CIRCLE"], [32, 3, 1, "", "ARROW_UP_LEFT"], [32, 3, 1, "", "ARROW_UP_LEFT_CIRCLE"], [32, 3, 1, "", "ARROW_UP_RHOMBUS"], [32, 3, 1, "", "ARROW_UP_RIGHT"], [32, 3, 1, "", "ARROW_UP_RIGHT_CIRCLE"], [32, 3, 1, "", "ARROW_UP_SQUARE"], [32, 3, 1, "", "ARROW_UP_TAIL"], [32, 3, 1, "", "ARROW_WAVE_LEFT_DOWN"], [32, 3, 1, "", "ARROW_WAVE_LEFT_UP"], [32, 3, 1, "", "ARROW_WAVE_RIGHT_DOWN"], [32, 3, 1, "", "ARROW_WAVE_RIGHT_UP"], [32, 3, 1, "", "ARROW_ZIG_ZAG"], [32, 3, 1, "", "ARTBOARD"], [32, 3, 1, "", "ARTBOARD_FILLED"], [32, 3, 1, "", "ARTBOARD_OFF"], [32, 3, 1, "", "ARTICLE"], [32, 3, 1, "", "ARTICLE_FILLED_FILLED"], [32, 3, 1, "", "ARTICLE_OFF"], [32, 3, 1, "", "ASPECT_RATIO"], [32, 3, 1, "", "ASPECT_RATIO_FILLED"], [32, 3, 1, "", "ASPECT_RATIO_OFF"], [32, 3, 1, "", "ASSEMBLY"], [32, 3, 1, "", "ASSEMBLY_OFF"], [32, 3, 1, "", "ASSET"], [32, 3, 1, "", "ASTERISK"], [32, 3, 1, "", "ASTERISK_SIMPLE"], [32, 3, 1, "", "AT"], [32, 3, 1, "", "ATOM"], [32, 3, 1, "", "ATOM_2"], [32, 3, 1, "", "ATOM_2_FILLED"], [32, 3, 1, "", "ATOM_OFF"], [32, 3, 1, "", "AT_OFF"], [32, 3, 1, "", "AUGMENTED_REALITY"], [32, 3, 1, "", "AUGMENTED_REALITY_2"], [32, 3, 1, "", "AUGMENTED_REALITY_OFF"], [32, 3, 1, "", "AWARD"], [32, 3, 1, "", "AWARD_FILLED"], [32, 3, 1, "", "AWARD_OFF"], [32, 3, 1, "", "AXE"], [32, 3, 1, "", "AXIS_X"], [32, 3, 1, "", "AXIS_Y"], [32, 3, 1, "", "A_B"], [32, 3, 1, "", "A_B_2"], [32, 3, 1, "", "A_B_OFF"], [32, 3, 1, "", "BABY_BOTTLE"], [32, 3, 1, "", "BABY_CARRIAGE"], [32, 3, 1, "", "BACKHOE"], [32, 3, 1, "", "BACKPACK"], [32, 3, 1, "", "BACKPACK_OFF"], [32, 3, 1, "", "BACKSLASH"], [32, 3, 1, "", "BACKSPACE"], [32, 3, 1, "", "BACKSPACE_FILLED"], [32, 3, 1, "", "BADGE"], [32, 3, 1, "", "BADGES"], [32, 3, 1, "", "BADGES_FILLED"], [32, 3, 1, "", "BADGES_OFF"], [32, 3, 1, "", "BADGE_3D"], [32, 3, 1, "", "BADGE_4K"], [32, 3, 1, "", "BADGE_8K"], [32, 3, 1, "", "BADGE_AD"], [32, 3, 1, "", "BADGE_AR"], [32, 3, 1, "", "BADGE_CC"], [32, 3, 1, "", "BADGE_FILLED"], [32, 3, 1, "", "BADGE_HD"], [32, 3, 1, "", "BADGE_OFF"], [32, 3, 1, "", "BADGE_SD"], [32, 3, 1, "", "BADGE_TM"], [32, 3, 1, "", "BADGE_VO"], [32, 3, 1, "", "BADGE_VR"], [32, 3, 1, "", "BADGE_WC"], [32, 3, 1, "", "BAGUETTE"], [32, 3, 1, "", "BALLOON"], [32, 3, 1, "", "BALLOON_FILLED"], [32, 3, 1, "", "BALLOON_OFF"], [32, 3, 1, "", "BALLPEN"], [32, 3, 1, "", "BALLPEN_FILLED"], [32, 3, 1, "", "BALLPEN_OFF"], [32, 3, 1, "", "BALL_AMERICAN_FOOTBALL"], [32, 3, 1, "", "BALL_AMERICAN_FOOTBALL_OFF"], [32, 3, 1, "", "BALL_BASEBALL"], [32, 3, 1, "", "BALL_BASKETBALL"], [32, 3, 1, "", "BALL_BOWLING"], [32, 3, 1, "", "BALL_FOOTBALL"], [32, 3, 1, "", "BALL_FOOTBALL_OFF"], [32, 3, 1, "", "BALL_TENNIS"], [32, 3, 1, "", "BALL_VOLLEYBALL"], [32, 3, 1, "", "BAN"], [32, 3, 1, "", "BANDAGE"], [32, 3, 1, "", "BANDAGE_FILLED"], [32, 3, 1, "", "BANDAGE_OFF"], [32, 3, 1, "", "BARBELL"], [32, 3, 1, "", "BARBELL_OFF"], [32, 3, 1, "", "BARCODE"], [32, 3, 1, "", "BARCODE_OFF"], [32, 3, 1, "", "BARREL"], [32, 3, 1, "", "BARREL_OFF"], [32, 3, 1, "", "BARRIER_BLOCK"], [32, 3, 1, "", "BARRIER_BLOCK_OFF"], [32, 3, 1, "", "BASELINE"], [32, 3, 1, "", "BASELINE_DENSITY_LARGE"], [32, 3, 1, "", "BASELINE_DENSITY_MEDIUM"], [32, 3, 1, "", "BASELINE_DENSITY_SMALL"], [32, 3, 1, "", "BASKET"], [32, 3, 1, "", "BASKET_FILLED"], [32, 3, 1, "", "BASKET_OFF"], [32, 3, 1, "", "BAT"], [32, 3, 1, "", "BATH"], [32, 3, 1, "", "BATH_FILLED"], [32, 3, 1, "", "BATH_OFF"], [32, 3, 1, "", "BATTERY"], [32, 3, 1, "", "BATTERY_1"], [32, 3, 1, "", "BATTERY_1_FILLED"], [32, 3, 1, "", "BATTERY_2"], [32, 3, 1, "", "BATTERY_2_FILLED"], [32, 3, 1, "", "BATTERY_3"], [32, 3, 1, "", "BATTERY_3_FILLED"], [32, 3, 1, "", "BATTERY_4"], [32, 3, 1, "", "BATTERY_4_FILLED"], [32, 3, 1, "", "BATTERY_AUTOMOTIVE"], [32, 3, 1, "", "BATTERY_CHARGING"], [32, 3, 1, "", "BATTERY_CHARGING_2"], [32, 3, 1, "", "BATTERY_ECO"], [32, 3, 1, "", "BATTERY_FILLED"], [32, 3, 1, "", "BATTERY_OFF"], [32, 3, 1, "", "BEACH"], [32, 3, 1, "", "BEACH_OFF"], [32, 3, 1, "", "BED"], [32, 3, 1, "", "BED_FILLED"], [32, 3, 1, "", "BED_OFF"], [32, 3, 1, "", "BEER"], [32, 3, 1, "", "BEER_FILLED"], [32, 3, 1, "", "BEER_OFF"], [32, 3, 1, "", "BELL"], [32, 3, 1, "", "BELL_BOLT"], [32, 3, 1, "", "BELL_CANCEL"], [32, 3, 1, "", "BELL_CHECK"], [32, 3, 1, "", "BELL_CODE"], [32, 3, 1, "", "BELL_COG"], [32, 3, 1, "", "BELL_DOLLAR"], [32, 3, 1, "", "BELL_DOWN"], [32, 3, 1, "", "BELL_EXCLAMATION"], [32, 3, 1, "", "BELL_FILLED"], [32, 3, 1, "", "BELL_HEART"], [32, 3, 1, "", "BELL_MINUS"], [32, 3, 1, "", "BELL_MINUS_FILLED"], [32, 3, 1, "", "BELL_OFF"], [32, 3, 1, "", "BELL_PAUSE"], [32, 3, 1, "", "BELL_PIN"], [32, 3, 1, "", "BELL_PLUS"], [32, 3, 1, "", "BELL_PLUS_FILLED"], [32, 3, 1, "", "BELL_QUESTION"], [32, 3, 1, "", "BELL_RINGING"], [32, 3, 1, "", "BELL_RINGING_2"], [32, 3, 1, "", "BELL_RINGING_2_FILLED"], [32, 3, 1, "", "BELL_RINGING_FILLED"], [32, 3, 1, "", "BELL_SCHOOL"], [32, 3, 1, "", "BELL_SEARCH"], [32, 3, 1, "", "BELL_SHARE"], [32, 3, 1, "", "BELL_STAR"], [32, 3, 1, "", "BELL_UP"], [32, 3, 1, "", "BELL_X"], [32, 3, 1, "", "BELL_X_FILLED"], [32, 3, 1, "", "BELL_Z"], [32, 3, 1, "", "BELL_Z_FILLED"], [32, 3, 1, "", "BETA"], [32, 3, 1, "", "BIBLE"], [32, 3, 1, "", "BIKE"], [32, 3, 1, "", "BIKE_OFF"], [32, 3, 1, "", "BINARY"], [32, 3, 1, "", "BINARY_OFF"], [32, 3, 1, "", "BINARY_TREE"], [32, 3, 1, "", "BINARY_TREE_2"], [32, 3, 1, "", "BIOHAZARD"], [32, 3, 1, "", "BIOHAZARD_OFF"], [32, 3, 1, "", "BLADE"], [32, 3, 1, "", "BLADE_FILLED"], [32, 3, 1, "", "BLEACH"], [32, 3, 1, "", "BLEACH_CHLORINE"], [32, 3, 1, "", "BLEACH_NO_CHLORINE"], [32, 3, 1, "", "BLEACH_OFF"], [32, 3, 1, "", "BLOCKQUOTE"], [32, 3, 1, "", "BLUETOOTH"], [32, 3, 1, "", "BLUETOOTH_CONNECTED"], [32, 3, 1, "", "BLUETOOTH_OFF"], [32, 3, 1, "", "BLUETOOTH_X"], [32, 3, 1, "", "BLUR"], [32, 3, 1, "", "BLUR_OFF"], [32, 3, 1, "", "BMP"], [32, 3, 1, "", "BOLD"], [32, 3, 1, "", "BOLD_OFF"], [32, 3, 1, "", "BOLT"], [32, 3, 1, "", "BOLT_OFF"], [32, 3, 1, "", "BOMB"], [32, 3, 1, "", "BOMB_FILLED"], [32, 3, 1, "", "BONE"], [32, 3, 1, "", "BONE_OFF"], [32, 3, 1, "", "BONG"], [32, 3, 1, "", "BONG_OFF"], [32, 3, 1, "", "BOOK"], [32, 3, 1, "", "BOOKMARK"], [32, 3, 1, "", "BOOKMARKS"], [32, 3, 1, "", "BOOKMARKS_OFF"], [32, 3, 1, "", "BOOKMARK_EDIT"], [32, 3, 1, "", "BOOKMARK_FILLED"], [32, 3, 1, "", "BOOKMARK_MINUS"], [32, 3, 1, "", "BOOKMARK_OFF"], [32, 3, 1, "", "BOOKMARK_PLUS"], [32, 3, 1, "", "BOOKMARK_QUESTION"], [32, 3, 1, "", "BOOKS"], [32, 3, 1, "", "BOOKS_OFF"], [32, 3, 1, "", "BOOK_2"], [32, 3, 1, "", "BOOK_DOWNLOAD"], [32, 3, 1, "", "BOOK_FILLED"], [32, 3, 1, "", "BOOK_OFF"], [32, 3, 1, "", "BOOK_UPLOAD"], [32, 3, 1, "", "BORDER_ALL"], [32, 3, 1, "", "BORDER_BOTTOM"], [32, 3, 1, "", "BORDER_CORNERS"], [32, 3, 1, "", "BORDER_HORIZONTAL"], [32, 3, 1, "", "BORDER_INNER"], [32, 3, 1, "", "BORDER_LEFT"], [32, 3, 1, "", "BORDER_NONE"], [32, 3, 1, "", "BORDER_OUTER"], [32, 3, 1, "", "BORDER_RADIUS"], [32, 3, 1, "", "BORDER_RIGHT"], [32, 3, 1, "", "BORDER_SIDES"], [32, 3, 1, "", "BORDER_STYLE"], [32, 3, 1, "", "BORDER_STYLE_2"], [32, 3, 1, "", "BORDER_TOP"], [32, 3, 1, "", "BORDER_VERTICAL"], [32, 3, 1, "", "BOTTLE"], [32, 3, 1, "", "BOTTLE_FILLED"], [32, 3, 1, "", "BOTTLE_OFF"], [32, 3, 1, "", "BOUNCE_LEFT"], [32, 3, 1, "", "BOUNCE_RIGHT"], [32, 3, 1, "", "BOW"], [32, 3, 1, "", "BOWL"], [32, 3, 1, "", "BOX"], [32, 3, 1, "", "BOX_ALIGN_BOTTOM"], [32, 3, 1, "", "BOX_ALIGN_BOTTOM_FILLED"], [32, 3, 1, "", "BOX_ALIGN_BOTTOM_LEFT"], [32, 3, 1, "", "BOX_ALIGN_BOTTOM_LEFT_FILLED"], [32, 3, 1, "", "BOX_ALIGN_BOTTOM_RIGHT"], [32, 3, 1, "", "BOX_ALIGN_BOTTOM_RIGHT_FILLED"], [32, 3, 1, "", "BOX_ALIGN_LEFT"], [32, 3, 1, "", "BOX_ALIGN_LEFT_FILLED"], [32, 3, 1, "", "BOX_ALIGN_RIGHT"], [32, 3, 1, "", "BOX_ALIGN_RIGHT_FILLED"], [32, 3, 1, "", "BOX_ALIGN_TOP"], [32, 3, 1, "", "BOX_ALIGN_TOP_FILLED"], [32, 3, 1, "", "BOX_ALIGN_TOP_LEFT"], [32, 3, 1, "", "BOX_ALIGN_TOP_LEFT_FILLED"], [32, 3, 1, "", "BOX_ALIGN_TOP_RIGHT"], [32, 3, 1, "", "BOX_ALIGN_TOP_RIGHT_FILLED"], [32, 3, 1, "", "BOX_MARGIN"], [32, 3, 1, "", "BOX_MODEL"], [32, 3, 1, "", "BOX_MODEL_2"], [32, 3, 1, "", "BOX_MODEL_2_OFF"], [32, 3, 1, "", "BOX_MODEL_OFF"], [32, 3, 1, "", "BOX_MULTIPLE"], [32, 3, 1, "", "BOX_MULTIPLE_0"], [32, 3, 1, "", "BOX_MULTIPLE_1"], [32, 3, 1, "", "BOX_MULTIPLE_2"], [32, 3, 1, "", "BOX_MULTIPLE_3"], [32, 3, 1, "", "BOX_MULTIPLE_4"], [32, 3, 1, "", "BOX_MULTIPLE_5"], [32, 3, 1, "", "BOX_MULTIPLE_6"], [32, 3, 1, "", "BOX_MULTIPLE_7"], [32, 3, 1, "", "BOX_MULTIPLE_8"], [32, 3, 1, "", "BOX_MULTIPLE_9"], [32, 3, 1, "", "BOX_OFF"], [32, 3, 1, "", "BOX_PADDING"], [32, 3, 1, "", "BOX_SEAM"], [32, 3, 1, "", "BRACES"], [32, 3, 1, "", "BRACES_OFF"], [32, 3, 1, "", "BRACKETS"], [32, 3, 1, "", "BRACKETS_CONTAIN"], [32, 3, 1, "", "BRACKETS_CONTAIN_END"], [32, 3, 1, "", "BRACKETS_CONTAIN_START"], [32, 3, 1, "", "BRACKETS_OFF"], [32, 3, 1, "", "BRAILLE"], [32, 3, 1, "", "BRAIN"], [32, 3, 1, "", "BRAND_4CHAN"], [32, 3, 1, "", "BRAND_ABSTRACT"], [32, 3, 1, "", "BRAND_ADOBE"], [32, 3, 1, "", "BRAND_ADONIS_JS"], [32, 3, 1, "", "BRAND_AIRBNB"], [32, 3, 1, "", "BRAND_AIRTABLE"], [32, 3, 1, "", "BRAND_ALGOLIA"], [32, 3, 1, "", "BRAND_ALIPAY"], [32, 3, 1, "", "BRAND_ALPINE_JS"], [32, 3, 1, "", "BRAND_AMAZON"], [32, 3, 1, "", "BRAND_AMD"], [32, 3, 1, "", "BRAND_AMIGO"], [32, 3, 1, "", "BRAND_AMONG_US"], [32, 3, 1, "", "BRAND_ANDROID"], [32, 3, 1, "", "BRAND_ANGULAR"], [32, 3, 1, "", "BRAND_ANSIBLE"], [32, 3, 1, "", "BRAND_AO3"], [32, 3, 1, "", "BRAND_APPGALLERY"], [32, 3, 1, "", "BRAND_APPLE"], [32, 3, 1, "", "BRAND_APPLE_ARCADE"], [32, 3, 1, "", "BRAND_APPLE_PODCAST"], [32, 3, 1, "", "BRAND_APPSTORE"], [32, 3, 1, "", "BRAND_ASANA"], [32, 3, 1, "", "BRAND_AWS"], [32, 3, 1, "", "BRAND_AZURE"], [32, 3, 1, "", "BRAND_BACKBONE"], [32, 3, 1, "", "BRAND_BADOO"], [32, 3, 1, "", "BRAND_BAIDU"], [32, 3, 1, "", "BRAND_BANDCAMP"], [32, 3, 1, "", "BRAND_BANDLAB"], [32, 3, 1, "", "BRAND_BEATS"], [32, 3, 1, "", "BRAND_BEHANCE"], [32, 3, 1, "", "BRAND_BILIBILI"], [32, 3, 1, "", "BRAND_BINANCE"], [32, 3, 1, "", "BRAND_BING"], [32, 3, 1, "", "BRAND_BITBUCKET"], [32, 3, 1, "", "BRAND_BLACKBERRY"], [32, 3, 1, "", "BRAND_BLENDER"], [32, 3, 1, "", "BRAND_BLOGGER"], [32, 3, 1, "", "BRAND_BOOKING"], [32, 3, 1, "", "BRAND_BOOTSTRAP"], [32, 3, 1, "", "BRAND_BULMA"], [32, 3, 1, "", "BRAND_BUMBLE"], [32, 3, 1, "", "BRAND_BUNPO"], [32, 3, 1, "", "BRAND_CAKE"], [32, 3, 1, "", "BRAND_CAKEPHP"], [32, 3, 1, "", "BRAND_CAMPAIGNMONITOR"], [32, 3, 1, "", "BRAND_CARBON"], [32, 3, 1, "", "BRAND_CASHAPP"], [32, 3, 1, "", "BRAND_CHROME"], [32, 3, 1, "", "BRAND_CINEMA_4D"], [32, 3, 1, "", "BRAND_CITYMAPPER"], [32, 3, 1, "", "BRAND_CLOUDFLARE"], [32, 3, 1, "", "BRAND_CODECOV"], [32, 3, 1, "", "BRAND_CODEPEN"], [32, 3, 1, "", "BRAND_CODESANDBOX"], [32, 3, 1, "", "BRAND_COHOST"], [32, 3, 1, "", "BRAND_COINBASE"], [32, 3, 1, "", "BRAND_COMEDY_CENTRAL"], [32, 3, 1, "", "BRAND_COREOS"], [32, 3, 1, "", "BRAND_COUCHDB"], [32, 3, 1, "", "BRAND_COUCHSURFING"], [32, 3, 1, "", "BRAND_CPP"], [32, 3, 1, "", "BRAND_CRAFT"], [32, 3, 1, "", "BRAND_CRUNCHBASE"], [32, 3, 1, "", "BRAND_CSS3"], [32, 3, 1, "", "BRAND_CTEMPLAR"], [32, 3, 1, "", "BRAND_CUCUMBER"], [32, 3, 1, "", "BRAND_CUPRA"], [32, 3, 1, "", "BRAND_CYPRESS"], [32, 3, 1, "", "BRAND_C_SHARP"], [32, 3, 1, "", "BRAND_D3"], [32, 3, 1, "", "BRAND_DAYS_COUNTER"], [32, 3, 1, "", "BRAND_DCOS"], [32, 3, 1, "", "BRAND_DEBIAN"], [32, 3, 1, "", "BRAND_DEEZER"], [32, 3, 1, "", "BRAND_DELIVEROO"], [32, 3, 1, "", "BRAND_DENO"], [32, 3, 1, "", "BRAND_DENODO"], [32, 3, 1, "", "BRAND_DEVIANTART"], [32, 3, 1, "", "BRAND_DIGG"], [32, 3, 1, "", "BRAND_DINGTALK"], [32, 3, 1, "", "BRAND_DISCORD"], [32, 3, 1, "", "BRAND_DISCORD_FILLED"], [32, 3, 1, "", "BRAND_DISNEY"], [32, 3, 1, "", "BRAND_DISQUS"], [32, 3, 1, "", "BRAND_DJANGO"], [32, 3, 1, "", "BRAND_DOCKER"], [32, 3, 1, "", "BRAND_DOCTRINE"], [32, 3, 1, "", "BRAND_DOLBY_DIGITAL"], [32, 3, 1, "", "BRAND_DOUBAN"], [32, 3, 1, "", "BRAND_DRIBBBLE"], [32, 3, 1, "", "BRAND_DRIBBBLE_FILLED"], [32, 3, 1, "", "BRAND_DROPS"], [32, 3, 1, "", "BRAND_DRUPAL"], [32, 3, 1, "", "BRAND_EDGE"], [32, 3, 1, "", "BRAND_ELASTIC"], [32, 3, 1, "", "BRAND_ELECTRONIC_ARTS"], [32, 3, 1, "", "BRAND_EMBER"], [32, 3, 1, "", "BRAND_ENVATO"], [32, 3, 1, "", "BRAND_ETSY"], [32, 3, 1, "", "BRAND_EVERNOTE"], [32, 3, 1, "", "BRAND_FACEBOOK"], [32, 3, 1, "", "BRAND_FACEBOOK_FILLED"], [32, 3, 1, "", "BRAND_FEEDLY"], [32, 3, 1, "", "BRAND_FIGMA"], [32, 3, 1, "", "BRAND_FILEZILLA"], [32, 3, 1, "", "BRAND_FINDER"], [32, 3, 1, "", "BRAND_FIREBASE"], [32, 3, 1, "", "BRAND_FIREFOX"], [32, 3, 1, "", "BRAND_FIVERR"], [32, 3, 1, "", "BRAND_FLICKR"], [32, 3, 1, "", "BRAND_FLIGHTRADAR24"], [32, 3, 1, "", "BRAND_FLIPBOARD"], [32, 3, 1, "", "BRAND_FLUTTER"], [32, 3, 1, "", "BRAND_FORTNITE"], [32, 3, 1, "", "BRAND_FOURSQUARE"], [32, 3, 1, "", "BRAND_FRAMER"], [32, 3, 1, "", "BRAND_FRAMER_MOTION"], [32, 3, 1, "", "BRAND_FUNIMATION"], [32, 3, 1, "", "BRAND_GATSBY"], [32, 3, 1, "", "BRAND_GIT"], [32, 3, 1, "", "BRAND_GITHUB"], [32, 3, 1, "", "BRAND_GITHUB_COPILOT"], [32, 3, 1, "", "BRAND_GITHUB_FILLED"], [32, 3, 1, "", "BRAND_GITLAB"], [32, 3, 1, "", "BRAND_GMAIL"], [32, 3, 1, "", "BRAND_GOLANG"], [32, 3, 1, "", "BRAND_GOOGLE"], [32, 3, 1, "", "BRAND_GOOGLE_ANALYTICS"], [32, 3, 1, "", "BRAND_GOOGLE_BIG_QUERY"], [32, 3, 1, "", "BRAND_GOOGLE_DRIVE"], [32, 3, 1, "", "BRAND_GOOGLE_FIT"], [32, 3, 1, "", "BRAND_GOOGLE_HOME"], [32, 3, 1, "", "BRAND_GOOGLE_MAPS"], [32, 3, 1, "", "BRAND_GOOGLE_ONE"], [32, 3, 1, "", "BRAND_GOOGLE_PHOTOS"], [32, 3, 1, "", "BRAND_GOOGLE_PLAY"], [32, 3, 1, "", "BRAND_GOOGLE_PODCASTS"], [32, 3, 1, "", "BRAND_GRAMMARLY"], [32, 3, 1, "", "BRAND_GRAPHQL"], [32, 3, 1, "", "BRAND_GRAVATAR"], [32, 3, 1, "", "BRAND_GRINDR"], [32, 3, 1, "", "BRAND_GUARDIAN"], [32, 3, 1, "", "BRAND_GUMROAD"], [32, 3, 1, "", "BRAND_HBO"], [32, 3, 1, "", "BRAND_HEADLESSUI"], [32, 3, 1, "", "BRAND_HEXO"], [32, 3, 1, "", "BRAND_HIPCHAT"], [32, 3, 1, "", "BRAND_HTML5"], [32, 3, 1, "", "BRAND_INERTIA"], [32, 3, 1, "", "BRAND_INSTAGRAM"], [32, 3, 1, "", "BRAND_INTERCOM"], [32, 3, 1, "", "BRAND_ITCH"], [32, 3, 1, "", "BRAND_JAVASCRIPT"], [32, 3, 1, "", "BRAND_JUEJIN"], [32, 3, 1, "", "BRAND_KBIN"], [32, 3, 1, "", "BRAND_KICK"], [32, 3, 1, "", "BRAND_KICKSTARTER"], [32, 3, 1, "", "BRAND_KOTLIN"], [32, 3, 1, "", "BRAND_LARAVEL"], [32, 3, 1, "", "BRAND_LASTFM"], [32, 3, 1, "", "BRAND_LEETCODE"], [32, 3, 1, "", "BRAND_LETTERBOXD"], [32, 3, 1, "", "BRAND_LINE"], [32, 3, 1, "", "BRAND_LINKEDIN"], [32, 3, 1, "", "BRAND_LINKTREE"], [32, 3, 1, "", "BRAND_LINQPAD"], [32, 3, 1, "", "BRAND_LOOM"], [32, 3, 1, "", "BRAND_MAILGUN"], [32, 3, 1, "", "BRAND_MANTINE"], [32, 3, 1, "", "BRAND_MASTERCARD"], [32, 3, 1, "", "BRAND_MASTODON"], [32, 3, 1, "", "BRAND_MATRIX"], [32, 3, 1, "", "BRAND_MCDONALDS"], [32, 3, 1, "", "BRAND_MEDIUM"], [32, 3, 1, "", "BRAND_MERCEDES"], [32, 3, 1, "", "BRAND_MESSENGER"], [32, 3, 1, "", "BRAND_META"], [32, 3, 1, "", "BRAND_MICROSOFT_TEAMS"], [32, 3, 1, "", "BRAND_MINECRAFT"], [32, 3, 1, "", "BRAND_MINIPROGRAM"], [32, 3, 1, "", "BRAND_MIXPANEL"], [32, 3, 1, "", "BRAND_MONDAY"], [32, 3, 1, "", "BRAND_MONGODB"], [32, 3, 1, "", "BRAND_MYSQL"], [32, 3, 1, "", "BRAND_MY_OPPO"], [32, 3, 1, "", "BRAND_NATIONAL_GEOGRAPHIC"], [32, 3, 1, "", "BRAND_NEM"], [32, 3, 1, "", "BRAND_NETBEANS"], [32, 3, 1, "", "BRAND_NETEASE_MUSIC"], [32, 3, 1, "", "BRAND_NETFLIX"], [32, 3, 1, "", "BRAND_NEXO"], [32, 3, 1, "", "BRAND_NEXTCLOUD"], [32, 3, 1, "", "BRAND_NEXTJS"], [32, 3, 1, "", "BRAND_NODEJS"], [32, 3, 1, "", "BRAND_NORD_VPN"], [32, 3, 1, "", "BRAND_NOTION"], [32, 3, 1, "", "BRAND_NPM"], [32, 3, 1, "", "BRAND_NUXT"], [32, 3, 1, "", "BRAND_NYTIMES"], [32, 3, 1, "", "BRAND_OAUTH"], [32, 3, 1, "", "BRAND_OFFICE"], [32, 3, 1, "", "BRAND_OK_RU"], [32, 3, 1, "", "BRAND_ONEDRIVE"], [32, 3, 1, "", "BRAND_ONLYFANS"], [32, 3, 1, "", "BRAND_OPENAI"], [32, 3, 1, "", "BRAND_OPENVPN"], [32, 3, 1, "", "BRAND_OPEN_SOURCE"], [32, 3, 1, "", "BRAND_OPERA"], [32, 3, 1, "", "BRAND_PAGEKIT"], [32, 3, 1, "", "BRAND_PATREON"], [32, 3, 1, "", "BRAND_PAYPAL"], [32, 3, 1, "", "BRAND_PAYPAL_FILLED"], [32, 3, 1, "", "BRAND_PAYPAY"], [32, 3, 1, "", "BRAND_PEANUT"], [32, 3, 1, "", "BRAND_PEPSI"], [32, 3, 1, "", "BRAND_PHP"], [32, 3, 1, "", "BRAND_PICSART"], [32, 3, 1, "", "BRAND_PINTEREST"], [32, 3, 1, "", "BRAND_PLANETSCALE"], [32, 3, 1, "", "BRAND_POCKET"], [32, 3, 1, "", "BRAND_POLYMER"], [32, 3, 1, "", "BRAND_POWERSHELL"], [32, 3, 1, "", "BRAND_PRISMA"], [32, 3, 1, "", "BRAND_PRODUCTHUNT"], [32, 3, 1, "", "BRAND_PUSHBULLET"], [32, 3, 1, "", "BRAND_PUSHOVER"], [32, 3, 1, "", "BRAND_PYTHON"], [32, 3, 1, "", "BRAND_QQ"], [32, 3, 1, "", "BRAND_RADIX_UI"], [32, 3, 1, "", "BRAND_REACT"], [32, 3, 1, "", "BRAND_REACT_NATIVE"], [32, 3, 1, "", "BRAND_REASON"], [32, 3, 1, "", "BRAND_REDDIT"], [32, 3, 1, "", "BRAND_REDHAT"], [32, 3, 1, "", "BRAND_REDUX"], [32, 3, 1, "", "BRAND_REVOLUT"], [32, 3, 1, "", "BRAND_RUMBLE"], [32, 3, 1, "", "BRAND_RUST"], [32, 3, 1, "", "BRAND_SAFARI"], [32, 3, 1, "", "BRAND_SAMSUNGPASS"], [32, 3, 1, "", "BRAND_SASS"], [32, 3, 1, "", "BRAND_SENTRY"], [32, 3, 1, "", "BRAND_SHARIK"], [32, 3, 1, "", "BRAND_SHAZAM"], [32, 3, 1, "", "BRAND_SHOPEE"], [32, 3, 1, "", "BRAND_SKETCH"], [32, 3, 1, "", "BRAND_SKYPE"], [32, 3, 1, "", "BRAND_SLACK"], [32, 3, 1, "", "BRAND_SNAPCHAT"], [32, 3, 1, "", "BRAND_SNAPSEED"], [32, 3, 1, "", "BRAND_SNOWFLAKE"], [32, 3, 1, "", "BRAND_SOCKET_IO"], [32, 3, 1, "", "BRAND_SOLIDJS"], [32, 3, 1, "", "BRAND_SOUNDCLOUD"], [32, 3, 1, "", "BRAND_SPACEHEY"], [32, 3, 1, "", "BRAND_SPEEDTEST"], [32, 3, 1, "", "BRAND_SPOTIFY"], [32, 3, 1, "", "BRAND_STACKOVERFLOW"], [32, 3, 1, "", "BRAND_STACKSHARE"], [32, 3, 1, "", "BRAND_STEAM"], [32, 3, 1, "", "BRAND_STORJ"], [32, 3, 1, "", "BRAND_STORYBOOK"], [32, 3, 1, "", "BRAND_STORYTEL"], [32, 3, 1, "", "BRAND_STRAVA"], [32, 3, 1, "", "BRAND_STRIPE"], [32, 3, 1, "", "BRAND_SUBLIME_TEXT"], [32, 3, 1, "", "BRAND_SUGARIZER"], [32, 3, 1, "", "BRAND_SUPABASE"], [32, 3, 1, "", "BRAND_SUPERHUMAN"], [32, 3, 1, "", "BRAND_SUPERNOVA"], [32, 3, 1, "", "BRAND_SURFSHARK"], [32, 3, 1, "", "BRAND_SVELTE"], [32, 3, 1, "", "BRAND_SWIFT"], [32, 3, 1, "", "BRAND_SYMFONY"], [32, 3, 1, "", "BRAND_TABLER"], [32, 3, 1, "", "BRAND_TAILWIND"], [32, 3, 1, "", "BRAND_TAOBAO"], [32, 3, 1, "", "BRAND_TED"], [32, 3, 1, "", "BRAND_TELEGRAM"], [32, 3, 1, "", "BRAND_TERRAFORM"], [32, 3, 1, "", "BRAND_TETHER"], [32, 3, 1, "", "BRAND_THREEJS"], [32, 3, 1, "", "BRAND_TIDAL"], [32, 3, 1, "", "BRAND_TIKTOK"], [32, 3, 1, "", "BRAND_TIKTO_FILLED"], [32, 3, 1, "", "BRAND_TINDER"], [32, 3, 1, "", "BRAND_TOPBUZZ"], [32, 3, 1, "", "BRAND_TORCHAIN"], [32, 3, 1, "", "BRAND_TOYOTA"], [32, 3, 1, "", "BRAND_TRELLO"], [32, 3, 1, "", "BRAND_TRIPADVISOR"], [32, 3, 1, "", "BRAND_TUMBLR"], [32, 3, 1, "", "BRAND_TWILIO"], [32, 3, 1, "", "BRAND_TWITCH"], [32, 3, 1, "", "BRAND_TWITTER"], [32, 3, 1, "", "BRAND_TWITTER_FILLED"], [32, 3, 1, "", "BRAND_TYPESCRIPT"], [32, 3, 1, "", "BRAND_UBER"], [32, 3, 1, "", "BRAND_UBUNTU"], [32, 3, 1, "", "BRAND_UNITY"], [32, 3, 1, "", "BRAND_UNSPLASH"], [32, 3, 1, "", "BRAND_UPWORK"], [32, 3, 1, "", "BRAND_VALORANT"], [32, 3, 1, "", "BRAND_VERCEL"], [32, 3, 1, "", "BRAND_VIMEO"], [32, 3, 1, "", "BRAND_VINTED"], [32, 3, 1, "", "BRAND_VISA"], [32, 3, 1, "", "BRAND_VISUAL_STUDIO"], [32, 3, 1, "", "BRAND_VITE"], [32, 3, 1, "", "BRAND_VIVALDI"], [32, 3, 1, "", "BRAND_VK"], [32, 3, 1, "", "BRAND_VLC"], [32, 3, 1, "", "BRAND_VOLKSWAGEN"], [32, 3, 1, "", "BRAND_VSCO"], [32, 3, 1, "", "BRAND_VSCODE"], [32, 3, 1, "", "BRAND_VUE"], [32, 3, 1, "", "BRAND_WALMART"], [32, 3, 1, "", "BRAND_WAZE"], [32, 3, 1, "", "BRAND_WEBFLOW"], [32, 3, 1, "", "BRAND_WECHAT"], [32, 3, 1, "", "BRAND_WEIBO"], [32, 3, 1, "", "BRAND_WHATSAPP"], [32, 3, 1, "", "BRAND_WIKIPEDIA"], [32, 3, 1, "", "BRAND_WINDOWS"], [32, 3, 1, "", "BRAND_WINDY"], [32, 3, 1, "", "BRAND_WISH"], [32, 3, 1, "", "BRAND_WIX"], [32, 3, 1, "", "BRAND_WORDPRESS"], [32, 3, 1, "", "BRAND_XAMARIN"], [32, 3, 1, "", "BRAND_XBOX"], [32, 3, 1, "", "BRAND_XING"], [32, 3, 1, "", "BRAND_YAHOO"], [32, 3, 1, "", "BRAND_YANDEX"], [32, 3, 1, "", "BRAND_YATSE"], [32, 3, 1, "", "BRAND_YCOMBINATOR"], [32, 3, 1, "", "BRAND_YOUTUBE"], [32, 3, 1, "", "BRAND_YOUTUBE_KIDS"], [32, 3, 1, "", "BRAND_ZALANDO"], [32, 3, 1, "", "BRAND_ZAPIER"], [32, 3, 1, "", "BRAND_ZEIT"], [32, 3, 1, "", "BRAND_ZHIHU"], [32, 3, 1, "", "BRAND_ZOOM"], [32, 3, 1, "", "BRAND_ZULIP"], [32, 3, 1, "", "BRAND_ZWIFT"], [32, 3, 1, "", "BREAD"], [32, 3, 1, "", "BREAD_OFF"], [32, 3, 1, "", "BRIEFCASE"], [32, 3, 1, "", "BRIEFCASE_OFF"], [32, 3, 1, "", "BRIGHTNESS"], [32, 3, 1, "", "BRIGHTNESS_2"], [32, 3, 1, "", "BRIGHTNESS_DOWN"], [32, 3, 1, "", "BRIGHTNESS_HALF"], [32, 3, 1, "", "BRIGHTNESS_OFF"], [32, 3, 1, "", "BRIGHTNESS_UP"], [32, 3, 1, "", "BROADCAST"], [32, 3, 1, "", "BROADCAST_OFF"], [32, 3, 1, "", "BROWSER"], [32, 3, 1, "", "BROWSER_CHECK"], [32, 3, 1, "", "BROWSER_OFF"], [32, 3, 1, "", "BROWSER_PLUS"], [32, 3, 1, "", "BROWSER_X"], [32, 3, 1, "", "BRUSH"], [32, 3, 1, "", "BRUSH_OFF"], [32, 3, 1, "", "BUCKET"], [32, 3, 1, "", "BUCKET_DROPLET"], [32, 3, 1, "", "BUCKET_OFF"], [32, 3, 1, "", "BUG"], [32, 3, 1, "", "BUG_OFF"], [32, 3, 1, "", "BUILDING"], [32, 3, 1, "", "BUILDING_ARCH"], [32, 3, 1, "", "BUILDING_BANK"], [32, 3, 1, "", "BUILDING_BRIDGE"], [32, 3, 1, "", "BUILDING_BRIDGE_2"], [32, 3, 1, "", "BUILDING_BROADCAST_TOWER"], [32, 3, 1, "", "BUILDING_CAROUSEL"], [32, 3, 1, "", "BUILDING_CASTLE"], [32, 3, 1, "", "BUILDING_CHURCH"], [32, 3, 1, "", "BUILDING_CIRCUS"], [32, 3, 1, "", "BUILDING_COMMUNITY"], [32, 3, 1, "", "BUILDING_COTTAGE"], [32, 3, 1, "", "BUILDING_ESTATE"], [32, 3, 1, "", "BUILDING_FACTORY"], [32, 3, 1, "", "BUILDING_FACTORY_2"], [32, 3, 1, "", "BUILDING_FORTRESS"], [32, 3, 1, "", "BUILDING_HOSPITAL"], [32, 3, 1, "", "BUILDING_LIGHTHOUSE"], [32, 3, 1, "", "BUILDING_MONUMENT"], [32, 3, 1, "", "BUILDING_MOSQUE"], [32, 3, 1, "", "BUILDING_PAVILION"], [32, 3, 1, "", "BUILDING_SKYSCRAPER"], [32, 3, 1, "", "BUILDING_STADIUM"], [32, 3, 1, "", "BUILDING_STORE"], [32, 3, 1, "", "BUILDING_TUNNEL"], [32, 3, 1, "", "BUILDING_WAREHOUSE"], [32, 3, 1, "", "BUILDING_WIND_TURBINE"], [32, 3, 1, "", "BULB"], [32, 3, 1, "", "BULB_FILLED"], [32, 3, 1, "", "BULB_OFF"], [32, 3, 1, "", "BULLDOZER"], [32, 3, 1, "", "BUS"], [32, 3, 1, "", "BUSINESSPLAN"], [32, 3, 1, "", "BUS_OFF"], [32, 3, 1, "", "BUS_STOP"], [32, 3, 1, "", "BUTTERFLY"], [32, 3, 1, "", "CACTUS"], [32, 3, 1, "", "CACTUS_OFF"], [32, 3, 1, "", "CAKE"], [32, 3, 1, "", "CAKE_OFF"], [32, 3, 1, "", "CALCULATOR"], [32, 3, 1, "", "CALCULATOR_OFF"], [32, 3, 1, "", "CALENDAR"], [32, 3, 1, "", "CALENDAR_BOLT"], [32, 3, 1, "", "CALENDAR_CANCEL"], [32, 3, 1, "", "CALENDAR_CHECK"], [32, 3, 1, "", "CALENDAR_CODE"], [32, 3, 1, "", "CALENDAR_COG"], [32, 3, 1, "", "CALENDAR_DOLLAR"], [32, 3, 1, "", "CALENDAR_DOWN"], [32, 3, 1, "", "CALENDAR_DUE"], [32, 3, 1, "", "CALENDAR_EVENT"], [32, 3, 1, "", "CALENDAR_EXCLAMATION"], [32, 3, 1, "", "CALENDAR_HEART"], [32, 3, 1, "", "CALENDAR_MINUS"], [32, 3, 1, "", "CALENDAR_OFF"], [32, 3, 1, "", "CALENDAR_PAUSE"], [32, 3, 1, "", "CALENDAR_PIN"], [32, 3, 1, "", "CALENDAR_PLUS"], [32, 3, 1, "", "CALENDAR_QUESTION"], [32, 3, 1, "", "CALENDAR_REPEAT"], [32, 3, 1, "", "CALENDAR_SEARCH"], [32, 3, 1, "", "CALENDAR_SHARE"], [32, 3, 1, "", "CALENDAR_STAR"], [32, 3, 1, "", "CALENDAR_STATS"], [32, 3, 1, "", "CALENDAR_TIME"], [32, 3, 1, "", "CALENDAR_UP"], [32, 3, 1, "", "CALENDAR_X"], [32, 3, 1, "", "CAMERA"], [32, 3, 1, "", "CAMERA_BOLT"], [32, 3, 1, "", "CAMERA_CANCEL"], [32, 3, 1, "", "CAMERA_CHECK"], [32, 3, 1, "", "CAMERA_CODE"], [32, 3, 1, "", "CAMERA_COG"], [32, 3, 1, "", "CAMERA_DOLLAR"], [32, 3, 1, "", "CAMERA_DOWN"], [32, 3, 1, "", "CAMERA_EXCLAMATION"], [32, 3, 1, "", "CAMERA_FILLED"], [32, 3, 1, "", "CAMERA_HEART"], [32, 3, 1, "", "CAMERA_MINUS"], [32, 3, 1, "", "CAMERA_OFF"], [32, 3, 1, "", "CAMERA_PAUSE"], [32, 3, 1, "", "CAMERA_PIN"], [32, 3, 1, "", "CAMERA_PLUS"], [32, 3, 1, "", "CAMERA_QUESTION"], [32, 3, 1, "", "CAMERA_ROTATE"], [32, 3, 1, "", "CAMERA_SEARCH"], [32, 3, 1, "", "CAMERA_SELFIE"], [32, 3, 1, "", "CAMERA_SHARE"], [32, 3, 1, "", "CAMERA_STAR"], [32, 3, 1, "", "CAMERA_UP"], [32, 3, 1, "", "CAMERA_X"], [32, 3, 1, "", "CAMPER"], [32, 3, 1, "", "CAMPFIRE"], [32, 3, 1, "", "CANDLE"], [32, 3, 1, "", "CANDY"], [32, 3, 1, "", "CANDY_OFF"], [32, 3, 1, "", "CANE"], [32, 3, 1, "", "CANNABIS"], [32, 3, 1, "", "CAPSULE"], [32, 3, 1, "", "CAPSULE_HORIZONTAL"], [32, 3, 1, "", "CAPTURE"], [32, 3, 1, "", "CAPTURE_OFF"], [32, 3, 1, "", "CAR"], [32, 3, 1, "", "CARAVAN"], [32, 3, 1, "", "CARDBOARDS"], [32, 3, 1, "", "CARDBOARDS_OFF"], [32, 3, 1, "", "CARDS"], [32, 3, 1, "", "CARET_DOWN"], [32, 3, 1, "", "CARET_LEFT"], [32, 3, 1, "", "CARET_RIGHT"], [32, 3, 1, "", "CARET_UP"], [32, 3, 1, "", "CAROUSEL_HORIZONTAL"], [32, 3, 1, "", "CAROUSEL_HORIZONTAL_FILLED"], [32, 3, 1, "", "CAROUSEL_VERTICAL"], [32, 3, 1, "", "CAROUSEL_VERTICAL_FILLED"], [32, 3, 1, "", "CARROT"], [32, 3, 1, "", "CARROT_OFF"], [32, 3, 1, "", "CAR_CRANE"], [32, 3, 1, "", "CAR_CRASH"], [32, 3, 1, "", "CAR_OFF"], [32, 3, 1, "", "CAR_TURBINE"], [32, 3, 1, "", "CASH"], [32, 3, 1, "", "CASH_BANKNOTE"], [32, 3, 1, "", "CASH_BANKNOTE_OFF"], [32, 3, 1, "", "CASH_OFF"], [32, 3, 1, "", "CAST"], [32, 3, 1, "", "CAST_OFF"], [32, 3, 1, "", "CAT"], [32, 3, 1, "", "CATEGORY"], [32, 3, 1, "", "CATEGORY_2"], [32, 3, 1, "", "CE"], [32, 3, 1, "", "CELL"], [32, 3, 1, "", "CELL_SIGNAL_1"], [32, 3, 1, "", "CELL_SIGNAL_2"], [32, 3, 1, "", "CELL_SIGNAL_3"], [32, 3, 1, "", "CELL_SIGNAL_4"], [32, 3, 1, "", "CELL_SIGNAL_5"], [32, 3, 1, "", "CELL_SIGNAL_OFF"], [32, 3, 1, "", "CERTIFICATE"], [32, 3, 1, "", "CERTIFICATE_2"], [32, 3, 1, "", "CERTIFICATE_2_OFF"], [32, 3, 1, "", "CERTIFICATE_OFF"], [32, 3, 1, "", "CE_OFF"], [32, 3, 1, "", "CHAIR_DIRECTOR"], [32, 3, 1, "", "CHALKBOARD"], [32, 3, 1, "", "CHALKBOARD_OFF"], [32, 3, 1, "", "CHARGING_PILE"], [32, 3, 1, "", "CHART_ARCS"], [32, 3, 1, "", "CHART_ARCS_3"], [32, 3, 1, "", "CHART_AREA"], [32, 3, 1, "", "CHART_AREA_FILLED"], [32, 3, 1, "", "CHART_AREA_LINE"], [32, 3, 1, "", "CHART_AREA_LINE_FILLED"], [32, 3, 1, "", "CHART_ARROWS"], [32, 3, 1, "", "CHART_ARROWS_VERTICAL"], [32, 3, 1, "", "CHART_BAR"], [32, 3, 1, "", "CHART_BAR_OFF"], [32, 3, 1, "", "CHART_BUBBLE"], [32, 3, 1, "", "CHART_BUBBLE_FILLED"], [32, 3, 1, "", "CHART_CANDLE"], [32, 3, 1, "", "CHART_CANDLE_FILLED"], [32, 3, 1, "", "CHART_CIRCLES"], [32, 3, 1, "", "CHART_DONUT"], [32, 3, 1, "", "CHART_DONUT_2"], [32, 3, 1, "", "CHART_DONUT_3"], [32, 3, 1, "", "CHART_DONUT_4"], [32, 3, 1, "", "CHART_DONUT_FILLED"], [32, 3, 1, "", "CHART_DOTS"], [32, 3, 1, "", "CHART_DOTS_2"], [32, 3, 1, "", "CHART_DOTS_3"], [32, 3, 1, "", "CHART_GRID_DOTS"], [32, 3, 1, "", "CHART_HISTOGRAM"], [32, 3, 1, "", "CHART_INFOGRAPHIC"], [32, 3, 1, "", "CHART_LINE"], [32, 3, 1, "", "CHART_PIE"], [32, 3, 1, "", "CHART_PIE_2"], [32, 3, 1, "", "CHART_PIE_3"], [32, 3, 1, "", "CHART_PIE_4"], [32, 3, 1, "", "CHART_PIE_FILLED"], [32, 3, 1, "", "CHART_PIE_OFF"], [32, 3, 1, "", "CHART_PPF"], [32, 3, 1, "", "CHART_RADAR"], [32, 3, 1, "", "CHART_SANKEY"], [32, 3, 1, "", "CHART_TREEMAP"], [32, 3, 1, "", "CHECK"], [32, 3, 1, "", "CHECKBOX"], [32, 3, 1, "", "CHECKLIST"], [32, 3, 1, "", "CHECKS"], [32, 3, 1, "", "CHECKUP_LIST"], [32, 3, 1, "", "CHEESE"], [32, 3, 1, "", "CHEF_HAT"], [32, 3, 1, "", "CHEF_HAT_OFF"], [32, 3, 1, "", "CHERRY"], [32, 3, 1, "", "CHERRY_FILLED"], [32, 3, 1, "", "CHESS"], [32, 3, 1, "", "CHESS_BISHOP"], [32, 3, 1, "", "CHESS_BISHOP_FILLED"], [32, 3, 1, "", "CHESS_FILLED"], [32, 3, 1, "", "CHESS_KING"], [32, 3, 1, "", "CHESS_KING_FILLED"], [32, 3, 1, "", "CHESS_KNIGHT"], [32, 3, 1, "", "CHESS_KNIGHT_FILLED"], [32, 3, 1, "", "CHESS_QUEEN"], [32, 3, 1, "", "CHESS_QUEEN_FILLED"], [32, 3, 1, "", "CHESS_ROOK"], [32, 3, 1, "", "CHESS_ROOK_FILLED"], [32, 3, 1, "", "CHEVRONS_DOWN"], [32, 3, 1, "", "CHEVRONS_DOWN_LEFT"], [32, 3, 1, "", "CHEVRONS_DOWN_RIGHT"], [32, 3, 1, "", "CHEVRONS_LEFT"], [32, 3, 1, "", "CHEVRONS_RIGHT"], [32, 3, 1, "", "CHEVRONS_UP"], [32, 3, 1, "", "CHEVRONS_UP_LEFT"], [32, 3, 1, "", "CHEVRONS_UP_RIGHT"], [32, 3, 1, "", "CHEVRON_COMPACT_DOWN"], [32, 3, 1, "", "CHEVRON_COMPACT_LEFT"], [32, 3, 1, "", "CHEVRON_COMPACT_RIGHT"], [32, 3, 1, "", "CHEVRON_COMPACT_UP"], [32, 3, 1, "", "CHEVRON_DOWN"], [32, 3, 1, "", "CHEVRON_DOWN_LEFT"], [32, 3, 1, "", "CHEVRON_DOWN_RIGHT"], [32, 3, 1, "", "CHEVRON_LEFT"], [32, 3, 1, "", "CHEVRON_LEFT_PIPE"], [32, 3, 1, "", "CHEVRON_RIGHT"], [32, 3, 1, "", "CHEVRON_RIGHT_PIPE"], [32, 3, 1, "", "CHEVRON_UP"], [32, 3, 1, "", "CHEVRON_UP_LEFT"], [32, 3, 1, "", "CHEVRON_UP_RIGHT"], [32, 3, 1, "", "CHISEL"], [32, 3, 1, "", "CHRISTMAS_TREE"], [32, 3, 1, "", "CHRISTMAS_TREE_OFF"], [32, 3, 1, "", "CIRCLE"], [32, 3, 1, "", "CIRCLES"], [32, 3, 1, "", "CIRCLES_FILLED"], [32, 3, 1, "", "CIRCLES_RELATION"], [32, 3, 1, "", "CIRCLE_0_FILLED"], [32, 3, 1, "", "CIRCLE_1_FILLED"], [32, 3, 1, "", "CIRCLE_2_FILLED"], [32, 3, 1, "", "CIRCLE_3_FILLED"], [32, 3, 1, "", "CIRCLE_4_FILLED"], [32, 3, 1, "", "CIRCLE_5_FILLED"], [32, 3, 1, "", "CIRCLE_6_FILLED"], [32, 3, 1, "", "CIRCLE_7_FILLED"], [32, 3, 1, "", "CIRCLE_8_FILLED"], [32, 3, 1, "", "CIRCLE_9_FILLED"], [32, 3, 1, "", "CIRCLE_ARROW_DOWN"], [32, 3, 1, "", "CIRCLE_ARROW_DOWN_FILLED"], [32, 3, 1, "", "CIRCLE_ARROW_DOWN_LEFT"], [32, 3, 1, "", "CIRCLE_ARROW_DOWN_LEFT_FILLED"], [32, 3, 1, "", "CIRCLE_ARROW_DOWN_RIGHT"], [32, 3, 1, "", "CIRCLE_ARROW_DOWN_RIGHT_FILLED"], [32, 3, 1, "", "CIRCLE_ARROW_LEFT"], [32, 3, 1, "", "CIRCLE_ARROW_LEFT_FILLED"], [32, 3, 1, "", "CIRCLE_ARROW_RIGHT"], [32, 3, 1, "", "CIRCLE_ARROW_RIGHT_FILLED"], [32, 3, 1, "", "CIRCLE_ARROW_UP"], [32, 3, 1, "", "CIRCLE_ARROW_UP_FILLED"], [32, 3, 1, "", "CIRCLE_ARROW_UP_LEFT"], [32, 3, 1, "", "CIRCLE_ARROW_UP_LEFT_FILLED"], [32, 3, 1, "", "CIRCLE_ARROW_UP_RIGHT"], [32, 3, 1, "", "CIRCLE_ARROW_UP_RIGHT_FILLED"], [32, 3, 1, "", "CIRCLE_CARET_DOWN"], [32, 3, 1, "", "CIRCLE_CARET_LEFT"], [32, 3, 1, "", "CIRCLE_CARET_RIGHT"], [32, 3, 1, "", "CIRCLE_CARET_UP"], [32, 3, 1, "", "CIRCLE_CHECK"], [32, 3, 1, "", "CIRCLE_CHECK_FILLED"], [32, 3, 1, "", "CIRCLE_CHEVRONS_DOWN"], [32, 3, 1, "", "CIRCLE_CHEVRONS_LEFT"], [32, 3, 1, "", "CIRCLE_CHEVRONS_RIGHT"], [32, 3, 1, "", "CIRCLE_CHEVRONS_UP"], [32, 3, 1, "", "CIRCLE_CHEVRON_DOWN"], [32, 3, 1, "", "CIRCLE_CHEVRON_LEFT"], [32, 3, 1, "", "CIRCLE_CHEVRON_RIGHT"], [32, 3, 1, "", "CIRCLE_CHEVRON_UP"], [32, 3, 1, "", "CIRCLE_DASHED"], [32, 3, 1, "", "CIRCLE_DOT"], [32, 3, 1, "", "CIRCLE_DOTTED"], [32, 3, 1, "", "CIRCLE_DOT_FILLED"], [32, 3, 1, "", "CIRCLE_FILLED"], [32, 3, 1, "", "CIRCLE_HALF"], [32, 3, 1, "", "CIRCLE_HALF_2"], [32, 3, 1, "", "CIRCLE_HALF_VERTICAL"], [32, 3, 1, "", "CIRCLE_KEY"], [32, 3, 1, "", "CIRCLE_KEY_FILLED"], [32, 3, 1, "", "CIRCLE_LETTER_A"], [32, 3, 1, "", "CIRCLE_LETTER_B"], [32, 3, 1, "", "CIRCLE_LETTER_C"], [32, 3, 1, "", "CIRCLE_LETTER_D"], [32, 3, 1, "", "CIRCLE_LETTER_E"], [32, 3, 1, "", "CIRCLE_LETTER_F"], [32, 3, 1, "", "CIRCLE_LETTER_G"], [32, 3, 1, "", "CIRCLE_LETTER_H"], [32, 3, 1, "", "CIRCLE_LETTER_I"], [32, 3, 1, "", "CIRCLE_LETTER_J"], [32, 3, 1, "", "CIRCLE_LETTER_K"], [32, 3, 1, "", "CIRCLE_LETTER_L"], [32, 3, 1, "", "CIRCLE_LETTER_M"], [32, 3, 1, "", "CIRCLE_LETTER_N"], [32, 3, 1, "", "CIRCLE_LETTER_O"], [32, 3, 1, "", "CIRCLE_LETTER_P"], [32, 3, 1, "", "CIRCLE_LETTER_Q"], [32, 3, 1, "", "CIRCLE_LETTER_R"], [32, 3, 1, "", "CIRCLE_LETTER_S"], [32, 3, 1, "", "CIRCLE_LETTER_T"], [32, 3, 1, "", "CIRCLE_LETTER_U"], [32, 3, 1, "", "CIRCLE_LETTER_V"], [32, 3, 1, "", "CIRCLE_LETTER_W"], [32, 3, 1, "", "CIRCLE_LETTER_X"], [32, 3, 1, "", "CIRCLE_LETTER_Y"], [32, 3, 1, "", "CIRCLE_LETTER_Z"], [32, 3, 1, "", "CIRCLE_MINUS"], [32, 3, 1, "", "CIRCLE_NUMBER_0"], [32, 3, 1, "", "CIRCLE_NUMBER_1"], [32, 3, 1, "", "CIRCLE_NUMBER_2"], [32, 3, 1, "", "CIRCLE_NUMBER_3"], [32, 3, 1, "", "CIRCLE_NUMBER_4"], [32, 3, 1, "", "CIRCLE_NUMBER_5"], [32, 3, 1, "", "CIRCLE_NUMBER_6"], [32, 3, 1, "", "CIRCLE_NUMBER_7"], [32, 3, 1, "", "CIRCLE_NUMBER_8"], [32, 3, 1, "", "CIRCLE_NUMBER_9"], [32, 3, 1, "", "CIRCLE_OFF"], [32, 3, 1, "", "CIRCLE_PLUS"], [32, 3, 1, "", "CIRCLE_RECTANGLE"], [32, 3, 1, "", "CIRCLE_RECTANGLE_OFF"], [32, 3, 1, "", "CIRCLE_SQUARE"], [32, 3, 1, "", "CIRCLE_TRIANGLE"], [32, 3, 1, "", "CIRCLE_X"], [32, 3, 1, "", "CIRCLE_X_FILLED"], [32, 3, 1, "", "CIRCUIT_AMMETER"], [32, 3, 1, "", "CIRCUIT_BATTERY"], [32, 3, 1, "", "CIRCUIT_BULB"], [32, 3, 1, "", "CIRCUIT_CAPACITOR"], [32, 3, 1, "", "CIRCUIT_CAPACITOR_POLARIZED"], [32, 3, 1, "", "CIRCUIT_CELL"], [32, 3, 1, "", "CIRCUIT_CELL_PLUS"], [32, 3, 1, "", "CIRCUIT_CHANGEOVER"], [32, 3, 1, "", "CIRCUIT_DIODE"], [32, 3, 1, "", "CIRCUIT_DIODE_ZENER"], [32, 3, 1, "", "CIRCUIT_GROUND"], [32, 3, 1, "", "CIRCUIT_GROUND_DIGITAL"], [32, 3, 1, "", "CIRCUIT_INDUCTOR"], [32, 3, 1, "", "CIRCUIT_MOTOR"], [32, 3, 1, "", "CIRCUIT_PUSHBUTTON"], [32, 3, 1, "", "CIRCUIT_RESISTOR"], [32, 3, 1, "", "CIRCUIT_SWITCH_CLOSED"], [32, 3, 1, "", "CIRCUIT_SWITCH_OPEN"], [32, 3, 1, "", "CIRCUIT_VOLTMETER"], [32, 3, 1, "", "CLEAR_ALL"], [32, 3, 1, "", "CLEAR_FORMATTING"], [32, 3, 1, "", "CLICK"], [32, 3, 1, "", "CLIPBOARD"], [32, 3, 1, "", "CLIPBOARD_CHECK"], [32, 3, 1, "", "CLIPBOARD_COPY"], [32, 3, 1, "", "CLIPBOARD_DATA"], [32, 3, 1, "", "CLIPBOARD_HEART"], [32, 3, 1, "", "CLIPBOARD_LIST"], [32, 3, 1, "", "CLIPBOARD_OFF"], [32, 3, 1, "", "CLIPBOARD_PLUS"], [32, 3, 1, "", "CLIPBOARD_TEXT"], [32, 3, 1, "", "CLIPBOARD_TYPOGRAPHY"], [32, 3, 1, "", "CLIPBOARD_X"], [32, 3, 1, "", "CLOCK"], [32, 3, 1, "", "CLOCK_2"], [32, 3, 1, "", "CLOCK_BOLT"], [32, 3, 1, "", "CLOCK_CANCEL"], [32, 3, 1, "", "CLOCK_CHECK"], [32, 3, 1, "", "CLOCK_CODE"], [32, 3, 1, "", "CLOCK_COG"], [32, 3, 1, "", "CLOCK_DOLLAR"], [32, 3, 1, "", "CLOCK_DOWN"], [32, 3, 1, "", "CLOCK_EDIT"], [32, 3, 1, "", "CLOCK_EXCLAMATION"], [32, 3, 1, "", "CLOCK_FILLED"], [32, 3, 1, "", "CLOCK_HEART"], [32, 3, 1, "", "CLOCK_HOUR_1"], [32, 3, 1, "", "CLOCK_HOUR_10"], [32, 3, 1, "", "CLOCK_HOUR_11"], [32, 3, 1, "", "CLOCK_HOUR_12"], [32, 3, 1, "", "CLOCK_HOUR_2"], [32, 3, 1, "", "CLOCK_HOUR_3"], [32, 3, 1, "", "CLOCK_HOUR_4"], [32, 3, 1, "", "CLOCK_HOUR_5"], [32, 3, 1, "", "CLOCK_HOUR_6"], [32, 3, 1, "", "CLOCK_HOUR_7"], [32, 3, 1, "", "CLOCK_HOUR_8"], [32, 3, 1, "", "CLOCK_HOUR_9"], [32, 3, 1, "", "CLOCK_MINUS"], [32, 3, 1, "", "CLOCK_OFF"], [32, 3, 1, "", "CLOCK_PAUSE"], [32, 3, 1, "", "CLOCK_PIN"], [32, 3, 1, "", "CLOCK_PLAY"], [32, 3, 1, "", "CLOCK_PLUS"], [32, 3, 1, "", "CLOCK_QUESTION"], [32, 3, 1, "", "CLOCK_RECORD"], [32, 3, 1, "", "CLOCK_SEARCH"], [32, 3, 1, "", "CLOCK_SHARE"], [32, 3, 1, "", "CLOCK_SHIELD"], [32, 3, 1, "", "CLOCK_STAR"], [32, 3, 1, "", "CLOCK_STOP"], [32, 3, 1, "", "CLOCK_UP"], [32, 3, 1, "", "CLOCK_X"], [32, 3, 1, "", "CLOTHES_RACK"], [32, 3, 1, "", "CLOTHES_RACK_OFF"], [32, 3, 1, "", "CLOUD"], [32, 3, 1, "", "CLOUD_BOLT"], [32, 3, 1, "", "CLOUD_CANCEL"], [32, 3, 1, "", "CLOUD_CHECK"], [32, 3, 1, "", "CLOUD_CODE"], [32, 3, 1, "", "CLOUD_COG"], [32, 3, 1, "", "CLOUD_COMPUTING"], [32, 3, 1, "", "CLOUD_DATA_CONNECTION"], [32, 3, 1, "", "CLOUD_DOLLAR"], [32, 3, 1, "", "CLOUD_DOWN"], [32, 3, 1, "", "CLOUD_DOWNLOAD"], [32, 3, 1, "", "CLOUD_EXCLAMATION"], [32, 3, 1, "", "CLOUD_FILLED"], [32, 3, 1, "", "CLOUD_FOG"], [32, 3, 1, "", "CLOUD_HEART"], [32, 3, 1, "", "CLOUD_LOCK"], [32, 3, 1, "", "CLOUD_LOCK_OPEN"], [32, 3, 1, "", "CLOUD_MINUS"], [32, 3, 1, "", "CLOUD_OFF"], [32, 3, 1, "", "CLOUD_PAUSE"], [32, 3, 1, "", "CLOUD_PIN"], [32, 3, 1, "", "CLOUD_PLUS"], [32, 3, 1, "", "CLOUD_QUESTION"], [32, 3, 1, "", "CLOUD_RAIN"], [32, 3, 1, "", "CLOUD_SEARCH"], [32, 3, 1, "", "CLOUD_SHARE"], [32, 3, 1, "", "CLOUD_SNOW"], [32, 3, 1, "", "CLOUD_STAR"], [32, 3, 1, "", "CLOUD_STORM"], [32, 3, 1, "", "CLOUD_UP"], [32, 3, 1, "", "CLOUD_UPLOAD"], [32, 3, 1, "", "CLOUD_X"], [32, 3, 1, "", "CLOVER"], [32, 3, 1, "", "CLOVER_2"], [32, 3, 1, "", "CLUBS"], [32, 3, 1, "", "CLUBS_FILLED"], [32, 3, 1, "", "CODE"], [32, 3, 1, "", "CODE_ASTERIX"], [32, 3, 1, "", "CODE_CIRCLE"], [32, 3, 1, "", "CODE_CIRCLE_2"], [32, 3, 1, "", "CODE_DOTS"], [32, 3, 1, "", "CODE_MINUS"], [32, 3, 1, "", "CODE_OFF"], [32, 3, 1, "", "CODE_PLUS"], [32, 3, 1, "", "COFFEE"], [32, 3, 1, "", "COFFEE_OFF"], [32, 3, 1, "", "COFFIN"], [32, 3, 1, "", "COIN"], [32, 3, 1, "", "COINS"], [32, 3, 1, "", "COIN_BITCOIN"], [32, 3, 1, "", "COIN_EURO"], [32, 3, 1, "", "COIN_MONERO"], [32, 3, 1, "", "COIN_OFF"], [32, 3, 1, "", "COIN_POUND"], [32, 3, 1, "", "COIN_RUPEE"], [32, 3, 1, "", "COIN_YEN"], [32, 3, 1, "", "COIN_YUAN"], [32, 3, 1, "", "COLOR_FILTER"], [32, 3, 1, "", "COLOR_PICKER"], [32, 3, 1, "", "COLOR_PICKER_OFF"], [32, 3, 1, "", "COLOR_SWATCH"], [32, 3, 1, "", "COLOR_SWATCH_OFF"], [32, 3, 1, "", "COLUMNS"], [32, 3, 1, "", "COLUMNS_1"], [32, 3, 1, "", "COLUMNS_2"], [32, 3, 1, "", "COLUMNS_3"], [32, 3, 1, "", "COLUMNS_OFF"], [32, 3, 1, "", "COLUMN_INSERT_LEFT"], [32, 3, 1, "", "COLUMN_INSERT_RIGHT"], [32, 3, 1, "", "COLUMN_REMOVE"], [32, 3, 1, "", "COMET"], [32, 3, 1, "", "COMMAND"], [32, 3, 1, "", "COMMAND_OFF"], [32, 3, 1, "", "COMPASS"], [32, 3, 1, "", "COMPASS_OFF"], [32, 3, 1, "", "COMPONENTS"], [32, 3, 1, "", "COMPONENTS_OFF"], [32, 3, 1, "", "CONE"], [32, 3, 1, "", "CONE_2"], [32, 3, 1, "", "CONE_OFF"], [32, 3, 1, "", "CONE_PLUS"], [32, 3, 1, "", "CONFETTI"], [32, 3, 1, "", "CONFETTI_OFF"], [32, 3, 1, "", "CONFUCIUS"], [32, 3, 1, "", "CONTAINER"], [32, 3, 1, "", "CONTAINER_OFF"], [32, 3, 1, "", "CONTRAST"], [32, 3, 1, "", "CONTRAST_2"], [32, 3, 1, "", "CONTRAST_2_OFF"], [32, 3, 1, "", "CONTRAST_OFF"], [32, 3, 1, "", "COOKER"], [32, 3, 1, "", "COOKIE"], [32, 3, 1, "", "COOKIE_MAN"], [32, 3, 1, "", "COOKIE_OFF"], [32, 3, 1, "", "COPY"], [32, 3, 1, "", "COPYLEFT"], [32, 3, 1, "", "COPYLEFT_FILLED"], [32, 3, 1, "", "COPYLEFT_OFF"], [32, 3, 1, "", "COPYRIGHT"], [32, 3, 1, "", "COPYRIGHT_FILLED"], [32, 3, 1, "", "COPYRIGHT_OFF"], [32, 3, 1, "", "COPY_OFF"], [32, 3, 1, "", "CORNER_DOWN_LEFT"], [32, 3, 1, "", "CORNER_DOWN_LEFT_DOUBLE"], [32, 3, 1, "", "CORNER_DOWN_RIGHT"], [32, 3, 1, "", "CORNER_DOWN_RIGHT_DOUBLE"], [32, 3, 1, "", "CORNER_LEFT_DOWN"], [32, 3, 1, "", "CORNER_LEFT_DOWN_DOUBLE"], [32, 3, 1, "", "CORNER_LEFT_UP"], [32, 3, 1, "", "CORNER_LEFT_UP_DOUBLE"], [32, 3, 1, "", "CORNER_RIGHT_DOWN"], [32, 3, 1, "", "CORNER_RIGHT_DOWN_DOUBLE"], [32, 3, 1, "", "CORNER_RIGHT_UP"], [32, 3, 1, "", "CORNER_RIGHT_UP_DOUBLE"], [32, 3, 1, "", "CORNER_UP_LEFT"], [32, 3, 1, "", "CORNER_UP_LEFT_DOUBLE"], [32, 3, 1, "", "CORNER_UP_RIGHT"], [32, 3, 1, "", "CORNER_UP_RIGHT_DOUBLE"], [32, 3, 1, "", "CPU"], [32, 3, 1, "", "CPU_2"], [32, 3, 1, "", "CPU_OFF"], [32, 3, 1, "", "CRANE"], [32, 3, 1, "", "CRANE_OFF"], [32, 3, 1, "", "CREATIVE_COMMONS"], [32, 3, 1, "", "CREATIVE_COMMONS_BY"], [32, 3, 1, "", "CREATIVE_COMMONS_NC"], [32, 3, 1, "", "CREATIVE_COMMONS_ND"], [32, 3, 1, "", "CREATIVE_COMMONS_OFF"], [32, 3, 1, "", "CREATIVE_COMMONS_SA"], [32, 3, 1, "", "CREATIVE_COMMONS_ZERO"], [32, 3, 1, "", "CREDIT_CARD"], [32, 3, 1, "", "CREDIT_CARD_OFF"], [32, 3, 1, "", "CRICKET"], [32, 3, 1, "", "CROP"], [32, 3, 1, "", "CROSS"], [32, 3, 1, "", "CROSSHAIR"], [32, 3, 1, "", "CROSS_FILLED"], [32, 3, 1, "", "CROSS_OFF"], [32, 3, 1, "", "CROWN"], [32, 3, 1, "", "CROWN_OFF"], [32, 3, 1, "", "CRUTCHES"], [32, 3, 1, "", "CRUTCHES_OFF"], [32, 3, 1, "", "CRYSTAL_BALL"], [32, 3, 1, "", "CSV"], [32, 3, 1, "", "CUBE"], [32, 3, 1, "", "CUBE_OFF"], [32, 3, 1, "", "CUBE_PLUS"], [32, 3, 1, "", "CUBE_SEND"], [32, 3, 1, "", "CUBE_UNFOLDED"], [32, 3, 1, "", "CUP"], [32, 3, 1, "", "CUP_OFF"], [32, 3, 1, "", "CURLING"], [32, 3, 1, "", "CURLY_LOOP"], [32, 3, 1, "", "CURRENCY"], [32, 3, 1, "", "CURRENCY_AFGHANI"], [32, 3, 1, "", "CURRENCY_BAHRAINI"], [32, 3, 1, "", "CURRENCY_BAHT"], [32, 3, 1, "", "CURRENCY_BITCOIN"], [32, 3, 1, "", "CURRENCY_CENT"], [32, 3, 1, "", "CURRENCY_DINAR"], [32, 3, 1, "", "CURRENCY_DIRHAM"], [32, 3, 1, "", "CURRENCY_DOGECOIN"], [32, 3, 1, "", "CURRENCY_DOLLAR"], [32, 3, 1, "", "CURRENCY_DOLLAR_AUSTRALIAN"], [32, 3, 1, "", "CURRENCY_DOLLAR_BRUNEI"], [32, 3, 1, "", "CURRENCY_DOLLAR_CANADIAN"], [32, 3, 1, "", "CURRENCY_DOLLAR_GUYANESE"], [32, 3, 1, "", "CURRENCY_DOLLAR_OFF"], [32, 3, 1, "", "CURRENCY_DOLLAR_SINGAPORE"], [32, 3, 1, "", "CURRENCY_DOLLAR_ZIMBABWEAN"], [32, 3, 1, "", "CURRENCY_DONG"], [32, 3, 1, "", "CURRENCY_DRAM"], [32, 3, 1, "", "CURRENCY_ETHEREUM"], [32, 3, 1, "", "CURRENCY_EURO"], [32, 3, 1, "", "CURRENCY_EURO_OFF"], [32, 3, 1, "", "CURRENCY_FLORIN"], [32, 3, 1, "", "CURRENCY_FORINT"], [32, 3, 1, "", "CURRENCY_FRANK"], [32, 3, 1, "", "CURRENCY_GUARANI"], [32, 3, 1, "", "CURRENCY_HRYVNIA"], [32, 3, 1, "", "CURRENCY_IRANIAN_RIAL"], [32, 3, 1, "", "CURRENCY_KIP"], [32, 3, 1, "", "CURRENCY_KRONE_CZECH"], [32, 3, 1, "", "CURRENCY_KRONE_DANISH"], [32, 3, 1, "", "CURRENCY_KRONE_SWEDISH"], [32, 3, 1, "", "CURRENCY_LARI"], [32, 3, 1, "", "CURRENCY_LEU"], [32, 3, 1, "", "CURRENCY_LIRA"], [32, 3, 1, "", "CURRENCY_LITECOIN"], [32, 3, 1, "", "CURRENCY_LYD"], [32, 3, 1, "", "CURRENCY_MANAT"], [32, 3, 1, "", "CURRENCY_MONERO"], [32, 3, 1, "", "CURRENCY_NAIRA"], [32, 3, 1, "", "CURRENCY_NANO"], [32, 3, 1, "", "CURRENCY_OFF"], [32, 3, 1, "", "CURRENCY_PAANGA"], [32, 3, 1, "", "CURRENCY_PESO"], [32, 3, 1, "", "CURRENCY_POUND"], [32, 3, 1, "", "CURRENCY_POUND_OFF"], [32, 3, 1, "", "CURRENCY_QUETZAL"], [32, 3, 1, "", "CURRENCY_REAL"], [32, 3, 1, "", "CURRENCY_RENMINBI"], [32, 3, 1, "", "CURRENCY_RIPPLE"], [32, 3, 1, "", "CURRENCY_RIYAL"], [32, 3, 1, "", "CURRENCY_RUBEL"], [32, 3, 1, "", "CURRENCY_RUFIYAA"], [32, 3, 1, "", "CURRENCY_RUPEE"], [32, 3, 1, "", "CURRENCY_RUPEE_NEPALESE"], [32, 3, 1, "", "CURRENCY_SHEKEL"], [32, 3, 1, "", "CURRENCY_SOLANA"], [32, 3, 1, "", "CURRENCY_SOM"], [32, 3, 1, "", "CURRENCY_TAKA"], [32, 3, 1, "", "CURRENCY_TENGE"], [32, 3, 1, "", "CURRENCY_TUGRIK"], [32, 3, 1, "", "CURRENCY_WON"], [32, 3, 1, "", "CURRENCY_YEN"], [32, 3, 1, "", "CURRENCY_YEN_OFF"], [32, 3, 1, "", "CURRENCY_YUAN"], [32, 3, 1, "", "CURRENCY_ZLOTY"], [32, 3, 1, "", "CURRENT_LOCATION"], [32, 3, 1, "", "CURRENT_LOCATION_OFF"], [32, 3, 1, "", "CURSOR_OFF"], [32, 3, 1, "", "CURSOR_TEXT"], [32, 3, 1, "", "CUT"], [32, 3, 1, "", "CYLINDER"], [32, 3, 1, "", "CYLINDER_OFF"], [32, 3, 1, "", "CYLINDER_PLUS"], [32, 3, 1, "", "DASHBOARD"], [32, 3, 1, "", "DASHBOARD_OFF"], [32, 3, 1, "", "DATABASE"], [32, 3, 1, "", "DATABASE_COG"], [32, 3, 1, "", "DATABASE_DOLLAR"], [32, 3, 1, "", "DATABASE_EDIT"], [32, 3, 1, "", "DATABASE_EXCLAMATION"], [32, 3, 1, "", "DATABASE_EXPORT"], [32, 3, 1, "", "DATABASE_HEART"], [32, 3, 1, "", "DATABASE_IMPORT"], [32, 3, 1, "", "DATABASE_LEAK"], [32, 3, 1, "", "DATABASE_MINUS"], [32, 3, 1, "", "DATABASE_OFF"], [32, 3, 1, "", "DATABASE_PLUS"], [32, 3, 1, "", "DATABASE_SEARCH"], [32, 3, 1, "", "DATABASE_SHARE"], [32, 3, 1, "", "DATABASE_STAR"], [32, 3, 1, "", "DATABASE_X"], [32, 3, 1, "", "DECIMAL"], [32, 3, 1, "", "DEER"], [32, 3, 1, "", "DELTA"], [32, 3, 1, "", "DENTAL"], [32, 3, 1, "", "DENTAL_BROKEN"], [32, 3, 1, "", "DENTAL_OFF"], [32, 3, 1, "", "DESELECT"], [32, 3, 1, "", "DETAILS"], [32, 3, 1, "", "DETAILS_OFF"], [32, 3, 1, "", "DEVICES"], [32, 3, 1, "", "DEVICES_2"], [32, 3, 1, "", "DEVICES_BOLT"], [32, 3, 1, "", "DEVICES_CANCEL"], [32, 3, 1, "", "DEVICES_CHECK"], [32, 3, 1, "", "DEVICES_CODE"], [32, 3, 1, "", "DEVICES_COG"], [32, 3, 1, "", "DEVICES_DOLLAR"], [32, 3, 1, "", "DEVICES_DOWN"], [32, 3, 1, "", "DEVICES_EXCLAMATION"], [32, 3, 1, "", "DEVICES_HEART"], [32, 3, 1, "", "DEVICES_MINUS"], [32, 3, 1, "", "DEVICES_OFF"], [32, 3, 1, "", "DEVICES_PAUSE"], [32, 3, 1, "", "DEVICES_PC"], [32, 3, 1, "", "DEVICES_PC_OFF"], [32, 3, 1, "", "DEVICES_PIN"], [32, 3, 1, "", "DEVICES_PLUS"], [32, 3, 1, "", "DEVICES_QUESTION"], [32, 3, 1, "", "DEVICES_SEARCH"], [32, 3, 1, "", "DEVICES_SHARE"], [32, 3, 1, "", "DEVICES_STAR"], [32, 3, 1, "", "DEVICES_UP"], [32, 3, 1, "", "DEVICES_X"], [32, 3, 1, "", "DEVICE_AIRPODS"], [32, 3, 1, "", "DEVICE_AIRPODS_CASE"], [32, 3, 1, "", "DEVICE_AIRTAG"], [32, 3, 1, "", "DEVICE_ANALYTICS"], [32, 3, 1, "", "DEVICE_AUDIO_TAPE"], [32, 3, 1, "", "DEVICE_CAMERA_PHONE"], [32, 3, 1, "", "DEVICE_CCTV"], [32, 3, 1, "", "DEVICE_CCTV_OFF"], [32, 3, 1, "", "DEVICE_COMPUTER_CAMERA"], [32, 3, 1, "", "DEVICE_COMPUTER_CAMERA_OFF"], [32, 3, 1, "", "DEVICE_DESKTOP"], [32, 3, 1, "", "DEVICE_DESKTOP_ANALYTICS"], [32, 3, 1, "", "DEVICE_DESKTOP_BOLT"], [32, 3, 1, "", "DEVICE_DESKTOP_CANCEL"], [32, 3, 1, "", "DEVICE_DESKTOP_CHECK"], [32, 3, 1, "", "DEVICE_DESKTOP_CODE"], [32, 3, 1, "", "DEVICE_DESKTOP_COG"], [32, 3, 1, "", "DEVICE_DESKTOP_DOLLAR"], [32, 3, 1, "", "DEVICE_DESKTOP_DOWN"], [32, 3, 1, "", "DEVICE_DESKTOP_EXCLAMATION"], [32, 3, 1, "", "DEVICE_DESKTOP_HEART"], [32, 3, 1, "", "DEVICE_DESKTOP_MINUS"], [32, 3, 1, "", "DEVICE_DESKTOP_OFF"], [32, 3, 1, "", "DEVICE_DESKTOP_PAUSE"], [32, 3, 1, "", "DEVICE_DESKTOP_PIN"], [32, 3, 1, "", "DEVICE_DESKTOP_PLUS"], [32, 3, 1, "", "DEVICE_DESKTOP_QUESTION"], [32, 3, 1, "", "DEVICE_DESKTOP_SEARCH"], [32, 3, 1, "", "DEVICE_DESKTOP_SHARE"], [32, 3, 1, "", "DEVICE_DESKTOP_STAR"], [32, 3, 1, "", "DEVICE_DESKTOP_UP"], [32, 3, 1, "", "DEVICE_DESKTOP_X"], [32, 3, 1, "", "DEVICE_FLOPPY"], [32, 3, 1, "", "DEVICE_GAMEPAD"], [32, 3, 1, "", "DEVICE_GAMEPAD_2"], [32, 3, 1, "", "DEVICE_HEART_MONITOR"], [32, 3, 1, "", "DEVICE_HEART_MONITOR_FILLED"], [32, 3, 1, "", "DEVICE_IMAC"], [32, 3, 1, "", "DEVICE_IMAC_BOLT"], [32, 3, 1, "", "DEVICE_IMAC_CANCEL"], [32, 3, 1, "", "DEVICE_IMAC_CHECK"], [32, 3, 1, "", "DEVICE_IMAC_CODE"], [32, 3, 1, "", "DEVICE_IMAC_COG"], [32, 3, 1, "", "DEVICE_IMAC_DOLLAR"], [32, 3, 1, "", "DEVICE_IMAC_DOWN"], [32, 3, 1, "", "DEVICE_IMAC_EXCLAMATION"], [32, 3, 1, "", "DEVICE_IMAC_HEART"], [32, 3, 1, "", "DEVICE_IMAC_MINUS"], [32, 3, 1, "", "DEVICE_IMAC_OFF"], [32, 3, 1, "", "DEVICE_IMAC_PAUSE"], [32, 3, 1, "", "DEVICE_IMAC_PIN"], [32, 3, 1, "", "DEVICE_IMAC_PLUS"], [32, 3, 1, "", "DEVICE_IMAC_QUESTION"], [32, 3, 1, "", "DEVICE_IMAC_SEARCH"], [32, 3, 1, "", "DEVICE_IMAC_SHARE"], [32, 3, 1, "", "DEVICE_IMAC_STAR"], [32, 3, 1, "", "DEVICE_IMAC_UP"], [32, 3, 1, "", "DEVICE_IMAC_X"], [32, 3, 1, "", "DEVICE_IPAD"], [32, 3, 1, "", "DEVICE_IPAD_BOLT"], [32, 3, 1, "", "DEVICE_IPAD_CANCEL"], [32, 3, 1, "", "DEVICE_IPAD_CHECK"], [32, 3, 1, "", "DEVICE_IPAD_CODE"], [32, 3, 1, "", "DEVICE_IPAD_COG"], [32, 3, 1, "", "DEVICE_IPAD_DOLLAR"], [32, 3, 1, "", "DEVICE_IPAD_DOWN"], [32, 3, 1, "", "DEVICE_IPAD_EXCLAMATION"], [32, 3, 1, "", "DEVICE_IPAD_HEART"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_BOLT"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_CANCEL"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_CHECK"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_CODE"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_COG"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_DOLLAR"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_DOWN"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_EXCLAMATION"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_HEART"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_MINUS"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_OFF"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_PAUSE"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_PIN"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_PLUS"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_QUESTION"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_SEARCH"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_SHARE"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_STAR"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_UP"], [32, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_X"], [32, 3, 1, "", "DEVICE_IPAD_MINUS"], [32, 3, 1, "", "DEVICE_IPAD_OFF"], [32, 3, 1, "", "DEVICE_IPAD_PAUSE"], [32, 3, 1, "", "DEVICE_IPAD_PIN"], [32, 3, 1, "", "DEVICE_IPAD_PLUS"], [32, 3, 1, "", "DEVICE_IPAD_QUESTION"], [32, 3, 1, "", "DEVICE_IPAD_SEARCH"], [32, 3, 1, "", "DEVICE_IPAD_SHARE"], [32, 3, 1, "", "DEVICE_IPAD_STAR"], [32, 3, 1, "", "DEVICE_IPAD_UP"], [32, 3, 1, "", "DEVICE_IPAD_X"], [32, 3, 1, "", "DEVICE_LANDLINE_PHONE"], [32, 3, 1, "", "DEVICE_LAPTOP"], [32, 3, 1, "", "DEVICE_LAPTOP_OFF"], [32, 3, 1, "", "DEVICE_MOBILE"], [32, 3, 1, "", "DEVICE_MOBILE_BOLT"], [32, 3, 1, "", "DEVICE_MOBILE_CANCEL"], [32, 3, 1, "", "DEVICE_MOBILE_CHARGING"], [32, 3, 1, "", "DEVICE_MOBILE_CHECK"], [32, 3, 1, "", "DEVICE_MOBILE_CODE"], [32, 3, 1, "", "DEVICE_MOBILE_COG"], [32, 3, 1, "", "DEVICE_MOBILE_DOLLAR"], [32, 3, 1, "", "DEVICE_MOBILE_DOWN"], [32, 3, 1, "", "DEVICE_MOBILE_EXCLAMATION"], [32, 3, 1, "", "DEVICE_MOBILE_FILLED"], [32, 3, 1, "", "DEVICE_MOBILE_HEART"], [32, 3, 1, "", "DEVICE_MOBILE_MESSAGE"], [32, 3, 1, "", "DEVICE_MOBILE_MINUS"], [32, 3, 1, "", "DEVICE_MOBILE_OFF"], [32, 3, 1, "", "DEVICE_MOBILE_PAUSE"], [32, 3, 1, "", "DEVICE_MOBILE_PIN"], [32, 3, 1, "", "DEVICE_MOBILE_PLUS"], [32, 3, 1, "", "DEVICE_MOBILE_QUESTION"], [32, 3, 1, "", "DEVICE_MOBILE_ROTATED"], [32, 3, 1, "", "DEVICE_MOBILE_SEARCH"], [32, 3, 1, "", "DEVICE_MOBILE_SHARE"], [32, 3, 1, "", "DEVICE_MOBILE_STAR"], [32, 3, 1, "", "DEVICE_MOBILE_UP"], [32, 3, 1, "", "DEVICE_MOBILE_VIBRATION"], [32, 3, 1, "", "DEVICE_MOBILE_X"], [32, 3, 1, "", "DEVICE_NINTENDO"], [32, 3, 1, "", "DEVICE_NINTENDO_OFF"], [32, 3, 1, "", "DEVICE_REMOTE"], [32, 3, 1, "", "DEVICE_SD_CARD"], [32, 3, 1, "", "DEVICE_SIM"], [32, 3, 1, "", "DEVICE_SIM_1"], [32, 3, 1, "", "DEVICE_SIM_2"], [32, 3, 1, "", "DEVICE_SIM_3"], [32, 3, 1, "", "DEVICE_SPEAKER"], [32, 3, 1, "", "DEVICE_SPEAKER_OFF"], [32, 3, 1, "", "DEVICE_TABLET"], [32, 3, 1, "", "DEVICE_TABLET_BOLT"], [32, 3, 1, "", "DEVICE_TABLET_CANCEL"], [32, 3, 1, "", "DEVICE_TABLET_CHECK"], [32, 3, 1, "", "DEVICE_TABLET_CODE"], [32, 3, 1, "", "DEVICE_TABLET_COG"], [32, 3, 1, "", "DEVICE_TABLET_DOLLAR"], [32, 3, 1, "", "DEVICE_TABLET_DOWN"], [32, 3, 1, "", "DEVICE_TABLET_EXCLAMATION"], [32, 3, 1, "", "DEVICE_TABLET_FILLED"], [32, 3, 1, "", "DEVICE_TABLET_HEART"], [32, 3, 1, "", "DEVICE_TABLET_MINUS"], [32, 3, 1, "", "DEVICE_TABLET_OFF"], [32, 3, 1, "", "DEVICE_TABLET_PAUSE"], [32, 3, 1, "", "DEVICE_TABLET_PIN"], [32, 3, 1, "", "DEVICE_TABLET_PLUS"], [32, 3, 1, "", "DEVICE_TABLET_QUESTION"], [32, 3, 1, "", "DEVICE_TABLET_SEARCH"], [32, 3, 1, "", "DEVICE_TABLET_SHARE"], [32, 3, 1, "", "DEVICE_TABLET_STAR"], [32, 3, 1, "", "DEVICE_TABLET_UP"], [32, 3, 1, "", "DEVICE_TABLET_X"], [32, 3, 1, "", "DEVICE_TV"], [32, 3, 1, "", "DEVICE_TV_OFF"], [32, 3, 1, "", "DEVICE_TV_OLD"], [32, 3, 1, "", "DEVICE_VISION_PRO"], [32, 3, 1, "", "DEVICE_WATCH"], [32, 3, 1, "", "DEVICE_WATCH_BOLT"], [32, 3, 1, "", "DEVICE_WATCH_CANCEL"], [32, 3, 1, "", "DEVICE_WATCH_CHECK"], [32, 3, 1, "", "DEVICE_WATCH_CODE"], [32, 3, 1, "", "DEVICE_WATCH_COG"], [32, 3, 1, "", "DEVICE_WATCH_DOLLAR"], [32, 3, 1, "", "DEVICE_WATCH_DOWN"], [32, 3, 1, "", "DEVICE_WATCH_EXCLAMATION"], [32, 3, 1, "", "DEVICE_WATCH_HEART"], [32, 3, 1, "", "DEVICE_WATCH_MINUS"], [32, 3, 1, "", "DEVICE_WATCH_OFF"], [32, 3, 1, "", "DEVICE_WATCH_PAUSE"], [32, 3, 1, "", "DEVICE_WATCH_PIN"], [32, 3, 1, "", "DEVICE_WATCH_PLUS"], [32, 3, 1, "", "DEVICE_WATCH_QUESTION"], [32, 3, 1, "", "DEVICE_WATCH_SEARCH"], [32, 3, 1, "", "DEVICE_WATCH_SHARE"], [32, 3, 1, "", "DEVICE_WATCH_STAR"], [32, 3, 1, "", "DEVICE_WATCH_STATS"], [32, 3, 1, "", "DEVICE_WATCH_STATS_2"], [32, 3, 1, "", "DEVICE_WATCH_UP"], [32, 3, 1, "", "DEVICE_WATCH_X"], [32, 3, 1, "", "DIABOLO"], [32, 3, 1, "", "DIABOLO_OFF"], [32, 3, 1, "", "DIABOLO_PLUS"], [32, 3, 1, "", "DIALPAD"], [32, 3, 1, "", "DIALPAD_FILLED"], [32, 3, 1, "", "DIALPAD_OFF"], [32, 3, 1, "", "DIAMOND"], [32, 3, 1, "", "DIAMONDS"], [32, 3, 1, "", "DIAMONDS_FILLED"], [32, 3, 1, "", "DIAMOND_FILLED"], [32, 3, 1, "", "DIAMOND_OFF"], [32, 3, 1, "", "DICE"], [32, 3, 1, "", "DICE_1"], [32, 3, 1, "", "DICE_1_FILLED"], [32, 3, 1, "", "DICE_2"], [32, 3, 1, "", "DICE_2_FILLED"], [32, 3, 1, "", "DICE_3"], [32, 3, 1, "", "DICE_3_FILLED"], [32, 3, 1, "", "DICE_4"], [32, 3, 1, "", "DICE_4_FILLED"], [32, 3, 1, "", "DICE_5"], [32, 3, 1, "", "DICE_5_FILLED"], [32, 3, 1, "", "DICE_6"], [32, 3, 1, "", "DICE_6_FILLED"], [32, 3, 1, "", "DICE_FILLED"], [32, 3, 1, "", "DIMENSIONS"], [32, 3, 1, "", "DIRECTION"], [32, 3, 1, "", "DIRECTIONS"], [32, 3, 1, "", "DIRECTIONS_OFF"], [32, 3, 1, "", "DIRECTION_HORIZONTAL"], [32, 3, 1, "", "DIRECTION_SIGN"], [32, 3, 1, "", "DIRECTION_SIGN_FILLED"], [32, 3, 1, "", "DIRECTION_SIGN_OFF"], [32, 3, 1, "", "DISABLED"], [32, 3, 1, "", "DISABLED_2"], [32, 3, 1, "", "DISABLED_OFF"], [32, 3, 1, "", "DISC"], [32, 3, 1, "", "DISCOUNT"], [32, 3, 1, "", "DISCOUNT_2"], [32, 3, 1, "", "DISCOUNT_2_OFF"], [32, 3, 1, "", "DISCOUNT_CHECK"], [32, 3, 1, "", "DISCOUNT_CHECK_FILLED"], [32, 3, 1, "", "DISCOUNT_OFF"], [32, 3, 1, "", "DISC_GOLF"], [32, 3, 1, "", "DISC_OFF"], [32, 3, 1, "", "DIVIDE"], [32, 3, 1, "", "DNA"], [32, 3, 1, "", "DNA_2"], [32, 3, 1, "", "DNA_2_OFF"], [32, 3, 1, "", "DNA_OFF"], [32, 3, 1, "", "DOG"], [32, 3, 1, "", "DOG_BOWL"], [32, 3, 1, "", "DOOR"], [32, 3, 1, "", "DOOR_ENTER"], [32, 3, 1, "", "DOOR_EXIT"], [32, 3, 1, "", "DOOR_OFF"], [32, 3, 1, "", "DOTS"], [32, 3, 1, "", "DOTS_CIRCLE_HORIZONTAL"], [32, 3, 1, "", "DOTS_DIAGONAL"], [32, 3, 1, "", "DOTS_DIAGONAL_2"], [32, 3, 1, "", "DOTS_VERTICAL"], [32, 3, 1, "", "DOWNLOAD"], [32, 3, 1, "", "DOWNLOAD_OFF"], [32, 3, 1, "", "DRAG_DROP"], [32, 3, 1, "", "DRAG_DROP_2"], [32, 3, 1, "", "DRONE"], [32, 3, 1, "", "DRONE_OFF"], [32, 3, 1, "", "DROPLET"], [32, 3, 1, "", "DROPLET_BOLT"], [32, 3, 1, "", "DROPLET_CANCEL"], [32, 3, 1, "", "DROPLET_CHECK"], [32, 3, 1, "", "DROPLET_CODE"], [32, 3, 1, "", "DROPLET_COG"], [32, 3, 1, "", "DROPLET_DOLLAR"], [32, 3, 1, "", "DROPLET_DOWN"], [32, 3, 1, "", "DROPLET_EXCLAMATION"], [32, 3, 1, "", "DROPLET_FILLED"], [32, 3, 1, "", "DROPLET_FILLED_2"], [32, 3, 1, "", "DROPLET_HALF"], [32, 3, 1, "", "DROPLET_HALF_2"], [32, 3, 1, "", "DROPLET_HALF_FILLED"], [32, 3, 1, "", "DROPLET_HEART"], [32, 3, 1, "", "DROPLET_MINUS"], [32, 3, 1, "", "DROPLET_OFF"], [32, 3, 1, "", "DROPLET_PAUSE"], [32, 3, 1, "", "DROPLET_PIN"], [32, 3, 1, "", "DROPLET_PLUS"], [32, 3, 1, "", "DROPLET_QUESTION"], [32, 3, 1, "", "DROPLET_SEARCH"], [32, 3, 1, "", "DROPLET_SHARE"], [32, 3, 1, "", "DROPLET_STAR"], [32, 3, 1, "", "DROPLET_UP"], [32, 3, 1, "", "DROPLET_X"], [32, 3, 1, "", "DROP_CIRCLE"], [32, 3, 1, "", "DUAL_SCREEN"], [32, 3, 1, "", "EAR"], [32, 3, 1, "", "EAR_OFF"], [32, 3, 1, "", "EASE_IN"], [32, 3, 1, "", "EASE_IN_CONTROL_POINT"], [32, 3, 1, "", "EASE_IN_OUT"], [32, 3, 1, "", "EASE_IN_OUT_CONTROL_POINTS"], [32, 3, 1, "", "EASE_OUT"], [32, 3, 1, "", "EASE_OUT_CONTROL_POINT"], [32, 3, 1, "", "EDIT"], [32, 3, 1, "", "EDIT_CIRCLE"], [32, 3, 1, "", "EDIT_CIRCLE_OFF"], [32, 3, 1, "", "EDIT_OFF"], [32, 3, 1, "", "EGG"], [32, 3, 1, "", "EGGS"], [32, 3, 1, "", "EGG_CRACKED"], [32, 3, 1, "", "EGG_FILLED"], [32, 3, 1, "", "EGG_FRIED"], [32, 3, 1, "", "EGG_OFF"], [32, 3, 1, "", "ELEVATOR"], [32, 3, 1, "", "ELEVATOR_OFF"], [32, 3, 1, "", "EMERGENCY_BED"], [32, 3, 1, "", "EMPATHIZE"], [32, 3, 1, "", "EMPATHIZE_OFF"], [32, 3, 1, "", "EMPHASIS"], [32, 3, 1, "", "ENGINE"], [32, 3, 1, "", "ENGINE_OFF"], [32, 3, 1, "", "EQUAL"], [32, 3, 1, "", "EQUAL_DOUBLE"], [32, 3, 1, "", "EQUAL_NOT"], [32, 3, 1, "", "ERASER"], [32, 3, 1, "", "ERASER_OFF"], [32, 3, 1, "", "ERROR_404"], [32, 3, 1, "", "ERROR_404_OFF"], [32, 3, 1, "", "EXCHANGE"], [32, 3, 1, "", "EXCHANGE_OFF"], [32, 3, 1, "", "EXCLAMATION_CIRCLE"], [32, 3, 1, "", "EXCLAMATION_MARK"], [32, 3, 1, "", "EXCLAMATION_MARK_OFF"], [32, 3, 1, "", "EXPLICIT"], [32, 3, 1, "", "EXPLICIT_OFF"], [32, 3, 1, "", "EXPOSURE"], [32, 3, 1, "", "EXPOSURE_0"], [32, 3, 1, "", "EXPOSURE_MINUS_1"], [32, 3, 1, "", "EXPOSURE_MINUS_2"], [32, 3, 1, "", "EXPOSURE_OFF"], [32, 3, 1, "", "EXPOSURE_PLUS_1"], [32, 3, 1, "", "EXPOSURE_PLUS_2"], [32, 3, 1, "", "EXTERNAL_LINK"], [32, 3, 1, "", "EXTERNAL_LINK_OFF"], [32, 3, 1, "", "EYE"], [32, 3, 1, "", "EYEGLASS"], [32, 3, 1, "", "EYEGLASS_2"], [32, 3, 1, "", "EYEGLASS_OFF"], [32, 3, 1, "", "EYE_CHECK"], [32, 3, 1, "", "EYE_CLOSED"], [32, 3, 1, "", "EYE_COG"], [32, 3, 1, "", "EYE_EDIT"], [32, 3, 1, "", "EYE_EXCLAMATION"], [32, 3, 1, "", "EYE_FILLED"], [32, 3, 1, "", "EYE_HEART"], [32, 3, 1, "", "EYE_OFF"], [32, 3, 1, "", "EYE_TABLE"], [32, 3, 1, "", "EYE_X"], [32, 3, 1, "", "E_PASSPORT"], [32, 3, 1, "", "FACE_ID"], [32, 3, 1, "", "FACE_ID_ERROR"], [32, 3, 1, "", "FACE_MASK"], [32, 3, 1, "", "FACE_MASK_OFF"], [32, 3, 1, "", "FALL"], [32, 3, 1, "", "FEATHER"], [32, 3, 1, "", "FEATHER_OFF"], [32, 3, 1, "", "FENCE"], [32, 3, 1, "", "FENCE_OFF"], [32, 3, 1, "", "FIDGET_SPINNER"], [32, 3, 1, "", "FILE"], [32, 3, 1, "", "FILES"], [32, 3, 1, "", "FILES_OFF"], [32, 3, 1, "", "FILE_3D"], [32, 3, 1, "", "FILE_ALERT"], [32, 3, 1, "", "FILE_ANALYTICS"], [32, 3, 1, "", "FILE_ARROW_LEFT"], [32, 3, 1, "", "FILE_ARROW_RIGHT"], [32, 3, 1, "", "FILE_BARCODE"], [32, 3, 1, "", "FILE_BROKEN"], [32, 3, 1, "", "FILE_CERTIFICATE"], [32, 3, 1, "", "FILE_CHART"], [32, 3, 1, "", "FILE_CHECK"], [32, 3, 1, "", "FILE_CODE"], [32, 3, 1, "", "FILE_CODE_2"], [32, 3, 1, "", "FILE_CV"], [32, 3, 1, "", "FILE_DATABASE"], [32, 3, 1, "", "FILE_DELTA"], [32, 3, 1, "", "FILE_DESCRIPTION"], [32, 3, 1, "", "FILE_DIFF"], [32, 3, 1, "", "FILE_DIGIT"], [32, 3, 1, "", "FILE_DISLIKE"], [32, 3, 1, "", "FILE_DOLLAR"], [32, 3, 1, "", "FILE_DOTS"], [32, 3, 1, "", "FILE_DOWNLOAD"], [32, 3, 1, "", "FILE_EURO"], [32, 3, 1, "", "FILE_EXPORT"], [32, 3, 1, "", "FILE_FILLED"], [32, 3, 1, "", "FILE_FUNCTION"], [32, 3, 1, "", "FILE_HORIZONTAL"], [32, 3, 1, "", "FILE_IMPORT"], [32, 3, 1, "", "FILE_INFINITY"], [32, 3, 1, "", "FILE_INFO"], [32, 3, 1, "", "FILE_INVOICE"], [32, 3, 1, "", "FILE_LAMBDA"], [32, 3, 1, "", "FILE_LIKE"], [32, 3, 1, "", "FILE_MINUS"], [32, 3, 1, "", "FILE_MUSIC"], [32, 3, 1, "", "FILE_OFF"], [32, 3, 1, "", "FILE_ORIENTATION"], [32, 3, 1, "", "FILE_PENCIL"], [32, 3, 1, "", "FILE_PERCENT"], [32, 3, 1, "", "FILE_PHONE"], [32, 3, 1, "", "FILE_PLUS"], [32, 3, 1, "", "FILE_POWER"], [32, 3, 1, "", "FILE_REPORT"], [32, 3, 1, "", "FILE_RSS"], [32, 3, 1, "", "FILE_SCISSORS"], [32, 3, 1, "", "FILE_SEARCH"], [32, 3, 1, "", "FILE_SETTINGS"], [32, 3, 1, "", "FILE_SHREDDER"], [32, 3, 1, "", "FILE_SIGNAL"], [32, 3, 1, "", "FILE_SPREADSHEET"], [32, 3, 1, "", "FILE_STACK"], [32, 3, 1, "", "FILE_STAR"], [32, 3, 1, "", "FILE_SYMLINK"], [32, 3, 1, "", "FILE_TEXT"], [32, 3, 1, "", "FILE_TEXT_AI"], [32, 3, 1, "", "FILE_TIME"], [32, 3, 1, "", "FILE_TYPOGRAPHY"], [32, 3, 1, "", "FILE_UNKNOWN"], [32, 3, 1, "", "FILE_UPLOAD"], [32, 3, 1, "", "FILE_VECTOR"], [32, 3, 1, "", "FILE_X"], [32, 3, 1, "", "FILE_X_FILLED"], [32, 3, 1, "", "FILE_ZIP"], [32, 3, 1, "", "FILTER"], [32, 3, 1, "", "FILTERS"], [32, 3, 1, "", "FILTER_COG"], [32, 3, 1, "", "FILTER_DOLLAR"], [32, 3, 1, "", "FILTER_EDIT"], [32, 3, 1, "", "FILTER_MINUS"], [32, 3, 1, "", "FILTER_OFF"], [32, 3, 1, "", "FILTER_PLUS"], [32, 3, 1, "", "FILTER_STAR"], [32, 3, 1, "", "FILTER_X"], [32, 3, 1, "", "FINGERPRINT"], [32, 3, 1, "", "FINGERPRINT_OFF"], [32, 3, 1, "", "FIRETRUCK"], [32, 3, 1, "", "FIRE_EXTINGUISHER"], [32, 3, 1, "", "FIRE_HYDRANT"], [32, 3, 1, "", "FIRE_HYDRANT_OFF"], [32, 3, 1, "", "FIRST_AID_KIT"], [32, 3, 1, "", "FIRST_AID_KIT_OFF"], [32, 3, 1, "", "FISH"], [32, 3, 1, "", "FISH_BONE"], [32, 3, 1, "", "FISH_CHRISTIANITY"], [32, 3, 1, "", "FISH_HOOK"], [32, 3, 1, "", "FISH_HOOK_OFF"], [32, 3, 1, "", "FISH_OFF"], [32, 3, 1, "", "FLAG"], [32, 3, 1, "", "FLAG_2"], [32, 3, 1, "", "FLAG_2_FILLED"], [32, 3, 1, "", "FLAG_2_OFF"], [32, 3, 1, "", "FLAG_3"], [32, 3, 1, "", "FLAG_3_FILLED"], [32, 3, 1, "", "FLAG_FILLED"], [32, 3, 1, "", "FLAG_OFF"], [32, 3, 1, "", "FLAME"], [32, 3, 1, "", "FLAME_OFF"], [32, 3, 1, "", "FLARE"], [32, 3, 1, "", "FLASK"], [32, 3, 1, "", "FLASK_2"], [32, 3, 1, "", "FLASK_2_OFF"], [32, 3, 1, "", "FLASK_OFF"], [32, 3, 1, "", "FLIP_FLOPS"], [32, 3, 1, "", "FLIP_HORIZONTAL"], [32, 3, 1, "", "FLIP_VERTICAL"], [32, 3, 1, "", "FLOAT_CENTER"], [32, 3, 1, "", "FLOAT_LEFT"], [32, 3, 1, "", "FLOAT_NONE"], [32, 3, 1, "", "FLOAT_RIGHT"], [32, 3, 1, "", "FLOWER"], [32, 3, 1, "", "FLOWER_OFF"], [32, 3, 1, "", "FOCUS"], [32, 3, 1, "", "FOCUS_2"], [32, 3, 1, "", "FOCUS_AUTO"], [32, 3, 1, "", "FOCUS_CENTERED"], [32, 3, 1, "", "FOLD"], [32, 3, 1, "", "FOLDER"], [32, 3, 1, "", "FOLDERS"], [32, 3, 1, "", "FOLDERS_OFF"], [32, 3, 1, "", "FOLDER_BOLT"], [32, 3, 1, "", "FOLDER_CANCEL"], [32, 3, 1, "", "FOLDER_CHECK"], [32, 3, 1, "", "FOLDER_CODE"], [32, 3, 1, "", "FOLDER_COG"], [32, 3, 1, "", "FOLDER_DOLLAR"], [32, 3, 1, "", "FOLDER_DOWN"], [32, 3, 1, "", "FOLDER_EXCLAMATION"], [32, 3, 1, "", "FOLDER_FILLED"], [32, 3, 1, "", "FOLDER_HEART"], [32, 3, 1, "", "FOLDER_MINUS"], [32, 3, 1, "", "FOLDER_OFF"], [32, 3, 1, "", "FOLDER_OPEN"], [32, 3, 1, "", "FOLDER_PAUSE"], [32, 3, 1, "", "FOLDER_PIN"], [32, 3, 1, "", "FOLDER_PLUS"], [32, 3, 1, "", "FOLDER_QUESTION"], [32, 3, 1, "", "FOLDER_SEARCH"], [32, 3, 1, "", "FOLDER_SHARE"], [32, 3, 1, "", "FOLDER_STAR"], [32, 3, 1, "", "FOLDER_SYMLINK"], [32, 3, 1, "", "FOLDER_UP"], [32, 3, 1, "", "FOLDER_X"], [32, 3, 1, "", "FOLD_DOWN"], [32, 3, 1, "", "FOLD_UP"], [32, 3, 1, "", "FORBID"], [32, 3, 1, "", "FORBID_2"], [32, 3, 1, "", "FORKLIFT"], [32, 3, 1, "", "FORMS"], [32, 3, 1, "", "FOUNTAIN"], [32, 3, 1, "", "FOUNTAIN_OFF"], [32, 3, 1, "", "FRAME"], [32, 3, 1, "", "FRAME_OFF"], [32, 3, 1, "", "FREEZE_COLUMN"], [32, 3, 1, "", "FREEZE_ROW"], [32, 3, 1, "", "FREEZE_ROW_COLUMN"], [32, 3, 1, "", "FREE_RIGHTS"], [32, 3, 1, "", "FRIDGE"], [32, 3, 1, "", "FRIDGE_OFF"], [32, 3, 1, "", "FRIENDS"], [32, 3, 1, "", "FRIENDS_OFF"], [32, 3, 1, "", "FRUSTUM"], [32, 3, 1, "", "FRUSTUM_OFF"], [32, 3, 1, "", "FRUSTUM_PLUS"], [32, 3, 1, "", "FUNCTION"], [32, 3, 1, "", "FUNCTION_OFF"], [32, 3, 1, "", "GARDEN_CART"], [32, 3, 1, "", "GARDEN_CART_OFF"], [32, 3, 1, "", "GAS_STATION"], [32, 3, 1, "", "GAS_STATION_OFF"], [32, 3, 1, "", "GAUGE"], [32, 3, 1, "", "GAUGE_OFF"], [32, 3, 1, "", "GAVEL"], [32, 3, 1, "", "GENDER_AGENDER"], [32, 3, 1, "", "GENDER_ANDROGYNE"], [32, 3, 1, "", "GENDER_BIGENDER"], [32, 3, 1, "", "GENDER_DEMIBOY"], [32, 3, 1, "", "GENDER_DEMIGIRL"], [32, 3, 1, "", "GENDER_EPICENE"], [32, 3, 1, "", "GENDER_FEMALE"], [32, 3, 1, "", "GENDER_FEMME"], [32, 3, 1, "", "GENDER_GENDERFLUID"], [32, 3, 1, "", "GENDER_GENDERLESS"], [32, 3, 1, "", "GENDER_GENDERQUEER"], [32, 3, 1, "", "GENDER_HERMAPHRODITE"], [32, 3, 1, "", "GENDER_INTERGENDER"], [32, 3, 1, "", "GENDER_MALE"], [32, 3, 1, "", "GENDER_NEUTROIS"], [32, 3, 1, "", "GENDER_THIRD"], [32, 3, 1, "", "GENDER_TRANSGENDER"], [32, 3, 1, "", "GENDER_TRASVESTI"], [32, 3, 1, "", "GEOMETRY"], [32, 3, 1, "", "GHOST"], [32, 3, 1, "", "GHOST_2"], [32, 3, 1, "", "GHOST_2_FILLED"], [32, 3, 1, "", "GHOST_FILLED"], [32, 3, 1, "", "GHOST_OFF"], [32, 3, 1, "", "GIF"], [32, 3, 1, "", "GIFT"], [32, 3, 1, "", "GIFT_CARD"], [32, 3, 1, "", "GIFT_OFF"], [32, 3, 1, "", "GIT_BRANCH"], [32, 3, 1, "", "GIT_BRANCH_DELETED"], [32, 3, 1, "", "GIT_CHERRY_PICK"], [32, 3, 1, "", "GIT_COMMIT"], [32, 3, 1, "", "GIT_COMPARE"], [32, 3, 1, "", "GIT_FORK"], [32, 3, 1, "", "GIT_MERGE"], [32, 3, 1, "", "GIT_PULL_REQUEST"], [32, 3, 1, "", "GIT_PULL_REQUEST_CLOSED"], [32, 3, 1, "", "GIT_PULL_REQUEST_DRAFT"], [32, 3, 1, "", "GIZMO"], [32, 3, 1, "", "GLASS"], [32, 3, 1, "", "GLASS_FULL"], [32, 3, 1, "", "GLASS_OFF"], [32, 3, 1, "", "GLOBE"], [32, 3, 1, "", "GLOBE_OFF"], [32, 3, 1, "", "GOLF"], [32, 3, 1, "", "GOLF_OFF"], [32, 3, 1, "", "GO_GAME"], [32, 3, 1, "", "GPS"], [32, 3, 1, "", "GRADIENTER"], [32, 3, 1, "", "GRAIN"], [32, 3, 1, "", "GRAPH"], [32, 3, 1, "", "GRAPH_OFF"], [32, 3, 1, "", "GRAVE"], [32, 3, 1, "", "GRAVE_2"], [32, 3, 1, "", "GRID_DOTS"], [32, 3, 1, "", "GRID_PATTERN"], [32, 3, 1, "", "GRILL"], [32, 3, 1, "", "GRILL_FORK"], [32, 3, 1, "", "GRILL_OFF"], [32, 3, 1, "", "GRILL_SPATULA"], [32, 3, 1, "", "GRIP_HORIZONTAL"], [32, 3, 1, "", "GRIP_VERTICAL"], [32, 3, 1, "", "GROWTH"], [32, 3, 1, "", "GUITAR_PICK"], [32, 3, 1, "", "GUITAR_PICK_FILLED"], [32, 3, 1, "", "HAMMER"], [32, 3, 1, "", "HAMMER_OFF"], [32, 3, 1, "", "HAND_CLICK"], [32, 3, 1, "", "HAND_FINGER"], [32, 3, 1, "", "HAND_FINGER_OFF"], [32, 3, 1, "", "HAND_GRAB"], [32, 3, 1, "", "HAND_LITTLE_FINGER"], [32, 3, 1, "", "HAND_MIDDLE_FINGER"], [32, 3, 1, "", "HAND_MOVE"], [32, 3, 1, "", "HAND_OFF"], [32, 3, 1, "", "HAND_RING_FINGER"], [32, 3, 1, "", "HAND_ROCK"], [32, 3, 1, "", "HAND_SANITIZER"], [32, 3, 1, "", "HAND_STOP"], [32, 3, 1, "", "HAND_THREE_FINGERS"], [32, 3, 1, "", "HAND_TWO_FINGERS"], [32, 3, 1, "", "HANGER"], [32, 3, 1, "", "HANGER_2"], [32, 3, 1, "", "HANGER_OFF"], [32, 3, 1, "", "HASH"], [32, 3, 1, "", "HAZE"], [32, 3, 1, "", "HAZE_MOON"], [32, 3, 1, "", "HDR"], [32, 3, 1, "", "HEADING"], [32, 3, 1, "", "HEADING_OFF"], [32, 3, 1, "", "HEADPHONES"], [32, 3, 1, "", "HEADPHONES_FILLED"], [32, 3, 1, "", "HEADPHONES_OFF"], [32, 3, 1, "", "HEADSET"], [32, 3, 1, "", "HEADSET_OFF"], [32, 3, 1, "", "HEALTH_RECOGNITION"], [32, 3, 1, "", "HEART"], [32, 3, 1, "", "HEARTBEAT"], [32, 3, 1, "", "HEARTS"], [32, 3, 1, "", "HEARTS_OFF"], [32, 3, 1, "", "HEART_BROKEN"], [32, 3, 1, "", "HEART_FILLED"], [32, 3, 1, "", "HEART_HANDSHAKE"], [32, 3, 1, "", "HEART_MINUS"], [32, 3, 1, "", "HEART_OFF"], [32, 3, 1, "", "HEART_PLUS"], [32, 3, 1, "", "HEART_RATE_MONITOR"], [32, 3, 1, "", "HELICOPTER"], [32, 3, 1, "", "HELICOPTER_LANDING"], [32, 3, 1, "", "HELMET"], [32, 3, 1, "", "HELMET_OFF"], [32, 3, 1, "", "HELP"], [32, 3, 1, "", "HELP_CIRCLE"], [32, 3, 1, "", "HELP_CIRCLE_FILLED"], [32, 3, 1, "", "HELP_HEXAGON"], [32, 3, 1, "", "HELP_HEXAGON_FILLED"], [32, 3, 1, "", "HELP_OCTAGON"], [32, 3, 1, "", "HELP_OCTAGON_FILLED"], [32, 3, 1, "", "HELP_OFF"], [32, 3, 1, "", "HELP_SMALL"], [32, 3, 1, "", "HELP_SQUARE"], [32, 3, 1, "", "HELP_SQUARE_FILLED"], [32, 3, 1, "", "HELP_SQUARE_ROUNDED"], [32, 3, 1, "", "HELP_SQUARE_ROUNDED_FILLED"], [32, 3, 1, "", "HELP_TRIANGLE"], [32, 3, 1, "", "HELP_TRIANGLE_FILLED"], [32, 3, 1, "", "HEMISPHERE"], [32, 3, 1, "", "HEMISPHERE_OFF"], [32, 3, 1, "", "HEMISPHERE_PLUS"], [32, 3, 1, "", "HEXAGON"], [32, 3, 1, "", "HEXAGONAL_PRISM"], [32, 3, 1, "", "HEXAGONAL_PRISM_OFF"], [32, 3, 1, "", "HEXAGONAL_PRISM_PLUS"], [32, 3, 1, "", "HEXAGONAL_PYRAMID"], [32, 3, 1, "", "HEXAGONAL_PYRAMID_OFF"], [32, 3, 1, "", "HEXAGONAL_PYRAMID_PLUS"], [32, 3, 1, "", "HEXAGONS"], [32, 3, 1, "", "HEXAGONS_OFF"], [32, 3, 1, "", "HEXAGON_0_FILLED"], [32, 3, 1, "", "HEXAGON_1_FILLED"], [32, 3, 1, "", "HEXAGON_2_FILLED"], [32, 3, 1, "", "HEXAGON_3D"], [32, 3, 1, "", "HEXAGON_3_FILLED"], [32, 3, 1, "", "HEXAGON_4_FILLED"], [32, 3, 1, "", "HEXAGON_5_FILLED"], [32, 3, 1, "", "HEXAGON_6_FILLED"], [32, 3, 1, "", "HEXAGON_7_FILLED"], [32, 3, 1, "", "HEXAGON_8_FILLED"], [32, 3, 1, "", "HEXAGON_9_FILLED"], [32, 3, 1, "", "HEXAGON_FILLED"], [32, 3, 1, "", "HEXAGON_LETTER_A"], [32, 3, 1, "", "HEXAGON_LETTER_B"], [32, 3, 1, "", "HEXAGON_LETTER_C"], [32, 3, 1, "", "HEXAGON_LETTER_D"], [32, 3, 1, "", "HEXAGON_LETTER_E"], [32, 3, 1, "", "HEXAGON_LETTER_F"], [32, 3, 1, "", "HEXAGON_LETTER_G"], [32, 3, 1, "", "HEXAGON_LETTER_H"], [32, 3, 1, "", "HEXAGON_LETTER_I"], [32, 3, 1, "", "HEXAGON_LETTER_J"], [32, 3, 1, "", "HEXAGON_LETTER_K"], [32, 3, 1, "", "HEXAGON_LETTER_L"], [32, 3, 1, "", "HEXAGON_LETTER_M"], [32, 3, 1, "", "HEXAGON_LETTER_N"], [32, 3, 1, "", "HEXAGON_LETTER_O"], [32, 3, 1, "", "HEXAGON_LETTER_P"], [32, 3, 1, "", "HEXAGON_LETTER_Q"], [32, 3, 1, "", "HEXAGON_LETTER_R"], [32, 3, 1, "", "HEXAGON_LETTER_S"], [32, 3, 1, "", "HEXAGON_LETTER_T"], [32, 3, 1, "", "HEXAGON_LETTER_U"], [32, 3, 1, "", "HEXAGON_LETTER_V"], [32, 3, 1, "", "HEXAGON_LETTER_W"], [32, 3, 1, "", "HEXAGON_LETTER_X"], [32, 3, 1, "", "HEXAGON_LETTER_Y"], [32, 3, 1, "", "HEXAGON_LETTER_Z"], [32, 3, 1, "", "HEXAGON_NUMBER_0"], [32, 3, 1, "", "HEXAGON_NUMBER_1"], [32, 3, 1, "", "HEXAGON_NUMBER_2"], [32, 3, 1, "", "HEXAGON_NUMBER_3"], [32, 3, 1, "", "HEXAGON_NUMBER_4"], [32, 3, 1, "", "HEXAGON_NUMBER_5"], [32, 3, 1, "", "HEXAGON_NUMBER_6"], [32, 3, 1, "", "HEXAGON_NUMBER_7"], [32, 3, 1, "", "HEXAGON_NUMBER_8"], [32, 3, 1, "", "HEXAGON_NUMBER_9"], [32, 3, 1, "", "HEXAGON_OFF"], [32, 3, 1, "", "HIERARCHY"], [32, 3, 1, "", "HIERARCHY_2"], [32, 3, 1, "", "HIERARCHY_3"], [32, 3, 1, "", "HIERARCHY_OFF"], [32, 3, 1, "", "HIGHLIGHT"], [32, 3, 1, "", "HIGHLIGHT_OFF"], [32, 3, 1, "", "HISTORY"], [32, 3, 1, "", "HISTORY_OFF"], [32, 3, 1, "", "HISTORY_TOGGLE"], [32, 3, 1, "", "HOME"], [32, 3, 1, "", "HOME_2"], [32, 3, 1, "", "HOME_BOLT"], [32, 3, 1, "", "HOME_CANCEL"], [32, 3, 1, "", "HOME_CHECK"], [32, 3, 1, "", "HOME_COG"], [32, 3, 1, "", "HOME_DOLLAR"], [32, 3, 1, "", "HOME_DOT"], [32, 3, 1, "", "HOME_DOWN"], [32, 3, 1, "", "HOME_ECO"], [32, 3, 1, "", "HOME_EDIT"], [32, 3, 1, "", "HOME_EXCLAMATION"], [32, 3, 1, "", "HOME_HAND"], [32, 3, 1, "", "HOME_HEART"], [32, 3, 1, "", "HOME_INFINITY"], [32, 3, 1, "", "HOME_LINK"], [32, 3, 1, "", "HOME_MINUS"], [32, 3, 1, "", "HOME_MOVE"], [32, 3, 1, "", "HOME_OFF"], [32, 3, 1, "", "HOME_PLUS"], [32, 3, 1, "", "HOME_QUESTION"], [32, 3, 1, "", "HOME_RIBBON"], [32, 3, 1, "", "HOME_SEARCH"], [32, 3, 1, "", "HOME_SHARE"], [32, 3, 1, "", "HOME_SHIELD"], [32, 3, 1, "", "HOME_SIGNAL"], [32, 3, 1, "", "HOME_STAR"], [32, 3, 1, "", "HOME_STATS"], [32, 3, 1, "", "HOME_UP"], [32, 3, 1, "", "HOME_X"], [32, 3, 1, "", "HORSE_TOY"], [32, 3, 1, "", "HOTEL_SERVICE"], [32, 3, 1, "", "HOURGLASS"], [32, 3, 1, "", "HOURGLASS_EMPTY"], [32, 3, 1, "", "HOURGLASS_FILLED"], [32, 3, 1, "", "HOURGLASS_HIGH"], [32, 3, 1, "", "HOURGLASS_LOW"], [32, 3, 1, "", "HOURGLASS_OFF"], [32, 3, 1, "", "HTML"], [32, 3, 1, "", "HTTP_CONNECT"], [32, 3, 1, "", "HTTP_DELETE"], [32, 3, 1, "", "HTTP_GET"], [32, 3, 1, "", "HTTP_HEAD"], [32, 3, 1, "", "HTTP_OPTIONS"], [32, 3, 1, "", "HTTP_PATCH"], [32, 3, 1, "", "HTTP_POST"], [32, 3, 1, "", "HTTP_PUT"], [32, 3, 1, "", "HTTP_QUE"], [32, 3, 1, "", "HTTP_TRACE"], [32, 3, 1, "", "H_1"], [32, 3, 1, "", "H_2"], [32, 3, 1, "", "H_3"], [32, 3, 1, "", "H_4"], [32, 3, 1, "", "H_5"], [32, 3, 1, "", "H_6"], [32, 3, 1, "", "ICE_CREAM"], [32, 3, 1, "", "ICE_CREAM_2"], [32, 3, 1, "", "ICE_CREAM_OFF"], [32, 3, 1, "", "ICE_SKATING"], [32, 3, 1, "", "ICONS"], [32, 3, 1, "", "ICONS_OFF"], [32, 3, 1, "", "ICON_123"], [32, 3, 1, "", "ICON_24_HOURS"], [32, 3, 1, "", "ICON_2FA"], [32, 3, 1, "", "ICON_360"], [32, 3, 1, "", "ICON_360_VIEW"], [32, 3, 1, "", "ICON_3D_CUBE_SPHERE"], [32, 3, 1, "", "ICON_3D_CUBE_SPHERE_OFF"], [32, 3, 1, "", "ICON_3D_ROTATE"], [32, 3, 1, "", "ID"], [32, 3, 1, "", "ID_BADGE"], [32, 3, 1, "", "ID_BADGE_2"], [32, 3, 1, "", "ID_BADGE_OFF"], [32, 3, 1, "", "ID_OFF"], [32, 3, 1, "", "INBOX"], [32, 3, 1, "", "INBOX_OFF"], [32, 3, 1, "", "INDENT_DECREASE"], [32, 3, 1, "", "INDENT_INCREASE"], [32, 3, 1, "", "INFINITY"], [32, 3, 1, "", "INFINITY_OFF"], [32, 3, 1, "", "INFO_CIRCLE"], [32, 3, 1, "", "INFO_CIRCLE_FILLED"], [32, 3, 1, "", "INFO_HEXAGON"], [32, 3, 1, "", "INFO_HEXAGON_FILLED"], [32, 3, 1, "", "INFO_OCTAGON"], [32, 3, 1, "", "INFO_OCTAGON_FILLED"], [32, 3, 1, "", "INFO_SMALL"], [32, 3, 1, "", "INFO_SQUARE"], [32, 3, 1, "", "INFO_SQUARE_FILLED"], [32, 3, 1, "", "INFO_SQUARE_ROUNDED"], [32, 3, 1, "", "INFO_SQUARE_ROUNDED_FILLED"], [32, 3, 1, "", "INFO_TRIANGLE"], [32, 3, 1, "", "INFO_TRIANGLE_FILLED"], [32, 3, 1, "", "INNER_SHADOW_BOTTOM"], [32, 3, 1, "", "INNER_SHADOW_BOTTOM_FILLED"], [32, 3, 1, "", "INNER_SHADOW_BOTTOM_LEFT"], [32, 3, 1, "", "INNER_SHADOW_BOTTOM_LEFT_FILLED"], [32, 3, 1, "", "INNER_SHADOW_BOTTOM_RIGHT"], [32, 3, 1, "", "INNER_SHADOW_BOTTOM_RIGHT_FILLED"], [32, 3, 1, "", "INNER_SHADOW_LEFT"], [32, 3, 1, "", "INNER_SHADOW_LEFT_FILLED"], [32, 3, 1, "", "INNER_SHADOW_RIGHT"], [32, 3, 1, "", "INNER_SHADOW_RIGHT_FILLED"], [32, 3, 1, "", "INNER_SHADOW_TOP"], [32, 3, 1, "", "INNER_SHADOW_TOP_FILLED"], [32, 3, 1, "", "INNER_SHADOW_TOP_LEFT"], [32, 3, 1, "", "INNER_SHADOW_TOP_LEFT_FILLED"], [32, 3, 1, "", "INNER_SHADOW_TOP_RIGHT"], [32, 3, 1, "", "INNER_SHADOW_TOP_RIGHT_FILLED"], [32, 3, 1, "", "INPUT_SEARCH"], [32, 3, 1, "", "IRONING"], [32, 3, 1, "", "IRONING_1"], [32, 3, 1, "", "IRONING_2"], [32, 3, 1, "", "IRONING_3"], [32, 3, 1, "", "IRONING_OFF"], [32, 3, 1, "", "IRONING_STEAM"], [32, 3, 1, "", "IRONING_STEAM_OFF"], [32, 3, 1, "", "IRREGULAR_POLYHEDRON"], [32, 3, 1, "", "IRREGULAR_POLYHEDRON_OFF"], [32, 3, 1, "", "IRREGULAR_POLYHEDRON_PLUS"], [32, 3, 1, "", "ITALIC"], [32, 3, 1, "", "JACKET"], [32, 3, 1, "", "JETPACK"], [32, 3, 1, "", "JEWISH_STAR"], [32, 3, 1, "", "JEWISH_STAR_FILLED"], [32, 3, 1, "", "JPG"], [32, 3, 1, "", "JSON"], [32, 3, 1, "", "JUMP_ROPE"], [32, 3, 1, "", "KARATE"], [32, 3, 1, "", "KAYAK"], [32, 3, 1, "", "KERING"], [32, 3, 1, "", "KEY"], [32, 3, 1, "", "KEYBOARD"], [32, 3, 1, "", "KEYBOARD_HIDE"], [32, 3, 1, "", "KEYBOARD_OFF"], [32, 3, 1, "", "KEYBOARD_SHOW"], [32, 3, 1, "", "KEYFRAME"], [32, 3, 1, "", "KEYFRAMES"], [32, 3, 1, "", "KEYFRAME_ALIGN_CENTER"], [32, 3, 1, "", "KEYFRAME_ALIGN_HORIZONTAL"], [32, 3, 1, "", "KEYFRAME_ALIGN_VERTICAL"], [32, 3, 1, "", "KEY_OFF"], [32, 3, 1, "", "LADDER"], [32, 3, 1, "", "LADDER_OFF"], [32, 3, 1, "", "LAMBDA"], [32, 3, 1, "", "LAMP"], [32, 3, 1, "", "LAMP_2"], [32, 3, 1, "", "LAMP_OFF"], [32, 3, 1, "", "LANE"], [32, 3, 1, "", "LANGUAGE"], [32, 3, 1, "", "LANGUAGE_HIRAGANA"], [32, 3, 1, "", "LANGUAGE_KATAKANA"], [32, 3, 1, "", "LANGUAGE_OFF"], [32, 3, 1, "", "LASSO"], [32, 3, 1, "", "LASSO_OFF"], [32, 3, 1, "", "LASSO_POLYGON"], [32, 3, 1, "", "LAYERS_DIFFERENCE"], [32, 3, 1, "", "LAYERS_INTERSECT"], [32, 3, 1, "", "LAYERS_INTERSECT_2"], [32, 3, 1, "", "LAYERS_LINKED"], [32, 3, 1, "", "LAYERS_OFF"], [32, 3, 1, "", "LAYERS_SUBTRACT"], [32, 3, 1, "", "LAYERS_UNION"], [32, 3, 1, "", "LAYOUT"], [32, 3, 1, "", "LAYOUT_2"], [32, 3, 1, "", "LAYOUT_ALIGN_BOTTOM"], [32, 3, 1, "", "LAYOUT_ALIGN_CENTER"], [32, 3, 1, "", "LAYOUT_ALIGN_LEFT"], [32, 3, 1, "", "LAYOUT_ALIGN_MIDDLE"], [32, 3, 1, "", "LAYOUT_ALIGN_RIGHT"], [32, 3, 1, "", "LAYOUT_ALIGN_TOP"], [32, 3, 1, "", "LAYOUT_BOARD"], [32, 3, 1, "", "LAYOUT_BOARD_SPLIT"], [32, 3, 1, "", "LAYOUT_BOTTOMBAR"], [32, 3, 1, "", "LAYOUT_BOTTOMBAR_COLLAPSE"], [32, 3, 1, "", "LAYOUT_BOTTOMBAR_EXPAND"], [32, 3, 1, "", "LAYOUT_CARDS"], [32, 3, 1, "", "LAYOUT_COLLAGE"], [32, 3, 1, "", "LAYOUT_COLUMNS"], [32, 3, 1, "", "LAYOUT_DASHBOARD"], [32, 3, 1, "", "LAYOUT_DISTRIBUTE_HORIZONTAL"], [32, 3, 1, "", "LAYOUT_DISTRIBUTE_VERTICAL"], [32, 3, 1, "", "LAYOUT_GRID"], [32, 3, 1, "", "LAYOUT_GRID_ADD"], [32, 3, 1, "", "LAYOUT_GRID_REMOVE"], [32, 3, 1, "", "LAYOUT_KANBAN"], [32, 3, 1, "", "LAYOUT_LIST"], [32, 3, 1, "", "LAYOUT_NAVBAR"], [32, 3, 1, "", "LAYOUT_NAVBAR_COLLAPSE"], [32, 3, 1, "", "LAYOUT_NAVBAR_EXPAND"], [32, 3, 1, "", "LAYOUT_OFF"], [32, 3, 1, "", "LAYOUT_ROWS"], [32, 3, 1, "", "LAYOUT_SIDEBAR"], [32, 3, 1, "", "LAYOUT_SIDEBAR_LEFT_COLLAPSE"], [32, 3, 1, "", "LAYOUT_SIDEBAR_LEFT_EXPAND"], [32, 3, 1, "", "LAYOUT_SIDEBAR_RIGHT"], [32, 3, 1, "", "LAYOUT_SIDEBAR_RIGHT_COLLAPSE"], [32, 3, 1, "", "LAYOUT_SIDEBAR_RIGHT_EXPAND"], [32, 3, 1, "", "LEAF"], [32, 3, 1, "", "LEAF_OFF"], [32, 3, 1, "", "LEGO"], [32, 3, 1, "", "LEGO_OFF"], [32, 3, 1, "", "LEMON"], [32, 3, 1, "", "LEMON_2"], [32, 3, 1, "", "LETTER_A"], [32, 3, 1, "", "LETTER_B"], [32, 3, 1, "", "LETTER_C"], [32, 3, 1, "", "LETTER_CASE"], [32, 3, 1, "", "LETTER_CASE_LOWER"], [32, 3, 1, "", "LETTER_CASE_TOGGLE"], [32, 3, 1, "", "LETTER_CASE_UPPER"], [32, 3, 1, "", "LETTER_D"], [32, 3, 1, "", "LETTER_E"], [32, 3, 1, "", "LETTER_F"], [32, 3, 1, "", "LETTER_G"], [32, 3, 1, "", "LETTER_H"], [32, 3, 1, "", "LETTER_I"], [32, 3, 1, "", "LETTER_J"], [32, 3, 1, "", "LETTER_K"], [32, 3, 1, "", "LETTER_L"], [32, 3, 1, "", "LETTER_M"], [32, 3, 1, "", "LETTER_N"], [32, 3, 1, "", "LETTER_O"], [32, 3, 1, "", "LETTER_P"], [32, 3, 1, "", "LETTER_Q"], [32, 3, 1, "", "LETTER_R"], [32, 3, 1, "", "LETTER_S"], [32, 3, 1, "", "LETTER_SPACING"], [32, 3, 1, "", "LETTER_T"], [32, 3, 1, "", "LETTER_U"], [32, 3, 1, "", "LETTER_V"], [32, 3, 1, "", "LETTER_W"], [32, 3, 1, "", "LETTER_X"], [32, 3, 1, "", "LETTER_Y"], [32, 3, 1, "", "LETTER_Z"], [32, 3, 1, "", "LICENSE"], [32, 3, 1, "", "LICENSE_OFF"], [32, 3, 1, "", "LIFEBUOY"], [32, 3, 1, "", "LIFEBUOY_OFF"], [32, 3, 1, "", "LIGHTER"], [32, 3, 1, "", "LINE"], [32, 3, 1, "", "LINE_DASHED"], [32, 3, 1, "", "LINE_DOTTED"], [32, 3, 1, "", "LINE_HEIGHT"], [32, 3, 1, "", "LINK"], [32, 3, 1, "", "LINK_OFF"], [32, 3, 1, "", "LIST"], [32, 3, 1, "", "LIST_CHECK"], [32, 3, 1, "", "LIST_DETAILS"], [32, 3, 1, "", "LIST_NUMBERS"], [32, 3, 1, "", "LIST_SEARCH"], [32, 3, 1, "", "LIST_TREE"], [32, 3, 1, "", "LIVE_PHOTO"], [32, 3, 1, "", "LIVE_PHOTO_OFF"], [32, 3, 1, "", "LIVE_VIEW"], [32, 3, 1, "", "LOADER"], [32, 3, 1, "", "LOADER_2"], [32, 3, 1, "", "LOADER_3"], [32, 3, 1, "", "LOADER_QUARTER"], [32, 3, 1, "", "LOAD_BALANCER"], [32, 3, 1, "", "LOCATION"], [32, 3, 1, "", "LOCATION_BROKEN"], [32, 3, 1, "", "LOCATION_FILLED"], [32, 3, 1, "", "LOCATION_OFF"], [32, 3, 1, "", "LOCK"], [32, 3, 1, "", "LOCK_ACCESS"], [32, 3, 1, "", "LOCK_ACCESS_OFF"], [32, 3, 1, "", "LOCK_BOLT"], [32, 3, 1, "", "LOCK_CANCEL"], [32, 3, 1, "", "LOCK_CHECK"], [32, 3, 1, "", "LOCK_CODE"], [32, 3, 1, "", "LOCK_COG"], [32, 3, 1, "", "LOCK_DOLLAR"], [32, 3, 1, "", "LOCK_DOWN"], [32, 3, 1, "", "LOCK_EXCLAMATION"], [32, 3, 1, "", "LOCK_HEART"], [32, 3, 1, "", "LOCK_MINUS"], [32, 3, 1, "", "LOCK_OFF"], [32, 3, 1, "", "LOCK_OPEN"], [32, 3, 1, "", "LOCK_OPEN_OFF"], [32, 3, 1, "", "LOCK_PAUSE"], [32, 3, 1, "", "LOCK_PIN"], [32, 3, 1, "", "LOCK_PLUS"], [32, 3, 1, "", "LOCK_QUESTION"], [32, 3, 1, "", "LOCK_SEARCH"], [32, 3, 1, "", "LOCK_SHARE"], [32, 3, 1, "", "LOCK_SQUARE"], [32, 3, 1, "", "LOCK_SQUARE_ROUNDED"], [32, 3, 1, "", "LOCK_SQUARE_ROUNDED_FILLED"], [32, 3, 1, "", "LOCK_STAR"], [32, 3, 1, "", "LOCK_UP"], [32, 3, 1, "", "LOCK_X"], [32, 3, 1, "", "LOGIC_AND"], [32, 3, 1, "", "LOGIC_BUFFER"], [32, 3, 1, "", "LOGIC_NAND"], [32, 3, 1, "", "LOGIC_NOR"], [32, 3, 1, "", "LOGIC_NOT"], [32, 3, 1, "", "LOGIC_OR"], [32, 3, 1, "", "LOGIC_XNOR"], [32, 3, 1, "", "LOGIC_XOR"], [32, 3, 1, "", "LOGIN"], [32, 3, 1, "", "LOGOUT"], [32, 3, 1, "", "LOGOUT_2"], [32, 3, 1, "", "LOLLIPOP"], [32, 3, 1, "", "LOLLIPOP_OFF"], [32, 3, 1, "", "LUGGAGE"], [32, 3, 1, "", "LUGGAGE_OFF"], [32, 3, 1, "", "LUNGS"], [32, 3, 1, "", "LUNGS_OFF"], [32, 3, 1, "", "MACRO"], [32, 3, 1, "", "MACRO_OFF"], [32, 3, 1, "", "MAGNET"], [32, 3, 1, "", "MAGNET_OFF"], [32, 3, 1, "", "MAIL"], [32, 3, 1, "", "MAILBOX"], [32, 3, 1, "", "MAILBOX_OFF"], [32, 3, 1, "", "MAIL_AI"], [32, 3, 1, "", "MAIL_BOLT"], [32, 3, 1, "", "MAIL_CANCEL"], [32, 3, 1, "", "MAIL_CHECK"], [32, 3, 1, "", "MAIL_CODE"], [32, 3, 1, "", "MAIL_COG"], [32, 3, 1, "", "MAIL_DOLLAR"], [32, 3, 1, "", "MAIL_DOWN"], [32, 3, 1, "", "MAIL_EXCLAMATION"], [32, 3, 1, "", "MAIL_FAST"], [32, 3, 1, "", "MAIL_FILLED"], [32, 3, 1, "", "MAIL_FORWARD"], [32, 3, 1, "", "MAIL_HEART"], [32, 3, 1, "", "MAIL_MINUS"], [32, 3, 1, "", "MAIL_OFF"], [32, 3, 1, "", "MAIL_OPENED"], [32, 3, 1, "", "MAIL_OPENED_FILLED"], [32, 3, 1, "", "MAIL_PAUSE"], [32, 3, 1, "", "MAIL_PIN"], [32, 3, 1, "", "MAIL_PLUS"], [32, 3, 1, "", "MAIL_QUESTION"], [32, 3, 1, "", "MAIL_SEARCH"], [32, 3, 1, "", "MAIL_SHARE"], [32, 3, 1, "", "MAIL_STAR"], [32, 3, 1, "", "MAIL_UP"], [32, 3, 1, "", "MAIL_X"], [32, 3, 1, "", "MAN"], [32, 3, 1, "", "MANUAL_GEARBOX"], [32, 3, 1, "", "MAP"], [32, 3, 1, "", "MAP_2"], [32, 3, 1, "", "MAP_OFF"], [32, 3, 1, "", "MAP_PIN"], [32, 3, 1, "", "MAP_PINS"], [32, 3, 1, "", "MAP_PIN_BOLT"], [32, 3, 1, "", "MAP_PIN_CANCEL"], [32, 3, 1, "", "MAP_PIN_CHECK"], [32, 3, 1, "", "MAP_PIN_CODE"], [32, 3, 1, "", "MAP_PIN_COG"], [32, 3, 1, "", "MAP_PIN_DOLLAR"], [32, 3, 1, "", "MAP_PIN_DOWN"], [32, 3, 1, "", "MAP_PIN_EXCLAMATION"], [32, 3, 1, "", "MAP_PIN_FILLED"], [32, 3, 1, "", "MAP_PIN_HEART"], [32, 3, 1, "", "MAP_PIN_MINUS"], [32, 3, 1, "", "MAP_PIN_OFF"], [32, 3, 1, "", "MAP_PIN_PAUSE"], [32, 3, 1, "", "MAP_PIN_PIN"], [32, 3, 1, "", "MAP_PIN_PLUS"], [32, 3, 1, "", "MAP_PIN_QUESTION"], [32, 3, 1, "", "MAP_PIN_SEARCH"], [32, 3, 1, "", "MAP_PIN_SHARE"], [32, 3, 1, "", "MAP_PIN_STAR"], [32, 3, 1, "", "MAP_PIN_UP"], [32, 3, 1, "", "MAP_PIN_X"], [32, 3, 1, "", "MAP_SEARCH"], [32, 3, 1, "", "MARKDOWN"], [32, 3, 1, "", "MARKDOWN_OFF"], [32, 3, 1, "", "MARQUEE"], [32, 3, 1, "", "MARQUEE_2"], [32, 3, 1, "", "MARQUEE_OFF"], [32, 3, 1, "", "MARS"], [32, 3, 1, "", "MASK"], [32, 3, 1, "", "MASKS_THEATER"], [32, 3, 1, "", "MASKS_THEATER_OFF"], [32, 3, 1, "", "MASK_OFF"], [32, 3, 1, "", "MASSAGE"], [32, 3, 1, "", "MATCHSTICK"], [32, 3, 1, "", "MATH"], [32, 3, 1, "", "MATH_1_DIVIDE_2"], [32, 3, 1, "", "MATH_1_DIVIDE_3"], [32, 3, 1, "", "MATH_AVG"], [32, 3, 1, "", "MATH_EQUAL_GREATER"], [32, 3, 1, "", "MATH_EQUAL_LOWER"], [32, 3, 1, "", "MATH_FUNCTION"], [32, 3, 1, "", "MATH_FUNCTION_OFF"], [32, 3, 1, "", "MATH_FUNCTION_Y"], [32, 3, 1, "", "MATH_GREATER"], [32, 3, 1, "", "MATH_INTEGRAL"], [32, 3, 1, "", "MATH_INTEGRALS"], [32, 3, 1, "", "MATH_INTEGRAL_X"], [32, 3, 1, "", "MATH_LOWER"], [32, 3, 1, "", "MATH_MAX"], [32, 3, 1, "", "MATH_MIN"], [32, 3, 1, "", "MATH_NOT"], [32, 3, 1, "", "MATH_OFF"], [32, 3, 1, "", "MATH_PI"], [32, 3, 1, "", "MATH_PI_DIVIDE_2"], [32, 3, 1, "", "MATH_SYMBOLS"], [32, 3, 1, "", "MATH_XY"], [32, 3, 1, "", "MATH_X_DIVIDE_2"], [32, 3, 1, "", "MATH_X_DIVIDE_Y"], [32, 3, 1, "", "MATH_X_DIVIDE_Y_2"], [32, 3, 1, "", "MATH_X_MINUS_X"], [32, 3, 1, "", "MATH_X_MINUS_Y"], [32, 3, 1, "", "MATH_X_PLUS_X"], [32, 3, 1, "", "MATH_X_PLUS_Y"], [32, 3, 1, "", "MATH_Y_MINUS_Y"], [32, 3, 1, "", "MATH_Y_PLUS_Y"], [32, 3, 1, "", "MAXIMIZE"], [32, 3, 1, "", "MAXIMIZE_OFF"], [32, 3, 1, "", "MEAT"], [32, 3, 1, "", "MEAT_OFF"], [32, 3, 1, "", "MEDAL"], [32, 3, 1, "", "MEDAL_2"], [32, 3, 1, "", "MEDICAL_CROSS"], [32, 3, 1, "", "MEDICAL_CROSS_CIRCLE"], [32, 3, 1, "", "MEDICAL_CROSS_FILLED"], [32, 3, 1, "", "MEDICAL_CROSS_OFF"], [32, 3, 1, "", "MEDICINE_SYRUP"], [32, 3, 1, "", "MEEPLE"], [32, 3, 1, "", "MENORAH"], [32, 3, 1, "", "MENU"], [32, 3, 1, "", "MENU_2"], [32, 3, 1, "", "MENU_DEEP"], [32, 3, 1, "", "MENU_ORDER"], [32, 3, 1, "", "MESSAGE"], [32, 3, 1, "", "MESSAGES"], [32, 3, 1, "", "MESSAGES_OFF"], [32, 3, 1, "", "MESSAGE_2"], [32, 3, 1, "", "MESSAGE_2_BOLT"], [32, 3, 1, "", "MESSAGE_2_CANCEL"], [32, 3, 1, "", "MESSAGE_2_CHECK"], [32, 3, 1, "", "MESSAGE_2_CODE"], [32, 3, 1, "", "MESSAGE_2_COG"], [32, 3, 1, "", "MESSAGE_2_DOLLAR"], [32, 3, 1, "", "MESSAGE_2_DOWN"], [32, 3, 1, "", "MESSAGE_2_EXCLAMATION"], [32, 3, 1, "", "MESSAGE_2_HEART"], [32, 3, 1, "", "MESSAGE_2_MINUS"], [32, 3, 1, "", "MESSAGE_2_OFF"], [32, 3, 1, "", "MESSAGE_2_PAUSE"], [32, 3, 1, "", "MESSAGE_2_PIN"], [32, 3, 1, "", "MESSAGE_2_PLUS"], [32, 3, 1, "", "MESSAGE_2_QUESTION"], [32, 3, 1, "", "MESSAGE_2_SEARCH"], [32, 3, 1, "", "MESSAGE_2_SHARE"], [32, 3, 1, "", "MESSAGE_2_STAR"], [32, 3, 1, "", "MESSAGE_2_UP"], [32, 3, 1, "", "MESSAGE_2_X"], [32, 3, 1, "", "MESSAGE_BOLT"], [32, 3, 1, "", "MESSAGE_CANCEL"], [32, 3, 1, "", "MESSAGE_CHATBOT"], [32, 3, 1, "", "MESSAGE_CHECK"], [32, 3, 1, "", "MESSAGE_CIRCLE"], [32, 3, 1, "", "MESSAGE_CIRCLE_2"], [32, 3, 1, "", "MESSAGE_CIRCLE_2_FILLED"], [32, 3, 1, "", "MESSAGE_CIRCLE_BOLT"], [32, 3, 1, "", "MESSAGE_CIRCLE_CANCEL"], [32, 3, 1, "", "MESSAGE_CIRCLE_CHECK"], [32, 3, 1, "", "MESSAGE_CIRCLE_CODE"], [32, 3, 1, "", "MESSAGE_CIRCLE_COG"], [32, 3, 1, "", "MESSAGE_CIRCLE_DOLLAR"], [32, 3, 1, "", "MESSAGE_CIRCLE_DOWN"], [32, 3, 1, "", "MESSAGE_CIRCLE_EXCLAMATION"], [32, 3, 1, "", "MESSAGE_CIRCLE_HEART"], [32, 3, 1, "", "MESSAGE_CIRCLE_MINUS"], [32, 3, 1, "", "MESSAGE_CIRCLE_OFF"], [32, 3, 1, "", "MESSAGE_CIRCLE_PAUSE"], [32, 3, 1, "", "MESSAGE_CIRCLE_PIN"], [32, 3, 1, "", "MESSAGE_CIRCLE_PLUS"], [32, 3, 1, "", "MESSAGE_CIRCLE_QUESTION"], [32, 3, 1, "", "MESSAGE_CIRCLE_SEARCH"], [32, 3, 1, "", "MESSAGE_CIRCLE_SHARE"], [32, 3, 1, "", "MESSAGE_CIRCLE_STAR"], [32, 3, 1, "", "MESSAGE_CIRCLE_UP"], [32, 3, 1, "", "MESSAGE_CIRCLE_X"], [32, 3, 1, "", "MESSAGE_CODE"], [32, 3, 1, "", "MESSAGE_COG"], [32, 3, 1, "", "MESSAGE_DOLLAR"], [32, 3, 1, "", "MESSAGE_DOTS"], [32, 3, 1, "", "MESSAGE_DOWN"], [32, 3, 1, "", "MESSAGE_EXCLAMATION"], [32, 3, 1, "", "MESSAGE_FORWARD"], [32, 3, 1, "", "MESSAGE_HEART"], [32, 3, 1, "", "MESSAGE_LANGUAGE"], [32, 3, 1, "", "MESSAGE_MINUS"], [32, 3, 1, "", "MESSAGE_OFF"], [32, 3, 1, "", "MESSAGE_PAUSE"], [32, 3, 1, "", "MESSAGE_PIN"], [32, 3, 1, "", "MESSAGE_PLUS"], [32, 3, 1, "", "MESSAGE_QUESTION"], [32, 3, 1, "", "MESSAGE_REPORT"], [32, 3, 1, "", "MESSAGE_SEARCH"], [32, 3, 1, "", "MESSAGE_SHARE"], [32, 3, 1, "", "MESSAGE_STAR"], [32, 3, 1, "", "MESSAGE_UP"], [32, 3, 1, "", "MESSAGE_X"], [32, 3, 1, "", "METEOR"], [32, 3, 1, "", "METEOR_OFF"], [32, 3, 1, "", "MICHELIN_BIB_GOURMAND"], [32, 3, 1, "", "MICHELIN_STAR"], [32, 3, 1, "", "MICHELIN_STAR_GREEN"], [32, 3, 1, "", "MICKEY"], [32, 3, 1, "", "MICKEY_FILLED"], [32, 3, 1, "", "MICROPHONE"], [32, 3, 1, "", "MICROPHONE_2"], [32, 3, 1, "", "MICROPHONE_2_OFF"], [32, 3, 1, "", "MICROPHONE_OFF"], [32, 3, 1, "", "MICROSCOPE"], [32, 3, 1, "", "MICROSCOPE_OFF"], [32, 3, 1, "", "MICROWAVE"], [32, 3, 1, "", "MICROWAVE_OFF"], [32, 3, 1, "", "MILITARY_AWARD"], [32, 3, 1, "", "MILITARY_RANK"], [32, 3, 1, "", "MILK"], [32, 3, 1, "", "MILKSHAKE"], [32, 3, 1, "", "MILK_OFF"], [32, 3, 1, "", "MINIMIZE"], [32, 3, 1, "", "MINUS"], [32, 3, 1, "", "MINUS_VERTICAL"], [32, 3, 1, "", "MIST"], [32, 3, 1, "", "MIST_OFF"], [32, 3, 1, "", "MOBILEDATA"], [32, 3, 1, "", "MOBILEDATA_OFF"], [32, 3, 1, "", "MONEYBAG"], [32, 3, 1, "", "MOOD_ANGRY"], [32, 3, 1, "", "MOOD_ANNOYED"], [32, 3, 1, "", "MOOD_ANNOYED_2"], [32, 3, 1, "", "MOOD_BOY"], [32, 3, 1, "", "MOOD_CHECK"], [32, 3, 1, "", "MOOD_COG"], [32, 3, 1, "", "MOOD_CONFUZED"], [32, 3, 1, "", "MOOD_CONFUZED_FILLED"], [32, 3, 1, "", "MOOD_CRAZY_HAPPY"], [32, 3, 1, "", "MOOD_CRY"], [32, 3, 1, "", "MOOD_DOLLAR"], [32, 3, 1, "", "MOOD_EDIT"], [32, 3, 1, "", "MOOD_EMPTY"], [32, 3, 1, "", "MOOD_EMPTY_FILLED"], [32, 3, 1, "", "MOOD_HAPPY"], [32, 3, 1, "", "MOOD_HAPPY_FILLED"], [32, 3, 1, "", "MOOD_HEART"], [32, 3, 1, "", "MOOD_KID"], [32, 3, 1, "", "MOOD_KID_FILLED"], [32, 3, 1, "", "MOOD_LOOK_LEFT"], [32, 3, 1, "", "MOOD_LOOK_RIGHT"], [32, 3, 1, "", "MOOD_MINUS"], [32, 3, 1, "", "MOOD_NERD"], [32, 3, 1, "", "MOOD_NERVOUS"], [32, 3, 1, "", "MOOD_NEUTRAL"], [32, 3, 1, "", "MOOD_NEUTRAL_FILLED"], [32, 3, 1, "", "MOOD_OFF"], [32, 3, 1, "", "MOOD_PIN"], [32, 3, 1, "", "MOOD_PLUS"], [32, 3, 1, "", "MOOD_SAD"], [32, 3, 1, "", "MOOD_SAD_2"], [32, 3, 1, "", "MOOD_SAD_DIZZY"], [32, 3, 1, "", "MOOD_SAD_FILLED"], [32, 3, 1, "", "MOOD_SAD_SQUINT"], [32, 3, 1, "", "MOOD_SEARCH"], [32, 3, 1, "", "MOOD_SHARE"], [32, 3, 1, "", "MOOD_SICK"], [32, 3, 1, "", "MOOD_SILENCE"], [32, 3, 1, "", "MOOD_SING"], [32, 3, 1, "", "MOOD_SMILE"], [32, 3, 1, "", "MOOD_SMILE_BEAM"], [32, 3, 1, "", "MOOD_SMILE_DIZZY"], [32, 3, 1, "", "MOOD_SMILE_FILLED"], [32, 3, 1, "", "MOOD_SUPRISED"], [32, 3, 1, "", "MOOD_TONGUE"], [32, 3, 1, "", "MOOD_TONGUE_WINK"], [32, 3, 1, "", "MOOD_TONGUE_WINK_2"], [32, 3, 1, "", "MOOD_UNAMUSED"], [32, 3, 1, "", "MOOD_UP"], [32, 3, 1, "", "MOOD_WINK"], [32, 3, 1, "", "MOOD_WINK_2"], [32, 3, 1, "", "MOOD_WRRR"], [32, 3, 1, "", "MOOD_X"], [32, 3, 1, "", "MOOD_XD"], [32, 3, 1, "", "MOON"], [32, 3, 1, "", "MOON_2"], [32, 3, 1, "", "MOON_FILLED"], [32, 3, 1, "", "MOON_OFF"], [32, 3, 1, "", "MOON_STARS"], [32, 3, 1, "", "MOPED"], [32, 3, 1, "", "MOTORBIKE"], [32, 3, 1, "", "MOUNTAIN"], [32, 3, 1, "", "MOUNTAIN_OFF"], [32, 3, 1, "", "MOUSE"], [32, 3, 1, "", "MOUSE_2"], [32, 3, 1, "", "MOUSE_OFF"], [32, 3, 1, "", "MOUSTACHE"], [32, 3, 1, "", "MOVIE"], [32, 3, 1, "", "MOVIE_OFF"], [32, 3, 1, "", "MUG"], [32, 3, 1, "", "MUG_OFF"], [32, 3, 1, "", "MULTIPLIER_0_5X"], [32, 3, 1, "", "MULTIPLIER_1X"], [32, 3, 1, "", "MULTIPLIER_1_5X"], [32, 3, 1, "", "MULTIPLIER_2X"], [32, 3, 1, "", "MUSHROOM"], [32, 3, 1, "", "MUSHROOM_FILLED"], [32, 3, 1, "", "MUSHROOM_OFF"], [32, 3, 1, "", "MUSIC"], [32, 3, 1, "", "MUSIC_OFF"], [32, 3, 1, "", "NAVIGATION"], [32, 3, 1, "", "NAVIGATION_FILLED"], [32, 3, 1, "", "NAVIGATION_NORTH"], [32, 3, 1, "", "NAVIGATION_OFF"], [32, 3, 1, "", "NEEDLE"], [32, 3, 1, "", "NEEDLE_THREAD"], [32, 3, 1, "", "NETWORK"], [32, 3, 1, "", "NETWORK_OFF"], [32, 3, 1, "", "NEWS"], [32, 3, 1, "", "NEWS_OFF"], [32, 3, 1, "", "NEW_SECTION"], [32, 3, 1, "", "NFC"], [32, 3, 1, "", "NFC_OFF"], [32, 3, 1, "", "NORTH_STAR"], [32, 3, 1, "", "NOTE"], [32, 3, 1, "", "NOTEBOOK"], [32, 3, 1, "", "NOTEBOOK_OFF"], [32, 3, 1, "", "NOTES"], [32, 3, 1, "", "NOTES_OFF"], [32, 3, 1, "", "NOTE_OFF"], [32, 3, 1, "", "NOTIFICATION"], [32, 3, 1, "", "NOTIFICATION_OFF"], [32, 3, 1, "", "NO_COPYRIGHT"], [32, 3, 1, "", "NO_CREATIVE_COMMONS"], [32, 3, 1, "", "NO_DERIVATIVES"], [32, 3, 1, "", "NUMBER"], [32, 3, 1, "", "NUMBERS"], [32, 3, 1, "", "NUMBER_0"], [32, 3, 1, "", "NUMBER_1"], [32, 3, 1, "", "NUMBER_2"], [32, 3, 1, "", "NUMBER_3"], [32, 3, 1, "", "NUMBER_4"], [32, 3, 1, "", "NUMBER_5"], [32, 3, 1, "", "NUMBER_6"], [32, 3, 1, "", "NUMBER_7"], [32, 3, 1, "", "NUMBER_8"], [32, 3, 1, "", "NUMBER_9"], [32, 3, 1, "", "NURSE"], [32, 3, 1, "", "OCTAGON"], [32, 3, 1, "", "OCTAGON_FILLED"], [32, 3, 1, "", "OCTAGON_OFF"], [32, 3, 1, "", "OCTAHEDRON"], [32, 3, 1, "", "OCTAHEDRON_OFF"], [32, 3, 1, "", "OCTAHEDRON_PLUS"], [32, 3, 1, "", "OLD"], [32, 3, 1, "", "OLYMPICS"], [32, 3, 1, "", "OLYMPICS_OFF"], [32, 3, 1, "", "OM"], [32, 3, 1, "", "OMEGA"], [32, 3, 1, "", "OUTBOUND"], [32, 3, 1, "", "OUTLET"], [32, 3, 1, "", "OVAL"], [32, 3, 1, "", "OVAL_FILLED"], [32, 3, 1, "", "OVAL_VERTICAL"], [32, 3, 1, "", "OVAL_VERTICAL_FILLED"], [32, 3, 1, "", "OVERLINE"], [32, 3, 1, "", "PACKAGE"], [32, 3, 1, "", "PACKAGES"], [32, 3, 1, "", "PACKAGE_EXPORT"], [32, 3, 1, "", "PACKAGE_IMPORT"], [32, 3, 1, "", "PACKAGE_OFF"], [32, 3, 1, "", "PACMAN"], [32, 3, 1, "", "PAGE_BREAK"], [32, 3, 1, "", "PAINT"], [32, 3, 1, "", "PAINT_FILLED"], [32, 3, 1, "", "PAINT_OFF"], [32, 3, 1, "", "PALETTE"], [32, 3, 1, "", "PALETTE_OFF"], [32, 3, 1, "", "PANORAMA_HORIZONTAL"], [32, 3, 1, "", "PANORAMA_HORIZONTAL_OFF"], [32, 3, 1, "", "PANORAMA_VERTICAL"], [32, 3, 1, "", "PANORAMA_VERTICAL_OFF"], [32, 3, 1, "", "PAPERCLIP"], [32, 3, 1, "", "PAPER_BAG"], [32, 3, 1, "", "PAPER_BAG_OFF"], [32, 3, 1, "", "PARACHUTE"], [32, 3, 1, "", "PARACHUTE_OFF"], [32, 3, 1, "", "PARENTHESES"], [32, 3, 1, "", "PARENTHESES_OFF"], [32, 3, 1, "", "PARKING"], [32, 3, 1, "", "PARKING_OFF"], [32, 3, 1, "", "PASSWORD"], [32, 3, 1, "", "PAW"], [32, 3, 1, "", "PAW_FILLED"], [32, 3, 1, "", "PAW_OFF"], [32, 3, 1, "", "PDF"], [32, 3, 1, "", "PEACE"], [32, 3, 1, "", "PENCIL"], [32, 3, 1, "", "PENCIL_MINUS"], [32, 3, 1, "", "PENCIL_OFF"], [32, 3, 1, "", "PENCIL_PLUS"], [32, 3, 1, "", "PENNANT"], [32, 3, 1, "", "PENNANT_2"], [32, 3, 1, "", "PENNANT_2_FILLED"], [32, 3, 1, "", "PENNANT_FILLED"], [32, 3, 1, "", "PENNANT_OFF"], [32, 3, 1, "", "PENTAGON"], [32, 3, 1, "", "PENTAGON_FILLED"], [32, 3, 1, "", "PENTAGON_OFF"], [32, 3, 1, "", "PENTAGRAM"], [32, 3, 1, "", "PEPPER"], [32, 3, 1, "", "PEPPER_OFF"], [32, 3, 1, "", "PERCENTAGE"], [32, 3, 1, "", "PERFUME"], [32, 3, 1, "", "PERSPECTIVE"], [32, 3, 1, "", "PERSPECTIVE_OFF"], [32, 3, 1, "", "PHONE"], [32, 3, 1, "", "PHONE_CALL"], [32, 3, 1, "", "PHONE_CALLING"], [32, 3, 1, "", "PHONE_CHECK"], [32, 3, 1, "", "PHONE_FILLED"], [32, 3, 1, "", "PHONE_INCOMING"], [32, 3, 1, "", "PHONE_OFF"], [32, 3, 1, "", "PHONE_OUTGOING"], [32, 3, 1, "", "PHONE_PAUSE"], [32, 3, 1, "", "PHONE_PLUS"], [32, 3, 1, "", "PHONE_X"], [32, 3, 1, "", "PHOTO"], [32, 3, 1, "", "PHOTO_AI"], [32, 3, 1, "", "PHOTO_BOLT"], [32, 3, 1, "", "PHOTO_CANCEL"], [32, 3, 1, "", "PHOTO_CHECK"], [32, 3, 1, "", "PHOTO_CODE"], [32, 3, 1, "", "PHOTO_COG"], [32, 3, 1, "", "PHOTO_DOLLAR"], [32, 3, 1, "", "PHOTO_DOWN"], [32, 3, 1, "", "PHOTO_EDIT"], [32, 3, 1, "", "PHOTO_EXCLAMATION"], [32, 3, 1, "", "PHOTO_FILLED"], [32, 3, 1, "", "PHOTO_HEART"], [32, 3, 1, "", "PHOTO_MINUS"], [32, 3, 1, "", "PHOTO_OFF"], [32, 3, 1, "", "PHOTO_PAUSE"], [32, 3, 1, "", "PHOTO_PIN"], [32, 3, 1, "", "PHOTO_PLUS"], [32, 3, 1, "", "PHOTO_QUESTION"], [32, 3, 1, "", "PHOTO_SEARCH"], [32, 3, 1, "", "PHOTO_SENSOR"], [32, 3, 1, "", "PHOTO_SENSOR_2"], [32, 3, 1, "", "PHOTO_SENSOR_3"], [32, 3, 1, "", "PHOTO_SHARE"], [32, 3, 1, "", "PHOTO_SHIELD"], [32, 3, 1, "", "PHOTO_STAR"], [32, 3, 1, "", "PHOTO_UP"], [32, 3, 1, "", "PHOTO_X"], [32, 3, 1, "", "PHYSOTHERAPIST"], [32, 3, 1, "", "PIANO"], [32, 3, 1, "", "PICK"], [32, 3, 1, "", "PICTURE_IN_PICTURE"], [32, 3, 1, "", "PICTURE_IN_PICTURE_OFF"], [32, 3, 1, "", "PICTURE_IN_PICTURE_ON"], [32, 3, 1, "", "PICTURE_IN_PICTURE_TOP"], [32, 3, 1, "", "PIG"], [32, 3, 1, "", "PIG_MONEY"], [32, 3, 1, "", "PIG_OFF"], [32, 3, 1, "", "PILCROW"], [32, 3, 1, "", "PILL"], [32, 3, 1, "", "PILLS"], [32, 3, 1, "", "PILL_OFF"], [32, 3, 1, "", "PIN"], [32, 3, 1, "", "PING_PONG"], [32, 3, 1, "", "PINNED"], [32, 3, 1, "", "PINNED_FILLED"], [32, 3, 1, "", "PINNED_OFF"], [32, 3, 1, "", "PIN_FILLED"], [32, 3, 1, "", "PIZZA"], [32, 3, 1, "", "PIZZA_OFF"], [32, 3, 1, "", "PLACEHOLDER"], [32, 3, 1, "", "PLANE"], [32, 3, 1, "", "PLANET"], [32, 3, 1, "", "PLANET_OFF"], [32, 3, 1, "", "PLANE_ARRIVAL"], [32, 3, 1, "", "PLANE_DEPARTURE"], [32, 3, 1, "", "PLANE_INFLIGHT"], [32, 3, 1, "", "PLANE_OFF"], [32, 3, 1, "", "PLANE_TILT"], [32, 3, 1, "", "PLANT"], [32, 3, 1, "", "PLANT_2"], [32, 3, 1, "", "PLANT_2_OFF"], [32, 3, 1, "", "PLANT_OFF"], [32, 3, 1, "", "PLAYER_EJECT"], [32, 3, 1, "", "PLAYER_EJECT_FILLED"], [32, 3, 1, "", "PLAYER_PAUSE"], [32, 3, 1, "", "PLAYER_PAUSE_FILLED"], [32, 3, 1, "", "PLAYER_PLAY"], [32, 3, 1, "", "PLAYER_PLAY_FILLED"], [32, 3, 1, "", "PLAYER_RECORD"], [32, 3, 1, "", "PLAYER_RECORD_FILLED"], [32, 3, 1, "", "PLAYER_SKIP_BACK"], [32, 3, 1, "", "PLAYER_SKIP_BACK_FILLED"], [32, 3, 1, "", "PLAYER_SKIP_FORWARD"], [32, 3, 1, "", "PLAYER_SKIP_FORWARD_FILLED"], [32, 3, 1, "", "PLAYER_STOP"], [32, 3, 1, "", "PLAYER_STOP_FILLED"], [32, 3, 1, "", "PLAYER_TRACK_NEXT"], [32, 3, 1, "", "PLAYER_TRACK_NEXT_FILLED"], [32, 3, 1, "", "PLAYER_TRACK_PREV"], [32, 3, 1, "", "PLAYER_TRACK_PREV_FILLED"], [32, 3, 1, "", "PLAYLIST"], [32, 3, 1, "", "PLAYLIST_ADD"], [32, 3, 1, "", "PLAYLIST_OFF"], [32, 3, 1, "", "PLAYLIST_X"], [32, 3, 1, "", "PLAYSTATION_CIRCLE"], [32, 3, 1, "", "PLAYSTATION_SQUARE"], [32, 3, 1, "", "PLAYSTATION_TRIANGLE"], [32, 3, 1, "", "PLAYSTATION_X"], [32, 3, 1, "", "PLAY_BASKETBALL"], [32, 3, 1, "", "PLAY_CARD"], [32, 3, 1, "", "PLAY_CARD_OFF"], [32, 3, 1, "", "PLAY_FOOTBALL"], [32, 3, 1, "", "PLAY_HANDBALL"], [32, 3, 1, "", "PLAY_VOLLEYBALL"], [32, 3, 1, "", "PLUG"], [32, 3, 1, "", "PLUG_CONNECTED"], [32, 3, 1, "", "PLUG_CONNECTED_X"], [32, 3, 1, "", "PLUG_OFF"], [32, 3, 1, "", "PLUG_X"], [32, 3, 1, "", "PLUS"], [32, 3, 1, "", "PLUS_EQUAL"], [32, 3, 1, "", "PLUS_MINUS"], [32, 3, 1, "", "PNG"], [32, 3, 1, "", "PODIUM"], [32, 3, 1, "", "PODIUM_OFF"], [32, 3, 1, "", "POINT"], [32, 3, 1, "", "POINTER"], [32, 3, 1, "", "POINTER_BOLT"], [32, 3, 1, "", "POINTER_CANCEL"], [32, 3, 1, "", "POINTER_CHECK"], [32, 3, 1, "", "POINTER_CODE"], [32, 3, 1, "", "POINTER_COG"], [32, 3, 1, "", "POINTER_DOLLAR"], [32, 3, 1, "", "POINTER_DOWN"], [32, 3, 1, "", "POINTER_EXCLAMATION"], [32, 3, 1, "", "POINTER_HEART"], [32, 3, 1, "", "POINTER_MINUS"], [32, 3, 1, "", "POINTER_OFF"], [32, 3, 1, "", "POINTER_PAUSE"], [32, 3, 1, "", "POINTER_PIN"], [32, 3, 1, "", "POINTER_PLUS"], [32, 3, 1, "", "POINTER_QUESTION"], [32, 3, 1, "", "POINTER_SEARCH"], [32, 3, 1, "", "POINTER_SHARE"], [32, 3, 1, "", "POINTER_STAR"], [32, 3, 1, "", "POINTER_UP"], [32, 3, 1, "", "POINTER_X"], [32, 3, 1, "", "POINT_FILLED"], [32, 3, 1, "", "POINT_OFF"], [32, 3, 1, "", "POKEBALL"], [32, 3, 1, "", "POKEBALL_OFF"], [32, 3, 1, "", "POKER_CHIP"], [32, 3, 1, "", "POLAROID"], [32, 3, 1, "", "POLAROID_FILLED"], [32, 3, 1, "", "POLYGON"], [32, 3, 1, "", "POLYGON_OFF"], [32, 3, 1, "", "POO"], [32, 3, 1, "", "POOL"], [32, 3, 1, "", "POOL_OFF"], [32, 3, 1, "", "POWER"], [32, 3, 1, "", "PRAY"], [32, 3, 1, "", "PREMIUM_RIGHTS"], [32, 3, 1, "", "PRESCRIPTION"], [32, 3, 1, "", "PRESENTATION"], [32, 3, 1, "", "PRESENTATION_ANALYTICS"], [32, 3, 1, "", "PRESENTATION_OFF"], [32, 3, 1, "", "PRINTER"], [32, 3, 1, "", "PRINTER_OFF"], [32, 3, 1, "", "PRISM"], [32, 3, 1, "", "PRISM_OFF"], [32, 3, 1, "", "PRISM_PLUS"], [32, 3, 1, "", "PRISON"], [32, 3, 1, "", "PROGRESS"], [32, 3, 1, "", "PROGRESS_ALERT"], [32, 3, 1, "", "PROGRESS_BOLT"], [32, 3, 1, "", "PROGRESS_CHECK"], [32, 3, 1, "", "PROGRESS_DOWN"], [32, 3, 1, "", "PROGRESS_HELP"], [32, 3, 1, "", "PROGRESS_X"], [32, 3, 1, "", "PROMPT"], [32, 3, 1, "", "PROPELLER"], [32, 3, 1, "", "PROPELLER_OFF"], [32, 3, 1, "", "PUMPKIN_SCARY"], [32, 3, 1, "", "PUZZLE"], [32, 3, 1, "", "PUZZLE_2"], [32, 3, 1, "", "PUZZLE_FILLED"], [32, 3, 1, "", "PUZZLE_OFF"], [32, 3, 1, "", "PYRAMID"], [32, 3, 1, "", "PYRAMID_OFF"], [32, 3, 1, "", "PYRAMID_PLUS"], [32, 3, 1, "", "QRCODE"], [32, 3, 1, "", "QRCODE_OFF"], [32, 3, 1, "", "QUESTION_MARK"], [32, 3, 1, "", "QUOTE"], [32, 3, 1, "", "QUOTE_OFF"], [32, 3, 1, "", "RADAR"], [32, 3, 1, "", "RADAR_2"], [32, 3, 1, "", "RADAR_OFF"], [32, 3, 1, "", "RADIO"], [32, 3, 1, "", "RADIOACTIVE"], [32, 3, 1, "", "RADIOACTIVE_FILLED"], [32, 3, 1, "", "RADIOACTIVE_OFF"], [32, 3, 1, "", "RADIO_OFF"], [32, 3, 1, "", "RADIUS_BOTTOM_LEFT"], [32, 3, 1, "", "RADIUS_BOTTOM_RIGHT"], [32, 3, 1, "", "RADIUS_TOP_LEFT"], [32, 3, 1, "", "RADIUS_TOP_RIGHT"], [32, 3, 1, "", "RAINBOW"], [32, 3, 1, "", "RAINBOW_OFF"], [32, 3, 1, "", "RATING_12_PLUS"], [32, 3, 1, "", "RATING_14_PLUS"], [32, 3, 1, "", "RATING_16_PLUS"], [32, 3, 1, "", "RATING_18_PLUS"], [32, 3, 1, "", "RATING_21_PLUS"], [32, 3, 1, "", "RAZOR"], [32, 3, 1, "", "RAZOR_ELECTRIC"], [32, 3, 1, "", "RECEIPT"], [32, 3, 1, "", "RECEIPT_2"], [32, 3, 1, "", "RECEIPT_OFF"], [32, 3, 1, "", "RECEIPT_REFUND"], [32, 3, 1, "", "RECEIPT_TAX"], [32, 3, 1, "", "RECHARGING"], [32, 3, 1, "", "RECORD_MAIL"], [32, 3, 1, "", "RECORD_MAIL_OFF"], [32, 3, 1, "", "RECTANGLE"], [32, 3, 1, "", "RECTANGLE_FILLED"], [32, 3, 1, "", "RECTANGLE_ROUNDED_BOTTOM"], [32, 3, 1, "", "RECTANGLE_ROUNDED_TOP"], [32, 3, 1, "", "RECTANGLE_VERTICAL"], [32, 3, 1, "", "RECTANGLE_VERTICAL_FILLED"], [32, 3, 1, "", "RECTANGULAR_PRISM"], [32, 3, 1, "", "RECTANGULAR_PRISM_OFF"], [32, 3, 1, "", "RECTANGULAR_PRISM_PLUS"], [32, 3, 1, "", "RECYCLE"], [32, 3, 1, "", "RECYCLE_OFF"], [32, 3, 1, "", "REFRESH"], [32, 3, 1, "", "REFRESH_ALERT"], [32, 3, 1, "", "REFRESH_DOT"], [32, 3, 1, "", "REFRESH_OFF"], [32, 3, 1, "", "REGEX"], [32, 3, 1, "", "REGEX_OFF"], [32, 3, 1, "", "REGISTERED"], [32, 3, 1, "", "RELATION_MANY_TO_MANY"], [32, 3, 1, "", "RELATION_ONE_TO_MANY"], [32, 3, 1, "", "RELATION_ONE_TO_ONE"], [32, 3, 1, "", "RELOAD"], [32, 3, 1, "", "REPEAT"], [32, 3, 1, "", "REPEAT_OFF"], [32, 3, 1, "", "REPEAT_ONCE"], [32, 3, 1, "", "REPLACE"], [32, 3, 1, "", "REPLACE_FILLED"], [32, 3, 1, "", "REPLACE_OFF"], [32, 3, 1, "", "REPORT"], [32, 3, 1, "", "REPORT_ANALYTICS"], [32, 3, 1, "", "REPORT_MEDICAL"], [32, 3, 1, "", "REPORT_MONEY"], [32, 3, 1, "", "REPORT_OFF"], [32, 3, 1, "", "REPORT_SEARCH"], [32, 3, 1, "", "RESERVED_LINE"], [32, 3, 1, "", "RESIZE"], [32, 3, 1, "", "RESTORE"], [32, 3, 1, "", "REWIND_BACKWARD_10"], [32, 3, 1, "", "REWIND_BACKWARD_15"], [32, 3, 1, "", "REWIND_BACKWARD_20"], [32, 3, 1, "", "REWIND_BACKWARD_30"], [32, 3, 1, "", "REWIND_BACKWARD_40"], [32, 3, 1, "", "REWIND_BACKWARD_5"], [32, 3, 1, "", "REWIND_BACKWARD_50"], [32, 3, 1, "", "REWIND_BACKWARD_60"], [32, 3, 1, "", "REWIND_FORWARD_10"], [32, 3, 1, "", "REWIND_FORWARD_15"], [32, 3, 1, "", "REWIND_FORWARD_20"], [32, 3, 1, "", "REWIND_FORWARD_30"], [32, 3, 1, "", "REWIND_FORWARD_40"], [32, 3, 1, "", "REWIND_FORWARD_5"], [32, 3, 1, "", "REWIND_FORWARD_50"], [32, 3, 1, "", "REWIND_FORWARD_60"], [32, 3, 1, "", "RIBBON_HEALTH"], [32, 3, 1, "", "RINGS"], [32, 3, 1, "", "RIPPLE"], [32, 3, 1, "", "RIPPLE_OFF"], [32, 3, 1, "", "ROAD"], [32, 3, 1, "", "ROAD_OFF"], [32, 3, 1, "", "ROAD_SIGN"], [32, 3, 1, "", "ROBOT"], [32, 3, 1, "", "ROBOT_OFF"], [32, 3, 1, "", "ROCKET"], [32, 3, 1, "", "ROCKET_OFF"], [32, 3, 1, "", "ROLLERCOASTER"], [32, 3, 1, "", "ROLLERCOASTER_OFF"], [32, 3, 1, "", "ROLLER_SKATING"], [32, 3, 1, "", "ROSETTE"], [32, 3, 1, "", "ROSETTE_FILLED"], [32, 3, 1, "", "ROSETTE_NUMBER_0"], [32, 3, 1, "", "ROSETTE_NUMBER_1"], [32, 3, 1, "", "ROSETTE_NUMBER_2"], [32, 3, 1, "", "ROSETTE_NUMBER_3"], [32, 3, 1, "", "ROSETTE_NUMBER_4"], [32, 3, 1, "", "ROSETTE_NUMBER_5"], [32, 3, 1, "", "ROSETTE_NUMBER_6"], [32, 3, 1, "", "ROSETTE_NUMBER_7"], [32, 3, 1, "", "ROSETTE_NUMBER_8"], [32, 3, 1, "", "ROSETTE_NUMBER_9"], [32, 3, 1, "", "ROTATE"], [32, 3, 1, "", "ROTATE_2"], [32, 3, 1, "", "ROTATE_360"], [32, 3, 1, "", "ROTATE_CLOCKWISE"], [32, 3, 1, "", "ROTATE_CLOCKWISE_2"], [32, 3, 1, "", "ROTATE_DOT"], [32, 3, 1, "", "ROTATE_RECTANGLE"], [32, 3, 1, "", "ROUTE"], [32, 3, 1, "", "ROUTER"], [32, 3, 1, "", "ROUTER_OFF"], [32, 3, 1, "", "ROUTE_2"], [32, 3, 1, "", "ROUTE_OFF"], [32, 3, 1, "", "ROW_INSERT_BOTTOM"], [32, 3, 1, "", "ROW_INSERT_TOP"], [32, 3, 1, "", "ROW_REMOVE"], [32, 3, 1, "", "RSS"], [32, 3, 1, "", "RUBBER_STAMP"], [32, 3, 1, "", "RUBBER_STAMP_OFF"], [32, 3, 1, "", "RULER"], [32, 3, 1, "", "RULER_2"], [32, 3, 1, "", "RULER_2_OFF"], [32, 3, 1, "", "RULER_3"], [32, 3, 1, "", "RULER_MEASURE"], [32, 3, 1, "", "RULER_OFF"], [32, 3, 1, "", "RUN"], [32, 3, 1, "", "SAILBOAT"], [32, 3, 1, "", "SAILBOAT_2"], [32, 3, 1, "", "SAILBOAT_OFF"], [32, 3, 1, "", "SALAD"], [32, 3, 1, "", "SALT"], [32, 3, 1, "", "SATELLITE"], [32, 3, 1, "", "SATELLITE_OFF"], [32, 3, 1, "", "SAUSAGE"], [32, 3, 1, "", "SCALE"], [32, 3, 1, "", "SCALE_OFF"], [32, 3, 1, "", "SCALE_OUTLINE"], [32, 3, 1, "", "SCALE_OUTLINE_OFF"], [32, 3, 1, "", "SCAN"], [32, 3, 1, "", "SCAN_EYE"], [32, 3, 1, "", "SCHEMA"], [32, 3, 1, "", "SCHEMA_OFF"], [32, 3, 1, "", "SCHOOL"], [32, 3, 1, "", "SCHOOL_BELL"], [32, 3, 1, "", "SCHOOL_OFF"], [32, 3, 1, "", "SCISSORS"], [32, 3, 1, "", "SCISSORS_OFF"], [32, 3, 1, "", "SCOOTER"], [32, 3, 1, "", "SCOOTER_ELECTRIC"], [32, 3, 1, "", "SCOREBOARD"], [32, 3, 1, "", "SCREENSHOT"], [32, 3, 1, "", "SCREEN_SHARE"], [32, 3, 1, "", "SCREEN_SHARE_OFF"], [32, 3, 1, "", "SCRIBBLE"], [32, 3, 1, "", "SCRIBBLE_OFF"], [32, 3, 1, "", "SCRIPT"], [32, 3, 1, "", "SCRIPT_MINUS"], [32, 3, 1, "", "SCRIPT_PLUS"], [32, 3, 1, "", "SCRIPT_X"], [32, 3, 1, "", "SCUBA_MASK"], [32, 3, 1, "", "SCUBA_MASK_OFF"], [32, 3, 1, "", "SDK"], [32, 3, 1, "", "SEARCH"], [32, 3, 1, "", "SEARCH_OFF"], [32, 3, 1, "", "SECTION"], [32, 3, 1, "", "SECTION_SIGN"], [32, 3, 1, "", "SEEDING"], [32, 3, 1, "", "SEEDING_OFF"], [32, 3, 1, "", "SELECT"], [32, 3, 1, "", "SELECTOR"], [32, 3, 1, "", "SELECT_ALL"], [32, 3, 1, "", "SEND"], [32, 3, 1, "", "SEND_OFF"], [32, 3, 1, "", "SEO"], [32, 3, 1, "", "SEPARATOR"], [32, 3, 1, "", "SEPARATOR_HORIZONTAL"], [32, 3, 1, "", "SEPARATOR_VERTICAL"], [32, 3, 1, "", "SERVER"], [32, 3, 1, "", "SERVER_2"], [32, 3, 1, "", "SERVER_BOLT"], [32, 3, 1, "", "SERVER_COG"], [32, 3, 1, "", "SERVER_OFF"], [32, 3, 1, "", "SERVICEMARK"], [32, 3, 1, "", "SETTINGS"], [32, 3, 1, "", "SETTINGS_2"], [32, 3, 1, "", "SETTINGS_AUTOMATION"], [32, 3, 1, "", "SETTINGS_BOLT"], [32, 3, 1, "", "SETTINGS_CANCEL"], [32, 3, 1, "", "SETTINGS_CHECK"], [32, 3, 1, "", "SETTINGS_CODE"], [32, 3, 1, "", "SETTINGS_COG"], [32, 3, 1, "", "SETTINGS_DOLLAR"], [32, 3, 1, "", "SETTINGS_DOWN"], [32, 3, 1, "", "SETTINGS_EXCLAMATION"], [32, 3, 1, "", "SETTINGS_FILLED"], [32, 3, 1, "", "SETTINGS_HEART"], [32, 3, 1, "", "SETTINGS_MINUS"], [32, 3, 1, "", "SETTINGS_OFF"], [32, 3, 1, "", "SETTINGS_PAUSE"], [32, 3, 1, "", "SETTINGS_PIN"], [32, 3, 1, "", "SETTINGS_PLUS"], [32, 3, 1, "", "SETTINGS_QUESTION"], [32, 3, 1, "", "SETTINGS_SEARCH"], [32, 3, 1, "", "SETTINGS_SHARE"], [32, 3, 1, "", "SETTINGS_STAR"], [32, 3, 1, "", "SETTINGS_UP"], [32, 3, 1, "", "SETTINGS_X"], [32, 3, 1, "", "SHADOW"], [32, 3, 1, "", "SHADOW_OFF"], [32, 3, 1, "", "SHAPE"], [32, 3, 1, "", "SHAPE_2"], [32, 3, 1, "", "SHAPE_3"], [32, 3, 1, "", "SHAPE_OFF"], [32, 3, 1, "", "SHARE"], [32, 3, 1, "", "SHARE_2"], [32, 3, 1, "", "SHARE_3"], [32, 3, 1, "", "SHARE_OFF"], [32, 3, 1, "", "SHIELD"], [32, 3, 1, "", "SHIELD_BOLT"], [32, 3, 1, "", "SHIELD_CANCEL"], [32, 3, 1, "", "SHIELD_CHECK"], [32, 3, 1, "", "SHIELD_CHECKERED"], [32, 3, 1, "", "SHIELD_CHECKERED_FILLED"], [32, 3, 1, "", "SHIELD_CHECK_FILLED"], [32, 3, 1, "", "SHIELD_CHEVRON"], [32, 3, 1, "", "SHIELD_CODE"], [32, 3, 1, "", "SHIELD_COG"], [32, 3, 1, "", "SHIELD_DOLLAR"], [32, 3, 1, "", "SHIELD_DOWN"], [32, 3, 1, "", "SHIELD_EXCLAMATION"], [32, 3, 1, "", "SHIELD_FILLED"], [32, 3, 1, "", "SHIELD_HALF"], [32, 3, 1, "", "SHIELD_HALF_FILLED"], [32, 3, 1, "", "SHIELD_HEART"], [32, 3, 1, "", "SHIELD_LOCK"], [32, 3, 1, "", "SHIELD_LOCK_FILLED"], [32, 3, 1, "", "SHIELD_MINUS"], [32, 3, 1, "", "SHIELD_OFF"], [32, 3, 1, "", "SHIELD_PAUSE"], [32, 3, 1, "", "SHIELD_PIN"], [32, 3, 1, "", "SHIELD_PLUS"], [32, 3, 1, "", "SHIELD_QUESTION"], [32, 3, 1, "", "SHIELD_SEARCH"], [32, 3, 1, "", "SHIELD_SHARE"], [32, 3, 1, "", "SHIELD_STAR"], [32, 3, 1, "", "SHIELD_UP"], [32, 3, 1, "", "SHIELD_X"], [32, 3, 1, "", "SHIP"], [32, 3, 1, "", "SHIP_OFF"], [32, 3, 1, "", "SHIRT"], [32, 3, 1, "", "SHIRT_FILLED"], [32, 3, 1, "", "SHIRT_OFF"], [32, 3, 1, "", "SHIRT_SPORT"], [32, 3, 1, "", "SHI_JUMPING"], [32, 3, 1, "", "SHOE"], [32, 3, 1, "", "SHOE_OFF"], [32, 3, 1, "", "SHOPPING_BAG"], [32, 3, 1, "", "SHOPPING_CART"], [32, 3, 1, "", "SHOPPING_CART_DISCOUNT"], [32, 3, 1, "", "SHOPPING_CART_OFF"], [32, 3, 1, "", "SHOPPING_CART_PLUS"], [32, 3, 1, "", "SHOPPING_CART_X"], [32, 3, 1, "", "SHOVEL"], [32, 3, 1, "", "SHREDDER"], [32, 3, 1, "", "SIGNAL_2G"], [32, 3, 1, "", "SIGNAL_3G"], [32, 3, 1, "", "SIGNAL_4G"], [32, 3, 1, "", "SIGNAL_4G_PLUS"], [32, 3, 1, "", "SIGNAL_5G"], [32, 3, 1, "", "SIGNAL_6G"], [32, 3, 1, "", "SIGNAL_E"], [32, 3, 1, "", "SIGNAL_G"], [32, 3, 1, "", "SIGNAL_H"], [32, 3, 1, "", "SIGNAL_H_PLUS"], [32, 3, 1, "", "SIGNAL_LTE"], [32, 3, 1, "", "SIGNATURE"], [32, 3, 1, "", "SIGNATURE_OFF"], [32, 3, 1, "", "SIGN_LEFT"], [32, 3, 1, "", "SIGN_LEFT_FILLED"], [32, 3, 1, "", "SIGN_RIGHT"], [32, 3, 1, "", "SIGN_RIGHT_FILLED"], [32, 3, 1, "", "SITEMAP"], [32, 3, 1, "", "SITEMAP_OFF"], [32, 3, 1, "", "SKATEBOARD"], [32, 3, 1, "", "SKATEBOARDING"], [32, 3, 1, "", "SKATEBOARD_OFF"], [32, 3, 1, "", "SKULL"], [32, 3, 1, "", "SLASH"], [32, 3, 1, "", "SLASHES"], [32, 3, 1, "", "SLEIGH"], [32, 3, 1, "", "SLICE"], [32, 3, 1, "", "SLIDESHOW"], [32, 3, 1, "", "SMART_HOME"], [32, 3, 1, "", "SMART_HOME_OFF"], [32, 3, 1, "", "SMOKING"], [32, 3, 1, "", "SMOKING_NO"], [32, 3, 1, "", "SNOWFLAKE"], [32, 3, 1, "", "SNOWFLAKE_OFF"], [32, 3, 1, "", "SNOWMAN"], [32, 3, 1, "", "SOCCER_FIELD"], [32, 3, 1, "", "SOCIAL"], [32, 3, 1, "", "SOCIAL_OFF"], [32, 3, 1, "", "SOCK"], [32, 3, 1, "", "SOFA"], [32, 3, 1, "", "SOFA_OFF"], [32, 3, 1, "", "SOLAR_PANEL"], [32, 3, 1, "", "SOLAR_PANEL_2"], [32, 3, 1, "", "SORT_0_9"], [32, 3, 1, "", "SORT_9_0"], [32, 3, 1, "", "SORT_ASCENDING"], [32, 3, 1, "", "SORT_ASCENDING_2"], [32, 3, 1, "", "SORT_ASCENDING_LETTERS"], [32, 3, 1, "", "SORT_ASCENDING_NUMBERS"], [32, 3, 1, "", "SORT_A_Z"], [32, 3, 1, "", "SORT_DESCENDING"], [32, 3, 1, "", "SORT_DESCENDING_2"], [32, 3, 1, "", "SORT_DESCENDING_LETTERS"], [32, 3, 1, "", "SORT_DESCENDING_NUMBERS"], [32, 3, 1, "", "SORT_Z_A"], [32, 3, 1, "", "SOS"], [32, 3, 1, "", "SOUP"], [32, 3, 1, "", "SOUP_OFF"], [32, 3, 1, "", "SOURCE_CODE"], [32, 3, 1, "", "SPACE"], [32, 3, 1, "", "SPACE_OFF"], [32, 3, 1, "", "SPACING_HORIZONTAL"], [32, 3, 1, "", "SPACING_VERTICAL"], [32, 3, 1, "", "SPADE"], [32, 3, 1, "", "SPADE_FILLED"], [32, 3, 1, "", "SPARKLES"], [32, 3, 1, "", "SPEAKERPHONE"], [32, 3, 1, "", "SPEEDBOAT"], [32, 3, 1, "", "SPHERE"], [32, 3, 1, "", "SPHERE_OFF"], [32, 3, 1, "", "SPHERE_PLUS"], [32, 3, 1, "", "SPIDER"], [32, 3, 1, "", "SPIRAL"], [32, 3, 1, "", "SPIRAL_OFF"], [32, 3, 1, "", "SPORT_BILLARD"], [32, 3, 1, "", "SPRAY"], [32, 3, 1, "", "SPY"], [32, 3, 1, "", "SPY_OFF"], [32, 3, 1, "", "SQL"], [32, 3, 1, "", "SQUARE"], [32, 3, 1, "", "SQUARES_DIAGONAL"], [32, 3, 1, "", "SQUARES_FILLED"], [32, 3, 1, "", "SQUARE_0_FILLED"], [32, 3, 1, "", "SQUARE_1_FILLED"], [32, 3, 1, "", "SQUARE_2_FILLED"], [32, 3, 1, "", "SQUARE_3_FILLED"], [32, 3, 1, "", "SQUARE_4_FILLED"], [32, 3, 1, "", "SQUARE_5_FILLED"], [32, 3, 1, "", "SQUARE_6_FILLED"], [32, 3, 1, "", "SQUARE_7_FILLED"], [32, 3, 1, "", "SQUARE_8_FILLED"], [32, 3, 1, "", "SQUARE_9_FILLED"], [32, 3, 1, "", "SQUARE_ARROW_DOWN"], [32, 3, 1, "", "SQUARE_ARROW_LEFT"], [32, 3, 1, "", "SQUARE_ARROW_RIGHT"], [32, 3, 1, "", "SQUARE_ARROW_UP"], [32, 3, 1, "", "SQUARE_ASTERISK"], [32, 3, 1, "", "SQUARE_CHECK"], [32, 3, 1, "", "SQUARE_CHECK_FILLED"], [32, 3, 1, "", "SQUARE_CHEVRONS_DOWN"], [32, 3, 1, "", "SQUARE_CHEVRONS_LEFT"], [32, 3, 1, "", "SQUARE_CHEVRONS_RIGHT"], [32, 3, 1, "", "SQUARE_CHEVRONS_UP"], [32, 3, 1, "", "SQUARE_CHEVRON_DOWN"], [32, 3, 1, "", "SQUARE_CHEVRON_LEFT"], [32, 3, 1, "", "SQUARE_CHEVRON_RIGHT"], [32, 3, 1, "", "SQUARE_CHEVRON_UP"], [32, 3, 1, "", "SQUARE_DOT"], [32, 3, 1, "", "SQUARE_F0"], [32, 3, 1, "", "SQUARE_F0_FILLED"], [32, 3, 1, "", "SQUARE_F1"], [32, 3, 1, "", "SQUARE_F1_FILLED"], [32, 3, 1, "", "SQUARE_F2"], [32, 3, 1, "", "SQUARE_F2_FILLED"], [32, 3, 1, "", "SQUARE_F3"], [32, 3, 1, "", "SQUARE_F3_FILLED"], [32, 3, 1, "", "SQUARE_F4"], [32, 3, 1, "", "SQUARE_F4_FILLED"], [32, 3, 1, "", "SQUARE_F5"], [32, 3, 1, "", "SQUARE_F5_FILLED"], [32, 3, 1, "", "SQUARE_F6"], [32, 3, 1, "", "SQUARE_F6_FILLED"], [32, 3, 1, "", "SQUARE_F7"], [32, 3, 1, "", "SQUARE_F7_FILLED"], [32, 3, 1, "", "SQUARE_F8"], [32, 3, 1, "", "SQUARE_F8_FILLED"], [32, 3, 1, "", "SQUARE_F9"], [32, 3, 1, "", "SQUARE_F9_FILLED"], [32, 3, 1, "", "SQUARE_FORBID"], [32, 3, 1, "", "SQUARE_FORBID_2"], [32, 3, 1, "", "SQUARE_HALF"], [32, 3, 1, "", "SQUARE_KEY"], [32, 3, 1, "", "SQUARE_LETTER_A"], [32, 3, 1, "", "SQUARE_LETTER_B"], [32, 3, 1, "", "SQUARE_LETTER_C"], [32, 3, 1, "", "SQUARE_LETTER_D"], [32, 3, 1, "", "SQUARE_LETTER_E"], [32, 3, 1, "", "SQUARE_LETTER_F"], [32, 3, 1, "", "SQUARE_LETTER_G"], [32, 3, 1, "", "SQUARE_LETTER_H"], [32, 3, 1, "", "SQUARE_LETTER_I"], [32, 3, 1, "", "SQUARE_LETTER_J"], [32, 3, 1, "", "SQUARE_LETTER_K"], [32, 3, 1, "", "SQUARE_LETTER_L"], [32, 3, 1, "", "SQUARE_LETTER_M"], [32, 3, 1, "", "SQUARE_LETTER_N"], [32, 3, 1, "", "SQUARE_LETTER_O"], [32, 3, 1, "", "SQUARE_LETTER_P"], [32, 3, 1, "", "SQUARE_LETTER_Q"], [32, 3, 1, "", "SQUARE_LETTER_R"], [32, 3, 1, "", "SQUARE_LETTER_S"], [32, 3, 1, "", "SQUARE_LETTER_T"], [32, 3, 1, "", "SQUARE_LETTER_U"], [32, 3, 1, "", "SQUARE_LETTER_V"], [32, 3, 1, "", "SQUARE_LETTER_W"], [32, 3, 1, "", "SQUARE_LETTER_X"], [32, 3, 1, "", "SQUARE_LETTER_Y"], [32, 3, 1, "", "SQUARE_LETTER_Z"], [32, 3, 1, "", "SQUARE_MINUS"], [32, 3, 1, "", "SQUARE_NUMBER_0"], [32, 3, 1, "", "SQUARE_NUMBER_1"], [32, 3, 1, "", "SQUARE_NUMBER_2"], [32, 3, 1, "", "SQUARE_NUMBER_3"], [32, 3, 1, "", "SQUARE_NUMBER_4"], [32, 3, 1, "", "SQUARE_NUMBER_5"], [32, 3, 1, "", "SQUARE_NUMBER_6"], [32, 3, 1, "", "SQUARE_NUMBER_7"], [32, 3, 1, "", "SQUARE_NUMBER_8"], [32, 3, 1, "", "SQUARE_NUMBER_9"], [32, 3, 1, "", "SQUARE_OFF"], [32, 3, 1, "", "SQUARE_PLUS"], [32, 3, 1, "", "SQUARE_ROOT"], [32, 3, 1, "", "SQUARE_ROOT_2"], [32, 3, 1, "", "SQUARE_ROTATED"], [32, 3, 1, "", "SQUARE_ROTATED_FILLED"], [32, 3, 1, "", "SQUARE_ROTATED_FORBID"], [32, 3, 1, "", "SQUARE_ROTATED_FORBID_2"], [32, 3, 1, "", "SQUARE_ROTATED_OFF"], [32, 3, 1, "", "SQUARE_ROUNDED"], [32, 3, 1, "", "SQUARE_ROUNDED_ARROW_DOWN"], [32, 3, 1, "", "SQUARE_ROUNDED_ARROW_DOWN_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_ARROW_LEFT"], [32, 3, 1, "", "SQUARE_ROUNDED_ARROW_LEFT_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_ARROW_RIGHT"], [32, 3, 1, "", "SQUARE_ROUNDED_ARROW_RIGHT_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_ARROW_UP"], [32, 3, 1, "", "SQUARE_ROUNDED_ARROW_UP_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_CHECK"], [32, 3, 1, "", "SQUARE_ROUNDED_CHECK_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_DOWN"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_DOWN_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_LEFT"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_LEFT_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_RIGHT"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_RIGHT_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_UP"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_UP_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_DOWN"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_DOWN_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_LEFT"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_LEFT_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_RIGHT"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_RIGHT_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_UP"], [32, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_UP_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_A"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_B"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_C"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_D"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_E"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_F"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_G"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_H"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_I"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_J"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_K"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_L"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_M"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_N"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_O"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_P"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_Q"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_R"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_S"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_T"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_U"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_V"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_W"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_X"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_Y"], [32, 3, 1, "", "SQUARE_ROUNDED_LETTER_Z"], [32, 3, 1, "", "SQUARE_ROUNDED_MINUS"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_0"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_0_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_1"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_1_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_2"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_2_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_3"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_3_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_4"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_4_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_5"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_5_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_6"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_6_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_7"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_7_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_8"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_8_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_9"], [32, 3, 1, "", "SQUARE_ROUNDED_NUMBER_9_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_PLUS"], [32, 3, 1, "", "SQUARE_ROUNDED_PLUS_FILLED"], [32, 3, 1, "", "SQUARE_ROUNDED_X"], [32, 3, 1, "", "SQUARE_ROUNDED_X_FILLED"], [32, 3, 1, "", "SQUARE_TOGGLE"], [32, 3, 1, "", "SQUARE_TOGGLE_HORIZONTAL"], [32, 3, 1, "", "SQUARE_X"], [32, 3, 1, "", "STACK"], [32, 3, 1, "", "STACK_2"], [32, 3, 1, "", "STACK_3"], [32, 3, 1, "", "STACK_POP"], [32, 3, 1, "", "STACK_PUSH"], [32, 3, 1, "", "STAIRS"], [32, 3, 1, "", "STAIRS_DOWN"], [32, 3, 1, "", "STAIRS_UP"], [32, 3, 1, "", "STAR"], [32, 3, 1, "", "STARS"], [32, 3, 1, "", "STARS_FILLED"], [32, 3, 1, "", "STARS_OFF"], [32, 3, 1, "", "STAR_FILLED"], [32, 3, 1, "", "STAR_HALF"], [32, 3, 1, "", "STAR_HALF_FILLED"], [32, 3, 1, "", "STAR_OFF"], [32, 3, 1, "", "STATUS_CHANGE"], [32, 3, 1, "", "STEAM"], [32, 3, 1, "", "STEERING_WHEEL"], [32, 3, 1, "", "STEERING_WHEEL_OFF"], [32, 3, 1, "", "STEP_INTO"], [32, 3, 1, "", "STEP_OUT"], [32, 3, 1, "", "STEREO_GLASSES"], [32, 3, 1, "", "STETHOSCOPE"], [32, 3, 1, "", "STETHOSCOPE_OFF"], [32, 3, 1, "", "STICKER"], [32, 3, 1, "", "STORM"], [32, 3, 1, "", "STORM_OFF"], [32, 3, 1, "", "STRETCHING"], [32, 3, 1, "", "STRETCHING_2"], [32, 3, 1, "", "STRIKETHROUGH"], [32, 3, 1, "", "SUBMARINE"], [32, 3, 1, "", "SUBSCRIPT"], [32, 3, 1, "", "SUBTASK"], [32, 3, 1, "", "SUM"], [32, 3, 1, "", "SUM_OFF"], [32, 3, 1, "", "SUN"], [32, 3, 1, "", "SUNGLASSES"], [32, 3, 1, "", "SUNRISE"], [32, 3, 1, "", "SUNSET"], [32, 3, 1, "", "SUNSET_2"], [32, 3, 1, "", "SUN_FILLED"], [32, 3, 1, "", "SUN_HIGH"], [32, 3, 1, "", "SUN_LOW"], [32, 3, 1, "", "SUN_MOON"], [32, 3, 1, "", "SUN_OFF"], [32, 3, 1, "", "SUN_WIND"], [32, 3, 1, "", "SUPERSCRIPT"], [32, 3, 1, "", "SVG"], [32, 3, 1, "", "SWIMMING"], [32, 3, 1, "", "SWIPE"], [32, 3, 1, "", "SWITCH"], [32, 3, 1, "", "SWITCH_2"], [32, 3, 1, "", "SWITCH_3"], [32, 3, 1, "", "SWITCH_HORIZONTAL"], [32, 3, 1, "", "SWITCH_VERTICAL"], [32, 3, 1, "", "SWORD"], [32, 3, 1, "", "SWORDS"], [32, 3, 1, "", "SWORD_OFF"], [32, 3, 1, "", "S_TURN_DOWN"], [32, 3, 1, "", "S_TURN_LEFT"], [32, 3, 1, "", "S_TURN_RIGHT"], [32, 3, 1, "", "S_TURN_UP"], [32, 3, 1, "", "TABLE"], [32, 3, 1, "", "TABLE_ALIAS"], [32, 3, 1, "", "TABLE_COLUMN"], [32, 3, 1, "", "TABLE_DOWN"], [32, 3, 1, "", "TABLE_EXPORT"], [32, 3, 1, "", "TABLE_FILLED"], [32, 3, 1, "", "TABLE_HEART"], [32, 3, 1, "", "TABLE_IMPORT"], [32, 3, 1, "", "TABLE_MINUS"], [32, 3, 1, "", "TABLE_OFF"], [32, 3, 1, "", "TABLE_OPTIONS"], [32, 3, 1, "", "TABLE_PLUS"], [32, 3, 1, "", "TABLE_ROW"], [32, 3, 1, "", "TABLE_SHARE"], [32, 3, 1, "", "TABLE_SHORTCUT"], [32, 3, 1, "", "TAG"], [32, 3, 1, "", "TAGS"], [32, 3, 1, "", "TAGS_OFF"], [32, 3, 1, "", "TAG_OFF"], [32, 3, 1, "", "TALLYMARKS"], [32, 3, 1, "", "TALLYMARK_1"], [32, 3, 1, "", "TALLYMARK_2"], [32, 3, 1, "", "TALLYMARK_3"], [32, 3, 1, "", "TALLYMARK_4"], [32, 3, 1, "", "TANK"], [32, 3, 1, "", "TARGET"], [32, 3, 1, "", "TARGET_ARROW"], [32, 3, 1, "", "TARGET_OFF"], [32, 3, 1, "", "TEAPOT"], [32, 3, 1, "", "TELESCOPE"], [32, 3, 1, "", "TELESCOPE_OFF"], [32, 3, 1, "", "TEMPERATURE"], [32, 3, 1, "", "TEMPERATURE_CELSIUS"], [32, 3, 1, "", "TEMPERATURE_FAHRENHEIT"], [32, 3, 1, "", "TEMPERATURE_MINUS"], [32, 3, 1, "", "TEMPERATURE_OFF"], [32, 3, 1, "", "TEMPERATURE_PLUS"], [32, 3, 1, "", "TEMPLATE"], [32, 3, 1, "", "TEMPLATE_OFF"], [32, 3, 1, "", "TENT"], [32, 3, 1, "", "TENT_OFF"], [32, 3, 1, "", "TERMINAL"], [32, 3, 1, "", "TERMINAL_2"], [32, 3, 1, "", "TEST_PIPE"], [32, 3, 1, "", "TEST_PIPE_2"], [32, 3, 1, "", "TEST_PIPE_OFF"], [32, 3, 1, "", "TEX"], [32, 3, 1, "", "TEXTURE"], [32, 3, 1, "", "TEXT_CAPTION"], [32, 3, 1, "", "TEXT_COLOR"], [32, 3, 1, "", "TEXT_DECREASE"], [32, 3, 1, "", "TEXT_DIRECTION_LTR"], [32, 3, 1, "", "TEXT_DIRECTION_RTL"], [32, 3, 1, "", "TEXT_INCREASE"], [32, 3, 1, "", "TEXT_ORIENTATION"], [32, 3, 1, "", "TEXT_PLUS"], [32, 3, 1, "", "TEXT_RECOGNITION"], [32, 3, 1, "", "TEXT_RESIZE"], [32, 3, 1, "", "TEXT_SIZE"], [32, 3, 1, "", "TEXT_SPELLCHECK"], [32, 3, 1, "", "TEXT_WRAP"], [32, 3, 1, "", "TEXT_WRAP_DISABLED"], [32, 3, 1, "", "THEATER"], [32, 3, 1, "", "THERMOMETER"], [32, 3, 1, "", "THUMB_DOWN"], [32, 3, 1, "", "THUMB_DOWN_FILLED"], [32, 3, 1, "", "THUMB_DOWN_OFF"], [32, 3, 1, "", "THUMB_UP"], [32, 3, 1, "", "THUMB_UP_FILLED"], [32, 3, 1, "", "THUMB_UP_OFF"], [32, 3, 1, "", "TICKET"], [32, 3, 1, "", "TICKET_OFF"], [32, 3, 1, "", "TIC_TAC"], [32, 3, 1, "", "TIE"], [32, 3, 1, "", "TILDE"], [32, 3, 1, "", "TILT_SHIFT"], [32, 3, 1, "", "TILT_SHIFT_OFF"], [32, 3, 1, "", "TIMELINE"], [32, 3, 1, "", "TIMELINE_EVENT"], [32, 3, 1, "", "TIMELINE_EVENT_EXCLAMATION"], [32, 3, 1, "", "TIMELINE_EVENT_MINUS"], [32, 3, 1, "", "TIMELINE_EVENT_PLUS"], [32, 3, 1, "", "TIMELINE_EVENT_TEXT"], [32, 3, 1, "", "TIMELINE_EVENT_X"], [32, 3, 1, "", "TIME_DURATION_0"], [32, 3, 1, "", "TIME_DURATION_10"], [32, 3, 1, "", "TIME_DURATION_15"], [32, 3, 1, "", "TIME_DURATION_30"], [32, 3, 1, "", "TIME_DURATION_45"], [32, 3, 1, "", "TIME_DURATION_5"], [32, 3, 1, "", "TIME_DURATION_60"], [32, 3, 1, "", "TIME_DURATION_90"], [32, 3, 1, "", "TIME_DURATION_OFF"], [32, 3, 1, "", "TIR"], [32, 3, 1, "", "TOGGLE_LEFT"], [32, 3, 1, "", "TOGGLE_RIGHT"], [32, 3, 1, "", "TOILET_PAPER"], [32, 3, 1, "", "TOILET_PAPER_OFF"], [32, 3, 1, "", "TOML"], [32, 3, 1, "", "TOOL"], [32, 3, 1, "", "TOOLS"], [32, 3, 1, "", "TOOLS_KITCHEN"], [32, 3, 1, "", "TOOLS_KITCHEN_2"], [32, 3, 1, "", "TOOLS_KITCHEN_2_OFF"], [32, 3, 1, "", "TOOLS_KITCHEN_OFF"], [32, 3, 1, "", "TOOLS_OFF"], [32, 3, 1, "", "TOOLTIP"], [32, 3, 1, "", "TOPOLOGY_BUS"], [32, 3, 1, "", "TOPOLOGY_COMPLEX"], [32, 3, 1, "", "TOPOLOGY_FULL"], [32, 3, 1, "", "TOPOLOGY_FULL_HIERARCHY"], [32, 3, 1, "", "TOPOLOGY_RING"], [32, 3, 1, "", "TOPOLOGY_RING_2"], [32, 3, 1, "", "TOPOLOGY_RING_3"], [32, 3, 1, "", "TOPOLOGY_STAR"], [32, 3, 1, "", "TOPOLOGY_STAR_2"], [32, 3, 1, "", "TOPOLOGY_STAR_3"], [32, 3, 1, "", "TOPOLOGY_STAR_RING"], [32, 3, 1, "", "TOPOLOGY_STAR_RING_2"], [32, 3, 1, "", "TOPOLOGY_STAR_RING_3"], [32, 3, 1, "", "TORII"], [32, 3, 1, "", "TORNADO"], [32, 3, 1, "", "TOURNAMENT"], [32, 3, 1, "", "TOWER"], [32, 3, 1, "", "TOWER_OFF"], [32, 3, 1, "", "TRACK"], [32, 3, 1, "", "TRACTOR"], [32, 3, 1, "", "TRADEMARK"], [32, 3, 1, "", "TRAFFIC_CONE"], [32, 3, 1, "", "TRAFFIC_CONE_OFF"], [32, 3, 1, "", "TRAFFIC_LIGHTS"], [32, 3, 1, "", "TRAFFIC_LIGHTS_OFF"], [32, 3, 1, "", "TRAIN"], [32, 3, 1, "", "TRANSFER_IN"], [32, 3, 1, "", "TRANSFER_OUT"], [32, 3, 1, "", "TRANSFORM"], [32, 3, 1, "", "TRANSFORM_FILLED"], [32, 3, 1, "", "TRANSITION_BOTTOM"], [32, 3, 1, "", "TRANSITION_LEFT"], [32, 3, 1, "", "TRANSITION_RIGHT"], [32, 3, 1, "", "TRANSITION_TOP"], [32, 3, 1, "", "TRASH"], [32, 3, 1, "", "TRASH_FILLED"], [32, 3, 1, "", "TRASH_OFF"], [32, 3, 1, "", "TRASH_X"], [32, 3, 1, "", "TRASH_X_FILLED"], [32, 3, 1, "", "TREADMILL"], [32, 3, 1, "", "TREE"], [32, 3, 1, "", "TREES"], [32, 3, 1, "", "TREKKING"], [32, 3, 1, "", "TRENDING_DOWN"], [32, 3, 1, "", "TRENDING_DOWN_2"], [32, 3, 1, "", "TRENDING_DOWN_3"], [32, 3, 1, "", "TRENDING_UP"], [32, 3, 1, "", "TRENDING_UP_2"], [32, 3, 1, "", "TRENDING_UP_3"], [32, 3, 1, "", "TRIANGLE"], [32, 3, 1, "", "TRIANGLES"], [32, 3, 1, "", "TRIANGLE_FILLED"], [32, 3, 1, "", "TRIANGLE_INVERTED"], [32, 3, 1, "", "TRIANGLE_INVERTED_FILLED"], [32, 3, 1, "", "TRIANGLE_OFF"], [32, 3, 1, "", "TRIANGLE_SQUARE_CIRCLE"], [32, 3, 1, "", "TRIDENT"], [32, 3, 1, "", "TROLLEY"], [32, 3, 1, "", "TROPHY"], [32, 3, 1, "", "TROPHY_FILLED"], [32, 3, 1, "", "TROPHY_OFF"], [32, 3, 1, "", "TROWEL"], [32, 3, 1, "", "TRUCK"], [32, 3, 1, "", "TRUCK_DELIVERY"], [32, 3, 1, "", "TRUCK_LOADING"], [32, 3, 1, "", "TRUCK_OFF"], [32, 3, 1, "", "TRUCK_RETURN"], [32, 3, 1, "", "TXT"], [32, 3, 1, "", "TYPOGRAPHY"], [32, 3, 1, "", "TYPOGRAPHY_OFF"], [32, 3, 1, "", "UFO"], [32, 3, 1, "", "UFO_OFF"], [32, 3, 1, "", "UMBRELLA"], [32, 3, 1, "", "UMBRELLA_FILLED"], [32, 3, 1, "", "UMBRELLA_OFF"], [32, 3, 1, "", "UNDERLINE"], [32, 3, 1, "", "UNLINK"], [32, 3, 1, "", "UPLOAD"], [32, 3, 1, "", "URGENT"], [32, 3, 1, "", "USB"], [32, 3, 1, "", "USER"], [32, 3, 1, "", "USERS"], [32, 3, 1, "", "USERS_GROUP"], [32, 3, 1, "", "USERS_MINUS"], [32, 3, 1, "", "USERS_PLUS"], [32, 3, 1, "", "USER_BOLT"], [32, 3, 1, "", "USER_CANCEL"], [32, 3, 1, "", "USER_CHECK"], [32, 3, 1, "", "USER_CIRCLE"], [32, 3, 1, "", "USER_CODE"], [32, 3, 1, "", "USER_COG"], [32, 3, 1, "", "USER_DOLLAR"], [32, 3, 1, "", "USER_DOWN"], [32, 3, 1, "", "USER_EDIT"], [32, 3, 1, "", "USER_EXCLAMATION"], [32, 3, 1, "", "USER_HEART"], [32, 3, 1, "", "USER_MINUS"], [32, 3, 1, "", "USER_OFF"], [32, 3, 1, "", "USER_PAUSE"], [32, 3, 1, "", "USER_PIN"], [32, 3, 1, "", "USER_PLUS"], [32, 3, 1, "", "USER_QUESTION"], [32, 3, 1, "", "USER_SEARCH"], [32, 3, 1, "", "USER_SHARE"], [32, 3, 1, "", "USER_SHIELD"], [32, 3, 1, "", "USER_STAR"], [32, 3, 1, "", "USER_UP"], [32, 3, 1, "", "USER_X"], [32, 3, 1, "", "UV_INDEX"], [32, 3, 1, "", "UX_CIRCLE"], [32, 3, 1, "", "VACCINE"], [32, 3, 1, "", "VACCINE_BOTTLE"], [32, 3, 1, "", "VACCINE_BOTTLE_OFF"], [32, 3, 1, "", "VACCINE_OFF"], [32, 3, 1, "", "VACUUM_CLEANER"], [32, 3, 1, "", "VARIABLE"], [32, 3, 1, "", "VARIABLE_MINUS"], [32, 3, 1, "", "VARIABLE_OFF"], [32, 3, 1, "", "VARIABLE_PLUS"], [32, 3, 1, "", "VECTOR"], [32, 3, 1, "", "VECTOR_BEZIER"], [32, 3, 1, "", "VECTOR_BEZIER_2"], [32, 3, 1, "", "VECTOR_BEZIER_ARC"], [32, 3, 1, "", "VECTOR_BEZIER_CIRCLE"], [32, 3, 1, "", "VECTOR_OFF"], [32, 3, 1, "", "VECTOR_SPLINE"], [32, 3, 1, "", "VECTOR_TRIANGLE"], [32, 3, 1, "", "VECTOR_TRIANGLE_OFF"], [32, 3, 1, "", "VENUS"], [32, 3, 1, "", "VERSIONS"], [32, 3, 1, "", "VERSIONS_FILLED"], [32, 3, 1, "", "VERSIONS_OFF"], [32, 3, 1, "", "VIDEO"], [32, 3, 1, "", "VIDEO_MINUS"], [32, 3, 1, "", "VIDEO_OFF"], [32, 3, 1, "", "VIDEO_PLUS"], [32, 3, 1, "", "VIEWFINDER"], [32, 3, 1, "", "VIEWFINDER_OFF"], [32, 3, 1, "", "VIEWPORT_NARROW"], [32, 3, 1, "", "VIEWPORT_WIDE"], [32, 3, 1, "", "VIEW_360"], [32, 3, 1, "", "VIEW_360_OFF"], [32, 3, 1, "", "VINYL"], [32, 3, 1, "", "VIP"], [32, 3, 1, "", "VIP_OFF"], [32, 3, 1, "", "VIRUS"], [32, 3, 1, "", "VIRUS_OFF"], [32, 3, 1, "", "VIRUS_SEARCH"], [32, 3, 1, "", "VOCABULARY"], [32, 3, 1, "", "VOCABULARY_OFF"], [32, 3, 1, "", "VOLCANO"], [32, 3, 1, "", "VOLUME"], [32, 3, 1, "", "VOLUME_2"], [32, 3, 1, "", "VOLUME_3"], [32, 3, 1, "", "VOLUME_OFF"], [32, 3, 1, "", "WALK"], [32, 3, 1, "", "WALL"], [32, 3, 1, "", "WALLET"], [32, 3, 1, "", "WALLET_OFF"], [32, 3, 1, "", "WALLPAPER"], [32, 3, 1, "", "WALLPAPER_OFF"], [32, 3, 1, "", "WALL_OFF"], [32, 3, 1, "", "WAND"], [32, 3, 1, "", "WAND_OFF"], [32, 3, 1, "", "WASH"], [32, 3, 1, "", "WASH_DRY"], [32, 3, 1, "", "WASH_DRYCLEAN"], [32, 3, 1, "", "WASH_DRYCLEAN_OFF"], [32, 3, 1, "", "WASH_DRY_1"], [32, 3, 1, "", "WASH_DRY_2"], [32, 3, 1, "", "WASH_DRY_3"], [32, 3, 1, "", "WASH_DRY_A"], [32, 3, 1, "", "WASH_DRY_DIP"], [32, 3, 1, "", "WASH_DRY_F"], [32, 3, 1, "", "WASH_DRY_FLAT"], [32, 3, 1, "", "WASH_DRY_HANG"], [32, 3, 1, "", "WASH_DRY_OFF"], [32, 3, 1, "", "WASH_DRY_P"], [32, 3, 1, "", "WASH_DRY_SHADE"], [32, 3, 1, "", "WASH_DRY_W"], [32, 3, 1, "", "WASH_ECO"], [32, 3, 1, "", "WASH_GENTLE"], [32, 3, 1, "", "WASH_HAND"], [32, 3, 1, "", "WASH_MACHINE"], [32, 3, 1, "", "WASH_OFF"], [32, 3, 1, "", "WASH_PRESS"], [32, 3, 1, "", "WASH_TEMPERATURE_1"], [32, 3, 1, "", "WASH_TEMPERATURE_2"], [32, 3, 1, "", "WASH_TEMPERATURE_3"], [32, 3, 1, "", "WASH_TEMPERATURE_4"], [32, 3, 1, "", "WASH_TEMPERATURE_5"], [32, 3, 1, "", "WASH_TEMPERATURE_6"], [32, 3, 1, "", "WASH_TUMBLE_DRY"], [32, 3, 1, "", "WASH_TUMBLE_OFF"], [32, 3, 1, "", "WATERPOLO"], [32, 3, 1, "", "WAVE_SAW_TOOL"], [32, 3, 1, "", "WAVE_SINE"], [32, 3, 1, "", "WAVE_SQUARE"], [32, 3, 1, "", "WEBHOOK"], [32, 3, 1, "", "WEBHOOK_OFF"], [32, 3, 1, "", "WEIGHT"], [32, 3, 1, "", "WHEELCHAIR"], [32, 3, 1, "", "WHEELCHAIR_OFF"], [32, 3, 1, "", "WHIRL"], [32, 3, 1, "", "WIFI"], [32, 3, 1, "", "WIFI_0"], [32, 3, 1, "", "WIFI_1"], [32, 3, 1, "", "WIFI_2"], [32, 3, 1, "", "WIFI_OFF"], [32, 3, 1, "", "WIND"], [32, 3, 1, "", "WINDMILL"], [32, 3, 1, "", "WINDMILL_FILLED"], [32, 3, 1, "", "WINDMILL_OFF"], [32, 3, 1, "", "WINDOW"], [32, 3, 1, "", "WINDOW_MAXIMIZE"], [32, 3, 1, "", "WINDOW_MINIMIZE"], [32, 3, 1, "", "WINDOW_OFF"], [32, 3, 1, "", "WINDSOCK"], [32, 3, 1, "", "WIND_OFF"], [32, 3, 1, "", "WIPER"], [32, 3, 1, "", "WIPER_WASH"], [32, 3, 1, "", "WOMAN"], [32, 3, 1, "", "WOOD"], [32, 3, 1, "", "WORLD"], [32, 3, 1, "", "WORLD_BOLT"], [32, 3, 1, "", "WORLD_CANCEL"], [32, 3, 1, "", "WORLD_CHECK"], [32, 3, 1, "", "WORLD_CODE"], [32, 3, 1, "", "WORLD_COG"], [32, 3, 1, "", "WORLD_DOLLAR"], [32, 3, 1, "", "WORLD_DOWN"], [32, 3, 1, "", "WORLD_DOWNLOAD"], [32, 3, 1, "", "WORLD_EXCLAMATION"], [32, 3, 1, "", "WORLD_HEART"], [32, 3, 1, "", "WORLD_LATITUDE"], [32, 3, 1, "", "WORLD_LONGITUDE"], [32, 3, 1, "", "WORLD_MINUS"], [32, 3, 1, "", "WORLD_OFF"], [32, 3, 1, "", "WORLD_PAUSE"], [32, 3, 1, "", "WORLD_PIN"], [32, 3, 1, "", "WORLD_PLUS"], [32, 3, 1, "", "WORLD_QUESTION"], [32, 3, 1, "", "WORLD_SEARCH"], [32, 3, 1, "", "WORLD_SHARE"], [32, 3, 1, "", "WORLD_STAR"], [32, 3, 1, "", "WORLD_UP"], [32, 3, 1, "", "WORLD_UPLOAD"], [32, 3, 1, "", "WORLD_WWW"], [32, 3, 1, "", "WORLD_X"], [32, 3, 1, "", "WRECKING_BALL"], [32, 3, 1, "", "WRITING"], [32, 3, 1, "", "WRITING_OFF"], [32, 3, 1, "", "WRITING_SIGN"], [32, 3, 1, "", "WRITING_SIGN_OFF"], [32, 3, 1, "", "X"], [32, 3, 1, "", "XBOX_A"], [32, 3, 1, "", "XBOX_B"], [32, 3, 1, "", "XBOX_X"], [32, 3, 1, "", "XBOX_Y"], [32, 3, 1, "", "XD"], [32, 3, 1, "", "YIN_YANG"], [32, 3, 1, "", "YIN_YANG_FILLED"], [32, 3, 1, "", "YOGA"], [32, 3, 1, "", "ZEPPELIN"], [32, 3, 1, "", "ZEPPELIN_OFF"], [32, 3, 1, "", "ZIP"], [32, 3, 1, "", "ZODIAC_AQUARIUS"], [32, 3, 1, "", "ZODIAC_ARIES"], [32, 3, 1, "", "ZODIAC_CANCER"], [32, 3, 1, "", "ZODIAC_CAPRICORN"], [32, 3, 1, "", "ZODIAC_GEMINI"], [32, 3, 1, "", "ZODIAC_LEO"], [32, 3, 1, "", "ZODIAC_LIBRA"], [32, 3, 1, "", "ZODIAC_PISCES"], [32, 3, 1, "", "ZODIAC_SAGITTARIUS"], [32, 3, 1, "", "ZODIAC_SCORPIO"], [32, 3, 1, "", "ZODIAC_TAURUS"], [32, 3, 1, "", "ZODIAC_VIRGO"], [32, 3, 1, "", "ZOOM_CANCEL"], [32, 3, 1, "", "ZOOM_CHECK"], [32, 3, 1, "", "ZOOM_CHECK_FILLED"], [32, 3, 1, "", "ZOOM_CODE"], [32, 3, 1, "", "ZOOM_EXCLAMATION"], [32, 3, 1, "", "ZOOM_FILLED"], [32, 3, 1, "", "ZOOM_IN"], [32, 3, 1, "", "ZOOM_IN_AREA"], [32, 3, 1, "", "ZOOM_IN_AREA_FILLED"], [32, 3, 1, "", "ZOOM_IN_FILLED"], [32, 3, 1, "", "ZOOM_MONEY"], [32, 3, 1, "", "ZOOM_OUT"], [32, 3, 1, "", "ZOOM_OUT_AREA"], [32, 3, 1, "", "ZOOM_OUT_FILLED"], [32, 3, 1, "", "ZOOM_PAN"], [32, 3, 1, "", "ZOOM_QUESTION"], [32, 3, 1, "", "ZOOM_REPLACE"], [32, 3, 1, "", "ZOOM_RESET"], [32, 3, 1, "", "ZZZ"], [32, 3, 1, "", "ZZZ_OFF"]], "viser.IconName": [[32, 1, 1, "", "__new__"]], "viser.ImageHandle": [[36, 1, 1, "", "on_click"], [36, 2, 1, "", "position"], [36, 1, 1, "", "remove"], [36, 2, 1, "", "visible"], [36, 2, 1, "", "wxyz"]], "viser.LabelHandle": [[36, 2, 1, "", "position"], [36, 1, 1, "", "remove"], [36, 2, 1, "", "visible"], [36, 2, 1, "", "wxyz"]], "viser.MeshHandle": [[36, 1, 1, "", "on_click"], [36, 2, 1, "", "position"], [36, 1, 1, "", "remove"], [36, 2, 1, "", "visible"], [36, 2, 1, "", "wxyz"]], "viser.PointCloudHandle": [[36, 2, 1, "", "position"], [36, 1, 1, "", "remove"], [36, 2, 1, "", "visible"], [36, 2, 1, "", "wxyz"]], "viser.SceneApi": [[35, 1, 1, "", "add_3d_gui_container"], [35, 1, 1, "", "add_batched_axes"], [35, 1, 1, "", "add_box"], [35, 1, 1, "", "add_camera_frustum"], [35, 1, 1, "", "add_frame"], [35, 1, 1, "", "add_glb"], [35, 1, 1, "", "add_grid"], [35, 1, 1, "", "add_icosphere"], [35, 1, 1, "", "add_image"], [35, 1, 1, "", "add_label"], [35, 1, 1, "", "add_mesh_simple"], [35, 1, 1, "", "add_mesh_trimesh"], [35, 1, 1, "", "add_point_cloud"], [35, 1, 1, "", "add_spline_catmull_rom"], [35, 1, 1, "", "add_spline_cubic_bezier"], [35, 1, 1, "", "add_transform_controls"], [35, 1, 1, "", "on_pointer_callback_removed"], [35, 1, 1, "", "on_pointer_event"], [35, 1, 1, "", "remove_pointer_callback"], [35, 1, 1, "", "reset"], [35, 1, 1, "", "set_background_image"], [35, 1, 1, "", "set_global_visibility"], [35, 1, 1, "", "set_up_direction"], [35, 3, 1, "", "world_axes"]], "viser.SceneNodeHandle": [[36, 2, 1, "", "position"], [36, 1, 1, "", "remove"], [36, 2, 1, "", "visible"], [36, 2, 1, "", "wxyz"]], "viser.SceneNodePointerEvent": [[4, 3, 1, "", "client"], [4, 3, 1, "", "client_id"], [4, 3, 1, "", "event"], [4, 3, 1, "", "ray_direction"], [4, 3, 1, "", "ray_origin"], [4, 3, 1, "", "target"]], "viser.ScenePointerEvent": [[4, 3, 1, "", "client"], [4, 3, 1, "", "client_id"], [4, 2, 1, "", "event"], [4, 3, 1, "", "event_type"], [4, 3, 1, "", "ray_direction"], [4, 3, 1, "", "ray_origin"], [4, 3, 1, "", "screen_pos"]], "viser.TransformControlsHandle": [[36, 1, 1, "", "on_click"], [36, 1, 1, "", "on_update"], [36, 2, 1, "", "position"], [36, 1, 1, "", "remove"], [36, 2, 1, "", "update_timestamp"], [36, 2, 1, "", "visible"], [36, 2, 1, "", "wxyz"]], "viser.ViserServer": [[37, 1, 1, "", "atomic"], [37, 1, 1, "", "disconnect_share_url"], [37, 1, 1, "", "flush"], [37, 1, 1, "", "get_clients"], [37, 1, 1, "", "get_host"], [37, 1, 1, "", "get_port"], [37, 3, 1, "", "gui"], [37, 1, 1, "", "on_client_connect"], [37, 1, 1, "", "on_client_disconnect"], [37, 1, 1, "", "request_share_url"], [37, 3, 1, "", "scene"], [37, 1, 1, "", "send_file_download"], [37, 1, 1, "", "stop"]], "viser.extras": [[29, 0, 1, "", "Record3dFrame"], [29, 0, 1, "", "Record3dLoader"], [29, 0, 1, "", "ViserUrdf"]], "viser.extras.Record3dFrame": [[29, 3, 1, "", "K"], [29, 3, 1, "", "T_world_camera"], [29, 3, 1, "", "depth"], [29, 1, 1, "", "get_point_cloud"], [29, 3, 1, "", "mask"], [29, 3, 1, "", "rgb"]], "viser.extras.Record3dLoader": [[29, 1, 1, "", "get_frame"], [29, 1, 1, "", "num_frames"]], "viser.extras.ViserUrdf": [[29, 1, 1, "", "get_actuated_joint_limits"], [29, 1, 1, "", "get_actuated_joint_names"], [29, 1, 1, "", "update_cfg"]], "viser.infra": [[34, 0, 1, "", "Message"], [34, 0, 1, "", "TypeScriptAnnotationOverride"], [34, 0, 1, "", "WebsockClientConnection"], [34, 0, 1, "", "WebsockMessageHandler"], [34, 0, 1, "", "WebsockServer"], [34, 5, 1, "", "generate_typescript_interfaces"]], "viser.infra.Message": [[34, 1, 1, "", "as_serializable_dict"], [34, 1, 1, "", "deserialize"], [34, 3, 1, "", "excluded_self_client"], [34, 1, 1, "", "get_subclasses"], [34, 1, 1, "", "redundancy_key"]], "viser.infra.TypeScriptAnnotationOverride": [[34, 3, 1, "", "annotation"]], "viser.infra.WebsockClientConnection": [[34, 1, 1, "", "atomic"], [34, 1, 1, "", "queue_message"], [34, 1, 1, "", "register_handler"], [34, 1, 1, "", "unregister_handler"], [34, 1, 1, "", "unsafe_send_message"]], "viser.infra.WebsockMessageHandler": [[34, 1, 1, "", "atomic"], [34, 1, 1, "", "queue_message"], [34, 1, 1, "", "register_handler"], [34, 1, 1, "", "unregister_handler"], [34, 1, 1, "", "unsafe_send_message"]], "viser.infra.WebsockServer": [[34, 1, 1, "", "atomic"], [34, 1, 1, "", "flush"], [34, 1, 1, "", "flush_client"], [34, 1, 1, "", "on_client_connect"], [34, 1, 1, "", "on_client_disconnect"], [34, 1, 1, "", "queue_message"], [34, 1, 1, "", "register_handler"], [34, 1, 1, "", "start"], [34, 1, 1, "", "stop"], [34, 1, 1, "", "unregister_handler"], [34, 1, 1, "", "unsafe_send_message"]], "viser.transforms": [[38, 0, 1, "", "MatrixLieGroup"], [38, 0, 1, "", "SE2"], [38, 0, 1, "", "SE3"], [38, 0, 1, "", "SEBase"], [38, 0, 1, "", "SO2"], [38, 0, 1, "", "SO3"], [38, 0, 1, "", "SOBase"]], "viser.transforms.MatrixLieGroup": [[38, 1, 1, "", "__matmul__"], [38, 1, 1, "", "adjoint"], [38, 1, 1, "", "apply"], [38, 1, 1, "", "as_matrix"], [38, 1, 1, "", "exp"], [38, 1, 1, "", "from_matrix"], [38, 1, 1, "", "get_batch_axes"], [38, 1, 1, "", "identity"], [38, 1, 1, "", "inverse"], [38, 1, 1, "", "log"], [38, 3, 1, "", "matrix_dim"], [38, 1, 1, "", "multiply"], [38, 1, 1, "", "normalize"], [38, 1, 1, "", "parameters"], [38, 3, 1, "", "parameters_dim"], [38, 3, 1, "", "space_dim"], [38, 3, 1, "", "tangent_dim"]], "viser.transforms.SE2": [[38, 1, 1, "", "__matmul__"], [38, 1, 1, "", "adjoint"], [38, 1, 1, "", "apply"], [38, 1, 1, "", "as_matrix"], [38, 1, 1, "", "exp"], [38, 1, 1, "", "from_matrix"], [38, 1, 1, "", "from_rotation"], [38, 1, 1, "", "from_rotation_and_translation"], [38, 1, 1, "", "from_translation"], [38, 1, 1, "", "from_xy_theta"], [38, 1, 1, "", "get_batch_axes"], [38, 1, 1, "", "identity"], [38, 1, 1, "", "inverse"], [38, 1, 1, "", "log"], [38, 3, 1, "", "matrix_dim"], [38, 1, 1, "", "multiply"], [38, 1, 1, "", "normalize"], [38, 1, 1, "", "parameters"], [38, 3, 1, "", "parameters_dim"], [38, 1, 1, "", "rotation"], [38, 3, 1, "", "space_dim"], [38, 3, 1, "", "tangent_dim"], [38, 1, 1, "", "translation"], [38, 3, 1, "", "unit_complex_xy"]], "viser.transforms.SE3": [[38, 1, 1, "", "__matmul__"], [38, 1, 1, "", "adjoint"], [38, 1, 1, "", "apply"], [38, 1, 1, "", "as_matrix"], [38, 1, 1, "", "exp"], [38, 1, 1, "", "from_matrix"], [38, 1, 1, "", "from_rotation"], [38, 1, 1, "", "from_rotation_and_translation"], [38, 1, 1, "", "from_translation"], [38, 1, 1, "", "get_batch_axes"], [38, 1, 1, "", "identity"], [38, 1, 1, "", "inverse"], [38, 1, 1, "", "log"], [38, 3, 1, "", "matrix_dim"], [38, 1, 1, "", "multiply"], [38, 1, 1, "", "normalize"], [38, 1, 1, "", "parameters"], [38, 3, 1, "", "parameters_dim"], [38, 1, 1, "", "rotation"], [38, 3, 1, "", "space_dim"], [38, 3, 1, "", "tangent_dim"], [38, 1, 1, "", "translation"], [38, 3, 1, "", "wxyz_xyz"]], "viser.transforms.SEBase": [[38, 1, 1, "", "__matmul__"], [38, 1, 1, "", "adjoint"], [38, 1, 1, "", "apply"], [38, 1, 1, "", "as_matrix"], [38, 1, 1, "", "exp"], [38, 1, 1, "", "from_matrix"], [38, 1, 1, "", "from_rotation"], [38, 1, 1, "", "from_rotation_and_translation"], [38, 1, 1, "", "from_translation"], [38, 1, 1, "", "get_batch_axes"], [38, 1, 1, "", "identity"], [38, 1, 1, "", "inverse"], [38, 1, 1, "", "log"], [38, 3, 1, "", "matrix_dim"], [38, 1, 1, "", "multiply"], [38, 1, 1, "", "normalize"], [38, 1, 1, "", "parameters"], [38, 3, 1, "", "parameters_dim"], [38, 1, 1, "", "rotation"], [38, 3, 1, "", "space_dim"], [38, 3, 1, "", "tangent_dim"], [38, 1, 1, "", "translation"]], "viser.transforms.SO2": [[38, 1, 1, "", "__matmul__"], [38, 1, 1, "", "adjoint"], [38, 1, 1, "", "apply"], [38, 1, 1, "", "as_matrix"], [38, 1, 1, "", "as_radians"], [38, 1, 1, "", "exp"], [38, 1, 1, "", "from_matrix"], [38, 1, 1, "", "from_radians"], [38, 1, 1, "", "get_batch_axes"], [38, 1, 1, "", "identity"], [38, 1, 1, "", "inverse"], [38, 1, 1, "", "log"], [38, 3, 1, "", "matrix_dim"], [38, 1, 1, "", "multiply"], [38, 1, 1, "", "normalize"], [38, 1, 1, "", "parameters"], [38, 3, 1, "", "parameters_dim"], [38, 3, 1, "", "space_dim"], [38, 3, 1, "", "tangent_dim"], [38, 3, 1, "", "unit_complex"]], "viser.transforms.SO3": [[38, 1, 1, "", "__matmul__"], [38, 1, 1, "", "adjoint"], [38, 1, 1, "", "apply"], [38, 1, 1, "", "as_matrix"], [38, 1, 1, "", "as_quaternion_xyzw"], [38, 1, 1, "", "as_rpy_radians"], [38, 1, 1, "", "compute_pitch_radians"], [38, 1, 1, "", "compute_roll_radians"], [38, 1, 1, "", "compute_yaw_radians"], [38, 1, 1, "", "exp"], [38, 1, 1, "", "from_matrix"], [38, 1, 1, "", "from_quaternion_xyzw"], [38, 1, 1, "", "from_rpy_radians"], [38, 1, 1, "", "from_x_radians"], [38, 1, 1, "", "from_y_radians"], [38, 1, 1, "", "from_z_radians"], [38, 1, 1, "", "get_batch_axes"], [38, 1, 1, "", "identity"], [38, 1, 1, "", "inverse"], [38, 1, 1, "", "log"], [38, 3, 1, "", "matrix_dim"], [38, 1, 1, "", "multiply"], [38, 1, 1, "", "normalize"], [38, 1, 1, "", "parameters"], [38, 3, 1, "", "parameters_dim"], [38, 3, 1, "", "space_dim"], [38, 3, 1, "", "tangent_dim"], [38, 3, 1, "", "wxyz"]], "viser.transforms.SOBase": [[38, 1, 1, "", "__matmul__"], [38, 1, 1, "", "adjoint"], [38, 1, 1, "", "apply"], [38, 1, 1, "", "as_matrix"], [38, 1, 1, "", "exp"], [38, 1, 1, "", "from_matrix"], [38, 1, 1, "", "get_batch_axes"], [38, 1, 1, "", "identity"], [38, 1, 1, "", "inverse"], [38, 1, 1, "", "log"], [38, 3, 1, "", "matrix_dim"], [38, 1, 1, "", "multiply"], [38, 1, 1, "", "normalize"], [38, 1, 1, "", "parameters"], [38, 3, 1, "", "parameters_dim"], [38, 3, 1, "", "space_dim"], [38, 3, 1, "", "tangent_dim"]]}, "objtypes": {"0": "py:class", "1": "py:method", "2": "py:property", "3": "py:attribute", "4": "py:module", "5": "py:function"}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "method", "Python method"], "2": ["py", "property", "Python property"], "3": ["py", "attribute", "Python attribute"], "4": ["py", "module", "Python module"], "5": ["py", "function", "Python function"]}, "titleterms": {"camera": [0, 2, 9, 10], "handl": [0, 1, 31, 36], "client": [1, 3], "frame": [2, 5], "convent": 2, "scene": [2, 25, 35, 36], "tree": 2, "name": 2, "pose": [2, 9], "world": 2, "coordin": [2, 5], "develop": 3, "python": 3, "instal": [3, 33], "messag": 3, "updat": 3, "event": [4, 17, 25], "imag": 6, "gui": [7, 8, 20, 30, 31], "basic": [7, 21], "callback": 8, "command": 10, "mesh": [11, 17], "record3d": [12, 29], "visual": [12, 13, 14, 15, 16], "smpl": 13, "model": 13, "robot": 14, "urdf": [14, 29], "realsens": 15, "colmap": 16, "click": 17, "theme": 18, "markdown": 19, "demonstr": 19, "3d": 20, "element": 20, "modal": 21, "depth": 22, "composit": 22, "spline": 23, "get": 24, "render": 24, "pointer": 25, "set": 26, "up": 26, "direct": 26, "game": 27, "plotli": 28, "helper": 29, "api": [30, 35], "icon": 32, "viser": [33, 37], "commun": 34, "server": 37, "transform": 38}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1, "sphinx": 60}, "alltitles": {"Camera Handles": [[0, "camera-handles"]], "Client Handles": [[1, "client-handles"]], "Frame Conventions": [[2, "frame-conventions"]], "Scene tree naming": [[2, "scene-tree-naming"]], "Poses": [[2, "poses"]], "World coordinates": [[2, "world-coordinates"]], "Cameras": [[2, "cameras"]], "Development": [[3, "development"]], "Python install": [[3, "python-install"]], "Message updates": [[3, "message-updates"]], "Client development": [[3, "client-development"]], "Events": [[4, "events"]], "Coordinate frames": [[5, "coordinate-frames"]], "Images": [[6, "images"]], "GUI basics": [[7, "gui-basics"]], "GUI callbacks": [[8, "gui-callbacks"]], "Camera poses": [[9, "camera-poses"]], "Camera commands": [[10, "camera-commands"]], "Meshes": [[11, "meshes"]], "Record3D visualizer": [[12, "record3d-visualizer"]], "SMPL model visualizer": [[13, "smpl-model-visualizer"]], "Robot URDF visualizer": [[14, "robot-urdf-visualizer"]], "RealSense visualizer": [[15, "realsense-visualizer"]], "COLMAP visualizer": [[16, "colmap-visualizer"]], "Mesh click events": [[17, "mesh-click-events"]], "Theming": [[18, "theming"]], "Markdown Demonstration": [[19, "markdown-demonstration"]], "3D GUI Elements": [[20, "d-gui-elements"]], "Modal basics": [[21, "modal-basics"]], "Depth compositing": [[22, "depth-compositing"]], "Splines": [[23, "splines"]], "Get Renders": [[24, "get-renders"]], "Scene pointer events.": [[25, "scene-pointer-events"]], "Set Up Direction": [[26, "set-up-direction"]], "Games": [[27, "games"]], "Plotly.": [[28, "plotly"]], "Record3D + URDF Helpers": [[29, "record3d-urdf-helpers"]], "GUI API": [[30, "gui-api"]], "GUI Handles": [[31, "gui-handles"]], "Icons": [[32, "icons"]], "viser": [[33, "viser"]], "Installation": [[33, "installation"]], "Communication": [[34, "communication"]], "Scene API": [[35, "scene-api"]], "Scene Handles": [[36, "scene-handles"]], "Viser Server": [[37, "viser-server"]], "Transforms": [[38, "transforms"]]}, "indexentries": {"camerahandle (class in viser)": [[0, "viser.CameraHandle"]], "aspect (viser.camerahandle property)": [[0, "viser.CameraHandle.aspect"]], "client (viser.camerahandle property)": [[0, "viser.CameraHandle.client"]], "fov (viser.camerahandle property)": [[0, "viser.CameraHandle.fov"]], "get_render() (viser.camerahandle method)": [[0, "viser.CameraHandle.get_render"]], "look_at (viser.camerahandle property)": [[0, "viser.CameraHandle.look_at"]], "on_update() (viser.camerahandle method)": [[0, "viser.CameraHandle.on_update"]], "position (viser.camerahandle property)": [[0, "viser.CameraHandle.position"]], "up_direction (viser.camerahandle property)": [[0, "viser.CameraHandle.up_direction"]], "update_timestamp (viser.camerahandle property)": [[0, "viser.CameraHandle.update_timestamp"]], "wxyz (viser.camerahandle property)": [[0, "viser.CameraHandle.wxyz"]], "clienthandle (class in viser)": [[1, "viser.ClientHandle"]], "atomic() (viser.clienthandle method)": [[1, "viser.ClientHandle.atomic"]], "camera (viser.clienthandle attribute)": [[1, "viser.ClientHandle.camera"]], "client_id (viser.clienthandle attribute)": [[1, "viser.ClientHandle.client_id"]], "flush() (viser.clienthandle method)": [[1, "viser.ClientHandle.flush"]], "gui (viser.clienthandle attribute)": [[1, "viser.ClientHandle.gui"]], "scene (viser.clienthandle attribute)": [[1, "viser.ClientHandle.scene"]], "send_file_download() (viser.clienthandle method)": [[1, "viser.ClientHandle.send_file_download"]], "guievent (class in viser)": [[4, "viser.GuiEvent"]], "scenenodepointerevent (class in viser)": [[4, "viser.SceneNodePointerEvent"]], "scenepointerevent (class in viser)": [[4, "viser.ScenePointerEvent"]], "client (viser.guievent attribute)": [[4, "viser.GuiEvent.client"]], "client (viser.scenenodepointerevent attribute)": [[4, "viser.SceneNodePointerEvent.client"]], "client (viser.scenepointerevent attribute)": [[4, "viser.ScenePointerEvent.client"]], "client_id (viser.guievent attribute)": [[4, "viser.GuiEvent.client_id"]], "client_id (viser.scenenodepointerevent attribute)": [[4, "viser.SceneNodePointerEvent.client_id"]], "client_id (viser.scenepointerevent attribute)": [[4, "viser.ScenePointerEvent.client_id"]], "event (viser.scenenodepointerevent attribute)": [[4, "viser.SceneNodePointerEvent.event"]], "event (viser.scenepointerevent property)": [[4, "viser.ScenePointerEvent.event"]], "event_type (viser.scenepointerevent attribute)": [[4, "viser.ScenePointerEvent.event_type"]], "ray_direction (viser.scenenodepointerevent attribute)": [[4, "viser.SceneNodePointerEvent.ray_direction"]], "ray_direction (viser.scenepointerevent attribute)": [[4, "viser.ScenePointerEvent.ray_direction"]], "ray_origin (viser.scenenodepointerevent attribute)": [[4, "viser.SceneNodePointerEvent.ray_origin"]], "ray_origin (viser.scenepointerevent attribute)": [[4, "viser.ScenePointerEvent.ray_origin"]], "screen_pos (viser.scenepointerevent attribute)": [[4, "viser.ScenePointerEvent.screen_pos"]], "target (viser.guievent attribute)": [[4, "viser.GuiEvent.target"]], "target (viser.scenenodepointerevent attribute)": [[4, "viser.SceneNodePointerEvent.target"]], "k (viser.extras.record3dframe attribute)": [[29, "viser.extras.Record3dFrame.K"]], "record3dframe (class in viser.extras)": [[29, "viser.extras.Record3dFrame"]], "record3dloader (class in viser.extras)": [[29, "viser.extras.Record3dLoader"]], "t_world_camera (viser.extras.record3dframe attribute)": [[29, "viser.extras.Record3dFrame.T_world_camera"]], "viserurdf (class in viser.extras)": [[29, "viser.extras.ViserUrdf"]], "depth (viser.extras.record3dframe attribute)": [[29, "viser.extras.Record3dFrame.depth"]], "get_actuated_joint_limits() (viser.extras.viserurdf method)": [[29, "viser.extras.ViserUrdf.get_actuated_joint_limits"]], "get_actuated_joint_names() (viser.extras.viserurdf method)": [[29, "viser.extras.ViserUrdf.get_actuated_joint_names"]], "get_frame() (viser.extras.record3dloader method)": [[29, "viser.extras.Record3dLoader.get_frame"]], "get_point_cloud() (viser.extras.record3dframe method)": [[29, "viser.extras.Record3dFrame.get_point_cloud"]], "mask (viser.extras.record3dframe attribute)": [[29, "viser.extras.Record3dFrame.mask"]], "module": [[29, "module-viser.extras"], [34, "module-viser.infra"], [38, "module-viser.transforms"]], "num_frames() (viser.extras.record3dloader method)": [[29, "viser.extras.Record3dLoader.num_frames"]], "rgb (viser.extras.record3dframe attribute)": [[29, "viser.extras.Record3dFrame.rgb"]], "update_cfg() (viser.extras.viserurdf method)": [[29, "viser.extras.ViserUrdf.update_cfg"]], "viser.extras": [[29, "module-viser.extras"]], "guiapi (class in viser)": [[30, "viser.GuiApi"]], "add_button() (viser.guiapi method)": [[30, "viser.GuiApi.add_button"]], "add_button_group() (viser.guiapi method)": [[30, "viser.GuiApi.add_button_group"]], "add_checkbox() (viser.guiapi method)": [[30, "viser.GuiApi.add_checkbox"]], "add_dropdown() (viser.guiapi method)": [[30, "viser.GuiApi.add_dropdown"]], "add_folder() (viser.guiapi method)": [[30, "viser.GuiApi.add_folder"]], "add_markdown() (viser.guiapi method)": [[30, "viser.GuiApi.add_markdown"]], "add_modal() (viser.guiapi method)": [[30, "viser.GuiApi.add_modal"]], "add_multi_slider() (viser.guiapi method)": [[30, "viser.GuiApi.add_multi_slider"]], "add_number() (viser.guiapi method)": [[30, "viser.GuiApi.add_number"]], "add_plotly() (viser.guiapi method)": [[30, "viser.GuiApi.add_plotly"]], "add_rgb() (viser.guiapi method)": [[30, "viser.GuiApi.add_rgb"]], "add_rgba() (viser.guiapi method)": [[30, "viser.GuiApi.add_rgba"]], "add_slider() (viser.guiapi method)": [[30, "viser.GuiApi.add_slider"]], "add_tab_group() (viser.guiapi method)": [[30, "viser.GuiApi.add_tab_group"]], "add_text() (viser.guiapi method)": [[30, "viser.GuiApi.add_text"]], "add_upload_button() (viser.guiapi method)": [[30, "viser.GuiApi.add_upload_button"]], "add_vector2() (viser.guiapi method)": [[30, "viser.GuiApi.add_vector2"]], "add_vector3() (viser.guiapi method)": [[30, "viser.GuiApi.add_vector3"]], "configure_theme() (viser.guiapi method)": [[30, "viser.GuiApi.configure_theme"]], "set_panel_label() (viser.guiapi method)": [[30, "viser.GuiApi.set_panel_label"]], "guibuttongrouphandle (class in viser)": [[31, "viser.GuiButtonGroupHandle"]], "guibuttonhandle (class in viser)": [[31, "viser.GuiButtonHandle"]], "guidropdownhandle (class in viser)": [[31, "viser.GuiDropdownHandle"]], "guifolderhandle (class in viser)": [[31, "viser.GuiFolderHandle"]], "guiinputhandle (class in viser)": [[31, "viser.GuiInputHandle"]], "guimarkdownhandle (class in viser)": [[31, "viser.GuiMarkdownHandle"]], "guiplotlyhandle (class in viser)": [[31, "viser.GuiPlotlyHandle"]], "guitabgrouphandle (class in viser)": [[31, "viser.GuiTabGroupHandle"]], "guitabhandle (class in viser)": [[31, "viser.GuiTabHandle"]], "__post_init__() (viser.guibuttongrouphandle method)": [[31, "viser.GuiButtonGroupHandle.__post_init__"]], "__post_init__() (viser.guibuttonhandle method)": [[31, "viser.GuiButtonHandle.__post_init__"]], "__post_init__() (viser.guidropdownhandle method)": [[31, "viser.GuiDropdownHandle.__post_init__"]], "__post_init__() (viser.guiinputhandle method)": [[31, "viser.GuiInputHandle.__post_init__"]], "__post_init__() (viser.guimarkdownhandle method)": [[31, "viser.GuiMarkdownHandle.__post_init__"]], "__post_init__() (viser.guiplotlyhandle method)": [[31, "viser.GuiPlotlyHandle.__post_init__"]], "add_tab() (viser.guitabgrouphandle method)": [[31, "viser.GuiTabGroupHandle.add_tab"]], "aspect (viser.guiplotlyhandle property)": [[31, "viser.GuiPlotlyHandle.aspect"]], "content (viser.guimarkdownhandle property)": [[31, "viser.GuiMarkdownHandle.content"]], "disabled (viser.guibuttongrouphandle property)": [[31, "viser.GuiButtonGroupHandle.disabled"]], "disabled (viser.guibuttonhandle property)": [[31, "viser.GuiButtonHandle.disabled"]], "disabled (viser.guidropdownhandle property)": [[31, "viser.GuiDropdownHandle.disabled"]], "disabled (viser.guiinputhandle property)": [[31, "viser.GuiInputHandle.disabled"]], "figure (viser.guiplotlyhandle property)": [[31, "viser.GuiPlotlyHandle.figure"]], "on_click() (viser.guibuttongrouphandle method)": [[31, "viser.GuiButtonGroupHandle.on_click"]], "on_click() (viser.guibuttonhandle method)": [[31, "viser.GuiButtonHandle.on_click"]], "on_update() (viser.guidropdownhandle method)": [[31, "viser.GuiDropdownHandle.on_update"]], "on_update() (viser.guiinputhandle method)": [[31, "viser.GuiInputHandle.on_update"]], "options (viser.guidropdownhandle property)": [[31, "viser.GuiDropdownHandle.options"]], "order (viser.guibuttongrouphandle property)": [[31, "viser.GuiButtonGroupHandle.order"]], "order (viser.guibuttonhandle property)": [[31, "viser.GuiButtonHandle.order"]], "order (viser.guidropdownhandle property)": [[31, "viser.GuiDropdownHandle.order"]], "order (viser.guifolderhandle property)": [[31, "viser.GuiFolderHandle.order"]], "order (viser.guiinputhandle property)": [[31, "viser.GuiInputHandle.order"]], "order (viser.guimarkdownhandle property)": [[31, "viser.GuiMarkdownHandle.order"]], "order (viser.guiplotlyhandle property)": [[31, "viser.GuiPlotlyHandle.order"]], "order (viser.guitabgrouphandle property)": [[31, "viser.GuiTabGroupHandle.order"]], "remove() (viser.guibuttongrouphandle method)": [[31, "viser.GuiButtonGroupHandle.remove"]], "remove() (viser.guibuttonhandle method)": [[31, "viser.GuiButtonHandle.remove"]], "remove() (viser.guidropdownhandle method)": [[31, "viser.GuiDropdownHandle.remove"]], "remove() (viser.guifolderhandle method)": [[31, "viser.GuiFolderHandle.remove"]], "remove() (viser.guiinputhandle method)": [[31, "viser.GuiInputHandle.remove"]], "remove() (viser.guimarkdownhandle method)": [[31, "viser.GuiMarkdownHandle.remove"]], "remove() (viser.guiplotlyhandle method)": [[31, "viser.GuiPlotlyHandle.remove"]], "remove() (viser.guitabgrouphandle method)": [[31, "viser.GuiTabGroupHandle.remove"]], "remove() (viser.guitabhandle method)": [[31, "viser.GuiTabHandle.remove"]], "update_timestamp (viser.guibuttongrouphandle property)": [[31, "viser.GuiButtonGroupHandle.update_timestamp"]], "update_timestamp (viser.guibuttonhandle property)": [[31, "viser.GuiButtonHandle.update_timestamp"]], "update_timestamp (viser.guidropdownhandle property)": [[31, "viser.GuiDropdownHandle.update_timestamp"]], "update_timestamp (viser.guiinputhandle property)": [[31, "viser.GuiInputHandle.update_timestamp"]], "value (viser.guibuttongrouphandle property)": [[31, "viser.GuiButtonGroupHandle.value"]], "value (viser.guibuttonhandle property)": [[31, "viser.GuiButtonHandle.value"]], "value (viser.guidropdownhandle property)": [[31, "viser.GuiDropdownHandle.value"]], "value (viser.guiinputhandle property)": [[31, "viser.GuiInputHandle.value"]], "visible (viser.guibuttongrouphandle property)": [[31, "viser.GuiButtonGroupHandle.visible"]], "visible (viser.guibuttonhandle property)": [[31, "viser.GuiButtonHandle.visible"]], "visible (viser.guidropdownhandle property)": [[31, "viser.GuiDropdownHandle.visible"]], "visible (viser.guiinputhandle property)": [[31, "viser.GuiInputHandle.visible"]], "visible (viser.guimarkdownhandle property)": [[31, "viser.GuiMarkdownHandle.visible"]], "visible (viser.guiplotlyhandle property)": [[31, "viser.GuiPlotlyHandle.visible"]], "abacus (viser.icon attribute)": [[32, "viser.Icon.ABACUS"]], "abacus_off (viser.icon attribute)": [[32, "viser.Icon.ABACUS_OFF"]], "abc (viser.icon attribute)": [[32, "viser.Icon.ABC"]], "accessible (viser.icon attribute)": [[32, "viser.Icon.ACCESSIBLE"]], "accessible_off (viser.icon attribute)": [[32, "viser.Icon.ACCESSIBLE_OFF"]], "accessible_off_filled (viser.icon attribute)": [[32, "viser.Icon.ACCESSIBLE_OFF_FILLED"]], "access_point (viser.icon attribute)": [[32, "viser.Icon.ACCESS_POINT"]], "access_point_off (viser.icon attribute)": [[32, "viser.Icon.ACCESS_POINT_OFF"]], "activity (viser.icon attribute)": [[32, "viser.Icon.ACTIVITY"]], "activity_heartbeat (viser.icon attribute)": [[32, "viser.Icon.ACTIVITY_HEARTBEAT"]], "ad (viser.icon attribute)": [[32, "viser.Icon.AD"]], "address_book (viser.icon attribute)": [[32, "viser.Icon.ADDRESS_BOOK"]], "address_book_off (viser.icon attribute)": [[32, "viser.Icon.ADDRESS_BOOK_OFF"]], "adjustments (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS"]], "adjustments_alt (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_ALT"]], "adjustments_bolt (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_BOLT"]], "adjustments_cancel (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_CANCEL"]], "adjustments_check (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_CHECK"]], "adjustments_code (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_CODE"]], "adjustments_cog (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_COG"]], "adjustments_dollar (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_DOLLAR"]], "adjustments_down (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_DOWN"]], "adjustments_exclamation (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_EXCLAMATION"]], "adjustments_filled (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_FILLED"]], "adjustments_heart (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_HEART"]], "adjustments_horizontal (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_HORIZONTAL"]], "adjustments_minus (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_MINUS"]], "adjustments_off (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_OFF"]], "adjustments_pause (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_PAUSE"]], "adjustments_pin (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_PIN"]], "adjustments_plus (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_PLUS"]], "adjustments_question (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_QUESTION"]], "adjustments_search (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_SEARCH"]], "adjustments_share (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_SHARE"]], "adjustments_star (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_STAR"]], "adjustments_up (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_UP"]], "adjustments_x (viser.icon attribute)": [[32, "viser.Icon.ADJUSTMENTS_X"]], "ad_2 (viser.icon attribute)": [[32, "viser.Icon.AD_2"]], "ad_circle (viser.icon attribute)": [[32, "viser.Icon.AD_CIRCLE"]], "ad_circle_filled (viser.icon attribute)": [[32, "viser.Icon.AD_CIRCLE_FILLED"]], "ad_circle_off (viser.icon attribute)": [[32, "viser.Icon.AD_CIRCLE_OFF"]], "ad_filled (viser.icon attribute)": [[32, "viser.Icon.AD_FILLED"]], "ad_off (viser.icon attribute)": [[32, "viser.Icon.AD_OFF"]], "aerial_lift (viser.icon attribute)": [[32, "viser.Icon.AERIAL_LIFT"]], "affiliate (viser.icon attribute)": [[32, "viser.Icon.AFFILIATE"]], "affiliate_filled (viser.icon attribute)": [[32, "viser.Icon.AFFILIATE_FILLED"]], "air_balloon (viser.icon attribute)": [[32, "viser.Icon.AIR_BALLOON"]], "air_conditioning (viser.icon attribute)": [[32, "viser.Icon.AIR_CONDITIONING"]], "air_conditioning_disabled (viser.icon attribute)": [[32, "viser.Icon.AIR_CONDITIONING_DISABLED"]], "alarm (viser.icon attribute)": [[32, "viser.Icon.ALARM"]], "alarm_filled (viser.icon attribute)": [[32, "viser.Icon.ALARM_FILLED"]], "alarm_minus (viser.icon attribute)": [[32, "viser.Icon.ALARM_MINUS"]], "alarm_minus_filled (viser.icon attribute)": [[32, "viser.Icon.ALARM_MINUS_FILLED"]], "alarm_off (viser.icon attribute)": [[32, "viser.Icon.ALARM_OFF"]], "alarm_plus (viser.icon attribute)": [[32, "viser.Icon.ALARM_PLUS"]], "alarm_plus_filled (viser.icon attribute)": [[32, "viser.Icon.ALARM_PLUS_FILLED"]], "alarm_snooze (viser.icon attribute)": [[32, "viser.Icon.ALARM_SNOOZE"]], "alarm_snooze_filled (viser.icon attribute)": [[32, "viser.Icon.ALARM_SNOOZE_FILLED"]], "album (viser.icon attribute)": [[32, "viser.Icon.ALBUM"]], "album_off (viser.icon attribute)": [[32, "viser.Icon.ALBUM_OFF"]], "alert_circle (viser.icon attribute)": [[32, "viser.Icon.ALERT_CIRCLE"]], "alert_circle_filled (viser.icon attribute)": [[32, "viser.Icon.ALERT_CIRCLE_FILLED"]], "alert_hexagon (viser.icon attribute)": [[32, "viser.Icon.ALERT_HEXAGON"]], "alert_hexagon_filled (viser.icon attribute)": [[32, "viser.Icon.ALERT_HEXAGON_FILLED"]], "alert_octagon (viser.icon attribute)": [[32, "viser.Icon.ALERT_OCTAGON"]], "alert_octagon_filled (viser.icon attribute)": [[32, "viser.Icon.ALERT_OCTAGON_FILLED"]], "alert_small (viser.icon attribute)": [[32, "viser.Icon.ALERT_SMALL"]], "alert_square (viser.icon attribute)": [[32, "viser.Icon.ALERT_SQUARE"]], "alert_square_filled (viser.icon attribute)": [[32, "viser.Icon.ALERT_SQUARE_FILLED"]], "alert_square_rounded (viser.icon attribute)": [[32, "viser.Icon.ALERT_SQUARE_ROUNDED"]], "alert_square_rounded_filled (viser.icon attribute)": [[32, "viser.Icon.ALERT_SQUARE_ROUNDED_FILLED"]], "alert_triangle (viser.icon attribute)": [[32, "viser.Icon.ALERT_TRIANGLE"]], "alert_triangle_filled (viser.icon attribute)": [[32, "viser.Icon.ALERT_TRIANGLE_FILLED"]], "alien (viser.icon attribute)": [[32, "viser.Icon.ALIEN"]], "alien_filled (viser.icon attribute)": [[32, "viser.Icon.ALIEN_FILLED"]], "align_box_bottom_center (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_BOTTOM_CENTER"]], "align_box_bottom_center_filled (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_BOTTOM_CENTER_FILLED"]], "align_box_bottom_left (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_BOTTOM_LEFT"]], "align_box_bottom_left_filled (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_BOTTOM_LEFT_FILLED"]], "align_box_bottom_right (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_BOTTOM_RIGHT"]], "align_box_bottom_right_filled (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_BOTTOM_RIGHT_FILLED"]], "align_box_center_bottom (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_CENTER_BOTTOM"]], "align_box_center_middle (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_CENTER_MIDDLE"]], "align_box_center_middle_filled (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_CENTER_MIDDLE_FILLED"]], "align_box_center_stretch (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_CENTER_STRETCH"]], "align_box_center_top (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_CENTER_TOP"]], "align_box_left_bottom (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_LEFT_BOTTOM"]], "align_box_left_bottom_filled (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_LEFT_BOTTOM_FILLED"]], "align_box_left_middle (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_LEFT_MIDDLE"]], "align_box_left_middle_filled (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_LEFT_MIDDLE_FILLED"]], "align_box_left_stretch (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_LEFT_STRETCH"]], "align_box_left_top (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_LEFT_TOP"]], "align_box_left_top_filled (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_LEFT_TOP_FILLED"]], "align_box_right_bottom (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_RIGHT_BOTTOM"]], "align_box_right_bottom_filled (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_RIGHT_BOTTOM_FILLED"]], "align_box_right_middle (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_RIGHT_MIDDLE"]], "align_box_right_middle_filled (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_RIGHT_MIDDLE_FILLED"]], "align_box_right_stretch (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_RIGHT_STRETCH"]], "align_box_right_top (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_RIGHT_TOP"]], "align_box_right_top_filled (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_RIGHT_TOP_FILLED"]], "align_box_top_center (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_TOP_CENTER"]], "align_box_top_center_filled (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_TOP_CENTER_FILLED"]], "align_box_top_left (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_TOP_LEFT"]], "align_box_top_left_filled (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_TOP_LEFT_FILLED"]], "align_box_top_right (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_TOP_RIGHT"]], "align_box_top_right_filled (viser.icon attribute)": [[32, "viser.Icon.ALIGN_BOX_TOP_RIGHT_FILLED"]], "align_center (viser.icon attribute)": [[32, "viser.Icon.ALIGN_CENTER"]], "align_justified (viser.icon attribute)": [[32, "viser.Icon.ALIGN_JUSTIFIED"]], "align_left (viser.icon attribute)": [[32, "viser.Icon.ALIGN_LEFT"]], "align_right (viser.icon attribute)": [[32, "viser.Icon.ALIGN_RIGHT"]], "alpha (viser.icon attribute)": [[32, "viser.Icon.ALPHA"]], "alphabet_cyrillic (viser.icon attribute)": [[32, "viser.Icon.ALPHABET_CYRILLIC"]], "alphabet_greek (viser.icon attribute)": [[32, "viser.Icon.ALPHABET_GREEK"]], "alphabet_latin (viser.icon attribute)": [[32, "viser.Icon.ALPHABET_LATIN"]], "ambulance (viser.icon attribute)": [[32, "viser.Icon.AMBULANCE"]], "ampersand (viser.icon attribute)": [[32, "viser.Icon.AMPERSAND"]], "analyze (viser.icon attribute)": [[32, "viser.Icon.ANALYZE"]], "analyze_filled (viser.icon attribute)": [[32, "viser.Icon.ANALYZE_FILLED"]], "analyze_off (viser.icon attribute)": [[32, "viser.Icon.ANALYZE_OFF"]], "anchor (viser.icon attribute)": [[32, "viser.Icon.ANCHOR"]], "anchor_off (viser.icon attribute)": [[32, "viser.Icon.ANCHOR_OFF"]], "angle (viser.icon attribute)": [[32, "viser.Icon.ANGLE"]], "ankh (viser.icon attribute)": [[32, "viser.Icon.ANKH"]], "antenna (viser.icon attribute)": [[32, "viser.Icon.ANTENNA"]], "antenna_bars_1 (viser.icon attribute)": [[32, "viser.Icon.ANTENNA_BARS_1"]], "antenna_bars_2 (viser.icon attribute)": [[32, "viser.Icon.ANTENNA_BARS_2"]], "antenna_bars_3 (viser.icon attribute)": [[32, "viser.Icon.ANTENNA_BARS_3"]], "antenna_bars_4 (viser.icon attribute)": [[32, "viser.Icon.ANTENNA_BARS_4"]], "antenna_bars_5 (viser.icon attribute)": [[32, "viser.Icon.ANTENNA_BARS_5"]], "antenna_bars_off (viser.icon attribute)": [[32, "viser.Icon.ANTENNA_BARS_OFF"]], "antenna_off (viser.icon attribute)": [[32, "viser.Icon.ANTENNA_OFF"]], "aperture (viser.icon attribute)": [[32, "viser.Icon.APERTURE"]], "aperture_off (viser.icon attribute)": [[32, "viser.Icon.APERTURE_OFF"]], "api (viser.icon attribute)": [[32, "viser.Icon.API"]], "api_app (viser.icon attribute)": [[32, "viser.Icon.API_APP"]], "api_app_off (viser.icon attribute)": [[32, "viser.Icon.API_APP_OFF"]], "api_off (viser.icon attribute)": [[32, "viser.Icon.API_OFF"]], "apple (viser.icon attribute)": [[32, "viser.Icon.APPLE"]], "apps (viser.icon attribute)": [[32, "viser.Icon.APPS"]], "apps_filled (viser.icon attribute)": [[32, "viser.Icon.APPS_FILLED"]], "apps_off (viser.icon attribute)": [[32, "viser.Icon.APPS_OFF"]], "app_window (viser.icon attribute)": [[32, "viser.Icon.APP_WINDOW"]], "app_window_filled (viser.icon attribute)": [[32, "viser.Icon.APP_WINDOW_FILLED"]], "archive (viser.icon attribute)": [[32, "viser.Icon.ARCHIVE"]], "archive_filled (viser.icon attribute)": [[32, "viser.Icon.ARCHIVE_FILLED"]], "archive_off (viser.icon attribute)": [[32, "viser.Icon.ARCHIVE_OFF"]], "armchair (viser.icon attribute)": [[32, "viser.Icon.ARMCHAIR"]], "armchair_2 (viser.icon attribute)": [[32, "viser.Icon.ARMCHAIR_2"]], "armchair_2_off (viser.icon attribute)": [[32, "viser.Icon.ARMCHAIR_2_OFF"]], "armchair_off (viser.icon attribute)": [[32, "viser.Icon.ARMCHAIR_OFF"]], "arrows_cross (viser.icon attribute)": [[32, "viser.Icon.ARROWS_CROSS"]], "arrows_diagonal (viser.icon attribute)": [[32, "viser.Icon.ARROWS_DIAGONAL"]], "arrows_diagonal_2 (viser.icon attribute)": [[32, "viser.Icon.ARROWS_DIAGONAL_2"]], "arrows_diagonal_minimize (viser.icon attribute)": [[32, "viser.Icon.ARROWS_DIAGONAL_MINIMIZE"]], "arrows_diagonal_minimize_2 (viser.icon attribute)": [[32, "viser.Icon.ARROWS_DIAGONAL_MINIMIZE_2"]], "arrows_diff (viser.icon attribute)": [[32, "viser.Icon.ARROWS_DIFF"]], "arrows_double_ne_sw (viser.icon attribute)": [[32, "viser.Icon.ARROWS_DOUBLE_NE_SW"]], "arrows_double_nw_se (viser.icon attribute)": [[32, "viser.Icon.ARROWS_DOUBLE_NW_SE"]], "arrows_double_se_nw (viser.icon attribute)": [[32, "viser.Icon.ARROWS_DOUBLE_SE_NW"]], "arrows_double_sw_ne (viser.icon attribute)": [[32, "viser.Icon.ARROWS_DOUBLE_SW_NE"]], "arrows_down (viser.icon attribute)": [[32, "viser.Icon.ARROWS_DOWN"]], "arrows_down_up (viser.icon attribute)": [[32, "viser.Icon.ARROWS_DOWN_UP"]], "arrows_exchange (viser.icon attribute)": [[32, "viser.Icon.ARROWS_EXCHANGE"]], "arrows_exchange_2 (viser.icon attribute)": [[32, "viser.Icon.ARROWS_EXCHANGE_2"]], "arrows_horizontal (viser.icon attribute)": [[32, "viser.Icon.ARROWS_HORIZONTAL"]], "arrows_join (viser.icon attribute)": [[32, "viser.Icon.ARROWS_JOIN"]], "arrows_join_2 (viser.icon attribute)": [[32, "viser.Icon.ARROWS_JOIN_2"]], "arrows_left (viser.icon attribute)": [[32, "viser.Icon.ARROWS_LEFT"]], "arrows_left_down (viser.icon attribute)": [[32, "viser.Icon.ARROWS_LEFT_DOWN"]], "arrows_left_right (viser.icon attribute)": [[32, "viser.Icon.ARROWS_LEFT_RIGHT"]], "arrows_maximize (viser.icon attribute)": [[32, "viser.Icon.ARROWS_MAXIMIZE"]], "arrows_minimize (viser.icon attribute)": [[32, "viser.Icon.ARROWS_MINIMIZE"]], "arrows_move (viser.icon attribute)": [[32, "viser.Icon.ARROWS_MOVE"]], "arrows_move_horizontal (viser.icon attribute)": [[32, "viser.Icon.ARROWS_MOVE_HORIZONTAL"]], "arrows_move_vertical (viser.icon attribute)": [[32, "viser.Icon.ARROWS_MOVE_VERTICAL"]], "arrows_random (viser.icon attribute)": [[32, "viser.Icon.ARROWS_RANDOM"]], "arrows_right (viser.icon attribute)": [[32, "viser.Icon.ARROWS_RIGHT"]], "arrows_right_down (viser.icon attribute)": [[32, "viser.Icon.ARROWS_RIGHT_DOWN"]], "arrows_right_left (viser.icon attribute)": [[32, "viser.Icon.ARROWS_RIGHT_LEFT"]], "arrows_shuffle (viser.icon attribute)": [[32, "viser.Icon.ARROWS_SHUFFLE"]], "arrows_shuffle_2 (viser.icon attribute)": [[32, "viser.Icon.ARROWS_SHUFFLE_2"]], "arrows_sort (viser.icon attribute)": [[32, "viser.Icon.ARROWS_SORT"]], "arrows_split (viser.icon attribute)": [[32, "viser.Icon.ARROWS_SPLIT"]], "arrows_split_2 (viser.icon attribute)": [[32, "viser.Icon.ARROWS_SPLIT_2"]], "arrows_transfer_down (viser.icon attribute)": [[32, "viser.Icon.ARROWS_TRANSFER_DOWN"]], "arrows_transfer_up (viser.icon attribute)": [[32, "viser.Icon.ARROWS_TRANSFER_UP"]], "arrows_up (viser.icon attribute)": [[32, "viser.Icon.ARROWS_UP"]], "arrows_up_down (viser.icon attribute)": [[32, "viser.Icon.ARROWS_UP_DOWN"]], "arrows_up_left (viser.icon attribute)": [[32, "viser.Icon.ARROWS_UP_LEFT"]], "arrows_up_right (viser.icon attribute)": [[32, "viser.Icon.ARROWS_UP_RIGHT"]], "arrows_vertical (viser.icon attribute)": [[32, "viser.Icon.ARROWS_VERTICAL"]], "arrow_autofit_content (viser.icon attribute)": [[32, "viser.Icon.ARROW_AUTOFIT_CONTENT"]], "arrow_autofit_content_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_AUTOFIT_CONTENT_FILLED"]], "arrow_autofit_down (viser.icon attribute)": [[32, "viser.Icon.ARROW_AUTOFIT_DOWN"]], "arrow_autofit_height (viser.icon attribute)": [[32, "viser.Icon.ARROW_AUTOFIT_HEIGHT"]], "arrow_autofit_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_AUTOFIT_LEFT"]], "arrow_autofit_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_AUTOFIT_RIGHT"]], "arrow_autofit_up (viser.icon attribute)": [[32, "viser.Icon.ARROW_AUTOFIT_UP"]], "arrow_autofit_width (viser.icon attribute)": [[32, "viser.Icon.ARROW_AUTOFIT_WIDTH"]], "arrow_back (viser.icon attribute)": [[32, "viser.Icon.ARROW_BACK"]], "arrow_back_up (viser.icon attribute)": [[32, "viser.Icon.ARROW_BACK_UP"]], "arrow_back_up_double (viser.icon attribute)": [[32, "viser.Icon.ARROW_BACK_UP_DOUBLE"]], "arrow_badge_down (viser.icon attribute)": [[32, "viser.Icon.ARROW_BADGE_DOWN"]], "arrow_badge_down_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BADGE_DOWN_FILLED"]], "arrow_badge_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_BADGE_LEFT"]], "arrow_badge_left_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BADGE_LEFT_FILLED"]], "arrow_badge_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_BADGE_RIGHT"]], "arrow_badge_right_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BADGE_RIGHT_FILLED"]], "arrow_badge_up (viser.icon attribute)": [[32, "viser.Icon.ARROW_BADGE_UP"]], "arrow_badge_up_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BADGE_UP_FILLED"]], "arrow_bar_both (viser.icon attribute)": [[32, "viser.Icon.ARROW_BAR_BOTH"]], "arrow_bar_down (viser.icon attribute)": [[32, "viser.Icon.ARROW_BAR_DOWN"]], "arrow_bar_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_BAR_LEFT"]], "arrow_bar_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_BAR_RIGHT"]], "arrow_bar_to_down (viser.icon attribute)": [[32, "viser.Icon.ARROW_BAR_TO_DOWN"]], "arrow_bar_to_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_BAR_TO_LEFT"]], "arrow_bar_to_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_BAR_TO_RIGHT"]], "arrow_bar_to_up (viser.icon attribute)": [[32, "viser.Icon.ARROW_BAR_TO_UP"]], "arrow_bar_up (viser.icon attribute)": [[32, "viser.Icon.ARROW_BAR_UP"]], "arrow_bear_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_BEAR_LEFT"]], "arrow_bear_left_2 (viser.icon attribute)": [[32, "viser.Icon.ARROW_BEAR_LEFT_2"]], "arrow_bear_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_BEAR_RIGHT"]], "arrow_bear_right_2 (viser.icon attribute)": [[32, "viser.Icon.ARROW_BEAR_RIGHT_2"]], "arrow_big_down (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_DOWN"]], "arrow_big_down_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_DOWN_FILLED"]], "arrow_big_down_line (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_DOWN_LINE"]], "arrow_big_down_lines (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_DOWN_LINES"]], "arrow_big_down_lines_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_DOWN_LINES_FILLED"]], "arrow_big_down_line_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_DOWN_LINE_FILLED"]], "arrow_big_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_LEFT"]], "arrow_big_left_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_LEFT_FILLED"]], "arrow_big_left_line (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_LEFT_LINE"]], "arrow_big_left_lines (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_LEFT_LINES"]], "arrow_big_left_lines_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_LEFT_LINES_FILLED"]], "arrow_big_left_line_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_LEFT_LINE_FILLED"]], "arrow_big_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_RIGHT"]], "arrow_big_right_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_RIGHT_FILLED"]], "arrow_big_right_line (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_RIGHT_LINE"]], "arrow_big_right_lines (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_RIGHT_LINES"]], "arrow_big_right_lines_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_RIGHT_LINES_FILLED"]], "arrow_big_right_line_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_RIGHT_LINE_FILLED"]], "arrow_big_up (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_UP"]], "arrow_big_up_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_UP_FILLED"]], "arrow_big_up_line (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_UP_LINE"]], "arrow_big_up_lines (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_UP_LINES"]], "arrow_big_up_lines_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_UP_LINES_FILLED"]], "arrow_big_up_line_filled (viser.icon attribute)": [[32, "viser.Icon.ARROW_BIG_UP_LINE_FILLED"]], "arrow_bounce (viser.icon attribute)": [[32, "viser.Icon.ARROW_BOUNCE"]], "arrow_capsule (viser.icon attribute)": [[32, "viser.Icon.ARROW_CAPSULE"]], "arrow_curve_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_CURVE_LEFT"]], "arrow_curve_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_CURVE_RIGHT"]], "arrow_down (viser.icon attribute)": [[32, "viser.Icon.ARROW_DOWN"]], "arrow_down_bar (viser.icon attribute)": [[32, "viser.Icon.ARROW_DOWN_BAR"]], "arrow_down_circle (viser.icon attribute)": [[32, "viser.Icon.ARROW_DOWN_CIRCLE"]], "arrow_down_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_DOWN_LEFT"]], "arrow_down_left_circle (viser.icon attribute)": [[32, "viser.Icon.ARROW_DOWN_LEFT_CIRCLE"]], "arrow_down_rhombus (viser.icon attribute)": [[32, "viser.Icon.ARROW_DOWN_RHOMBUS"]], "arrow_down_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_DOWN_RIGHT"]], "arrow_down_right_circle (viser.icon attribute)": [[32, "viser.Icon.ARROW_DOWN_RIGHT_CIRCLE"]], "arrow_down_square (viser.icon attribute)": [[32, "viser.Icon.ARROW_DOWN_SQUARE"]], "arrow_down_tail (viser.icon attribute)": [[32, "viser.Icon.ARROW_DOWN_TAIL"]], "arrow_elbow_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_ELBOW_LEFT"]], "arrow_elbow_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_ELBOW_RIGHT"]], "arrow_fork (viser.icon attribute)": [[32, "viser.Icon.ARROW_FORK"]], "arrow_forward (viser.icon attribute)": [[32, "viser.Icon.ARROW_FORWARD"]], "arrow_forward_up (viser.icon attribute)": [[32, "viser.Icon.ARROW_FORWARD_UP"]], "arrow_forward_up_double (viser.icon attribute)": [[32, "viser.Icon.ARROW_FORWARD_UP_DOUBLE"]], "arrow_guide (viser.icon attribute)": [[32, "viser.Icon.ARROW_GUIDE"]], "arrow_iteration (viser.icon attribute)": [[32, "viser.Icon.ARROW_ITERATION"]], "arrow_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_LEFT"]], "arrow_left_bar (viser.icon attribute)": [[32, "viser.Icon.ARROW_LEFT_BAR"]], "arrow_left_circle (viser.icon attribute)": [[32, "viser.Icon.ARROW_LEFT_CIRCLE"]], "arrow_left_rhombus (viser.icon attribute)": [[32, "viser.Icon.ARROW_LEFT_RHOMBUS"]], "arrow_left_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_LEFT_RIGHT"]], "arrow_left_square (viser.icon attribute)": [[32, "viser.Icon.ARROW_LEFT_SQUARE"]], "arrow_left_tail (viser.icon attribute)": [[32, "viser.Icon.ARROW_LEFT_TAIL"]], "arrow_loop_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_LOOP_LEFT"]], "arrow_loop_left_2 (viser.icon attribute)": [[32, "viser.Icon.ARROW_LOOP_LEFT_2"]], "arrow_loop_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_LOOP_RIGHT"]], "arrow_loop_right_2 (viser.icon attribute)": [[32, "viser.Icon.ARROW_LOOP_RIGHT_2"]], "arrow_merge (viser.icon attribute)": [[32, "viser.Icon.ARROW_MERGE"]], "arrow_merge_both (viser.icon attribute)": [[32, "viser.Icon.ARROW_MERGE_BOTH"]], "arrow_merge_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_MERGE_LEFT"]], "arrow_merge_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_MERGE_RIGHT"]], "arrow_move_down (viser.icon attribute)": [[32, "viser.Icon.ARROW_MOVE_DOWN"]], "arrow_move_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_MOVE_LEFT"]], "arrow_move_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_MOVE_RIGHT"]], "arrow_move_up (viser.icon attribute)": [[32, "viser.Icon.ARROW_MOVE_UP"]], "arrow_narrow_down (viser.icon attribute)": [[32, "viser.Icon.ARROW_NARROW_DOWN"]], "arrow_narrow_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_NARROW_LEFT"]], "arrow_narrow_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_NARROW_RIGHT"]], "arrow_narrow_up (viser.icon attribute)": [[32, "viser.Icon.ARROW_NARROW_UP"]], "arrow_ramp_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_RAMP_LEFT"]], "arrow_ramp_left_2 (viser.icon attribute)": [[32, "viser.Icon.ARROW_RAMP_LEFT_2"]], "arrow_ramp_left_3 (viser.icon attribute)": [[32, "viser.Icon.ARROW_RAMP_LEFT_3"]], "arrow_ramp_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_RAMP_RIGHT"]], "arrow_ramp_right_2 (viser.icon attribute)": [[32, "viser.Icon.ARROW_RAMP_RIGHT_2"]], "arrow_ramp_right_3 (viser.icon attribute)": [[32, "viser.Icon.ARROW_RAMP_RIGHT_3"]], "arrow_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_RIGHT"]], "arrow_right_bar (viser.icon attribute)": [[32, "viser.Icon.ARROW_RIGHT_BAR"]], "arrow_right_circle (viser.icon attribute)": [[32, "viser.Icon.ARROW_RIGHT_CIRCLE"]], "arrow_right_rhombus (viser.icon attribute)": [[32, "viser.Icon.ARROW_RIGHT_RHOMBUS"]], "arrow_right_square (viser.icon attribute)": [[32, "viser.Icon.ARROW_RIGHT_SQUARE"]], "arrow_right_tail (viser.icon attribute)": [[32, "viser.Icon.ARROW_RIGHT_TAIL"]], "arrow_rotary_first_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_ROTARY_FIRST_LEFT"]], "arrow_rotary_first_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_ROTARY_FIRST_RIGHT"]], "arrow_rotary_last_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_ROTARY_LAST_LEFT"]], "arrow_rotary_last_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_ROTARY_LAST_RIGHT"]], "arrow_rotary_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_ROTARY_LEFT"]], "arrow_rotary_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_ROTARY_RIGHT"]], "arrow_rotary_straight (viser.icon attribute)": [[32, "viser.Icon.ARROW_ROTARY_STRAIGHT"]], "arrow_roundabout_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_ROUNDABOUT_LEFT"]], "arrow_roundabout_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_ROUNDABOUT_RIGHT"]], "arrow_sharp_turn_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_SHARP_TURN_LEFT"]], "arrow_sharp_turn_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_SHARP_TURN_RIGHT"]], "arrow_up (viser.icon attribute)": [[32, "viser.Icon.ARROW_UP"]], "arrow_up_bar (viser.icon attribute)": [[32, "viser.Icon.ARROW_UP_BAR"]], "arrow_up_circle (viser.icon attribute)": [[32, "viser.Icon.ARROW_UP_CIRCLE"]], "arrow_up_left (viser.icon attribute)": [[32, "viser.Icon.ARROW_UP_LEFT"]], "arrow_up_left_circle (viser.icon attribute)": [[32, "viser.Icon.ARROW_UP_LEFT_CIRCLE"]], "arrow_up_rhombus (viser.icon attribute)": [[32, "viser.Icon.ARROW_UP_RHOMBUS"]], "arrow_up_right (viser.icon attribute)": [[32, "viser.Icon.ARROW_UP_RIGHT"]], "arrow_up_right_circle (viser.icon attribute)": [[32, "viser.Icon.ARROW_UP_RIGHT_CIRCLE"]], "arrow_up_square (viser.icon attribute)": [[32, "viser.Icon.ARROW_UP_SQUARE"]], "arrow_up_tail (viser.icon attribute)": [[32, "viser.Icon.ARROW_UP_TAIL"]], "arrow_wave_left_down (viser.icon attribute)": [[32, "viser.Icon.ARROW_WAVE_LEFT_DOWN"]], "arrow_wave_left_up (viser.icon attribute)": [[32, "viser.Icon.ARROW_WAVE_LEFT_UP"]], "arrow_wave_right_down (viser.icon attribute)": [[32, "viser.Icon.ARROW_WAVE_RIGHT_DOWN"]], "arrow_wave_right_up (viser.icon attribute)": [[32, "viser.Icon.ARROW_WAVE_RIGHT_UP"]], "arrow_zig_zag (viser.icon attribute)": [[32, "viser.Icon.ARROW_ZIG_ZAG"]], "artboard (viser.icon attribute)": [[32, "viser.Icon.ARTBOARD"]], "artboard_filled (viser.icon attribute)": [[32, "viser.Icon.ARTBOARD_FILLED"]], "artboard_off (viser.icon attribute)": [[32, "viser.Icon.ARTBOARD_OFF"]], "article (viser.icon attribute)": [[32, "viser.Icon.ARTICLE"]], "article_filled_filled (viser.icon attribute)": [[32, "viser.Icon.ARTICLE_FILLED_FILLED"]], "article_off (viser.icon attribute)": [[32, "viser.Icon.ARTICLE_OFF"]], "aspect_ratio (viser.icon attribute)": [[32, "viser.Icon.ASPECT_RATIO"]], "aspect_ratio_filled (viser.icon attribute)": [[32, "viser.Icon.ASPECT_RATIO_FILLED"]], "aspect_ratio_off (viser.icon attribute)": [[32, "viser.Icon.ASPECT_RATIO_OFF"]], "assembly (viser.icon attribute)": [[32, "viser.Icon.ASSEMBLY"]], "assembly_off (viser.icon attribute)": [[32, "viser.Icon.ASSEMBLY_OFF"]], "asset (viser.icon attribute)": [[32, "viser.Icon.ASSET"]], "asterisk (viser.icon attribute)": [[32, "viser.Icon.ASTERISK"]], "asterisk_simple (viser.icon attribute)": [[32, "viser.Icon.ASTERISK_SIMPLE"]], "at (viser.icon attribute)": [[32, "viser.Icon.AT"]], "atom (viser.icon attribute)": [[32, "viser.Icon.ATOM"]], "atom_2 (viser.icon attribute)": [[32, "viser.Icon.ATOM_2"]], "atom_2_filled (viser.icon attribute)": [[32, "viser.Icon.ATOM_2_FILLED"]], "atom_off (viser.icon attribute)": [[32, "viser.Icon.ATOM_OFF"]], "at_off (viser.icon attribute)": [[32, "viser.Icon.AT_OFF"]], "augmented_reality (viser.icon attribute)": [[32, "viser.Icon.AUGMENTED_REALITY"]], "augmented_reality_2 (viser.icon attribute)": [[32, "viser.Icon.AUGMENTED_REALITY_2"]], "augmented_reality_off (viser.icon attribute)": [[32, "viser.Icon.AUGMENTED_REALITY_OFF"]], "award (viser.icon attribute)": [[32, "viser.Icon.AWARD"]], "award_filled (viser.icon attribute)": [[32, "viser.Icon.AWARD_FILLED"]], "award_off (viser.icon attribute)": [[32, "viser.Icon.AWARD_OFF"]], "axe (viser.icon attribute)": [[32, "viser.Icon.AXE"]], "axis_x (viser.icon attribute)": [[32, "viser.Icon.AXIS_X"]], "axis_y (viser.icon attribute)": [[32, "viser.Icon.AXIS_Y"]], "a_b (viser.icon attribute)": [[32, "viser.Icon.A_B"]], "a_b_2 (viser.icon attribute)": [[32, "viser.Icon.A_B_2"]], "a_b_off (viser.icon attribute)": [[32, "viser.Icon.A_B_OFF"]], "baby_bottle (viser.icon attribute)": [[32, "viser.Icon.BABY_BOTTLE"]], "baby_carriage (viser.icon attribute)": [[32, "viser.Icon.BABY_CARRIAGE"]], "backhoe (viser.icon attribute)": [[32, "viser.Icon.BACKHOE"]], "backpack (viser.icon attribute)": [[32, "viser.Icon.BACKPACK"]], "backpack_off (viser.icon attribute)": [[32, "viser.Icon.BACKPACK_OFF"]], "backslash (viser.icon attribute)": [[32, "viser.Icon.BACKSLASH"]], "backspace (viser.icon attribute)": [[32, "viser.Icon.BACKSPACE"]], "backspace_filled (viser.icon attribute)": [[32, "viser.Icon.BACKSPACE_FILLED"]], "badge (viser.icon attribute)": [[32, "viser.Icon.BADGE"]], "badges (viser.icon attribute)": [[32, "viser.Icon.BADGES"]], "badges_filled (viser.icon attribute)": [[32, "viser.Icon.BADGES_FILLED"]], "badges_off (viser.icon attribute)": [[32, "viser.Icon.BADGES_OFF"]], "badge_3d (viser.icon attribute)": [[32, "viser.Icon.BADGE_3D"]], "badge_4k (viser.icon attribute)": [[32, "viser.Icon.BADGE_4K"]], "badge_8k (viser.icon attribute)": [[32, "viser.Icon.BADGE_8K"]], "badge_ad (viser.icon attribute)": [[32, "viser.Icon.BADGE_AD"]], "badge_ar (viser.icon attribute)": [[32, "viser.Icon.BADGE_AR"]], "badge_cc (viser.icon attribute)": [[32, "viser.Icon.BADGE_CC"]], "badge_filled (viser.icon attribute)": [[32, "viser.Icon.BADGE_FILLED"]], "badge_hd (viser.icon attribute)": [[32, "viser.Icon.BADGE_HD"]], "badge_off (viser.icon attribute)": [[32, "viser.Icon.BADGE_OFF"]], "badge_sd (viser.icon attribute)": [[32, "viser.Icon.BADGE_SD"]], "badge_tm (viser.icon attribute)": [[32, "viser.Icon.BADGE_TM"]], "badge_vo (viser.icon attribute)": [[32, "viser.Icon.BADGE_VO"]], "badge_vr (viser.icon attribute)": [[32, "viser.Icon.BADGE_VR"]], "badge_wc (viser.icon attribute)": [[32, "viser.Icon.BADGE_WC"]], "baguette (viser.icon attribute)": [[32, "viser.Icon.BAGUETTE"]], "balloon (viser.icon attribute)": [[32, "viser.Icon.BALLOON"]], "balloon_filled (viser.icon attribute)": [[32, "viser.Icon.BALLOON_FILLED"]], "balloon_off (viser.icon attribute)": [[32, "viser.Icon.BALLOON_OFF"]], "ballpen (viser.icon attribute)": [[32, "viser.Icon.BALLPEN"]], "ballpen_filled (viser.icon attribute)": [[32, "viser.Icon.BALLPEN_FILLED"]], "ballpen_off (viser.icon attribute)": [[32, "viser.Icon.BALLPEN_OFF"]], "ball_american_football (viser.icon attribute)": [[32, "viser.Icon.BALL_AMERICAN_FOOTBALL"]], "ball_american_football_off (viser.icon attribute)": [[32, "viser.Icon.BALL_AMERICAN_FOOTBALL_OFF"]], "ball_baseball (viser.icon attribute)": [[32, "viser.Icon.BALL_BASEBALL"]], "ball_basketball (viser.icon attribute)": [[32, "viser.Icon.BALL_BASKETBALL"]], "ball_bowling (viser.icon attribute)": [[32, "viser.Icon.BALL_BOWLING"]], "ball_football (viser.icon attribute)": [[32, "viser.Icon.BALL_FOOTBALL"]], "ball_football_off (viser.icon attribute)": [[32, "viser.Icon.BALL_FOOTBALL_OFF"]], "ball_tennis (viser.icon attribute)": [[32, "viser.Icon.BALL_TENNIS"]], "ball_volleyball (viser.icon attribute)": [[32, "viser.Icon.BALL_VOLLEYBALL"]], "ban (viser.icon attribute)": [[32, "viser.Icon.BAN"]], "bandage (viser.icon attribute)": [[32, "viser.Icon.BANDAGE"]], "bandage_filled (viser.icon attribute)": [[32, "viser.Icon.BANDAGE_FILLED"]], "bandage_off (viser.icon attribute)": [[32, "viser.Icon.BANDAGE_OFF"]], "barbell (viser.icon attribute)": [[32, "viser.Icon.BARBELL"]], "barbell_off (viser.icon attribute)": [[32, "viser.Icon.BARBELL_OFF"]], "barcode (viser.icon attribute)": [[32, "viser.Icon.BARCODE"]], "barcode_off (viser.icon attribute)": [[32, "viser.Icon.BARCODE_OFF"]], "barrel (viser.icon attribute)": [[32, "viser.Icon.BARREL"]], "barrel_off (viser.icon attribute)": [[32, "viser.Icon.BARREL_OFF"]], "barrier_block (viser.icon attribute)": [[32, "viser.Icon.BARRIER_BLOCK"]], "barrier_block_off (viser.icon attribute)": [[32, "viser.Icon.BARRIER_BLOCK_OFF"]], "baseline (viser.icon attribute)": [[32, "viser.Icon.BASELINE"]], "baseline_density_large (viser.icon attribute)": [[32, "viser.Icon.BASELINE_DENSITY_LARGE"]], "baseline_density_medium (viser.icon attribute)": [[32, "viser.Icon.BASELINE_DENSITY_MEDIUM"]], "baseline_density_small (viser.icon attribute)": [[32, "viser.Icon.BASELINE_DENSITY_SMALL"]], "basket (viser.icon attribute)": [[32, "viser.Icon.BASKET"]], "basket_filled (viser.icon attribute)": [[32, "viser.Icon.BASKET_FILLED"]], "basket_off (viser.icon attribute)": [[32, "viser.Icon.BASKET_OFF"]], "bat (viser.icon attribute)": [[32, "viser.Icon.BAT"]], "bath (viser.icon attribute)": [[32, "viser.Icon.BATH"]], "bath_filled (viser.icon attribute)": [[32, "viser.Icon.BATH_FILLED"]], "bath_off (viser.icon attribute)": [[32, "viser.Icon.BATH_OFF"]], "battery (viser.icon attribute)": [[32, "viser.Icon.BATTERY"]], "battery_1 (viser.icon attribute)": [[32, "viser.Icon.BATTERY_1"]], "battery_1_filled (viser.icon attribute)": [[32, "viser.Icon.BATTERY_1_FILLED"]], "battery_2 (viser.icon attribute)": [[32, "viser.Icon.BATTERY_2"]], "battery_2_filled (viser.icon attribute)": [[32, "viser.Icon.BATTERY_2_FILLED"]], "battery_3 (viser.icon attribute)": [[32, "viser.Icon.BATTERY_3"]], "battery_3_filled (viser.icon attribute)": [[32, "viser.Icon.BATTERY_3_FILLED"]], "battery_4 (viser.icon attribute)": [[32, "viser.Icon.BATTERY_4"]], "battery_4_filled (viser.icon attribute)": [[32, "viser.Icon.BATTERY_4_FILLED"]], "battery_automotive (viser.icon attribute)": [[32, "viser.Icon.BATTERY_AUTOMOTIVE"]], "battery_charging (viser.icon attribute)": [[32, "viser.Icon.BATTERY_CHARGING"]], "battery_charging_2 (viser.icon attribute)": [[32, "viser.Icon.BATTERY_CHARGING_2"]], "battery_eco (viser.icon attribute)": [[32, "viser.Icon.BATTERY_ECO"]], "battery_filled (viser.icon attribute)": [[32, "viser.Icon.BATTERY_FILLED"]], "battery_off (viser.icon attribute)": [[32, "viser.Icon.BATTERY_OFF"]], "beach (viser.icon attribute)": [[32, "viser.Icon.BEACH"]], "beach_off (viser.icon attribute)": [[32, "viser.Icon.BEACH_OFF"]], "bed (viser.icon attribute)": [[32, "viser.Icon.BED"]], "bed_filled (viser.icon attribute)": [[32, "viser.Icon.BED_FILLED"]], "bed_off (viser.icon attribute)": [[32, "viser.Icon.BED_OFF"]], "beer (viser.icon attribute)": [[32, "viser.Icon.BEER"]], "beer_filled (viser.icon attribute)": [[32, "viser.Icon.BEER_FILLED"]], "beer_off (viser.icon attribute)": [[32, "viser.Icon.BEER_OFF"]], "bell (viser.icon attribute)": [[32, "viser.Icon.BELL"]], "bell_bolt (viser.icon attribute)": [[32, "viser.Icon.BELL_BOLT"]], "bell_cancel (viser.icon attribute)": [[32, "viser.Icon.BELL_CANCEL"]], "bell_check (viser.icon attribute)": [[32, "viser.Icon.BELL_CHECK"]], "bell_code (viser.icon attribute)": [[32, "viser.Icon.BELL_CODE"]], "bell_cog (viser.icon attribute)": [[32, "viser.Icon.BELL_COG"]], "bell_dollar (viser.icon attribute)": [[32, "viser.Icon.BELL_DOLLAR"]], "bell_down (viser.icon attribute)": [[32, "viser.Icon.BELL_DOWN"]], "bell_exclamation (viser.icon attribute)": [[32, "viser.Icon.BELL_EXCLAMATION"]], "bell_filled (viser.icon attribute)": [[32, "viser.Icon.BELL_FILLED"]], "bell_heart (viser.icon attribute)": [[32, "viser.Icon.BELL_HEART"]], "bell_minus (viser.icon attribute)": [[32, "viser.Icon.BELL_MINUS"]], "bell_minus_filled (viser.icon attribute)": [[32, "viser.Icon.BELL_MINUS_FILLED"]], "bell_off (viser.icon attribute)": [[32, "viser.Icon.BELL_OFF"]], "bell_pause (viser.icon attribute)": [[32, "viser.Icon.BELL_PAUSE"]], "bell_pin (viser.icon attribute)": [[32, "viser.Icon.BELL_PIN"]], "bell_plus (viser.icon attribute)": [[32, "viser.Icon.BELL_PLUS"]], "bell_plus_filled (viser.icon attribute)": [[32, "viser.Icon.BELL_PLUS_FILLED"]], "bell_question (viser.icon attribute)": [[32, "viser.Icon.BELL_QUESTION"]], "bell_ringing (viser.icon attribute)": [[32, "viser.Icon.BELL_RINGING"]], "bell_ringing_2 (viser.icon attribute)": [[32, "viser.Icon.BELL_RINGING_2"]], "bell_ringing_2_filled (viser.icon attribute)": [[32, "viser.Icon.BELL_RINGING_2_FILLED"]], "bell_ringing_filled (viser.icon attribute)": [[32, "viser.Icon.BELL_RINGING_FILLED"]], "bell_school (viser.icon attribute)": [[32, "viser.Icon.BELL_SCHOOL"]], "bell_search (viser.icon attribute)": [[32, "viser.Icon.BELL_SEARCH"]], "bell_share (viser.icon attribute)": [[32, "viser.Icon.BELL_SHARE"]], "bell_star (viser.icon attribute)": [[32, "viser.Icon.BELL_STAR"]], "bell_up (viser.icon attribute)": [[32, "viser.Icon.BELL_UP"]], "bell_x (viser.icon attribute)": [[32, "viser.Icon.BELL_X"]], "bell_x_filled (viser.icon attribute)": [[32, "viser.Icon.BELL_X_FILLED"]], "bell_z (viser.icon attribute)": [[32, "viser.Icon.BELL_Z"]], "bell_z_filled (viser.icon attribute)": [[32, "viser.Icon.BELL_Z_FILLED"]], "beta (viser.icon attribute)": [[32, "viser.Icon.BETA"]], "bible (viser.icon attribute)": [[32, "viser.Icon.BIBLE"]], "bike (viser.icon attribute)": [[32, "viser.Icon.BIKE"]], "bike_off (viser.icon attribute)": [[32, "viser.Icon.BIKE_OFF"]], "binary (viser.icon attribute)": [[32, "viser.Icon.BINARY"]], "binary_off (viser.icon attribute)": [[32, "viser.Icon.BINARY_OFF"]], "binary_tree (viser.icon attribute)": [[32, "viser.Icon.BINARY_TREE"]], "binary_tree_2 (viser.icon attribute)": [[32, "viser.Icon.BINARY_TREE_2"]], "biohazard (viser.icon attribute)": [[32, "viser.Icon.BIOHAZARD"]], "biohazard_off (viser.icon attribute)": [[32, "viser.Icon.BIOHAZARD_OFF"]], "blade (viser.icon attribute)": [[32, "viser.Icon.BLADE"]], "blade_filled (viser.icon attribute)": [[32, "viser.Icon.BLADE_FILLED"]], "bleach (viser.icon attribute)": [[32, "viser.Icon.BLEACH"]], "bleach_chlorine (viser.icon attribute)": [[32, "viser.Icon.BLEACH_CHLORINE"]], "bleach_no_chlorine (viser.icon attribute)": [[32, "viser.Icon.BLEACH_NO_CHLORINE"]], "bleach_off (viser.icon attribute)": [[32, "viser.Icon.BLEACH_OFF"]], "blockquote (viser.icon attribute)": [[32, "viser.Icon.BLOCKQUOTE"]], "bluetooth (viser.icon attribute)": [[32, "viser.Icon.BLUETOOTH"]], "bluetooth_connected (viser.icon attribute)": [[32, "viser.Icon.BLUETOOTH_CONNECTED"]], "bluetooth_off (viser.icon attribute)": [[32, "viser.Icon.BLUETOOTH_OFF"]], "bluetooth_x (viser.icon attribute)": [[32, "viser.Icon.BLUETOOTH_X"]], "blur (viser.icon attribute)": [[32, "viser.Icon.BLUR"]], "blur_off (viser.icon attribute)": [[32, "viser.Icon.BLUR_OFF"]], "bmp (viser.icon attribute)": [[32, "viser.Icon.BMP"]], "bold (viser.icon attribute)": [[32, "viser.Icon.BOLD"]], "bold_off (viser.icon attribute)": [[32, "viser.Icon.BOLD_OFF"]], "bolt (viser.icon attribute)": [[32, "viser.Icon.BOLT"]], "bolt_off (viser.icon attribute)": [[32, "viser.Icon.BOLT_OFF"]], "bomb (viser.icon attribute)": [[32, "viser.Icon.BOMB"]], "bomb_filled (viser.icon attribute)": [[32, "viser.Icon.BOMB_FILLED"]], "bone (viser.icon attribute)": [[32, "viser.Icon.BONE"]], "bone_off (viser.icon attribute)": [[32, "viser.Icon.BONE_OFF"]], "bong (viser.icon attribute)": [[32, "viser.Icon.BONG"]], "bong_off (viser.icon attribute)": [[32, "viser.Icon.BONG_OFF"]], "book (viser.icon attribute)": [[32, "viser.Icon.BOOK"]], "bookmark (viser.icon attribute)": [[32, "viser.Icon.BOOKMARK"]], "bookmarks (viser.icon attribute)": [[32, "viser.Icon.BOOKMARKS"]], "bookmarks_off (viser.icon attribute)": [[32, "viser.Icon.BOOKMARKS_OFF"]], "bookmark_edit (viser.icon attribute)": [[32, "viser.Icon.BOOKMARK_EDIT"]], "bookmark_filled (viser.icon attribute)": [[32, "viser.Icon.BOOKMARK_FILLED"]], "bookmark_minus (viser.icon attribute)": [[32, "viser.Icon.BOOKMARK_MINUS"]], "bookmark_off (viser.icon attribute)": [[32, "viser.Icon.BOOKMARK_OFF"]], "bookmark_plus (viser.icon attribute)": [[32, "viser.Icon.BOOKMARK_PLUS"]], "bookmark_question (viser.icon attribute)": [[32, "viser.Icon.BOOKMARK_QUESTION"]], "books (viser.icon attribute)": [[32, "viser.Icon.BOOKS"]], "books_off (viser.icon attribute)": [[32, "viser.Icon.BOOKS_OFF"]], "book_2 (viser.icon attribute)": [[32, "viser.Icon.BOOK_2"]], "book_download (viser.icon attribute)": [[32, "viser.Icon.BOOK_DOWNLOAD"]], "book_filled (viser.icon attribute)": [[32, "viser.Icon.BOOK_FILLED"]], "book_off (viser.icon attribute)": [[32, "viser.Icon.BOOK_OFF"]], "book_upload (viser.icon attribute)": [[32, "viser.Icon.BOOK_UPLOAD"]], "border_all (viser.icon attribute)": [[32, "viser.Icon.BORDER_ALL"]], "border_bottom (viser.icon attribute)": [[32, "viser.Icon.BORDER_BOTTOM"]], "border_corners (viser.icon attribute)": [[32, "viser.Icon.BORDER_CORNERS"]], "border_horizontal (viser.icon attribute)": [[32, "viser.Icon.BORDER_HORIZONTAL"]], "border_inner (viser.icon attribute)": [[32, "viser.Icon.BORDER_INNER"]], "border_left (viser.icon attribute)": [[32, "viser.Icon.BORDER_LEFT"]], "border_none (viser.icon attribute)": [[32, "viser.Icon.BORDER_NONE"]], "border_outer (viser.icon attribute)": [[32, "viser.Icon.BORDER_OUTER"]], "border_radius (viser.icon attribute)": [[32, "viser.Icon.BORDER_RADIUS"]], "border_right (viser.icon attribute)": [[32, "viser.Icon.BORDER_RIGHT"]], "border_sides (viser.icon attribute)": [[32, "viser.Icon.BORDER_SIDES"]], "border_style (viser.icon attribute)": [[32, "viser.Icon.BORDER_STYLE"]], "border_style_2 (viser.icon attribute)": [[32, "viser.Icon.BORDER_STYLE_2"]], "border_top (viser.icon attribute)": [[32, "viser.Icon.BORDER_TOP"]], "border_vertical (viser.icon attribute)": [[32, "viser.Icon.BORDER_VERTICAL"]], "bottle (viser.icon attribute)": [[32, "viser.Icon.BOTTLE"]], "bottle_filled (viser.icon attribute)": [[32, "viser.Icon.BOTTLE_FILLED"]], "bottle_off (viser.icon attribute)": [[32, "viser.Icon.BOTTLE_OFF"]], "bounce_left (viser.icon attribute)": [[32, "viser.Icon.BOUNCE_LEFT"]], "bounce_right (viser.icon attribute)": [[32, "viser.Icon.BOUNCE_RIGHT"]], "bow (viser.icon attribute)": [[32, "viser.Icon.BOW"]], "bowl (viser.icon attribute)": [[32, "viser.Icon.BOWL"]], "box (viser.icon attribute)": [[32, "viser.Icon.BOX"]], "box_align_bottom (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_BOTTOM"]], "box_align_bottom_filled (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_BOTTOM_FILLED"]], "box_align_bottom_left (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_BOTTOM_LEFT"]], "box_align_bottom_left_filled (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_BOTTOM_LEFT_FILLED"]], "box_align_bottom_right (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_BOTTOM_RIGHT"]], "box_align_bottom_right_filled (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_BOTTOM_RIGHT_FILLED"]], "box_align_left (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_LEFT"]], "box_align_left_filled (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_LEFT_FILLED"]], "box_align_right (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_RIGHT"]], "box_align_right_filled (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_RIGHT_FILLED"]], "box_align_top (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_TOP"]], "box_align_top_filled (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_TOP_FILLED"]], "box_align_top_left (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_TOP_LEFT"]], "box_align_top_left_filled (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_TOP_LEFT_FILLED"]], "box_align_top_right (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_TOP_RIGHT"]], "box_align_top_right_filled (viser.icon attribute)": [[32, "viser.Icon.BOX_ALIGN_TOP_RIGHT_FILLED"]], "box_margin (viser.icon attribute)": [[32, "viser.Icon.BOX_MARGIN"]], "box_model (viser.icon attribute)": [[32, "viser.Icon.BOX_MODEL"]], "box_model_2 (viser.icon attribute)": [[32, "viser.Icon.BOX_MODEL_2"]], "box_model_2_off (viser.icon attribute)": [[32, "viser.Icon.BOX_MODEL_2_OFF"]], "box_model_off (viser.icon attribute)": [[32, "viser.Icon.BOX_MODEL_OFF"]], "box_multiple (viser.icon attribute)": [[32, "viser.Icon.BOX_MULTIPLE"]], "box_multiple_0 (viser.icon attribute)": [[32, "viser.Icon.BOX_MULTIPLE_0"]], "box_multiple_1 (viser.icon attribute)": [[32, "viser.Icon.BOX_MULTIPLE_1"]], "box_multiple_2 (viser.icon attribute)": [[32, "viser.Icon.BOX_MULTIPLE_2"]], "box_multiple_3 (viser.icon attribute)": [[32, "viser.Icon.BOX_MULTIPLE_3"]], "box_multiple_4 (viser.icon attribute)": [[32, "viser.Icon.BOX_MULTIPLE_4"]], "box_multiple_5 (viser.icon attribute)": [[32, "viser.Icon.BOX_MULTIPLE_5"]], "box_multiple_6 (viser.icon attribute)": [[32, "viser.Icon.BOX_MULTIPLE_6"]], "box_multiple_7 (viser.icon attribute)": [[32, "viser.Icon.BOX_MULTIPLE_7"]], "box_multiple_8 (viser.icon attribute)": [[32, "viser.Icon.BOX_MULTIPLE_8"]], "box_multiple_9 (viser.icon attribute)": [[32, "viser.Icon.BOX_MULTIPLE_9"]], "box_off (viser.icon attribute)": [[32, "viser.Icon.BOX_OFF"]], "box_padding (viser.icon attribute)": [[32, "viser.Icon.BOX_PADDING"]], "box_seam (viser.icon attribute)": [[32, "viser.Icon.BOX_SEAM"]], "braces (viser.icon attribute)": [[32, "viser.Icon.BRACES"]], "braces_off (viser.icon attribute)": [[32, "viser.Icon.BRACES_OFF"]], "brackets (viser.icon attribute)": [[32, "viser.Icon.BRACKETS"]], "brackets_contain (viser.icon attribute)": [[32, "viser.Icon.BRACKETS_CONTAIN"]], "brackets_contain_end (viser.icon attribute)": [[32, "viser.Icon.BRACKETS_CONTAIN_END"]], "brackets_contain_start (viser.icon attribute)": [[32, "viser.Icon.BRACKETS_CONTAIN_START"]], "brackets_off (viser.icon attribute)": [[32, "viser.Icon.BRACKETS_OFF"]], "braille (viser.icon attribute)": [[32, "viser.Icon.BRAILLE"]], "brain (viser.icon attribute)": [[32, "viser.Icon.BRAIN"]], "brand_4chan (viser.icon attribute)": [[32, "viser.Icon.BRAND_4CHAN"]], "brand_abstract (viser.icon attribute)": [[32, "viser.Icon.BRAND_ABSTRACT"]], "brand_adobe (viser.icon attribute)": [[32, "viser.Icon.BRAND_ADOBE"]], "brand_adonis_js (viser.icon attribute)": [[32, "viser.Icon.BRAND_ADONIS_JS"]], "brand_airbnb (viser.icon attribute)": [[32, "viser.Icon.BRAND_AIRBNB"]], "brand_airtable (viser.icon attribute)": [[32, "viser.Icon.BRAND_AIRTABLE"]], "brand_algolia (viser.icon attribute)": [[32, "viser.Icon.BRAND_ALGOLIA"]], "brand_alipay (viser.icon attribute)": [[32, "viser.Icon.BRAND_ALIPAY"]], "brand_alpine_js (viser.icon attribute)": [[32, "viser.Icon.BRAND_ALPINE_JS"]], "brand_amazon (viser.icon attribute)": [[32, "viser.Icon.BRAND_AMAZON"]], "brand_amd (viser.icon attribute)": [[32, "viser.Icon.BRAND_AMD"]], "brand_amigo (viser.icon attribute)": [[32, "viser.Icon.BRAND_AMIGO"]], "brand_among_us (viser.icon attribute)": [[32, "viser.Icon.BRAND_AMONG_US"]], "brand_android (viser.icon attribute)": [[32, "viser.Icon.BRAND_ANDROID"]], "brand_angular (viser.icon attribute)": [[32, "viser.Icon.BRAND_ANGULAR"]], "brand_ansible (viser.icon attribute)": [[32, "viser.Icon.BRAND_ANSIBLE"]], "brand_ao3 (viser.icon attribute)": [[32, "viser.Icon.BRAND_AO3"]], "brand_appgallery (viser.icon attribute)": [[32, "viser.Icon.BRAND_APPGALLERY"]], "brand_apple (viser.icon attribute)": [[32, "viser.Icon.BRAND_APPLE"]], "brand_apple_arcade (viser.icon attribute)": [[32, "viser.Icon.BRAND_APPLE_ARCADE"]], "brand_apple_podcast (viser.icon attribute)": [[32, "viser.Icon.BRAND_APPLE_PODCAST"]], "brand_appstore (viser.icon attribute)": [[32, "viser.Icon.BRAND_APPSTORE"]], "brand_asana (viser.icon attribute)": [[32, "viser.Icon.BRAND_ASANA"]], "brand_aws (viser.icon attribute)": [[32, "viser.Icon.BRAND_AWS"]], "brand_azure (viser.icon attribute)": [[32, "viser.Icon.BRAND_AZURE"]], "brand_backbone (viser.icon attribute)": [[32, "viser.Icon.BRAND_BACKBONE"]], "brand_badoo (viser.icon attribute)": [[32, "viser.Icon.BRAND_BADOO"]], "brand_baidu (viser.icon attribute)": [[32, "viser.Icon.BRAND_BAIDU"]], "brand_bandcamp (viser.icon attribute)": [[32, "viser.Icon.BRAND_BANDCAMP"]], "brand_bandlab (viser.icon attribute)": [[32, "viser.Icon.BRAND_BANDLAB"]], "brand_beats (viser.icon attribute)": [[32, "viser.Icon.BRAND_BEATS"]], "brand_behance (viser.icon attribute)": [[32, "viser.Icon.BRAND_BEHANCE"]], "brand_bilibili (viser.icon attribute)": [[32, "viser.Icon.BRAND_BILIBILI"]], "brand_binance (viser.icon attribute)": [[32, "viser.Icon.BRAND_BINANCE"]], "brand_bing (viser.icon attribute)": [[32, "viser.Icon.BRAND_BING"]], "brand_bitbucket (viser.icon attribute)": [[32, "viser.Icon.BRAND_BITBUCKET"]], "brand_blackberry (viser.icon attribute)": [[32, "viser.Icon.BRAND_BLACKBERRY"]], "brand_blender (viser.icon attribute)": [[32, "viser.Icon.BRAND_BLENDER"]], "brand_blogger (viser.icon attribute)": [[32, "viser.Icon.BRAND_BLOGGER"]], "brand_booking (viser.icon attribute)": [[32, "viser.Icon.BRAND_BOOKING"]], "brand_bootstrap (viser.icon attribute)": [[32, "viser.Icon.BRAND_BOOTSTRAP"]], "brand_bulma (viser.icon attribute)": [[32, "viser.Icon.BRAND_BULMA"]], "brand_bumble (viser.icon attribute)": [[32, "viser.Icon.BRAND_BUMBLE"]], "brand_bunpo (viser.icon attribute)": [[32, "viser.Icon.BRAND_BUNPO"]], "brand_cake (viser.icon attribute)": [[32, "viser.Icon.BRAND_CAKE"]], "brand_cakephp (viser.icon attribute)": [[32, "viser.Icon.BRAND_CAKEPHP"]], "brand_campaignmonitor (viser.icon attribute)": [[32, "viser.Icon.BRAND_CAMPAIGNMONITOR"]], "brand_carbon (viser.icon attribute)": [[32, "viser.Icon.BRAND_CARBON"]], "brand_cashapp (viser.icon attribute)": [[32, "viser.Icon.BRAND_CASHAPP"]], "brand_chrome (viser.icon attribute)": [[32, "viser.Icon.BRAND_CHROME"]], "brand_cinema_4d (viser.icon attribute)": [[32, "viser.Icon.BRAND_CINEMA_4D"]], "brand_citymapper (viser.icon attribute)": [[32, "viser.Icon.BRAND_CITYMAPPER"]], "brand_cloudflare (viser.icon attribute)": [[32, "viser.Icon.BRAND_CLOUDFLARE"]], "brand_codecov (viser.icon attribute)": [[32, "viser.Icon.BRAND_CODECOV"]], "brand_codepen (viser.icon attribute)": [[32, "viser.Icon.BRAND_CODEPEN"]], "brand_codesandbox (viser.icon attribute)": [[32, "viser.Icon.BRAND_CODESANDBOX"]], "brand_cohost (viser.icon attribute)": [[32, "viser.Icon.BRAND_COHOST"]], "brand_coinbase (viser.icon attribute)": [[32, "viser.Icon.BRAND_COINBASE"]], "brand_comedy_central (viser.icon attribute)": [[32, "viser.Icon.BRAND_COMEDY_CENTRAL"]], "brand_coreos (viser.icon attribute)": [[32, "viser.Icon.BRAND_COREOS"]], "brand_couchdb (viser.icon attribute)": [[32, "viser.Icon.BRAND_COUCHDB"]], "brand_couchsurfing (viser.icon attribute)": [[32, "viser.Icon.BRAND_COUCHSURFING"]], "brand_cpp (viser.icon attribute)": [[32, "viser.Icon.BRAND_CPP"]], "brand_craft (viser.icon attribute)": [[32, "viser.Icon.BRAND_CRAFT"]], "brand_crunchbase (viser.icon attribute)": [[32, "viser.Icon.BRAND_CRUNCHBASE"]], "brand_css3 (viser.icon attribute)": [[32, "viser.Icon.BRAND_CSS3"]], "brand_ctemplar (viser.icon attribute)": [[32, "viser.Icon.BRAND_CTEMPLAR"]], "brand_cucumber (viser.icon attribute)": [[32, "viser.Icon.BRAND_CUCUMBER"]], "brand_cupra (viser.icon attribute)": [[32, "viser.Icon.BRAND_CUPRA"]], "brand_cypress (viser.icon attribute)": [[32, "viser.Icon.BRAND_CYPRESS"]], "brand_c_sharp (viser.icon attribute)": [[32, "viser.Icon.BRAND_C_SHARP"]], "brand_d3 (viser.icon attribute)": [[32, "viser.Icon.BRAND_D3"]], "brand_days_counter (viser.icon attribute)": [[32, "viser.Icon.BRAND_DAYS_COUNTER"]], "brand_dcos (viser.icon attribute)": [[32, "viser.Icon.BRAND_DCOS"]], "brand_debian (viser.icon attribute)": [[32, "viser.Icon.BRAND_DEBIAN"]], "brand_deezer (viser.icon attribute)": [[32, "viser.Icon.BRAND_DEEZER"]], "brand_deliveroo (viser.icon attribute)": [[32, "viser.Icon.BRAND_DELIVEROO"]], "brand_deno (viser.icon attribute)": [[32, "viser.Icon.BRAND_DENO"]], "brand_denodo (viser.icon attribute)": [[32, "viser.Icon.BRAND_DENODO"]], "brand_deviantart (viser.icon attribute)": [[32, "viser.Icon.BRAND_DEVIANTART"]], "brand_digg (viser.icon attribute)": [[32, "viser.Icon.BRAND_DIGG"]], "brand_dingtalk (viser.icon attribute)": [[32, "viser.Icon.BRAND_DINGTALK"]], "brand_discord (viser.icon attribute)": [[32, "viser.Icon.BRAND_DISCORD"]], "brand_discord_filled (viser.icon attribute)": [[32, "viser.Icon.BRAND_DISCORD_FILLED"]], "brand_disney (viser.icon attribute)": [[32, "viser.Icon.BRAND_DISNEY"]], "brand_disqus (viser.icon attribute)": [[32, "viser.Icon.BRAND_DISQUS"]], "brand_django (viser.icon attribute)": [[32, "viser.Icon.BRAND_DJANGO"]], "brand_docker (viser.icon attribute)": [[32, "viser.Icon.BRAND_DOCKER"]], "brand_doctrine (viser.icon attribute)": [[32, "viser.Icon.BRAND_DOCTRINE"]], "brand_dolby_digital (viser.icon attribute)": [[32, "viser.Icon.BRAND_DOLBY_DIGITAL"]], "brand_douban (viser.icon attribute)": [[32, "viser.Icon.BRAND_DOUBAN"]], "brand_dribbble (viser.icon attribute)": [[32, "viser.Icon.BRAND_DRIBBBLE"]], "brand_dribbble_filled (viser.icon attribute)": [[32, "viser.Icon.BRAND_DRIBBBLE_FILLED"]], "brand_drops (viser.icon attribute)": [[32, "viser.Icon.BRAND_DROPS"]], "brand_drupal (viser.icon attribute)": [[32, "viser.Icon.BRAND_DRUPAL"]], "brand_edge (viser.icon attribute)": [[32, "viser.Icon.BRAND_EDGE"]], "brand_elastic (viser.icon attribute)": [[32, "viser.Icon.BRAND_ELASTIC"]], "brand_electronic_arts (viser.icon attribute)": [[32, "viser.Icon.BRAND_ELECTRONIC_ARTS"]], "brand_ember (viser.icon attribute)": [[32, "viser.Icon.BRAND_EMBER"]], "brand_envato (viser.icon attribute)": [[32, "viser.Icon.BRAND_ENVATO"]], "brand_etsy (viser.icon attribute)": [[32, "viser.Icon.BRAND_ETSY"]], "brand_evernote (viser.icon attribute)": [[32, "viser.Icon.BRAND_EVERNOTE"]], "brand_facebook (viser.icon attribute)": [[32, "viser.Icon.BRAND_FACEBOOK"]], "brand_facebook_filled (viser.icon attribute)": [[32, "viser.Icon.BRAND_FACEBOOK_FILLED"]], "brand_feedly (viser.icon attribute)": [[32, "viser.Icon.BRAND_FEEDLY"]], "brand_figma (viser.icon attribute)": [[32, "viser.Icon.BRAND_FIGMA"]], "brand_filezilla (viser.icon attribute)": [[32, "viser.Icon.BRAND_FILEZILLA"]], "brand_finder (viser.icon attribute)": [[32, "viser.Icon.BRAND_FINDER"]], "brand_firebase (viser.icon attribute)": [[32, "viser.Icon.BRAND_FIREBASE"]], "brand_firefox (viser.icon attribute)": [[32, "viser.Icon.BRAND_FIREFOX"]], "brand_fiverr (viser.icon attribute)": [[32, "viser.Icon.BRAND_FIVERR"]], "brand_flickr (viser.icon attribute)": [[32, "viser.Icon.BRAND_FLICKR"]], "brand_flightradar24 (viser.icon attribute)": [[32, "viser.Icon.BRAND_FLIGHTRADAR24"]], "brand_flipboard (viser.icon attribute)": [[32, "viser.Icon.BRAND_FLIPBOARD"]], "brand_flutter (viser.icon attribute)": [[32, "viser.Icon.BRAND_FLUTTER"]], "brand_fortnite (viser.icon attribute)": [[32, "viser.Icon.BRAND_FORTNITE"]], "brand_foursquare (viser.icon attribute)": [[32, "viser.Icon.BRAND_FOURSQUARE"]], "brand_framer (viser.icon attribute)": [[32, "viser.Icon.BRAND_FRAMER"]], "brand_framer_motion (viser.icon attribute)": [[32, "viser.Icon.BRAND_FRAMER_MOTION"]], "brand_funimation (viser.icon attribute)": [[32, "viser.Icon.BRAND_FUNIMATION"]], "brand_gatsby (viser.icon attribute)": [[32, "viser.Icon.BRAND_GATSBY"]], "brand_git (viser.icon attribute)": [[32, "viser.Icon.BRAND_GIT"]], "brand_github (viser.icon attribute)": [[32, "viser.Icon.BRAND_GITHUB"]], "brand_github_copilot (viser.icon attribute)": [[32, "viser.Icon.BRAND_GITHUB_COPILOT"]], "brand_github_filled (viser.icon attribute)": [[32, "viser.Icon.BRAND_GITHUB_FILLED"]], "brand_gitlab (viser.icon attribute)": [[32, "viser.Icon.BRAND_GITLAB"]], "brand_gmail (viser.icon attribute)": [[32, "viser.Icon.BRAND_GMAIL"]], "brand_golang (viser.icon attribute)": [[32, "viser.Icon.BRAND_GOLANG"]], "brand_google (viser.icon attribute)": [[32, "viser.Icon.BRAND_GOOGLE"]], "brand_google_analytics (viser.icon attribute)": [[32, "viser.Icon.BRAND_GOOGLE_ANALYTICS"]], "brand_google_big_query (viser.icon attribute)": [[32, "viser.Icon.BRAND_GOOGLE_BIG_QUERY"]], "brand_google_drive (viser.icon attribute)": [[32, "viser.Icon.BRAND_GOOGLE_DRIVE"]], "brand_google_fit (viser.icon attribute)": [[32, "viser.Icon.BRAND_GOOGLE_FIT"]], "brand_google_home (viser.icon attribute)": [[32, "viser.Icon.BRAND_GOOGLE_HOME"]], "brand_google_maps (viser.icon attribute)": [[32, "viser.Icon.BRAND_GOOGLE_MAPS"]], "brand_google_one (viser.icon attribute)": [[32, "viser.Icon.BRAND_GOOGLE_ONE"]], "brand_google_photos (viser.icon attribute)": [[32, "viser.Icon.BRAND_GOOGLE_PHOTOS"]], "brand_google_play (viser.icon attribute)": [[32, "viser.Icon.BRAND_GOOGLE_PLAY"]], "brand_google_podcasts (viser.icon attribute)": [[32, "viser.Icon.BRAND_GOOGLE_PODCASTS"]], "brand_grammarly (viser.icon attribute)": [[32, "viser.Icon.BRAND_GRAMMARLY"]], "brand_graphql (viser.icon attribute)": [[32, "viser.Icon.BRAND_GRAPHQL"]], "brand_gravatar (viser.icon attribute)": [[32, "viser.Icon.BRAND_GRAVATAR"]], "brand_grindr (viser.icon attribute)": [[32, "viser.Icon.BRAND_GRINDR"]], "brand_guardian (viser.icon attribute)": [[32, "viser.Icon.BRAND_GUARDIAN"]], "brand_gumroad (viser.icon attribute)": [[32, "viser.Icon.BRAND_GUMROAD"]], "brand_hbo (viser.icon attribute)": [[32, "viser.Icon.BRAND_HBO"]], "brand_headlessui (viser.icon attribute)": [[32, "viser.Icon.BRAND_HEADLESSUI"]], "brand_hexo (viser.icon attribute)": [[32, "viser.Icon.BRAND_HEXO"]], "brand_hipchat (viser.icon attribute)": [[32, "viser.Icon.BRAND_HIPCHAT"]], "brand_html5 (viser.icon attribute)": [[32, "viser.Icon.BRAND_HTML5"]], "brand_inertia (viser.icon attribute)": [[32, "viser.Icon.BRAND_INERTIA"]], "brand_instagram (viser.icon attribute)": [[32, "viser.Icon.BRAND_INSTAGRAM"]], "brand_intercom (viser.icon attribute)": [[32, "viser.Icon.BRAND_INTERCOM"]], "brand_itch (viser.icon attribute)": [[32, "viser.Icon.BRAND_ITCH"]], "brand_javascript (viser.icon attribute)": [[32, "viser.Icon.BRAND_JAVASCRIPT"]], "brand_juejin (viser.icon attribute)": [[32, "viser.Icon.BRAND_JUEJIN"]], "brand_kbin (viser.icon attribute)": [[32, "viser.Icon.BRAND_KBIN"]], "brand_kick (viser.icon attribute)": [[32, "viser.Icon.BRAND_KICK"]], "brand_kickstarter (viser.icon attribute)": [[32, "viser.Icon.BRAND_KICKSTARTER"]], "brand_kotlin (viser.icon attribute)": [[32, "viser.Icon.BRAND_KOTLIN"]], "brand_laravel (viser.icon attribute)": [[32, "viser.Icon.BRAND_LARAVEL"]], "brand_lastfm (viser.icon attribute)": [[32, "viser.Icon.BRAND_LASTFM"]], "brand_leetcode (viser.icon attribute)": [[32, "viser.Icon.BRAND_LEETCODE"]], "brand_letterboxd (viser.icon attribute)": [[32, "viser.Icon.BRAND_LETTERBOXD"]], "brand_line (viser.icon attribute)": [[32, "viser.Icon.BRAND_LINE"]], "brand_linkedin (viser.icon attribute)": [[32, "viser.Icon.BRAND_LINKEDIN"]], "brand_linktree (viser.icon attribute)": [[32, "viser.Icon.BRAND_LINKTREE"]], "brand_linqpad (viser.icon attribute)": [[32, "viser.Icon.BRAND_LINQPAD"]], "brand_loom (viser.icon attribute)": [[32, "viser.Icon.BRAND_LOOM"]], "brand_mailgun (viser.icon attribute)": [[32, "viser.Icon.BRAND_MAILGUN"]], "brand_mantine (viser.icon attribute)": [[32, "viser.Icon.BRAND_MANTINE"]], "brand_mastercard (viser.icon attribute)": [[32, "viser.Icon.BRAND_MASTERCARD"]], "brand_mastodon (viser.icon attribute)": [[32, "viser.Icon.BRAND_MASTODON"]], "brand_matrix (viser.icon attribute)": [[32, "viser.Icon.BRAND_MATRIX"]], "brand_mcdonalds (viser.icon attribute)": [[32, "viser.Icon.BRAND_MCDONALDS"]], "brand_medium (viser.icon attribute)": [[32, "viser.Icon.BRAND_MEDIUM"]], "brand_mercedes (viser.icon attribute)": [[32, "viser.Icon.BRAND_MERCEDES"]], "brand_messenger (viser.icon attribute)": [[32, "viser.Icon.BRAND_MESSENGER"]], "brand_meta (viser.icon attribute)": [[32, "viser.Icon.BRAND_META"]], "brand_microsoft_teams (viser.icon attribute)": [[32, "viser.Icon.BRAND_MICROSOFT_TEAMS"]], "brand_minecraft (viser.icon attribute)": [[32, "viser.Icon.BRAND_MINECRAFT"]], "brand_miniprogram (viser.icon attribute)": [[32, "viser.Icon.BRAND_MINIPROGRAM"]], "brand_mixpanel (viser.icon attribute)": [[32, "viser.Icon.BRAND_MIXPANEL"]], "brand_monday (viser.icon attribute)": [[32, "viser.Icon.BRAND_MONDAY"]], "brand_mongodb (viser.icon attribute)": [[32, "viser.Icon.BRAND_MONGODB"]], "brand_mysql (viser.icon attribute)": [[32, "viser.Icon.BRAND_MYSQL"]], "brand_my_oppo (viser.icon attribute)": [[32, "viser.Icon.BRAND_MY_OPPO"]], "brand_national_geographic (viser.icon attribute)": [[32, "viser.Icon.BRAND_NATIONAL_GEOGRAPHIC"]], "brand_nem (viser.icon attribute)": [[32, "viser.Icon.BRAND_NEM"]], "brand_netbeans (viser.icon attribute)": [[32, "viser.Icon.BRAND_NETBEANS"]], "brand_netease_music (viser.icon attribute)": [[32, "viser.Icon.BRAND_NETEASE_MUSIC"]], "brand_netflix (viser.icon attribute)": [[32, "viser.Icon.BRAND_NETFLIX"]], "brand_nexo (viser.icon attribute)": [[32, "viser.Icon.BRAND_NEXO"]], "brand_nextcloud (viser.icon attribute)": [[32, "viser.Icon.BRAND_NEXTCLOUD"]], "brand_nextjs (viser.icon attribute)": [[32, "viser.Icon.BRAND_NEXTJS"]], "brand_nodejs (viser.icon attribute)": [[32, "viser.Icon.BRAND_NODEJS"]], "brand_nord_vpn (viser.icon attribute)": [[32, "viser.Icon.BRAND_NORD_VPN"]], "brand_notion (viser.icon attribute)": [[32, "viser.Icon.BRAND_NOTION"]], "brand_npm (viser.icon attribute)": [[32, "viser.Icon.BRAND_NPM"]], "brand_nuxt (viser.icon attribute)": [[32, "viser.Icon.BRAND_NUXT"]], "brand_nytimes (viser.icon attribute)": [[32, "viser.Icon.BRAND_NYTIMES"]], "brand_oauth (viser.icon attribute)": [[32, "viser.Icon.BRAND_OAUTH"]], "brand_office (viser.icon attribute)": [[32, "viser.Icon.BRAND_OFFICE"]], "brand_ok_ru (viser.icon attribute)": [[32, "viser.Icon.BRAND_OK_RU"]], "brand_onedrive (viser.icon attribute)": [[32, "viser.Icon.BRAND_ONEDRIVE"]], "brand_onlyfans (viser.icon attribute)": [[32, "viser.Icon.BRAND_ONLYFANS"]], "brand_openai (viser.icon attribute)": [[32, "viser.Icon.BRAND_OPENAI"]], "brand_openvpn (viser.icon attribute)": [[32, "viser.Icon.BRAND_OPENVPN"]], "brand_open_source (viser.icon attribute)": [[32, "viser.Icon.BRAND_OPEN_SOURCE"]], "brand_opera (viser.icon attribute)": [[32, "viser.Icon.BRAND_OPERA"]], "brand_pagekit (viser.icon attribute)": [[32, "viser.Icon.BRAND_PAGEKIT"]], "brand_patreon (viser.icon attribute)": [[32, "viser.Icon.BRAND_PATREON"]], "brand_paypal (viser.icon attribute)": [[32, "viser.Icon.BRAND_PAYPAL"]], "brand_paypal_filled (viser.icon attribute)": [[32, "viser.Icon.BRAND_PAYPAL_FILLED"]], "brand_paypay (viser.icon attribute)": [[32, "viser.Icon.BRAND_PAYPAY"]], "brand_peanut (viser.icon attribute)": [[32, "viser.Icon.BRAND_PEANUT"]], "brand_pepsi (viser.icon attribute)": [[32, "viser.Icon.BRAND_PEPSI"]], "brand_php (viser.icon attribute)": [[32, "viser.Icon.BRAND_PHP"]], "brand_picsart (viser.icon attribute)": [[32, "viser.Icon.BRAND_PICSART"]], "brand_pinterest (viser.icon attribute)": [[32, "viser.Icon.BRAND_PINTEREST"]], "brand_planetscale (viser.icon attribute)": [[32, "viser.Icon.BRAND_PLANETSCALE"]], "brand_pocket (viser.icon attribute)": [[32, "viser.Icon.BRAND_POCKET"]], "brand_polymer (viser.icon attribute)": [[32, "viser.Icon.BRAND_POLYMER"]], "brand_powershell (viser.icon attribute)": [[32, "viser.Icon.BRAND_POWERSHELL"]], "brand_prisma (viser.icon attribute)": [[32, "viser.Icon.BRAND_PRISMA"]], "brand_producthunt (viser.icon attribute)": [[32, "viser.Icon.BRAND_PRODUCTHUNT"]], "brand_pushbullet (viser.icon attribute)": [[32, "viser.Icon.BRAND_PUSHBULLET"]], "brand_pushover (viser.icon attribute)": [[32, "viser.Icon.BRAND_PUSHOVER"]], "brand_python (viser.icon attribute)": [[32, "viser.Icon.BRAND_PYTHON"]], "brand_qq (viser.icon attribute)": [[32, "viser.Icon.BRAND_QQ"]], "brand_radix_ui (viser.icon attribute)": [[32, "viser.Icon.BRAND_RADIX_UI"]], "brand_react (viser.icon attribute)": [[32, "viser.Icon.BRAND_REACT"]], "brand_react_native (viser.icon attribute)": [[32, "viser.Icon.BRAND_REACT_NATIVE"]], "brand_reason (viser.icon attribute)": [[32, "viser.Icon.BRAND_REASON"]], "brand_reddit (viser.icon attribute)": [[32, "viser.Icon.BRAND_REDDIT"]], "brand_redhat (viser.icon attribute)": [[32, "viser.Icon.BRAND_REDHAT"]], "brand_redux (viser.icon attribute)": [[32, "viser.Icon.BRAND_REDUX"]], "brand_revolut (viser.icon attribute)": [[32, "viser.Icon.BRAND_REVOLUT"]], "brand_rumble (viser.icon attribute)": [[32, "viser.Icon.BRAND_RUMBLE"]], "brand_rust (viser.icon attribute)": [[32, "viser.Icon.BRAND_RUST"]], "brand_safari (viser.icon attribute)": [[32, "viser.Icon.BRAND_SAFARI"]], "brand_samsungpass (viser.icon attribute)": [[32, "viser.Icon.BRAND_SAMSUNGPASS"]], "brand_sass (viser.icon attribute)": [[32, "viser.Icon.BRAND_SASS"]], "brand_sentry (viser.icon attribute)": [[32, "viser.Icon.BRAND_SENTRY"]], "brand_sharik (viser.icon attribute)": [[32, "viser.Icon.BRAND_SHARIK"]], "brand_shazam (viser.icon attribute)": [[32, "viser.Icon.BRAND_SHAZAM"]], "brand_shopee (viser.icon attribute)": [[32, "viser.Icon.BRAND_SHOPEE"]], "brand_sketch (viser.icon attribute)": [[32, "viser.Icon.BRAND_SKETCH"]], "brand_skype (viser.icon attribute)": [[32, "viser.Icon.BRAND_SKYPE"]], "brand_slack (viser.icon attribute)": [[32, "viser.Icon.BRAND_SLACK"]], "brand_snapchat (viser.icon attribute)": [[32, "viser.Icon.BRAND_SNAPCHAT"]], "brand_snapseed (viser.icon attribute)": [[32, "viser.Icon.BRAND_SNAPSEED"]], "brand_snowflake (viser.icon attribute)": [[32, "viser.Icon.BRAND_SNOWFLAKE"]], "brand_socket_io (viser.icon attribute)": [[32, "viser.Icon.BRAND_SOCKET_IO"]], "brand_solidjs (viser.icon attribute)": [[32, "viser.Icon.BRAND_SOLIDJS"]], "brand_soundcloud (viser.icon attribute)": [[32, "viser.Icon.BRAND_SOUNDCLOUD"]], "brand_spacehey (viser.icon attribute)": [[32, "viser.Icon.BRAND_SPACEHEY"]], "brand_speedtest (viser.icon attribute)": [[32, "viser.Icon.BRAND_SPEEDTEST"]], "brand_spotify (viser.icon attribute)": [[32, "viser.Icon.BRAND_SPOTIFY"]], "brand_stackoverflow (viser.icon attribute)": [[32, "viser.Icon.BRAND_STACKOVERFLOW"]], "brand_stackshare (viser.icon attribute)": [[32, "viser.Icon.BRAND_STACKSHARE"]], "brand_steam (viser.icon attribute)": [[32, "viser.Icon.BRAND_STEAM"]], "brand_storj (viser.icon attribute)": [[32, "viser.Icon.BRAND_STORJ"]], "brand_storybook (viser.icon attribute)": [[32, "viser.Icon.BRAND_STORYBOOK"]], "brand_storytel (viser.icon attribute)": [[32, "viser.Icon.BRAND_STORYTEL"]], "brand_strava (viser.icon attribute)": [[32, "viser.Icon.BRAND_STRAVA"]], "brand_stripe (viser.icon attribute)": [[32, "viser.Icon.BRAND_STRIPE"]], "brand_sublime_text (viser.icon attribute)": [[32, "viser.Icon.BRAND_SUBLIME_TEXT"]], "brand_sugarizer (viser.icon attribute)": [[32, "viser.Icon.BRAND_SUGARIZER"]], "brand_supabase (viser.icon attribute)": [[32, "viser.Icon.BRAND_SUPABASE"]], "brand_superhuman (viser.icon attribute)": [[32, "viser.Icon.BRAND_SUPERHUMAN"]], "brand_supernova (viser.icon attribute)": [[32, "viser.Icon.BRAND_SUPERNOVA"]], "brand_surfshark (viser.icon attribute)": [[32, "viser.Icon.BRAND_SURFSHARK"]], "brand_svelte (viser.icon attribute)": [[32, "viser.Icon.BRAND_SVELTE"]], "brand_swift (viser.icon attribute)": [[32, "viser.Icon.BRAND_SWIFT"]], "brand_symfony (viser.icon attribute)": [[32, "viser.Icon.BRAND_SYMFONY"]], "brand_tabler (viser.icon attribute)": [[32, "viser.Icon.BRAND_TABLER"]], "brand_tailwind (viser.icon attribute)": [[32, "viser.Icon.BRAND_TAILWIND"]], "brand_taobao (viser.icon attribute)": [[32, "viser.Icon.BRAND_TAOBAO"]], "brand_ted (viser.icon attribute)": [[32, "viser.Icon.BRAND_TED"]], "brand_telegram (viser.icon attribute)": [[32, "viser.Icon.BRAND_TELEGRAM"]], "brand_terraform (viser.icon attribute)": [[32, "viser.Icon.BRAND_TERRAFORM"]], "brand_tether (viser.icon attribute)": [[32, "viser.Icon.BRAND_TETHER"]], "brand_threejs (viser.icon attribute)": [[32, "viser.Icon.BRAND_THREEJS"]], "brand_tidal (viser.icon attribute)": [[32, "viser.Icon.BRAND_TIDAL"]], "brand_tiktok (viser.icon attribute)": [[32, "viser.Icon.BRAND_TIKTOK"]], "brand_tikto_filled (viser.icon attribute)": [[32, "viser.Icon.BRAND_TIKTO_FILLED"]], "brand_tinder (viser.icon attribute)": [[32, "viser.Icon.BRAND_TINDER"]], "brand_topbuzz (viser.icon attribute)": [[32, "viser.Icon.BRAND_TOPBUZZ"]], "brand_torchain (viser.icon attribute)": [[32, "viser.Icon.BRAND_TORCHAIN"]], "brand_toyota (viser.icon attribute)": [[32, "viser.Icon.BRAND_TOYOTA"]], "brand_trello (viser.icon attribute)": [[32, "viser.Icon.BRAND_TRELLO"]], "brand_tripadvisor (viser.icon attribute)": [[32, "viser.Icon.BRAND_TRIPADVISOR"]], "brand_tumblr (viser.icon attribute)": [[32, "viser.Icon.BRAND_TUMBLR"]], "brand_twilio (viser.icon attribute)": [[32, "viser.Icon.BRAND_TWILIO"]], "brand_twitch (viser.icon attribute)": [[32, "viser.Icon.BRAND_TWITCH"]], "brand_twitter (viser.icon attribute)": [[32, "viser.Icon.BRAND_TWITTER"]], "brand_twitter_filled (viser.icon attribute)": [[32, "viser.Icon.BRAND_TWITTER_FILLED"]], "brand_typescript (viser.icon attribute)": [[32, "viser.Icon.BRAND_TYPESCRIPT"]], "brand_uber (viser.icon attribute)": [[32, "viser.Icon.BRAND_UBER"]], "brand_ubuntu (viser.icon attribute)": [[32, "viser.Icon.BRAND_UBUNTU"]], "brand_unity (viser.icon attribute)": [[32, "viser.Icon.BRAND_UNITY"]], "brand_unsplash (viser.icon attribute)": [[32, "viser.Icon.BRAND_UNSPLASH"]], "brand_upwork (viser.icon attribute)": [[32, "viser.Icon.BRAND_UPWORK"]], "brand_valorant (viser.icon attribute)": [[32, "viser.Icon.BRAND_VALORANT"]], "brand_vercel (viser.icon attribute)": [[32, "viser.Icon.BRAND_VERCEL"]], "brand_vimeo (viser.icon attribute)": [[32, "viser.Icon.BRAND_VIMEO"]], "brand_vinted (viser.icon attribute)": [[32, "viser.Icon.BRAND_VINTED"]], "brand_visa (viser.icon attribute)": [[32, "viser.Icon.BRAND_VISA"]], "brand_visual_studio (viser.icon attribute)": [[32, "viser.Icon.BRAND_VISUAL_STUDIO"]], "brand_vite (viser.icon attribute)": [[32, "viser.Icon.BRAND_VITE"]], "brand_vivaldi (viser.icon attribute)": [[32, "viser.Icon.BRAND_VIVALDI"]], "brand_vk (viser.icon attribute)": [[32, "viser.Icon.BRAND_VK"]], "brand_vlc (viser.icon attribute)": [[32, "viser.Icon.BRAND_VLC"]], "brand_volkswagen (viser.icon attribute)": [[32, "viser.Icon.BRAND_VOLKSWAGEN"]], "brand_vsco (viser.icon attribute)": [[32, "viser.Icon.BRAND_VSCO"]], "brand_vscode (viser.icon attribute)": [[32, "viser.Icon.BRAND_VSCODE"]], "brand_vue (viser.icon attribute)": [[32, "viser.Icon.BRAND_VUE"]], "brand_walmart (viser.icon attribute)": [[32, "viser.Icon.BRAND_WALMART"]], "brand_waze (viser.icon attribute)": [[32, "viser.Icon.BRAND_WAZE"]], "brand_webflow (viser.icon attribute)": [[32, "viser.Icon.BRAND_WEBFLOW"]], "brand_wechat (viser.icon attribute)": [[32, "viser.Icon.BRAND_WECHAT"]], "brand_weibo (viser.icon attribute)": [[32, "viser.Icon.BRAND_WEIBO"]], "brand_whatsapp (viser.icon attribute)": [[32, "viser.Icon.BRAND_WHATSAPP"]], "brand_wikipedia (viser.icon attribute)": [[32, "viser.Icon.BRAND_WIKIPEDIA"]], "brand_windows (viser.icon attribute)": [[32, "viser.Icon.BRAND_WINDOWS"]], "brand_windy (viser.icon attribute)": [[32, "viser.Icon.BRAND_WINDY"]], "brand_wish (viser.icon attribute)": [[32, "viser.Icon.BRAND_WISH"]], "brand_wix (viser.icon attribute)": [[32, "viser.Icon.BRAND_WIX"]], "brand_wordpress (viser.icon attribute)": [[32, "viser.Icon.BRAND_WORDPRESS"]], "brand_xamarin (viser.icon attribute)": [[32, "viser.Icon.BRAND_XAMARIN"]], "brand_xbox (viser.icon attribute)": [[32, "viser.Icon.BRAND_XBOX"]], "brand_xing (viser.icon attribute)": [[32, "viser.Icon.BRAND_XING"]], "brand_yahoo (viser.icon attribute)": [[32, "viser.Icon.BRAND_YAHOO"]], "brand_yandex (viser.icon attribute)": [[32, "viser.Icon.BRAND_YANDEX"]], "brand_yatse (viser.icon attribute)": [[32, "viser.Icon.BRAND_YATSE"]], "brand_ycombinator (viser.icon attribute)": [[32, "viser.Icon.BRAND_YCOMBINATOR"]], "brand_youtube (viser.icon attribute)": [[32, "viser.Icon.BRAND_YOUTUBE"]], "brand_youtube_kids (viser.icon attribute)": [[32, "viser.Icon.BRAND_YOUTUBE_KIDS"]], "brand_zalando (viser.icon attribute)": [[32, "viser.Icon.BRAND_ZALANDO"]], "brand_zapier (viser.icon attribute)": [[32, "viser.Icon.BRAND_ZAPIER"]], "brand_zeit (viser.icon attribute)": [[32, "viser.Icon.BRAND_ZEIT"]], "brand_zhihu (viser.icon attribute)": [[32, "viser.Icon.BRAND_ZHIHU"]], "brand_zoom (viser.icon attribute)": [[32, "viser.Icon.BRAND_ZOOM"]], "brand_zulip (viser.icon attribute)": [[32, "viser.Icon.BRAND_ZULIP"]], "brand_zwift (viser.icon attribute)": [[32, "viser.Icon.BRAND_ZWIFT"]], "bread (viser.icon attribute)": [[32, "viser.Icon.BREAD"]], "bread_off (viser.icon attribute)": [[32, "viser.Icon.BREAD_OFF"]], "briefcase (viser.icon attribute)": [[32, "viser.Icon.BRIEFCASE"]], "briefcase_off (viser.icon attribute)": [[32, "viser.Icon.BRIEFCASE_OFF"]], "brightness (viser.icon attribute)": [[32, "viser.Icon.BRIGHTNESS"]], "brightness_2 (viser.icon attribute)": [[32, "viser.Icon.BRIGHTNESS_2"]], "brightness_down (viser.icon attribute)": [[32, "viser.Icon.BRIGHTNESS_DOWN"]], "brightness_half (viser.icon attribute)": [[32, "viser.Icon.BRIGHTNESS_HALF"]], "brightness_off (viser.icon attribute)": [[32, "viser.Icon.BRIGHTNESS_OFF"]], "brightness_up (viser.icon attribute)": [[32, "viser.Icon.BRIGHTNESS_UP"]], "broadcast (viser.icon attribute)": [[32, "viser.Icon.BROADCAST"]], "broadcast_off (viser.icon attribute)": [[32, "viser.Icon.BROADCAST_OFF"]], "browser (viser.icon attribute)": [[32, "viser.Icon.BROWSER"]], "browser_check (viser.icon attribute)": [[32, "viser.Icon.BROWSER_CHECK"]], "browser_off (viser.icon attribute)": [[32, "viser.Icon.BROWSER_OFF"]], "browser_plus (viser.icon attribute)": [[32, "viser.Icon.BROWSER_PLUS"]], "browser_x (viser.icon attribute)": [[32, "viser.Icon.BROWSER_X"]], "brush (viser.icon attribute)": [[32, "viser.Icon.BRUSH"]], "brush_off (viser.icon attribute)": [[32, "viser.Icon.BRUSH_OFF"]], "bucket (viser.icon attribute)": [[32, "viser.Icon.BUCKET"]], "bucket_droplet (viser.icon attribute)": [[32, "viser.Icon.BUCKET_DROPLET"]], "bucket_off (viser.icon attribute)": [[32, "viser.Icon.BUCKET_OFF"]], "bug (viser.icon attribute)": [[32, "viser.Icon.BUG"]], "bug_off (viser.icon attribute)": [[32, "viser.Icon.BUG_OFF"]], "building (viser.icon attribute)": [[32, "viser.Icon.BUILDING"]], "building_arch (viser.icon attribute)": [[32, "viser.Icon.BUILDING_ARCH"]], "building_bank (viser.icon attribute)": [[32, "viser.Icon.BUILDING_BANK"]], "building_bridge (viser.icon attribute)": [[32, "viser.Icon.BUILDING_BRIDGE"]], "building_bridge_2 (viser.icon attribute)": [[32, "viser.Icon.BUILDING_BRIDGE_2"]], "building_broadcast_tower (viser.icon attribute)": [[32, "viser.Icon.BUILDING_BROADCAST_TOWER"]], "building_carousel (viser.icon attribute)": [[32, "viser.Icon.BUILDING_CAROUSEL"]], "building_castle (viser.icon attribute)": [[32, "viser.Icon.BUILDING_CASTLE"]], "building_church (viser.icon attribute)": [[32, "viser.Icon.BUILDING_CHURCH"]], "building_circus (viser.icon attribute)": [[32, "viser.Icon.BUILDING_CIRCUS"]], "building_community (viser.icon attribute)": [[32, "viser.Icon.BUILDING_COMMUNITY"]], "building_cottage (viser.icon attribute)": [[32, "viser.Icon.BUILDING_COTTAGE"]], "building_estate (viser.icon attribute)": [[32, "viser.Icon.BUILDING_ESTATE"]], "building_factory (viser.icon attribute)": [[32, "viser.Icon.BUILDING_FACTORY"]], "building_factory_2 (viser.icon attribute)": [[32, "viser.Icon.BUILDING_FACTORY_2"]], "building_fortress (viser.icon attribute)": [[32, "viser.Icon.BUILDING_FORTRESS"]], "building_hospital (viser.icon attribute)": [[32, "viser.Icon.BUILDING_HOSPITAL"]], "building_lighthouse (viser.icon attribute)": [[32, "viser.Icon.BUILDING_LIGHTHOUSE"]], "building_monument (viser.icon attribute)": [[32, "viser.Icon.BUILDING_MONUMENT"]], "building_mosque (viser.icon attribute)": [[32, "viser.Icon.BUILDING_MOSQUE"]], "building_pavilion (viser.icon attribute)": [[32, "viser.Icon.BUILDING_PAVILION"]], "building_skyscraper (viser.icon attribute)": [[32, "viser.Icon.BUILDING_SKYSCRAPER"]], "building_stadium (viser.icon attribute)": [[32, "viser.Icon.BUILDING_STADIUM"]], "building_store (viser.icon attribute)": [[32, "viser.Icon.BUILDING_STORE"]], "building_tunnel (viser.icon attribute)": [[32, "viser.Icon.BUILDING_TUNNEL"]], "building_warehouse (viser.icon attribute)": [[32, "viser.Icon.BUILDING_WAREHOUSE"]], "building_wind_turbine (viser.icon attribute)": [[32, "viser.Icon.BUILDING_WIND_TURBINE"]], "bulb (viser.icon attribute)": [[32, "viser.Icon.BULB"]], "bulb_filled (viser.icon attribute)": [[32, "viser.Icon.BULB_FILLED"]], "bulb_off (viser.icon attribute)": [[32, "viser.Icon.BULB_OFF"]], "bulldozer (viser.icon attribute)": [[32, "viser.Icon.BULLDOZER"]], "bus (viser.icon attribute)": [[32, "viser.Icon.BUS"]], "businessplan (viser.icon attribute)": [[32, "viser.Icon.BUSINESSPLAN"]], "bus_off (viser.icon attribute)": [[32, "viser.Icon.BUS_OFF"]], "bus_stop (viser.icon attribute)": [[32, "viser.Icon.BUS_STOP"]], "butterfly (viser.icon attribute)": [[32, "viser.Icon.BUTTERFLY"]], "cactus (viser.icon attribute)": [[32, "viser.Icon.CACTUS"]], "cactus_off (viser.icon attribute)": [[32, "viser.Icon.CACTUS_OFF"]], "cake (viser.icon attribute)": [[32, "viser.Icon.CAKE"]], "cake_off (viser.icon attribute)": [[32, "viser.Icon.CAKE_OFF"]], "calculator (viser.icon attribute)": [[32, "viser.Icon.CALCULATOR"]], "calculator_off (viser.icon attribute)": [[32, "viser.Icon.CALCULATOR_OFF"]], "calendar (viser.icon attribute)": [[32, "viser.Icon.CALENDAR"]], "calendar_bolt (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_BOLT"]], "calendar_cancel (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_CANCEL"]], "calendar_check (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_CHECK"]], "calendar_code (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_CODE"]], "calendar_cog (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_COG"]], "calendar_dollar (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_DOLLAR"]], "calendar_down (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_DOWN"]], "calendar_due (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_DUE"]], "calendar_event (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_EVENT"]], "calendar_exclamation (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_EXCLAMATION"]], "calendar_heart (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_HEART"]], "calendar_minus (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_MINUS"]], "calendar_off (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_OFF"]], "calendar_pause (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_PAUSE"]], "calendar_pin (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_PIN"]], "calendar_plus (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_PLUS"]], "calendar_question (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_QUESTION"]], "calendar_repeat (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_REPEAT"]], "calendar_search (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_SEARCH"]], "calendar_share (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_SHARE"]], "calendar_star (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_STAR"]], "calendar_stats (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_STATS"]], "calendar_time (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_TIME"]], "calendar_up (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_UP"]], "calendar_x (viser.icon attribute)": [[32, "viser.Icon.CALENDAR_X"]], "camera (viser.icon attribute)": [[32, "viser.Icon.CAMERA"]], "camera_bolt (viser.icon attribute)": [[32, "viser.Icon.CAMERA_BOLT"]], "camera_cancel (viser.icon attribute)": [[32, "viser.Icon.CAMERA_CANCEL"]], "camera_check (viser.icon attribute)": [[32, "viser.Icon.CAMERA_CHECK"]], "camera_code (viser.icon attribute)": [[32, "viser.Icon.CAMERA_CODE"]], "camera_cog (viser.icon attribute)": [[32, "viser.Icon.CAMERA_COG"]], "camera_dollar (viser.icon attribute)": [[32, "viser.Icon.CAMERA_DOLLAR"]], "camera_down (viser.icon attribute)": [[32, "viser.Icon.CAMERA_DOWN"]], "camera_exclamation (viser.icon attribute)": [[32, "viser.Icon.CAMERA_EXCLAMATION"]], "camera_filled (viser.icon attribute)": [[32, "viser.Icon.CAMERA_FILLED"]], "camera_heart (viser.icon attribute)": [[32, "viser.Icon.CAMERA_HEART"]], "camera_minus (viser.icon attribute)": [[32, "viser.Icon.CAMERA_MINUS"]], "camera_off (viser.icon attribute)": [[32, "viser.Icon.CAMERA_OFF"]], "camera_pause (viser.icon attribute)": [[32, "viser.Icon.CAMERA_PAUSE"]], "camera_pin (viser.icon attribute)": [[32, "viser.Icon.CAMERA_PIN"]], "camera_plus (viser.icon attribute)": [[32, "viser.Icon.CAMERA_PLUS"]], "camera_question (viser.icon attribute)": [[32, "viser.Icon.CAMERA_QUESTION"]], "camera_rotate (viser.icon attribute)": [[32, "viser.Icon.CAMERA_ROTATE"]], "camera_search (viser.icon attribute)": [[32, "viser.Icon.CAMERA_SEARCH"]], "camera_selfie (viser.icon attribute)": [[32, "viser.Icon.CAMERA_SELFIE"]], "camera_share (viser.icon attribute)": [[32, "viser.Icon.CAMERA_SHARE"]], "camera_star (viser.icon attribute)": [[32, "viser.Icon.CAMERA_STAR"]], "camera_up (viser.icon attribute)": [[32, "viser.Icon.CAMERA_UP"]], "camera_x (viser.icon attribute)": [[32, "viser.Icon.CAMERA_X"]], "camper (viser.icon attribute)": [[32, "viser.Icon.CAMPER"]], "campfire (viser.icon attribute)": [[32, "viser.Icon.CAMPFIRE"]], "candle (viser.icon attribute)": [[32, "viser.Icon.CANDLE"]], "candy (viser.icon attribute)": [[32, "viser.Icon.CANDY"]], "candy_off (viser.icon attribute)": [[32, "viser.Icon.CANDY_OFF"]], "cane (viser.icon attribute)": [[32, "viser.Icon.CANE"]], "cannabis (viser.icon attribute)": [[32, "viser.Icon.CANNABIS"]], "capsule (viser.icon attribute)": [[32, "viser.Icon.CAPSULE"]], "capsule_horizontal (viser.icon attribute)": [[32, "viser.Icon.CAPSULE_HORIZONTAL"]], "capture (viser.icon attribute)": [[32, "viser.Icon.CAPTURE"]], "capture_off (viser.icon attribute)": [[32, "viser.Icon.CAPTURE_OFF"]], "car (viser.icon attribute)": [[32, "viser.Icon.CAR"]], "caravan (viser.icon attribute)": [[32, "viser.Icon.CARAVAN"]], "cardboards (viser.icon attribute)": [[32, "viser.Icon.CARDBOARDS"]], "cardboards_off (viser.icon attribute)": [[32, "viser.Icon.CARDBOARDS_OFF"]], "cards (viser.icon attribute)": [[32, "viser.Icon.CARDS"]], "caret_down (viser.icon attribute)": [[32, "viser.Icon.CARET_DOWN"]], "caret_left (viser.icon attribute)": [[32, "viser.Icon.CARET_LEFT"]], "caret_right (viser.icon attribute)": [[32, "viser.Icon.CARET_RIGHT"]], "caret_up (viser.icon attribute)": [[32, "viser.Icon.CARET_UP"]], "carousel_horizontal (viser.icon attribute)": [[32, "viser.Icon.CAROUSEL_HORIZONTAL"]], "carousel_horizontal_filled (viser.icon attribute)": [[32, "viser.Icon.CAROUSEL_HORIZONTAL_FILLED"]], "carousel_vertical (viser.icon attribute)": [[32, "viser.Icon.CAROUSEL_VERTICAL"]], "carousel_vertical_filled (viser.icon attribute)": [[32, "viser.Icon.CAROUSEL_VERTICAL_FILLED"]], "carrot (viser.icon attribute)": [[32, "viser.Icon.CARROT"]], "carrot_off (viser.icon attribute)": [[32, "viser.Icon.CARROT_OFF"]], "car_crane (viser.icon attribute)": [[32, "viser.Icon.CAR_CRANE"]], "car_crash (viser.icon attribute)": [[32, "viser.Icon.CAR_CRASH"]], "car_off (viser.icon attribute)": [[32, "viser.Icon.CAR_OFF"]], "car_turbine (viser.icon attribute)": [[32, "viser.Icon.CAR_TURBINE"]], "cash (viser.icon attribute)": [[32, "viser.Icon.CASH"]], "cash_banknote (viser.icon attribute)": [[32, "viser.Icon.CASH_BANKNOTE"]], "cash_banknote_off (viser.icon attribute)": [[32, "viser.Icon.CASH_BANKNOTE_OFF"]], "cash_off (viser.icon attribute)": [[32, "viser.Icon.CASH_OFF"]], "cast (viser.icon attribute)": [[32, "viser.Icon.CAST"]], "cast_off (viser.icon attribute)": [[32, "viser.Icon.CAST_OFF"]], "cat (viser.icon attribute)": [[32, "viser.Icon.CAT"]], "category (viser.icon attribute)": [[32, "viser.Icon.CATEGORY"]], "category_2 (viser.icon attribute)": [[32, "viser.Icon.CATEGORY_2"]], "ce (viser.icon attribute)": [[32, "viser.Icon.CE"]], "cell (viser.icon attribute)": [[32, "viser.Icon.CELL"]], "cell_signal_1 (viser.icon attribute)": [[32, "viser.Icon.CELL_SIGNAL_1"]], "cell_signal_2 (viser.icon attribute)": [[32, "viser.Icon.CELL_SIGNAL_2"]], "cell_signal_3 (viser.icon attribute)": [[32, "viser.Icon.CELL_SIGNAL_3"]], "cell_signal_4 (viser.icon attribute)": [[32, "viser.Icon.CELL_SIGNAL_4"]], "cell_signal_5 (viser.icon attribute)": [[32, "viser.Icon.CELL_SIGNAL_5"]], "cell_signal_off (viser.icon attribute)": [[32, "viser.Icon.CELL_SIGNAL_OFF"]], "certificate (viser.icon attribute)": [[32, "viser.Icon.CERTIFICATE"]], "certificate_2 (viser.icon attribute)": [[32, "viser.Icon.CERTIFICATE_2"]], "certificate_2_off (viser.icon attribute)": [[32, "viser.Icon.CERTIFICATE_2_OFF"]], "certificate_off (viser.icon attribute)": [[32, "viser.Icon.CERTIFICATE_OFF"]], "ce_off (viser.icon attribute)": [[32, "viser.Icon.CE_OFF"]], "chair_director (viser.icon attribute)": [[32, "viser.Icon.CHAIR_DIRECTOR"]], "chalkboard (viser.icon attribute)": [[32, "viser.Icon.CHALKBOARD"]], "chalkboard_off (viser.icon attribute)": [[32, "viser.Icon.CHALKBOARD_OFF"]], "charging_pile (viser.icon attribute)": [[32, "viser.Icon.CHARGING_PILE"]], "chart_arcs (viser.icon attribute)": [[32, "viser.Icon.CHART_ARCS"]], "chart_arcs_3 (viser.icon attribute)": [[32, "viser.Icon.CHART_ARCS_3"]], "chart_area (viser.icon attribute)": [[32, "viser.Icon.CHART_AREA"]], "chart_area_filled (viser.icon attribute)": [[32, "viser.Icon.CHART_AREA_FILLED"]], "chart_area_line (viser.icon attribute)": [[32, "viser.Icon.CHART_AREA_LINE"]], "chart_area_line_filled (viser.icon attribute)": [[32, "viser.Icon.CHART_AREA_LINE_FILLED"]], "chart_arrows (viser.icon attribute)": [[32, "viser.Icon.CHART_ARROWS"]], "chart_arrows_vertical (viser.icon attribute)": [[32, "viser.Icon.CHART_ARROWS_VERTICAL"]], "chart_bar (viser.icon attribute)": [[32, "viser.Icon.CHART_BAR"]], "chart_bar_off (viser.icon attribute)": [[32, "viser.Icon.CHART_BAR_OFF"]], "chart_bubble (viser.icon attribute)": [[32, "viser.Icon.CHART_BUBBLE"]], "chart_bubble_filled (viser.icon attribute)": [[32, "viser.Icon.CHART_BUBBLE_FILLED"]], "chart_candle (viser.icon attribute)": [[32, "viser.Icon.CHART_CANDLE"]], "chart_candle_filled (viser.icon attribute)": [[32, "viser.Icon.CHART_CANDLE_FILLED"]], "chart_circles (viser.icon attribute)": [[32, "viser.Icon.CHART_CIRCLES"]], "chart_donut (viser.icon attribute)": [[32, "viser.Icon.CHART_DONUT"]], "chart_donut_2 (viser.icon attribute)": [[32, "viser.Icon.CHART_DONUT_2"]], "chart_donut_3 (viser.icon attribute)": [[32, "viser.Icon.CHART_DONUT_3"]], "chart_donut_4 (viser.icon attribute)": [[32, "viser.Icon.CHART_DONUT_4"]], "chart_donut_filled (viser.icon attribute)": [[32, "viser.Icon.CHART_DONUT_FILLED"]], "chart_dots (viser.icon attribute)": [[32, "viser.Icon.CHART_DOTS"]], "chart_dots_2 (viser.icon attribute)": [[32, "viser.Icon.CHART_DOTS_2"]], "chart_dots_3 (viser.icon attribute)": [[32, "viser.Icon.CHART_DOTS_3"]], "chart_grid_dots (viser.icon attribute)": [[32, "viser.Icon.CHART_GRID_DOTS"]], "chart_histogram (viser.icon attribute)": [[32, "viser.Icon.CHART_HISTOGRAM"]], "chart_infographic (viser.icon attribute)": [[32, "viser.Icon.CHART_INFOGRAPHIC"]], "chart_line (viser.icon attribute)": [[32, "viser.Icon.CHART_LINE"]], "chart_pie (viser.icon attribute)": [[32, "viser.Icon.CHART_PIE"]], "chart_pie_2 (viser.icon attribute)": [[32, "viser.Icon.CHART_PIE_2"]], "chart_pie_3 (viser.icon attribute)": [[32, "viser.Icon.CHART_PIE_3"]], "chart_pie_4 (viser.icon attribute)": [[32, "viser.Icon.CHART_PIE_4"]], "chart_pie_filled (viser.icon attribute)": [[32, "viser.Icon.CHART_PIE_FILLED"]], "chart_pie_off (viser.icon attribute)": [[32, "viser.Icon.CHART_PIE_OFF"]], "chart_ppf (viser.icon attribute)": [[32, "viser.Icon.CHART_PPF"]], "chart_radar (viser.icon attribute)": [[32, "viser.Icon.CHART_RADAR"]], "chart_sankey (viser.icon attribute)": [[32, "viser.Icon.CHART_SANKEY"]], "chart_treemap (viser.icon attribute)": [[32, "viser.Icon.CHART_TREEMAP"]], "check (viser.icon attribute)": [[32, "viser.Icon.CHECK"]], "checkbox (viser.icon attribute)": [[32, "viser.Icon.CHECKBOX"]], "checklist (viser.icon attribute)": [[32, "viser.Icon.CHECKLIST"]], "checks (viser.icon attribute)": [[32, "viser.Icon.CHECKS"]], "checkup_list (viser.icon attribute)": [[32, "viser.Icon.CHECKUP_LIST"]], "cheese (viser.icon attribute)": [[32, "viser.Icon.CHEESE"]], "chef_hat (viser.icon attribute)": [[32, "viser.Icon.CHEF_HAT"]], "chef_hat_off (viser.icon attribute)": [[32, "viser.Icon.CHEF_HAT_OFF"]], "cherry (viser.icon attribute)": [[32, "viser.Icon.CHERRY"]], "cherry_filled (viser.icon attribute)": [[32, "viser.Icon.CHERRY_FILLED"]], "chess (viser.icon attribute)": [[32, "viser.Icon.CHESS"]], "chess_bishop (viser.icon attribute)": [[32, "viser.Icon.CHESS_BISHOP"]], "chess_bishop_filled (viser.icon attribute)": [[32, "viser.Icon.CHESS_BISHOP_FILLED"]], "chess_filled (viser.icon attribute)": [[32, "viser.Icon.CHESS_FILLED"]], "chess_king (viser.icon attribute)": [[32, "viser.Icon.CHESS_KING"]], "chess_king_filled (viser.icon attribute)": [[32, "viser.Icon.CHESS_KING_FILLED"]], "chess_knight (viser.icon attribute)": [[32, "viser.Icon.CHESS_KNIGHT"]], "chess_knight_filled (viser.icon attribute)": [[32, "viser.Icon.CHESS_KNIGHT_FILLED"]], "chess_queen (viser.icon attribute)": [[32, "viser.Icon.CHESS_QUEEN"]], "chess_queen_filled (viser.icon attribute)": [[32, "viser.Icon.CHESS_QUEEN_FILLED"]], "chess_rook (viser.icon attribute)": [[32, "viser.Icon.CHESS_ROOK"]], "chess_rook_filled (viser.icon attribute)": [[32, "viser.Icon.CHESS_ROOK_FILLED"]], "chevrons_down (viser.icon attribute)": [[32, "viser.Icon.CHEVRONS_DOWN"]], "chevrons_down_left (viser.icon attribute)": [[32, "viser.Icon.CHEVRONS_DOWN_LEFT"]], "chevrons_down_right (viser.icon attribute)": [[32, "viser.Icon.CHEVRONS_DOWN_RIGHT"]], "chevrons_left (viser.icon attribute)": [[32, "viser.Icon.CHEVRONS_LEFT"]], "chevrons_right (viser.icon attribute)": [[32, "viser.Icon.CHEVRONS_RIGHT"]], "chevrons_up (viser.icon attribute)": [[32, "viser.Icon.CHEVRONS_UP"]], "chevrons_up_left (viser.icon attribute)": [[32, "viser.Icon.CHEVRONS_UP_LEFT"]], "chevrons_up_right (viser.icon attribute)": [[32, "viser.Icon.CHEVRONS_UP_RIGHT"]], "chevron_compact_down (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_COMPACT_DOWN"]], "chevron_compact_left (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_COMPACT_LEFT"]], "chevron_compact_right (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_COMPACT_RIGHT"]], "chevron_compact_up (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_COMPACT_UP"]], "chevron_down (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_DOWN"]], "chevron_down_left (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_DOWN_LEFT"]], "chevron_down_right (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_DOWN_RIGHT"]], "chevron_left (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_LEFT"]], "chevron_left_pipe (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_LEFT_PIPE"]], "chevron_right (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_RIGHT"]], "chevron_right_pipe (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_RIGHT_PIPE"]], "chevron_up (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_UP"]], "chevron_up_left (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_UP_LEFT"]], "chevron_up_right (viser.icon attribute)": [[32, "viser.Icon.CHEVRON_UP_RIGHT"]], "chisel (viser.icon attribute)": [[32, "viser.Icon.CHISEL"]], "christmas_tree (viser.icon attribute)": [[32, "viser.Icon.CHRISTMAS_TREE"]], "christmas_tree_off (viser.icon attribute)": [[32, "viser.Icon.CHRISTMAS_TREE_OFF"]], "circle (viser.icon attribute)": [[32, "viser.Icon.CIRCLE"]], "circles (viser.icon attribute)": [[32, "viser.Icon.CIRCLES"]], "circles_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLES_FILLED"]], "circles_relation (viser.icon attribute)": [[32, "viser.Icon.CIRCLES_RELATION"]], "circle_0_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_0_FILLED"]], "circle_1_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_1_FILLED"]], "circle_2_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_2_FILLED"]], "circle_3_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_3_FILLED"]], "circle_4_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_4_FILLED"]], "circle_5_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_5_FILLED"]], "circle_6_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_6_FILLED"]], "circle_7_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_7_FILLED"]], "circle_8_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_8_FILLED"]], "circle_9_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_9_FILLED"]], "circle_arrow_down (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_DOWN"]], "circle_arrow_down_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_DOWN_FILLED"]], "circle_arrow_down_left (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_DOWN_LEFT"]], "circle_arrow_down_left_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_DOWN_LEFT_FILLED"]], "circle_arrow_down_right (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_DOWN_RIGHT"]], "circle_arrow_down_right_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_DOWN_RIGHT_FILLED"]], "circle_arrow_left (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_LEFT"]], "circle_arrow_left_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_LEFT_FILLED"]], "circle_arrow_right (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_RIGHT"]], "circle_arrow_right_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_RIGHT_FILLED"]], "circle_arrow_up (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_UP"]], "circle_arrow_up_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_UP_FILLED"]], "circle_arrow_up_left (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_UP_LEFT"]], "circle_arrow_up_left_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_UP_LEFT_FILLED"]], "circle_arrow_up_right (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_UP_RIGHT"]], "circle_arrow_up_right_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_ARROW_UP_RIGHT_FILLED"]], "circle_caret_down (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CARET_DOWN"]], "circle_caret_left (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CARET_LEFT"]], "circle_caret_right (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CARET_RIGHT"]], "circle_caret_up (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CARET_UP"]], "circle_check (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CHECK"]], "circle_check_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CHECK_FILLED"]], "circle_chevrons_down (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CHEVRONS_DOWN"]], "circle_chevrons_left (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CHEVRONS_LEFT"]], "circle_chevrons_right (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CHEVRONS_RIGHT"]], "circle_chevrons_up (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CHEVRONS_UP"]], "circle_chevron_down (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CHEVRON_DOWN"]], "circle_chevron_left (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CHEVRON_LEFT"]], "circle_chevron_right (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CHEVRON_RIGHT"]], "circle_chevron_up (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_CHEVRON_UP"]], "circle_dashed (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_DASHED"]], "circle_dot (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_DOT"]], "circle_dotted (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_DOTTED"]], "circle_dot_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_DOT_FILLED"]], "circle_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_FILLED"]], "circle_half (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_HALF"]], "circle_half_2 (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_HALF_2"]], "circle_half_vertical (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_HALF_VERTICAL"]], "circle_key (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_KEY"]], "circle_key_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_KEY_FILLED"]], "circle_letter_a (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_A"]], "circle_letter_b (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_B"]], "circle_letter_c (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_C"]], "circle_letter_d (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_D"]], "circle_letter_e (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_E"]], "circle_letter_f (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_F"]], "circle_letter_g (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_G"]], "circle_letter_h (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_H"]], "circle_letter_i (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_I"]], "circle_letter_j (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_J"]], "circle_letter_k (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_K"]], "circle_letter_l (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_L"]], "circle_letter_m (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_M"]], "circle_letter_n (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_N"]], "circle_letter_o (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_O"]], "circle_letter_p (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_P"]], "circle_letter_q (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_Q"]], "circle_letter_r (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_R"]], "circle_letter_s (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_S"]], "circle_letter_t (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_T"]], "circle_letter_u (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_U"]], "circle_letter_v (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_V"]], "circle_letter_w (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_W"]], "circle_letter_x (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_X"]], "circle_letter_y (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_Y"]], "circle_letter_z (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_LETTER_Z"]], "circle_minus (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_MINUS"]], "circle_number_0 (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_NUMBER_0"]], "circle_number_1 (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_NUMBER_1"]], "circle_number_2 (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_NUMBER_2"]], "circle_number_3 (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_NUMBER_3"]], "circle_number_4 (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_NUMBER_4"]], "circle_number_5 (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_NUMBER_5"]], "circle_number_6 (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_NUMBER_6"]], "circle_number_7 (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_NUMBER_7"]], "circle_number_8 (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_NUMBER_8"]], "circle_number_9 (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_NUMBER_9"]], "circle_off (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_OFF"]], "circle_plus (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_PLUS"]], "circle_rectangle (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_RECTANGLE"]], "circle_rectangle_off (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_RECTANGLE_OFF"]], "circle_square (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_SQUARE"]], "circle_triangle (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_TRIANGLE"]], "circle_x (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_X"]], "circle_x_filled (viser.icon attribute)": [[32, "viser.Icon.CIRCLE_X_FILLED"]], "circuit_ammeter (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_AMMETER"]], "circuit_battery (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_BATTERY"]], "circuit_bulb (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_BULB"]], "circuit_capacitor (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_CAPACITOR"]], "circuit_capacitor_polarized (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_CAPACITOR_POLARIZED"]], "circuit_cell (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_CELL"]], "circuit_cell_plus (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_CELL_PLUS"]], "circuit_changeover (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_CHANGEOVER"]], "circuit_diode (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_DIODE"]], "circuit_diode_zener (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_DIODE_ZENER"]], "circuit_ground (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_GROUND"]], "circuit_ground_digital (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_GROUND_DIGITAL"]], "circuit_inductor (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_INDUCTOR"]], "circuit_motor (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_MOTOR"]], "circuit_pushbutton (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_PUSHBUTTON"]], "circuit_resistor (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_RESISTOR"]], "circuit_switch_closed (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_SWITCH_CLOSED"]], "circuit_switch_open (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_SWITCH_OPEN"]], "circuit_voltmeter (viser.icon attribute)": [[32, "viser.Icon.CIRCUIT_VOLTMETER"]], "clear_all (viser.icon attribute)": [[32, "viser.Icon.CLEAR_ALL"]], "clear_formatting (viser.icon attribute)": [[32, "viser.Icon.CLEAR_FORMATTING"]], "click (viser.icon attribute)": [[32, "viser.Icon.CLICK"]], "clipboard (viser.icon attribute)": [[32, "viser.Icon.CLIPBOARD"]], "clipboard_check (viser.icon attribute)": [[32, "viser.Icon.CLIPBOARD_CHECK"]], "clipboard_copy (viser.icon attribute)": [[32, "viser.Icon.CLIPBOARD_COPY"]], "clipboard_data (viser.icon attribute)": [[32, "viser.Icon.CLIPBOARD_DATA"]], "clipboard_heart (viser.icon attribute)": [[32, "viser.Icon.CLIPBOARD_HEART"]], "clipboard_list (viser.icon attribute)": [[32, "viser.Icon.CLIPBOARD_LIST"]], "clipboard_off (viser.icon attribute)": [[32, "viser.Icon.CLIPBOARD_OFF"]], "clipboard_plus (viser.icon attribute)": [[32, "viser.Icon.CLIPBOARD_PLUS"]], "clipboard_text (viser.icon attribute)": [[32, "viser.Icon.CLIPBOARD_TEXT"]], "clipboard_typography (viser.icon attribute)": [[32, "viser.Icon.CLIPBOARD_TYPOGRAPHY"]], "clipboard_x (viser.icon attribute)": [[32, "viser.Icon.CLIPBOARD_X"]], "clock (viser.icon attribute)": [[32, "viser.Icon.CLOCK"]], "clock_2 (viser.icon attribute)": [[32, "viser.Icon.CLOCK_2"]], "clock_bolt (viser.icon attribute)": [[32, "viser.Icon.CLOCK_BOLT"]], "clock_cancel (viser.icon attribute)": [[32, "viser.Icon.CLOCK_CANCEL"]], "clock_check (viser.icon attribute)": [[32, "viser.Icon.CLOCK_CHECK"]], "clock_code (viser.icon attribute)": [[32, "viser.Icon.CLOCK_CODE"]], "clock_cog (viser.icon attribute)": [[32, "viser.Icon.CLOCK_COG"]], "clock_dollar (viser.icon attribute)": [[32, "viser.Icon.CLOCK_DOLLAR"]], "clock_down (viser.icon attribute)": [[32, "viser.Icon.CLOCK_DOWN"]], "clock_edit (viser.icon attribute)": [[32, "viser.Icon.CLOCK_EDIT"]], "clock_exclamation (viser.icon attribute)": [[32, "viser.Icon.CLOCK_EXCLAMATION"]], "clock_filled (viser.icon attribute)": [[32, "viser.Icon.CLOCK_FILLED"]], "clock_heart (viser.icon attribute)": [[32, "viser.Icon.CLOCK_HEART"]], "clock_hour_1 (viser.icon attribute)": [[32, "viser.Icon.CLOCK_HOUR_1"]], "clock_hour_10 (viser.icon attribute)": [[32, "viser.Icon.CLOCK_HOUR_10"]], "clock_hour_11 (viser.icon attribute)": [[32, "viser.Icon.CLOCK_HOUR_11"]], "clock_hour_12 (viser.icon attribute)": [[32, "viser.Icon.CLOCK_HOUR_12"]], "clock_hour_2 (viser.icon attribute)": [[32, "viser.Icon.CLOCK_HOUR_2"]], "clock_hour_3 (viser.icon attribute)": [[32, "viser.Icon.CLOCK_HOUR_3"]], "clock_hour_4 (viser.icon attribute)": [[32, "viser.Icon.CLOCK_HOUR_4"]], "clock_hour_5 (viser.icon attribute)": [[32, "viser.Icon.CLOCK_HOUR_5"]], "clock_hour_6 (viser.icon attribute)": [[32, "viser.Icon.CLOCK_HOUR_6"]], "clock_hour_7 (viser.icon attribute)": [[32, "viser.Icon.CLOCK_HOUR_7"]], "clock_hour_8 (viser.icon attribute)": [[32, "viser.Icon.CLOCK_HOUR_8"]], "clock_hour_9 (viser.icon attribute)": [[32, "viser.Icon.CLOCK_HOUR_9"]], "clock_minus (viser.icon attribute)": [[32, "viser.Icon.CLOCK_MINUS"]], "clock_off (viser.icon attribute)": [[32, "viser.Icon.CLOCK_OFF"]], "clock_pause (viser.icon attribute)": [[32, "viser.Icon.CLOCK_PAUSE"]], "clock_pin (viser.icon attribute)": [[32, "viser.Icon.CLOCK_PIN"]], "clock_play (viser.icon attribute)": [[32, "viser.Icon.CLOCK_PLAY"]], "clock_plus (viser.icon attribute)": [[32, "viser.Icon.CLOCK_PLUS"]], "clock_question (viser.icon attribute)": [[32, "viser.Icon.CLOCK_QUESTION"]], "clock_record (viser.icon attribute)": [[32, "viser.Icon.CLOCK_RECORD"]], "clock_search (viser.icon attribute)": [[32, "viser.Icon.CLOCK_SEARCH"]], "clock_share (viser.icon attribute)": [[32, "viser.Icon.CLOCK_SHARE"]], "clock_shield (viser.icon attribute)": [[32, "viser.Icon.CLOCK_SHIELD"]], "clock_star (viser.icon attribute)": [[32, "viser.Icon.CLOCK_STAR"]], "clock_stop (viser.icon attribute)": [[32, "viser.Icon.CLOCK_STOP"]], "clock_up (viser.icon attribute)": [[32, "viser.Icon.CLOCK_UP"]], "clock_x (viser.icon attribute)": [[32, "viser.Icon.CLOCK_X"]], "clothes_rack (viser.icon attribute)": [[32, "viser.Icon.CLOTHES_RACK"]], "clothes_rack_off (viser.icon attribute)": [[32, "viser.Icon.CLOTHES_RACK_OFF"]], "cloud (viser.icon attribute)": [[32, "viser.Icon.CLOUD"]], "cloud_bolt (viser.icon attribute)": [[32, "viser.Icon.CLOUD_BOLT"]], "cloud_cancel (viser.icon attribute)": [[32, "viser.Icon.CLOUD_CANCEL"]], "cloud_check (viser.icon attribute)": [[32, "viser.Icon.CLOUD_CHECK"]], "cloud_code (viser.icon attribute)": [[32, "viser.Icon.CLOUD_CODE"]], "cloud_cog (viser.icon attribute)": [[32, "viser.Icon.CLOUD_COG"]], "cloud_computing (viser.icon attribute)": [[32, "viser.Icon.CLOUD_COMPUTING"]], "cloud_data_connection (viser.icon attribute)": [[32, "viser.Icon.CLOUD_DATA_CONNECTION"]], "cloud_dollar (viser.icon attribute)": [[32, "viser.Icon.CLOUD_DOLLAR"]], "cloud_down (viser.icon attribute)": [[32, "viser.Icon.CLOUD_DOWN"]], "cloud_download (viser.icon attribute)": [[32, "viser.Icon.CLOUD_DOWNLOAD"]], "cloud_exclamation (viser.icon attribute)": [[32, "viser.Icon.CLOUD_EXCLAMATION"]], "cloud_filled (viser.icon attribute)": [[32, "viser.Icon.CLOUD_FILLED"]], "cloud_fog (viser.icon attribute)": [[32, "viser.Icon.CLOUD_FOG"]], "cloud_heart (viser.icon attribute)": [[32, "viser.Icon.CLOUD_HEART"]], "cloud_lock (viser.icon attribute)": [[32, "viser.Icon.CLOUD_LOCK"]], "cloud_lock_open (viser.icon attribute)": [[32, "viser.Icon.CLOUD_LOCK_OPEN"]], "cloud_minus (viser.icon attribute)": [[32, "viser.Icon.CLOUD_MINUS"]], "cloud_off (viser.icon attribute)": [[32, "viser.Icon.CLOUD_OFF"]], "cloud_pause (viser.icon attribute)": [[32, "viser.Icon.CLOUD_PAUSE"]], "cloud_pin (viser.icon attribute)": [[32, "viser.Icon.CLOUD_PIN"]], "cloud_plus (viser.icon attribute)": [[32, "viser.Icon.CLOUD_PLUS"]], "cloud_question (viser.icon attribute)": [[32, "viser.Icon.CLOUD_QUESTION"]], "cloud_rain (viser.icon attribute)": [[32, "viser.Icon.CLOUD_RAIN"]], "cloud_search (viser.icon attribute)": [[32, "viser.Icon.CLOUD_SEARCH"]], "cloud_share (viser.icon attribute)": [[32, "viser.Icon.CLOUD_SHARE"]], "cloud_snow (viser.icon attribute)": [[32, "viser.Icon.CLOUD_SNOW"]], "cloud_star (viser.icon attribute)": [[32, "viser.Icon.CLOUD_STAR"]], "cloud_storm (viser.icon attribute)": [[32, "viser.Icon.CLOUD_STORM"]], "cloud_up (viser.icon attribute)": [[32, "viser.Icon.CLOUD_UP"]], "cloud_upload (viser.icon attribute)": [[32, "viser.Icon.CLOUD_UPLOAD"]], "cloud_x (viser.icon attribute)": [[32, "viser.Icon.CLOUD_X"]], "clover (viser.icon attribute)": [[32, "viser.Icon.CLOVER"]], "clover_2 (viser.icon attribute)": [[32, "viser.Icon.CLOVER_2"]], "clubs (viser.icon attribute)": [[32, "viser.Icon.CLUBS"]], "clubs_filled (viser.icon attribute)": [[32, "viser.Icon.CLUBS_FILLED"]], "code (viser.icon attribute)": [[32, "viser.Icon.CODE"]], "code_asterix (viser.icon attribute)": [[32, "viser.Icon.CODE_ASTERIX"]], "code_circle (viser.icon attribute)": [[32, "viser.Icon.CODE_CIRCLE"]], "code_circle_2 (viser.icon attribute)": [[32, "viser.Icon.CODE_CIRCLE_2"]], "code_dots (viser.icon attribute)": [[32, "viser.Icon.CODE_DOTS"]], "code_minus (viser.icon attribute)": [[32, "viser.Icon.CODE_MINUS"]], "code_off (viser.icon attribute)": [[32, "viser.Icon.CODE_OFF"]], "code_plus (viser.icon attribute)": [[32, "viser.Icon.CODE_PLUS"]], "coffee (viser.icon attribute)": [[32, "viser.Icon.COFFEE"]], "coffee_off (viser.icon attribute)": [[32, "viser.Icon.COFFEE_OFF"]], "coffin (viser.icon attribute)": [[32, "viser.Icon.COFFIN"]], "coin (viser.icon attribute)": [[32, "viser.Icon.COIN"]], "coins (viser.icon attribute)": [[32, "viser.Icon.COINS"]], "coin_bitcoin (viser.icon attribute)": [[32, "viser.Icon.COIN_BITCOIN"]], "coin_euro (viser.icon attribute)": [[32, "viser.Icon.COIN_EURO"]], "coin_monero (viser.icon attribute)": [[32, "viser.Icon.COIN_MONERO"]], "coin_off (viser.icon attribute)": [[32, "viser.Icon.COIN_OFF"]], "coin_pound (viser.icon attribute)": [[32, "viser.Icon.COIN_POUND"]], "coin_rupee (viser.icon attribute)": [[32, "viser.Icon.COIN_RUPEE"]], "coin_yen (viser.icon attribute)": [[32, "viser.Icon.COIN_YEN"]], "coin_yuan (viser.icon attribute)": [[32, "viser.Icon.COIN_YUAN"]], "color_filter (viser.icon attribute)": [[32, "viser.Icon.COLOR_FILTER"]], "color_picker (viser.icon attribute)": [[32, "viser.Icon.COLOR_PICKER"]], "color_picker_off (viser.icon attribute)": [[32, "viser.Icon.COLOR_PICKER_OFF"]], "color_swatch (viser.icon attribute)": [[32, "viser.Icon.COLOR_SWATCH"]], "color_swatch_off (viser.icon attribute)": [[32, "viser.Icon.COLOR_SWATCH_OFF"]], "columns (viser.icon attribute)": [[32, "viser.Icon.COLUMNS"]], "columns_1 (viser.icon attribute)": [[32, "viser.Icon.COLUMNS_1"]], "columns_2 (viser.icon attribute)": [[32, "viser.Icon.COLUMNS_2"]], "columns_3 (viser.icon attribute)": [[32, "viser.Icon.COLUMNS_3"]], "columns_off (viser.icon attribute)": [[32, "viser.Icon.COLUMNS_OFF"]], "column_insert_left (viser.icon attribute)": [[32, "viser.Icon.COLUMN_INSERT_LEFT"]], "column_insert_right (viser.icon attribute)": [[32, "viser.Icon.COLUMN_INSERT_RIGHT"]], "column_remove (viser.icon attribute)": [[32, "viser.Icon.COLUMN_REMOVE"]], "comet (viser.icon attribute)": [[32, "viser.Icon.COMET"]], "command (viser.icon attribute)": [[32, "viser.Icon.COMMAND"]], "command_off (viser.icon attribute)": [[32, "viser.Icon.COMMAND_OFF"]], "compass (viser.icon attribute)": [[32, "viser.Icon.COMPASS"]], "compass_off (viser.icon attribute)": [[32, "viser.Icon.COMPASS_OFF"]], "components (viser.icon attribute)": [[32, "viser.Icon.COMPONENTS"]], "components_off (viser.icon attribute)": [[32, "viser.Icon.COMPONENTS_OFF"]], "cone (viser.icon attribute)": [[32, "viser.Icon.CONE"]], "cone_2 (viser.icon attribute)": [[32, "viser.Icon.CONE_2"]], "cone_off (viser.icon attribute)": [[32, "viser.Icon.CONE_OFF"]], "cone_plus (viser.icon attribute)": [[32, "viser.Icon.CONE_PLUS"]], "confetti (viser.icon attribute)": [[32, "viser.Icon.CONFETTI"]], "confetti_off (viser.icon attribute)": [[32, "viser.Icon.CONFETTI_OFF"]], "confucius (viser.icon attribute)": [[32, "viser.Icon.CONFUCIUS"]], "container (viser.icon attribute)": [[32, "viser.Icon.CONTAINER"]], "container_off (viser.icon attribute)": [[32, "viser.Icon.CONTAINER_OFF"]], "contrast (viser.icon attribute)": [[32, "viser.Icon.CONTRAST"]], "contrast_2 (viser.icon attribute)": [[32, "viser.Icon.CONTRAST_2"]], "contrast_2_off (viser.icon attribute)": [[32, "viser.Icon.CONTRAST_2_OFF"]], "contrast_off (viser.icon attribute)": [[32, "viser.Icon.CONTRAST_OFF"]], "cooker (viser.icon attribute)": [[32, "viser.Icon.COOKER"]], "cookie (viser.icon attribute)": [[32, "viser.Icon.COOKIE"]], "cookie_man (viser.icon attribute)": [[32, "viser.Icon.COOKIE_MAN"]], "cookie_off (viser.icon attribute)": [[32, "viser.Icon.COOKIE_OFF"]], "copy (viser.icon attribute)": [[32, "viser.Icon.COPY"]], "copyleft (viser.icon attribute)": [[32, "viser.Icon.COPYLEFT"]], "copyleft_filled (viser.icon attribute)": [[32, "viser.Icon.COPYLEFT_FILLED"]], "copyleft_off (viser.icon attribute)": [[32, "viser.Icon.COPYLEFT_OFF"]], "copyright (viser.icon attribute)": [[32, "viser.Icon.COPYRIGHT"]], "copyright_filled (viser.icon attribute)": [[32, "viser.Icon.COPYRIGHT_FILLED"]], "copyright_off (viser.icon attribute)": [[32, "viser.Icon.COPYRIGHT_OFF"]], "copy_off (viser.icon attribute)": [[32, "viser.Icon.COPY_OFF"]], "corner_down_left (viser.icon attribute)": [[32, "viser.Icon.CORNER_DOWN_LEFT"]], "corner_down_left_double (viser.icon attribute)": [[32, "viser.Icon.CORNER_DOWN_LEFT_DOUBLE"]], "corner_down_right (viser.icon attribute)": [[32, "viser.Icon.CORNER_DOWN_RIGHT"]], "corner_down_right_double (viser.icon attribute)": [[32, "viser.Icon.CORNER_DOWN_RIGHT_DOUBLE"]], "corner_left_down (viser.icon attribute)": [[32, "viser.Icon.CORNER_LEFT_DOWN"]], "corner_left_down_double (viser.icon attribute)": [[32, "viser.Icon.CORNER_LEFT_DOWN_DOUBLE"]], "corner_left_up (viser.icon attribute)": [[32, "viser.Icon.CORNER_LEFT_UP"]], "corner_left_up_double (viser.icon attribute)": [[32, "viser.Icon.CORNER_LEFT_UP_DOUBLE"]], "corner_right_down (viser.icon attribute)": [[32, "viser.Icon.CORNER_RIGHT_DOWN"]], "corner_right_down_double (viser.icon attribute)": [[32, "viser.Icon.CORNER_RIGHT_DOWN_DOUBLE"]], "corner_right_up (viser.icon attribute)": [[32, "viser.Icon.CORNER_RIGHT_UP"]], "corner_right_up_double (viser.icon attribute)": [[32, "viser.Icon.CORNER_RIGHT_UP_DOUBLE"]], "corner_up_left (viser.icon attribute)": [[32, "viser.Icon.CORNER_UP_LEFT"]], "corner_up_left_double (viser.icon attribute)": [[32, "viser.Icon.CORNER_UP_LEFT_DOUBLE"]], "corner_up_right (viser.icon attribute)": [[32, "viser.Icon.CORNER_UP_RIGHT"]], "corner_up_right_double (viser.icon attribute)": [[32, "viser.Icon.CORNER_UP_RIGHT_DOUBLE"]], "cpu (viser.icon attribute)": [[32, "viser.Icon.CPU"]], "cpu_2 (viser.icon attribute)": [[32, "viser.Icon.CPU_2"]], "cpu_off (viser.icon attribute)": [[32, "viser.Icon.CPU_OFF"]], "crane (viser.icon attribute)": [[32, "viser.Icon.CRANE"]], "crane_off (viser.icon attribute)": [[32, "viser.Icon.CRANE_OFF"]], "creative_commons (viser.icon attribute)": [[32, "viser.Icon.CREATIVE_COMMONS"]], "creative_commons_by (viser.icon attribute)": [[32, "viser.Icon.CREATIVE_COMMONS_BY"]], "creative_commons_nc (viser.icon attribute)": [[32, "viser.Icon.CREATIVE_COMMONS_NC"]], "creative_commons_nd (viser.icon attribute)": [[32, "viser.Icon.CREATIVE_COMMONS_ND"]], "creative_commons_off (viser.icon attribute)": [[32, "viser.Icon.CREATIVE_COMMONS_OFF"]], "creative_commons_sa (viser.icon attribute)": [[32, "viser.Icon.CREATIVE_COMMONS_SA"]], "creative_commons_zero (viser.icon attribute)": [[32, "viser.Icon.CREATIVE_COMMONS_ZERO"]], "credit_card (viser.icon attribute)": [[32, "viser.Icon.CREDIT_CARD"]], "credit_card_off (viser.icon attribute)": [[32, "viser.Icon.CREDIT_CARD_OFF"]], "cricket (viser.icon attribute)": [[32, "viser.Icon.CRICKET"]], "crop (viser.icon attribute)": [[32, "viser.Icon.CROP"]], "cross (viser.icon attribute)": [[32, "viser.Icon.CROSS"]], "crosshair (viser.icon attribute)": [[32, "viser.Icon.CROSSHAIR"]], "cross_filled (viser.icon attribute)": [[32, "viser.Icon.CROSS_FILLED"]], "cross_off (viser.icon attribute)": [[32, "viser.Icon.CROSS_OFF"]], "crown (viser.icon attribute)": [[32, "viser.Icon.CROWN"]], "crown_off (viser.icon attribute)": [[32, "viser.Icon.CROWN_OFF"]], "crutches (viser.icon attribute)": [[32, "viser.Icon.CRUTCHES"]], "crutches_off (viser.icon attribute)": [[32, "viser.Icon.CRUTCHES_OFF"]], "crystal_ball (viser.icon attribute)": [[32, "viser.Icon.CRYSTAL_BALL"]], "csv (viser.icon attribute)": [[32, "viser.Icon.CSV"]], "cube (viser.icon attribute)": [[32, "viser.Icon.CUBE"]], "cube_off (viser.icon attribute)": [[32, "viser.Icon.CUBE_OFF"]], "cube_plus (viser.icon attribute)": [[32, "viser.Icon.CUBE_PLUS"]], "cube_send (viser.icon attribute)": [[32, "viser.Icon.CUBE_SEND"]], "cube_unfolded (viser.icon attribute)": [[32, "viser.Icon.CUBE_UNFOLDED"]], "cup (viser.icon attribute)": [[32, "viser.Icon.CUP"]], "cup_off (viser.icon attribute)": [[32, "viser.Icon.CUP_OFF"]], "curling (viser.icon attribute)": [[32, "viser.Icon.CURLING"]], "curly_loop (viser.icon attribute)": [[32, "viser.Icon.CURLY_LOOP"]], "currency (viser.icon attribute)": [[32, "viser.Icon.CURRENCY"]], "currency_afghani (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_AFGHANI"]], "currency_bahraini (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_BAHRAINI"]], "currency_baht (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_BAHT"]], "currency_bitcoin (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_BITCOIN"]], "currency_cent (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_CENT"]], "currency_dinar (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_DINAR"]], "currency_dirham (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_DIRHAM"]], "currency_dogecoin (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_DOGECOIN"]], "currency_dollar (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_DOLLAR"]], "currency_dollar_australian (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_DOLLAR_AUSTRALIAN"]], "currency_dollar_brunei (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_DOLLAR_BRUNEI"]], "currency_dollar_canadian (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_DOLLAR_CANADIAN"]], "currency_dollar_guyanese (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_DOLLAR_GUYANESE"]], "currency_dollar_off (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_DOLLAR_OFF"]], "currency_dollar_singapore (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_DOLLAR_SINGAPORE"]], "currency_dollar_zimbabwean (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_DOLLAR_ZIMBABWEAN"]], "currency_dong (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_DONG"]], "currency_dram (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_DRAM"]], "currency_ethereum (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_ETHEREUM"]], "currency_euro (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_EURO"]], "currency_euro_off (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_EURO_OFF"]], "currency_florin (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_FLORIN"]], "currency_forint (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_FORINT"]], "currency_frank (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_FRANK"]], "currency_guarani (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_GUARANI"]], "currency_hryvnia (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_HRYVNIA"]], "currency_iranian_rial (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_IRANIAN_RIAL"]], "currency_kip (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_KIP"]], "currency_krone_czech (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_KRONE_CZECH"]], "currency_krone_danish (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_KRONE_DANISH"]], "currency_krone_swedish (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_KRONE_SWEDISH"]], "currency_lari (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_LARI"]], "currency_leu (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_LEU"]], "currency_lira (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_LIRA"]], "currency_litecoin (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_LITECOIN"]], "currency_lyd (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_LYD"]], "currency_manat (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_MANAT"]], "currency_monero (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_MONERO"]], "currency_naira (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_NAIRA"]], "currency_nano (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_NANO"]], "currency_off (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_OFF"]], "currency_paanga (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_PAANGA"]], "currency_peso (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_PESO"]], "currency_pound (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_POUND"]], "currency_pound_off (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_POUND_OFF"]], "currency_quetzal (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_QUETZAL"]], "currency_real (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_REAL"]], "currency_renminbi (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_RENMINBI"]], "currency_ripple (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_RIPPLE"]], "currency_riyal (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_RIYAL"]], "currency_rubel (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_RUBEL"]], "currency_rufiyaa (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_RUFIYAA"]], "currency_rupee (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_RUPEE"]], "currency_rupee_nepalese (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_RUPEE_NEPALESE"]], "currency_shekel (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_SHEKEL"]], "currency_solana (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_SOLANA"]], "currency_som (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_SOM"]], "currency_taka (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_TAKA"]], "currency_tenge (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_TENGE"]], "currency_tugrik (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_TUGRIK"]], "currency_won (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_WON"]], "currency_yen (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_YEN"]], "currency_yen_off (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_YEN_OFF"]], "currency_yuan (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_YUAN"]], "currency_zloty (viser.icon attribute)": [[32, "viser.Icon.CURRENCY_ZLOTY"]], "current_location (viser.icon attribute)": [[32, "viser.Icon.CURRENT_LOCATION"]], "current_location_off (viser.icon attribute)": [[32, "viser.Icon.CURRENT_LOCATION_OFF"]], "cursor_off (viser.icon attribute)": [[32, "viser.Icon.CURSOR_OFF"]], "cursor_text (viser.icon attribute)": [[32, "viser.Icon.CURSOR_TEXT"]], "cut (viser.icon attribute)": [[32, "viser.Icon.CUT"]], "cylinder (viser.icon attribute)": [[32, "viser.Icon.CYLINDER"]], "cylinder_off (viser.icon attribute)": [[32, "viser.Icon.CYLINDER_OFF"]], "cylinder_plus (viser.icon attribute)": [[32, "viser.Icon.CYLINDER_PLUS"]], "dashboard (viser.icon attribute)": [[32, "viser.Icon.DASHBOARD"]], "dashboard_off (viser.icon attribute)": [[32, "viser.Icon.DASHBOARD_OFF"]], "database (viser.icon attribute)": [[32, "viser.Icon.DATABASE"]], "database_cog (viser.icon attribute)": [[32, "viser.Icon.DATABASE_COG"]], "database_dollar (viser.icon attribute)": [[32, "viser.Icon.DATABASE_DOLLAR"]], "database_edit (viser.icon attribute)": [[32, "viser.Icon.DATABASE_EDIT"]], "database_exclamation (viser.icon attribute)": [[32, "viser.Icon.DATABASE_EXCLAMATION"]], "database_export (viser.icon attribute)": [[32, "viser.Icon.DATABASE_EXPORT"]], "database_heart (viser.icon attribute)": [[32, "viser.Icon.DATABASE_HEART"]], "database_import (viser.icon attribute)": [[32, "viser.Icon.DATABASE_IMPORT"]], "database_leak (viser.icon attribute)": [[32, "viser.Icon.DATABASE_LEAK"]], "database_minus (viser.icon attribute)": [[32, "viser.Icon.DATABASE_MINUS"]], "database_off (viser.icon attribute)": [[32, "viser.Icon.DATABASE_OFF"]], "database_plus (viser.icon attribute)": [[32, "viser.Icon.DATABASE_PLUS"]], "database_search (viser.icon attribute)": [[32, "viser.Icon.DATABASE_SEARCH"]], "database_share (viser.icon attribute)": [[32, "viser.Icon.DATABASE_SHARE"]], "database_star (viser.icon attribute)": [[32, "viser.Icon.DATABASE_STAR"]], "database_x (viser.icon attribute)": [[32, "viser.Icon.DATABASE_X"]], "decimal (viser.icon attribute)": [[32, "viser.Icon.DECIMAL"]], "deer (viser.icon attribute)": [[32, "viser.Icon.DEER"]], "delta (viser.icon attribute)": [[32, "viser.Icon.DELTA"]], "dental (viser.icon attribute)": [[32, "viser.Icon.DENTAL"]], "dental_broken (viser.icon attribute)": [[32, "viser.Icon.DENTAL_BROKEN"]], "dental_off (viser.icon attribute)": [[32, "viser.Icon.DENTAL_OFF"]], "deselect (viser.icon attribute)": [[32, "viser.Icon.DESELECT"]], "details (viser.icon attribute)": [[32, "viser.Icon.DETAILS"]], "details_off (viser.icon attribute)": [[32, "viser.Icon.DETAILS_OFF"]], "devices (viser.icon attribute)": [[32, "viser.Icon.DEVICES"]], "devices_2 (viser.icon attribute)": [[32, "viser.Icon.DEVICES_2"]], "devices_bolt (viser.icon attribute)": [[32, "viser.Icon.DEVICES_BOLT"]], "devices_cancel (viser.icon attribute)": [[32, "viser.Icon.DEVICES_CANCEL"]], "devices_check (viser.icon attribute)": [[32, "viser.Icon.DEVICES_CHECK"]], "devices_code (viser.icon attribute)": [[32, "viser.Icon.DEVICES_CODE"]], "devices_cog (viser.icon attribute)": [[32, "viser.Icon.DEVICES_COG"]], "devices_dollar (viser.icon attribute)": [[32, "viser.Icon.DEVICES_DOLLAR"]], "devices_down (viser.icon attribute)": [[32, "viser.Icon.DEVICES_DOWN"]], "devices_exclamation (viser.icon attribute)": [[32, "viser.Icon.DEVICES_EXCLAMATION"]], "devices_heart (viser.icon attribute)": [[32, "viser.Icon.DEVICES_HEART"]], "devices_minus (viser.icon attribute)": [[32, "viser.Icon.DEVICES_MINUS"]], "devices_off (viser.icon attribute)": [[32, "viser.Icon.DEVICES_OFF"]], "devices_pause (viser.icon attribute)": [[32, "viser.Icon.DEVICES_PAUSE"]], "devices_pc (viser.icon attribute)": [[32, "viser.Icon.DEVICES_PC"]], "devices_pc_off (viser.icon attribute)": [[32, "viser.Icon.DEVICES_PC_OFF"]], "devices_pin (viser.icon attribute)": [[32, "viser.Icon.DEVICES_PIN"]], "devices_plus (viser.icon attribute)": [[32, "viser.Icon.DEVICES_PLUS"]], "devices_question (viser.icon attribute)": [[32, "viser.Icon.DEVICES_QUESTION"]], "devices_search (viser.icon attribute)": [[32, "viser.Icon.DEVICES_SEARCH"]], "devices_share (viser.icon attribute)": [[32, "viser.Icon.DEVICES_SHARE"]], "devices_star (viser.icon attribute)": [[32, "viser.Icon.DEVICES_STAR"]], "devices_up (viser.icon attribute)": [[32, "viser.Icon.DEVICES_UP"]], "devices_x (viser.icon attribute)": [[32, "viser.Icon.DEVICES_X"]], "device_airpods (viser.icon attribute)": [[32, "viser.Icon.DEVICE_AIRPODS"]], "device_airpods_case (viser.icon attribute)": [[32, "viser.Icon.DEVICE_AIRPODS_CASE"]], "device_airtag (viser.icon attribute)": [[32, "viser.Icon.DEVICE_AIRTAG"]], "device_analytics (viser.icon attribute)": [[32, "viser.Icon.DEVICE_ANALYTICS"]], "device_audio_tape (viser.icon attribute)": [[32, "viser.Icon.DEVICE_AUDIO_TAPE"]], "device_camera_phone (viser.icon attribute)": [[32, "viser.Icon.DEVICE_CAMERA_PHONE"]], "device_cctv (viser.icon attribute)": [[32, "viser.Icon.DEVICE_CCTV"]], "device_cctv_off (viser.icon attribute)": [[32, "viser.Icon.DEVICE_CCTV_OFF"]], "device_computer_camera (viser.icon attribute)": [[32, "viser.Icon.DEVICE_COMPUTER_CAMERA"]], "device_computer_camera_off (viser.icon attribute)": [[32, "viser.Icon.DEVICE_COMPUTER_CAMERA_OFF"]], "device_desktop (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP"]], "device_desktop_analytics (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_ANALYTICS"]], "device_desktop_bolt (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_BOLT"]], "device_desktop_cancel (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_CANCEL"]], "device_desktop_check (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_CHECK"]], "device_desktop_code (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_CODE"]], "device_desktop_cog (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_COG"]], "device_desktop_dollar (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_DOLLAR"]], "device_desktop_down (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_DOWN"]], "device_desktop_exclamation (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_EXCLAMATION"]], "device_desktop_heart (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_HEART"]], "device_desktop_minus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_MINUS"]], "device_desktop_off (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_OFF"]], "device_desktop_pause (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_PAUSE"]], "device_desktop_pin (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_PIN"]], "device_desktop_plus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_PLUS"]], "device_desktop_question (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_QUESTION"]], "device_desktop_search (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_SEARCH"]], "device_desktop_share (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_SHARE"]], "device_desktop_star (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_STAR"]], "device_desktop_up (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_UP"]], "device_desktop_x (viser.icon attribute)": [[32, "viser.Icon.DEVICE_DESKTOP_X"]], "device_floppy (viser.icon attribute)": [[32, "viser.Icon.DEVICE_FLOPPY"]], "device_gamepad (viser.icon attribute)": [[32, "viser.Icon.DEVICE_GAMEPAD"]], "device_gamepad_2 (viser.icon attribute)": [[32, "viser.Icon.DEVICE_GAMEPAD_2"]], "device_heart_monitor (viser.icon attribute)": [[32, "viser.Icon.DEVICE_HEART_MONITOR"]], "device_heart_monitor_filled (viser.icon attribute)": [[32, "viser.Icon.DEVICE_HEART_MONITOR_FILLED"]], "device_imac (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC"]], "device_imac_bolt (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_BOLT"]], "device_imac_cancel (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_CANCEL"]], "device_imac_check (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_CHECK"]], "device_imac_code (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_CODE"]], "device_imac_cog (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_COG"]], "device_imac_dollar (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_DOLLAR"]], "device_imac_down (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_DOWN"]], "device_imac_exclamation (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_EXCLAMATION"]], "device_imac_heart (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_HEART"]], "device_imac_minus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_MINUS"]], "device_imac_off (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_OFF"]], "device_imac_pause (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_PAUSE"]], "device_imac_pin (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_PIN"]], "device_imac_plus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_PLUS"]], "device_imac_question (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_QUESTION"]], "device_imac_search (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_SEARCH"]], "device_imac_share (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_SHARE"]], "device_imac_star (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_STAR"]], "device_imac_up (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_UP"]], "device_imac_x (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IMAC_X"]], "device_ipad (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD"]], "device_ipad_bolt (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_BOLT"]], "device_ipad_cancel (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_CANCEL"]], "device_ipad_check (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_CHECK"]], "device_ipad_code (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_CODE"]], "device_ipad_cog (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_COG"]], "device_ipad_dollar (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_DOLLAR"]], "device_ipad_down (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_DOWN"]], "device_ipad_exclamation (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_EXCLAMATION"]], "device_ipad_heart (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HEART"]], "device_ipad_horizontal (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL"]], "device_ipad_horizontal_bolt (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_BOLT"]], "device_ipad_horizontal_cancel (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_CANCEL"]], "device_ipad_horizontal_check (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_CHECK"]], "device_ipad_horizontal_code (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_CODE"]], "device_ipad_horizontal_cog (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_COG"]], "device_ipad_horizontal_dollar (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_DOLLAR"]], "device_ipad_horizontal_down (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_DOWN"]], "device_ipad_horizontal_exclamation (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_EXCLAMATION"]], "device_ipad_horizontal_heart (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_HEART"]], "device_ipad_horizontal_minus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_MINUS"]], "device_ipad_horizontal_off (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_OFF"]], "device_ipad_horizontal_pause (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_PAUSE"]], "device_ipad_horizontal_pin (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_PIN"]], "device_ipad_horizontal_plus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_PLUS"]], "device_ipad_horizontal_question (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_QUESTION"]], "device_ipad_horizontal_search (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_SEARCH"]], "device_ipad_horizontal_share (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_SHARE"]], "device_ipad_horizontal_star (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_STAR"]], "device_ipad_horizontal_up (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_UP"]], "device_ipad_horizontal_x (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_HORIZONTAL_X"]], "device_ipad_minus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_MINUS"]], "device_ipad_off (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_OFF"]], "device_ipad_pause (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_PAUSE"]], "device_ipad_pin (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_PIN"]], "device_ipad_plus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_PLUS"]], "device_ipad_question (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_QUESTION"]], "device_ipad_search (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_SEARCH"]], "device_ipad_share (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_SHARE"]], "device_ipad_star (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_STAR"]], "device_ipad_up (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_UP"]], "device_ipad_x (viser.icon attribute)": [[32, "viser.Icon.DEVICE_IPAD_X"]], "device_landline_phone (viser.icon attribute)": [[32, "viser.Icon.DEVICE_LANDLINE_PHONE"]], "device_laptop (viser.icon attribute)": [[32, "viser.Icon.DEVICE_LAPTOP"]], "device_laptop_off (viser.icon attribute)": [[32, "viser.Icon.DEVICE_LAPTOP_OFF"]], "device_mobile (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE"]], "device_mobile_bolt (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_BOLT"]], "device_mobile_cancel (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_CANCEL"]], "device_mobile_charging (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_CHARGING"]], "device_mobile_check (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_CHECK"]], "device_mobile_code (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_CODE"]], "device_mobile_cog (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_COG"]], "device_mobile_dollar (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_DOLLAR"]], "device_mobile_down (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_DOWN"]], "device_mobile_exclamation (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_EXCLAMATION"]], "device_mobile_filled (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_FILLED"]], "device_mobile_heart (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_HEART"]], "device_mobile_message (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_MESSAGE"]], "device_mobile_minus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_MINUS"]], "device_mobile_off (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_OFF"]], "device_mobile_pause (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_PAUSE"]], "device_mobile_pin (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_PIN"]], "device_mobile_plus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_PLUS"]], "device_mobile_question (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_QUESTION"]], "device_mobile_rotated (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_ROTATED"]], "device_mobile_search (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_SEARCH"]], "device_mobile_share (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_SHARE"]], "device_mobile_star (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_STAR"]], "device_mobile_up (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_UP"]], "device_mobile_vibration (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_VIBRATION"]], "device_mobile_x (viser.icon attribute)": [[32, "viser.Icon.DEVICE_MOBILE_X"]], "device_nintendo (viser.icon attribute)": [[32, "viser.Icon.DEVICE_NINTENDO"]], "device_nintendo_off (viser.icon attribute)": [[32, "viser.Icon.DEVICE_NINTENDO_OFF"]], "device_remote (viser.icon attribute)": [[32, "viser.Icon.DEVICE_REMOTE"]], "device_sd_card (viser.icon attribute)": [[32, "viser.Icon.DEVICE_SD_CARD"]], "device_sim (viser.icon attribute)": [[32, "viser.Icon.DEVICE_SIM"]], "device_sim_1 (viser.icon attribute)": [[32, "viser.Icon.DEVICE_SIM_1"]], "device_sim_2 (viser.icon attribute)": [[32, "viser.Icon.DEVICE_SIM_2"]], "device_sim_3 (viser.icon attribute)": [[32, "viser.Icon.DEVICE_SIM_3"]], "device_speaker (viser.icon attribute)": [[32, "viser.Icon.DEVICE_SPEAKER"]], "device_speaker_off (viser.icon attribute)": [[32, "viser.Icon.DEVICE_SPEAKER_OFF"]], "device_tablet (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET"]], "device_tablet_bolt (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_BOLT"]], "device_tablet_cancel (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_CANCEL"]], "device_tablet_check (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_CHECK"]], "device_tablet_code (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_CODE"]], "device_tablet_cog (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_COG"]], "device_tablet_dollar (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_DOLLAR"]], "device_tablet_down (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_DOWN"]], "device_tablet_exclamation (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_EXCLAMATION"]], "device_tablet_filled (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_FILLED"]], "device_tablet_heart (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_HEART"]], "device_tablet_minus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_MINUS"]], "device_tablet_off (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_OFF"]], "device_tablet_pause (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_PAUSE"]], "device_tablet_pin (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_PIN"]], "device_tablet_plus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_PLUS"]], "device_tablet_question (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_QUESTION"]], "device_tablet_search (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_SEARCH"]], "device_tablet_share (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_SHARE"]], "device_tablet_star (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_STAR"]], "device_tablet_up (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_UP"]], "device_tablet_x (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TABLET_X"]], "device_tv (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TV"]], "device_tv_off (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TV_OFF"]], "device_tv_old (viser.icon attribute)": [[32, "viser.Icon.DEVICE_TV_OLD"]], "device_vision_pro (viser.icon attribute)": [[32, "viser.Icon.DEVICE_VISION_PRO"]], "device_watch (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH"]], "device_watch_bolt (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_BOLT"]], "device_watch_cancel (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_CANCEL"]], "device_watch_check (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_CHECK"]], "device_watch_code (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_CODE"]], "device_watch_cog (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_COG"]], "device_watch_dollar (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_DOLLAR"]], "device_watch_down (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_DOWN"]], "device_watch_exclamation (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_EXCLAMATION"]], "device_watch_heart (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_HEART"]], "device_watch_minus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_MINUS"]], "device_watch_off (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_OFF"]], "device_watch_pause (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_PAUSE"]], "device_watch_pin (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_PIN"]], "device_watch_plus (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_PLUS"]], "device_watch_question (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_QUESTION"]], "device_watch_search (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_SEARCH"]], "device_watch_share (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_SHARE"]], "device_watch_star (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_STAR"]], "device_watch_stats (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_STATS"]], "device_watch_stats_2 (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_STATS_2"]], "device_watch_up (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_UP"]], "device_watch_x (viser.icon attribute)": [[32, "viser.Icon.DEVICE_WATCH_X"]], "diabolo (viser.icon attribute)": [[32, "viser.Icon.DIABOLO"]], "diabolo_off (viser.icon attribute)": [[32, "viser.Icon.DIABOLO_OFF"]], "diabolo_plus (viser.icon attribute)": [[32, "viser.Icon.DIABOLO_PLUS"]], "dialpad (viser.icon attribute)": [[32, "viser.Icon.DIALPAD"]], "dialpad_filled (viser.icon attribute)": [[32, "viser.Icon.DIALPAD_FILLED"]], "dialpad_off (viser.icon attribute)": [[32, "viser.Icon.DIALPAD_OFF"]], "diamond (viser.icon attribute)": [[32, "viser.Icon.DIAMOND"]], "diamonds (viser.icon attribute)": [[32, "viser.Icon.DIAMONDS"]], "diamonds_filled (viser.icon attribute)": [[32, "viser.Icon.DIAMONDS_FILLED"]], "diamond_filled (viser.icon attribute)": [[32, "viser.Icon.DIAMOND_FILLED"]], "diamond_off (viser.icon attribute)": [[32, "viser.Icon.DIAMOND_OFF"]], "dice (viser.icon attribute)": [[32, "viser.Icon.DICE"]], "dice_1 (viser.icon attribute)": [[32, "viser.Icon.DICE_1"]], "dice_1_filled (viser.icon attribute)": [[32, "viser.Icon.DICE_1_FILLED"]], "dice_2 (viser.icon attribute)": [[32, "viser.Icon.DICE_2"]], "dice_2_filled (viser.icon attribute)": [[32, "viser.Icon.DICE_2_FILLED"]], "dice_3 (viser.icon attribute)": [[32, "viser.Icon.DICE_3"]], "dice_3_filled (viser.icon attribute)": [[32, "viser.Icon.DICE_3_FILLED"]], "dice_4 (viser.icon attribute)": [[32, "viser.Icon.DICE_4"]], "dice_4_filled (viser.icon attribute)": [[32, "viser.Icon.DICE_4_FILLED"]], "dice_5 (viser.icon attribute)": [[32, "viser.Icon.DICE_5"]], "dice_5_filled (viser.icon attribute)": [[32, "viser.Icon.DICE_5_FILLED"]], "dice_6 (viser.icon attribute)": [[32, "viser.Icon.DICE_6"]], "dice_6_filled (viser.icon attribute)": [[32, "viser.Icon.DICE_6_FILLED"]], "dice_filled (viser.icon attribute)": [[32, "viser.Icon.DICE_FILLED"]], "dimensions (viser.icon attribute)": [[32, "viser.Icon.DIMENSIONS"]], "direction (viser.icon attribute)": [[32, "viser.Icon.DIRECTION"]], "directions (viser.icon attribute)": [[32, "viser.Icon.DIRECTIONS"]], "directions_off (viser.icon attribute)": [[32, "viser.Icon.DIRECTIONS_OFF"]], "direction_horizontal (viser.icon attribute)": [[32, "viser.Icon.DIRECTION_HORIZONTAL"]], "direction_sign (viser.icon attribute)": [[32, "viser.Icon.DIRECTION_SIGN"]], "direction_sign_filled (viser.icon attribute)": [[32, "viser.Icon.DIRECTION_SIGN_FILLED"]], "direction_sign_off (viser.icon attribute)": [[32, "viser.Icon.DIRECTION_SIGN_OFF"]], "disabled (viser.icon attribute)": [[32, "viser.Icon.DISABLED"]], "disabled_2 (viser.icon attribute)": [[32, "viser.Icon.DISABLED_2"]], "disabled_off (viser.icon attribute)": [[32, "viser.Icon.DISABLED_OFF"]], "disc (viser.icon attribute)": [[32, "viser.Icon.DISC"]], "discount (viser.icon attribute)": [[32, "viser.Icon.DISCOUNT"]], "discount_2 (viser.icon attribute)": [[32, "viser.Icon.DISCOUNT_2"]], "discount_2_off (viser.icon attribute)": [[32, "viser.Icon.DISCOUNT_2_OFF"]], "discount_check (viser.icon attribute)": [[32, "viser.Icon.DISCOUNT_CHECK"]], "discount_check_filled (viser.icon attribute)": [[32, "viser.Icon.DISCOUNT_CHECK_FILLED"]], "discount_off (viser.icon attribute)": [[32, "viser.Icon.DISCOUNT_OFF"]], "disc_golf (viser.icon attribute)": [[32, "viser.Icon.DISC_GOLF"]], "disc_off (viser.icon attribute)": [[32, "viser.Icon.DISC_OFF"]], "divide (viser.icon attribute)": [[32, "viser.Icon.DIVIDE"]], "dna (viser.icon attribute)": [[32, "viser.Icon.DNA"]], "dna_2 (viser.icon attribute)": [[32, "viser.Icon.DNA_2"]], "dna_2_off (viser.icon attribute)": [[32, "viser.Icon.DNA_2_OFF"]], "dna_off (viser.icon attribute)": [[32, "viser.Icon.DNA_OFF"]], "dog (viser.icon attribute)": [[32, "viser.Icon.DOG"]], "dog_bowl (viser.icon attribute)": [[32, "viser.Icon.DOG_BOWL"]], "door (viser.icon attribute)": [[32, "viser.Icon.DOOR"]], "door_enter (viser.icon attribute)": [[32, "viser.Icon.DOOR_ENTER"]], "door_exit (viser.icon attribute)": [[32, "viser.Icon.DOOR_EXIT"]], "door_off (viser.icon attribute)": [[32, "viser.Icon.DOOR_OFF"]], "dots (viser.icon attribute)": [[32, "viser.Icon.DOTS"]], "dots_circle_horizontal (viser.icon attribute)": [[32, "viser.Icon.DOTS_CIRCLE_HORIZONTAL"]], "dots_diagonal (viser.icon attribute)": [[32, "viser.Icon.DOTS_DIAGONAL"]], "dots_diagonal_2 (viser.icon attribute)": [[32, "viser.Icon.DOTS_DIAGONAL_2"]], "dots_vertical (viser.icon attribute)": [[32, "viser.Icon.DOTS_VERTICAL"]], "download (viser.icon attribute)": [[32, "viser.Icon.DOWNLOAD"]], "download_off (viser.icon attribute)": [[32, "viser.Icon.DOWNLOAD_OFF"]], "drag_drop (viser.icon attribute)": [[32, "viser.Icon.DRAG_DROP"]], "drag_drop_2 (viser.icon attribute)": [[32, "viser.Icon.DRAG_DROP_2"]], "drone (viser.icon attribute)": [[32, "viser.Icon.DRONE"]], "drone_off (viser.icon attribute)": [[32, "viser.Icon.DRONE_OFF"]], "droplet (viser.icon attribute)": [[32, "viser.Icon.DROPLET"]], "droplet_bolt (viser.icon attribute)": [[32, "viser.Icon.DROPLET_BOLT"]], "droplet_cancel (viser.icon attribute)": [[32, "viser.Icon.DROPLET_CANCEL"]], "droplet_check (viser.icon attribute)": [[32, "viser.Icon.DROPLET_CHECK"]], "droplet_code (viser.icon attribute)": [[32, "viser.Icon.DROPLET_CODE"]], "droplet_cog (viser.icon attribute)": [[32, "viser.Icon.DROPLET_COG"]], "droplet_dollar (viser.icon attribute)": [[32, "viser.Icon.DROPLET_DOLLAR"]], "droplet_down (viser.icon attribute)": [[32, "viser.Icon.DROPLET_DOWN"]], "droplet_exclamation (viser.icon attribute)": [[32, "viser.Icon.DROPLET_EXCLAMATION"]], "droplet_filled (viser.icon attribute)": [[32, "viser.Icon.DROPLET_FILLED"]], "droplet_filled_2 (viser.icon attribute)": [[32, "viser.Icon.DROPLET_FILLED_2"]], "droplet_half (viser.icon attribute)": [[32, "viser.Icon.DROPLET_HALF"]], "droplet_half_2 (viser.icon attribute)": [[32, "viser.Icon.DROPLET_HALF_2"]], "droplet_half_filled (viser.icon attribute)": [[32, "viser.Icon.DROPLET_HALF_FILLED"]], "droplet_heart (viser.icon attribute)": [[32, "viser.Icon.DROPLET_HEART"]], "droplet_minus (viser.icon attribute)": [[32, "viser.Icon.DROPLET_MINUS"]], "droplet_off (viser.icon attribute)": [[32, "viser.Icon.DROPLET_OFF"]], "droplet_pause (viser.icon attribute)": [[32, "viser.Icon.DROPLET_PAUSE"]], "droplet_pin (viser.icon attribute)": [[32, "viser.Icon.DROPLET_PIN"]], "droplet_plus (viser.icon attribute)": [[32, "viser.Icon.DROPLET_PLUS"]], "droplet_question (viser.icon attribute)": [[32, "viser.Icon.DROPLET_QUESTION"]], "droplet_search (viser.icon attribute)": [[32, "viser.Icon.DROPLET_SEARCH"]], "droplet_share (viser.icon attribute)": [[32, "viser.Icon.DROPLET_SHARE"]], "droplet_star (viser.icon attribute)": [[32, "viser.Icon.DROPLET_STAR"]], "droplet_up (viser.icon attribute)": [[32, "viser.Icon.DROPLET_UP"]], "droplet_x (viser.icon attribute)": [[32, "viser.Icon.DROPLET_X"]], "drop_circle (viser.icon attribute)": [[32, "viser.Icon.DROP_CIRCLE"]], "dual_screen (viser.icon attribute)": [[32, "viser.Icon.DUAL_SCREEN"]], "ear (viser.icon attribute)": [[32, "viser.Icon.EAR"]], "ear_off (viser.icon attribute)": [[32, "viser.Icon.EAR_OFF"]], "ease_in (viser.icon attribute)": [[32, "viser.Icon.EASE_IN"]], "ease_in_control_point (viser.icon attribute)": [[32, "viser.Icon.EASE_IN_CONTROL_POINT"]], "ease_in_out (viser.icon attribute)": [[32, "viser.Icon.EASE_IN_OUT"]], "ease_in_out_control_points (viser.icon attribute)": [[32, "viser.Icon.EASE_IN_OUT_CONTROL_POINTS"]], "ease_out (viser.icon attribute)": [[32, "viser.Icon.EASE_OUT"]], "ease_out_control_point (viser.icon attribute)": [[32, "viser.Icon.EASE_OUT_CONTROL_POINT"]], "edit (viser.icon attribute)": [[32, "viser.Icon.EDIT"]], "edit_circle (viser.icon attribute)": [[32, "viser.Icon.EDIT_CIRCLE"]], "edit_circle_off (viser.icon attribute)": [[32, "viser.Icon.EDIT_CIRCLE_OFF"]], "edit_off (viser.icon attribute)": [[32, "viser.Icon.EDIT_OFF"]], "egg (viser.icon attribute)": [[32, "viser.Icon.EGG"]], "eggs (viser.icon attribute)": [[32, "viser.Icon.EGGS"]], "egg_cracked (viser.icon attribute)": [[32, "viser.Icon.EGG_CRACKED"]], "egg_filled (viser.icon attribute)": [[32, "viser.Icon.EGG_FILLED"]], "egg_fried (viser.icon attribute)": [[32, "viser.Icon.EGG_FRIED"]], "egg_off (viser.icon attribute)": [[32, "viser.Icon.EGG_OFF"]], "elevator (viser.icon attribute)": [[32, "viser.Icon.ELEVATOR"]], "elevator_off (viser.icon attribute)": [[32, "viser.Icon.ELEVATOR_OFF"]], "emergency_bed (viser.icon attribute)": [[32, "viser.Icon.EMERGENCY_BED"]], "empathize (viser.icon attribute)": [[32, "viser.Icon.EMPATHIZE"]], "empathize_off (viser.icon attribute)": [[32, "viser.Icon.EMPATHIZE_OFF"]], "emphasis (viser.icon attribute)": [[32, "viser.Icon.EMPHASIS"]], "engine (viser.icon attribute)": [[32, "viser.Icon.ENGINE"]], "engine_off (viser.icon attribute)": [[32, "viser.Icon.ENGINE_OFF"]], "equal (viser.icon attribute)": [[32, "viser.Icon.EQUAL"]], "equal_double (viser.icon attribute)": [[32, "viser.Icon.EQUAL_DOUBLE"]], "equal_not (viser.icon attribute)": [[32, "viser.Icon.EQUAL_NOT"]], "eraser (viser.icon attribute)": [[32, "viser.Icon.ERASER"]], "eraser_off (viser.icon attribute)": [[32, "viser.Icon.ERASER_OFF"]], "error_404 (viser.icon attribute)": [[32, "viser.Icon.ERROR_404"]], "error_404_off (viser.icon attribute)": [[32, "viser.Icon.ERROR_404_OFF"]], "exchange (viser.icon attribute)": [[32, "viser.Icon.EXCHANGE"]], "exchange_off (viser.icon attribute)": [[32, "viser.Icon.EXCHANGE_OFF"]], "exclamation_circle (viser.icon attribute)": [[32, "viser.Icon.EXCLAMATION_CIRCLE"]], "exclamation_mark (viser.icon attribute)": [[32, "viser.Icon.EXCLAMATION_MARK"]], "exclamation_mark_off (viser.icon attribute)": [[32, "viser.Icon.EXCLAMATION_MARK_OFF"]], "explicit (viser.icon attribute)": [[32, "viser.Icon.EXPLICIT"]], "explicit_off (viser.icon attribute)": [[32, "viser.Icon.EXPLICIT_OFF"]], "exposure (viser.icon attribute)": [[32, "viser.Icon.EXPOSURE"]], "exposure_0 (viser.icon attribute)": [[32, "viser.Icon.EXPOSURE_0"]], "exposure_minus_1 (viser.icon attribute)": [[32, "viser.Icon.EXPOSURE_MINUS_1"]], "exposure_minus_2 (viser.icon attribute)": [[32, "viser.Icon.EXPOSURE_MINUS_2"]], "exposure_off (viser.icon attribute)": [[32, "viser.Icon.EXPOSURE_OFF"]], "exposure_plus_1 (viser.icon attribute)": [[32, "viser.Icon.EXPOSURE_PLUS_1"]], "exposure_plus_2 (viser.icon attribute)": [[32, "viser.Icon.EXPOSURE_PLUS_2"]], "external_link (viser.icon attribute)": [[32, "viser.Icon.EXTERNAL_LINK"]], "external_link_off (viser.icon attribute)": [[32, "viser.Icon.EXTERNAL_LINK_OFF"]], "eye (viser.icon attribute)": [[32, "viser.Icon.EYE"]], "eyeglass (viser.icon attribute)": [[32, "viser.Icon.EYEGLASS"]], "eyeglass_2 (viser.icon attribute)": [[32, "viser.Icon.EYEGLASS_2"]], "eyeglass_off (viser.icon attribute)": [[32, "viser.Icon.EYEGLASS_OFF"]], "eye_check (viser.icon attribute)": [[32, "viser.Icon.EYE_CHECK"]], "eye_closed (viser.icon attribute)": [[32, "viser.Icon.EYE_CLOSED"]], "eye_cog (viser.icon attribute)": [[32, "viser.Icon.EYE_COG"]], "eye_edit (viser.icon attribute)": [[32, "viser.Icon.EYE_EDIT"]], "eye_exclamation (viser.icon attribute)": [[32, "viser.Icon.EYE_EXCLAMATION"]], "eye_filled (viser.icon attribute)": [[32, "viser.Icon.EYE_FILLED"]], "eye_heart (viser.icon attribute)": [[32, "viser.Icon.EYE_HEART"]], "eye_off (viser.icon attribute)": [[32, "viser.Icon.EYE_OFF"]], "eye_table (viser.icon attribute)": [[32, "viser.Icon.EYE_TABLE"]], "eye_x (viser.icon attribute)": [[32, "viser.Icon.EYE_X"]], "e_passport (viser.icon attribute)": [[32, "viser.Icon.E_PASSPORT"]], "face_id (viser.icon attribute)": [[32, "viser.Icon.FACE_ID"]], "face_id_error (viser.icon attribute)": [[32, "viser.Icon.FACE_ID_ERROR"]], "face_mask (viser.icon attribute)": [[32, "viser.Icon.FACE_MASK"]], "face_mask_off (viser.icon attribute)": [[32, "viser.Icon.FACE_MASK_OFF"]], "fall (viser.icon attribute)": [[32, "viser.Icon.FALL"]], "feather (viser.icon attribute)": [[32, "viser.Icon.FEATHER"]], "feather_off (viser.icon attribute)": [[32, "viser.Icon.FEATHER_OFF"]], "fence (viser.icon attribute)": [[32, "viser.Icon.FENCE"]], "fence_off (viser.icon attribute)": [[32, "viser.Icon.FENCE_OFF"]], "fidget_spinner (viser.icon attribute)": [[32, "viser.Icon.FIDGET_SPINNER"]], "file (viser.icon attribute)": [[32, "viser.Icon.FILE"]], "files (viser.icon attribute)": [[32, "viser.Icon.FILES"]], "files_off (viser.icon attribute)": [[32, "viser.Icon.FILES_OFF"]], "file_3d (viser.icon attribute)": [[32, "viser.Icon.FILE_3D"]], "file_alert (viser.icon attribute)": [[32, "viser.Icon.FILE_ALERT"]], "file_analytics (viser.icon attribute)": [[32, "viser.Icon.FILE_ANALYTICS"]], "file_arrow_left (viser.icon attribute)": [[32, "viser.Icon.FILE_ARROW_LEFT"]], "file_arrow_right (viser.icon attribute)": [[32, "viser.Icon.FILE_ARROW_RIGHT"]], "file_barcode (viser.icon attribute)": [[32, "viser.Icon.FILE_BARCODE"]], "file_broken (viser.icon attribute)": [[32, "viser.Icon.FILE_BROKEN"]], "file_certificate (viser.icon attribute)": [[32, "viser.Icon.FILE_CERTIFICATE"]], "file_chart (viser.icon attribute)": [[32, "viser.Icon.FILE_CHART"]], "file_check (viser.icon attribute)": [[32, "viser.Icon.FILE_CHECK"]], "file_code (viser.icon attribute)": [[32, "viser.Icon.FILE_CODE"]], "file_code_2 (viser.icon attribute)": [[32, "viser.Icon.FILE_CODE_2"]], "file_cv (viser.icon attribute)": [[32, "viser.Icon.FILE_CV"]], "file_database (viser.icon attribute)": [[32, "viser.Icon.FILE_DATABASE"]], "file_delta (viser.icon attribute)": [[32, "viser.Icon.FILE_DELTA"]], "file_description (viser.icon attribute)": [[32, "viser.Icon.FILE_DESCRIPTION"]], "file_diff (viser.icon attribute)": [[32, "viser.Icon.FILE_DIFF"]], "file_digit (viser.icon attribute)": [[32, "viser.Icon.FILE_DIGIT"]], "file_dislike (viser.icon attribute)": [[32, "viser.Icon.FILE_DISLIKE"]], "file_dollar (viser.icon attribute)": [[32, "viser.Icon.FILE_DOLLAR"]], "file_dots (viser.icon attribute)": [[32, "viser.Icon.FILE_DOTS"]], "file_download (viser.icon attribute)": [[32, "viser.Icon.FILE_DOWNLOAD"]], "file_euro (viser.icon attribute)": [[32, "viser.Icon.FILE_EURO"]], "file_export (viser.icon attribute)": [[32, "viser.Icon.FILE_EXPORT"]], "file_filled (viser.icon attribute)": [[32, "viser.Icon.FILE_FILLED"]], "file_function (viser.icon attribute)": [[32, "viser.Icon.FILE_FUNCTION"]], "file_horizontal (viser.icon attribute)": [[32, "viser.Icon.FILE_HORIZONTAL"]], "file_import (viser.icon attribute)": [[32, "viser.Icon.FILE_IMPORT"]], "file_infinity (viser.icon attribute)": [[32, "viser.Icon.FILE_INFINITY"]], "file_info (viser.icon attribute)": [[32, "viser.Icon.FILE_INFO"]], "file_invoice (viser.icon attribute)": [[32, "viser.Icon.FILE_INVOICE"]], "file_lambda (viser.icon attribute)": [[32, "viser.Icon.FILE_LAMBDA"]], "file_like (viser.icon attribute)": [[32, "viser.Icon.FILE_LIKE"]], "file_minus (viser.icon attribute)": [[32, "viser.Icon.FILE_MINUS"]], "file_music (viser.icon attribute)": [[32, "viser.Icon.FILE_MUSIC"]], "file_off (viser.icon attribute)": [[32, "viser.Icon.FILE_OFF"]], "file_orientation (viser.icon attribute)": [[32, "viser.Icon.FILE_ORIENTATION"]], "file_pencil (viser.icon attribute)": [[32, "viser.Icon.FILE_PENCIL"]], "file_percent (viser.icon attribute)": [[32, "viser.Icon.FILE_PERCENT"]], "file_phone (viser.icon attribute)": [[32, "viser.Icon.FILE_PHONE"]], "file_plus (viser.icon attribute)": [[32, "viser.Icon.FILE_PLUS"]], "file_power (viser.icon attribute)": [[32, "viser.Icon.FILE_POWER"]], "file_report (viser.icon attribute)": [[32, "viser.Icon.FILE_REPORT"]], "file_rss (viser.icon attribute)": [[32, "viser.Icon.FILE_RSS"]], "file_scissors (viser.icon attribute)": [[32, "viser.Icon.FILE_SCISSORS"]], "file_search (viser.icon attribute)": [[32, "viser.Icon.FILE_SEARCH"]], "file_settings (viser.icon attribute)": [[32, "viser.Icon.FILE_SETTINGS"]], "file_shredder (viser.icon attribute)": [[32, "viser.Icon.FILE_SHREDDER"]], "file_signal (viser.icon attribute)": [[32, "viser.Icon.FILE_SIGNAL"]], "file_spreadsheet (viser.icon attribute)": [[32, "viser.Icon.FILE_SPREADSHEET"]], "file_stack (viser.icon attribute)": [[32, "viser.Icon.FILE_STACK"]], "file_star (viser.icon attribute)": [[32, "viser.Icon.FILE_STAR"]], "file_symlink (viser.icon attribute)": [[32, "viser.Icon.FILE_SYMLINK"]], "file_text (viser.icon attribute)": [[32, "viser.Icon.FILE_TEXT"]], "file_text_ai (viser.icon attribute)": [[32, "viser.Icon.FILE_TEXT_AI"]], "file_time (viser.icon attribute)": [[32, "viser.Icon.FILE_TIME"]], "file_typography (viser.icon attribute)": [[32, "viser.Icon.FILE_TYPOGRAPHY"]], "file_unknown (viser.icon attribute)": [[32, "viser.Icon.FILE_UNKNOWN"]], "file_upload (viser.icon attribute)": [[32, "viser.Icon.FILE_UPLOAD"]], "file_vector (viser.icon attribute)": [[32, "viser.Icon.FILE_VECTOR"]], "file_x (viser.icon attribute)": [[32, "viser.Icon.FILE_X"]], "file_x_filled (viser.icon attribute)": [[32, "viser.Icon.FILE_X_FILLED"]], "file_zip (viser.icon attribute)": [[32, "viser.Icon.FILE_ZIP"]], "filter (viser.icon attribute)": [[32, "viser.Icon.FILTER"]], "filters (viser.icon attribute)": [[32, "viser.Icon.FILTERS"]], "filter_cog (viser.icon attribute)": [[32, "viser.Icon.FILTER_COG"]], "filter_dollar (viser.icon attribute)": [[32, "viser.Icon.FILTER_DOLLAR"]], "filter_edit (viser.icon attribute)": [[32, "viser.Icon.FILTER_EDIT"]], "filter_minus (viser.icon attribute)": [[32, "viser.Icon.FILTER_MINUS"]], "filter_off (viser.icon attribute)": [[32, "viser.Icon.FILTER_OFF"]], "filter_plus (viser.icon attribute)": [[32, "viser.Icon.FILTER_PLUS"]], "filter_star (viser.icon attribute)": [[32, "viser.Icon.FILTER_STAR"]], "filter_x (viser.icon attribute)": [[32, "viser.Icon.FILTER_X"]], "fingerprint (viser.icon attribute)": [[32, "viser.Icon.FINGERPRINT"]], "fingerprint_off (viser.icon attribute)": [[32, "viser.Icon.FINGERPRINT_OFF"]], "firetruck (viser.icon attribute)": [[32, "viser.Icon.FIRETRUCK"]], "fire_extinguisher (viser.icon attribute)": [[32, "viser.Icon.FIRE_EXTINGUISHER"]], "fire_hydrant (viser.icon attribute)": [[32, "viser.Icon.FIRE_HYDRANT"]], "fire_hydrant_off (viser.icon attribute)": [[32, "viser.Icon.FIRE_HYDRANT_OFF"]], "first_aid_kit (viser.icon attribute)": [[32, "viser.Icon.FIRST_AID_KIT"]], "first_aid_kit_off (viser.icon attribute)": [[32, "viser.Icon.FIRST_AID_KIT_OFF"]], "fish (viser.icon attribute)": [[32, "viser.Icon.FISH"]], "fish_bone (viser.icon attribute)": [[32, "viser.Icon.FISH_BONE"]], "fish_christianity (viser.icon attribute)": [[32, "viser.Icon.FISH_CHRISTIANITY"]], "fish_hook (viser.icon attribute)": [[32, "viser.Icon.FISH_HOOK"]], "fish_hook_off (viser.icon attribute)": [[32, "viser.Icon.FISH_HOOK_OFF"]], "fish_off (viser.icon attribute)": [[32, "viser.Icon.FISH_OFF"]], "flag (viser.icon attribute)": [[32, "viser.Icon.FLAG"]], "flag_2 (viser.icon attribute)": [[32, "viser.Icon.FLAG_2"]], "flag_2_filled (viser.icon attribute)": [[32, "viser.Icon.FLAG_2_FILLED"]], "flag_2_off (viser.icon attribute)": [[32, "viser.Icon.FLAG_2_OFF"]], "flag_3 (viser.icon attribute)": [[32, "viser.Icon.FLAG_3"]], "flag_3_filled (viser.icon attribute)": [[32, "viser.Icon.FLAG_3_FILLED"]], "flag_filled (viser.icon attribute)": [[32, "viser.Icon.FLAG_FILLED"]], "flag_off (viser.icon attribute)": [[32, "viser.Icon.FLAG_OFF"]], "flame (viser.icon attribute)": [[32, "viser.Icon.FLAME"]], "flame_off (viser.icon attribute)": [[32, "viser.Icon.FLAME_OFF"]], "flare (viser.icon attribute)": [[32, "viser.Icon.FLARE"]], "flask (viser.icon attribute)": [[32, "viser.Icon.FLASK"]], "flask_2 (viser.icon attribute)": [[32, "viser.Icon.FLASK_2"]], "flask_2_off (viser.icon attribute)": [[32, "viser.Icon.FLASK_2_OFF"]], "flask_off (viser.icon attribute)": [[32, "viser.Icon.FLASK_OFF"]], "flip_flops (viser.icon attribute)": [[32, "viser.Icon.FLIP_FLOPS"]], "flip_horizontal (viser.icon attribute)": [[32, "viser.Icon.FLIP_HORIZONTAL"]], "flip_vertical (viser.icon attribute)": [[32, "viser.Icon.FLIP_VERTICAL"]], "float_center (viser.icon attribute)": [[32, "viser.Icon.FLOAT_CENTER"]], "float_left (viser.icon attribute)": [[32, "viser.Icon.FLOAT_LEFT"]], "float_none (viser.icon attribute)": [[32, "viser.Icon.FLOAT_NONE"]], "float_right (viser.icon attribute)": [[32, "viser.Icon.FLOAT_RIGHT"]], "flower (viser.icon attribute)": [[32, "viser.Icon.FLOWER"]], "flower_off (viser.icon attribute)": [[32, "viser.Icon.FLOWER_OFF"]], "focus (viser.icon attribute)": [[32, "viser.Icon.FOCUS"]], "focus_2 (viser.icon attribute)": [[32, "viser.Icon.FOCUS_2"]], "focus_auto (viser.icon attribute)": [[32, "viser.Icon.FOCUS_AUTO"]], "focus_centered (viser.icon attribute)": [[32, "viser.Icon.FOCUS_CENTERED"]], "fold (viser.icon attribute)": [[32, "viser.Icon.FOLD"]], "folder (viser.icon attribute)": [[32, "viser.Icon.FOLDER"]], "folders (viser.icon attribute)": [[32, "viser.Icon.FOLDERS"]], "folders_off (viser.icon attribute)": [[32, "viser.Icon.FOLDERS_OFF"]], "folder_bolt (viser.icon attribute)": [[32, "viser.Icon.FOLDER_BOLT"]], "folder_cancel (viser.icon attribute)": [[32, "viser.Icon.FOLDER_CANCEL"]], "folder_check (viser.icon attribute)": [[32, "viser.Icon.FOLDER_CHECK"]], "folder_code (viser.icon attribute)": [[32, "viser.Icon.FOLDER_CODE"]], "folder_cog (viser.icon attribute)": [[32, "viser.Icon.FOLDER_COG"]], "folder_dollar (viser.icon attribute)": [[32, "viser.Icon.FOLDER_DOLLAR"]], "folder_down (viser.icon attribute)": [[32, "viser.Icon.FOLDER_DOWN"]], "folder_exclamation (viser.icon attribute)": [[32, "viser.Icon.FOLDER_EXCLAMATION"]], "folder_filled (viser.icon attribute)": [[32, "viser.Icon.FOLDER_FILLED"]], "folder_heart (viser.icon attribute)": [[32, "viser.Icon.FOLDER_HEART"]], "folder_minus (viser.icon attribute)": [[32, "viser.Icon.FOLDER_MINUS"]], "folder_off (viser.icon attribute)": [[32, "viser.Icon.FOLDER_OFF"]], "folder_open (viser.icon attribute)": [[32, "viser.Icon.FOLDER_OPEN"]], "folder_pause (viser.icon attribute)": [[32, "viser.Icon.FOLDER_PAUSE"]], "folder_pin (viser.icon attribute)": [[32, "viser.Icon.FOLDER_PIN"]], "folder_plus (viser.icon attribute)": [[32, "viser.Icon.FOLDER_PLUS"]], "folder_question (viser.icon attribute)": [[32, "viser.Icon.FOLDER_QUESTION"]], "folder_search (viser.icon attribute)": [[32, "viser.Icon.FOLDER_SEARCH"]], "folder_share (viser.icon attribute)": [[32, "viser.Icon.FOLDER_SHARE"]], "folder_star (viser.icon attribute)": [[32, "viser.Icon.FOLDER_STAR"]], "folder_symlink (viser.icon attribute)": [[32, "viser.Icon.FOLDER_SYMLINK"]], "folder_up (viser.icon attribute)": [[32, "viser.Icon.FOLDER_UP"]], "folder_x (viser.icon attribute)": [[32, "viser.Icon.FOLDER_X"]], "fold_down (viser.icon attribute)": [[32, "viser.Icon.FOLD_DOWN"]], "fold_up (viser.icon attribute)": [[32, "viser.Icon.FOLD_UP"]], "forbid (viser.icon attribute)": [[32, "viser.Icon.FORBID"]], "forbid_2 (viser.icon attribute)": [[32, "viser.Icon.FORBID_2"]], "forklift (viser.icon attribute)": [[32, "viser.Icon.FORKLIFT"]], "forms (viser.icon attribute)": [[32, "viser.Icon.FORMS"]], "fountain (viser.icon attribute)": [[32, "viser.Icon.FOUNTAIN"]], "fountain_off (viser.icon attribute)": [[32, "viser.Icon.FOUNTAIN_OFF"]], "frame (viser.icon attribute)": [[32, "viser.Icon.FRAME"]], "frame_off (viser.icon attribute)": [[32, "viser.Icon.FRAME_OFF"]], "freeze_column (viser.icon attribute)": [[32, "viser.Icon.FREEZE_COLUMN"]], "freeze_row (viser.icon attribute)": [[32, "viser.Icon.FREEZE_ROW"]], "freeze_row_column (viser.icon attribute)": [[32, "viser.Icon.FREEZE_ROW_COLUMN"]], "free_rights (viser.icon attribute)": [[32, "viser.Icon.FREE_RIGHTS"]], "fridge (viser.icon attribute)": [[32, "viser.Icon.FRIDGE"]], "fridge_off (viser.icon attribute)": [[32, "viser.Icon.FRIDGE_OFF"]], "friends (viser.icon attribute)": [[32, "viser.Icon.FRIENDS"]], "friends_off (viser.icon attribute)": [[32, "viser.Icon.FRIENDS_OFF"]], "frustum (viser.icon attribute)": [[32, "viser.Icon.FRUSTUM"]], "frustum_off (viser.icon attribute)": [[32, "viser.Icon.FRUSTUM_OFF"]], "frustum_plus (viser.icon attribute)": [[32, "viser.Icon.FRUSTUM_PLUS"]], "function (viser.icon attribute)": [[32, "viser.Icon.FUNCTION"]], "function_off (viser.icon attribute)": [[32, "viser.Icon.FUNCTION_OFF"]], "garden_cart (viser.icon attribute)": [[32, "viser.Icon.GARDEN_CART"]], "garden_cart_off (viser.icon attribute)": [[32, "viser.Icon.GARDEN_CART_OFF"]], "gas_station (viser.icon attribute)": [[32, "viser.Icon.GAS_STATION"]], "gas_station_off (viser.icon attribute)": [[32, "viser.Icon.GAS_STATION_OFF"]], "gauge (viser.icon attribute)": [[32, "viser.Icon.GAUGE"]], "gauge_off (viser.icon attribute)": [[32, "viser.Icon.GAUGE_OFF"]], "gavel (viser.icon attribute)": [[32, "viser.Icon.GAVEL"]], "gender_agender (viser.icon attribute)": [[32, "viser.Icon.GENDER_AGENDER"]], "gender_androgyne (viser.icon attribute)": [[32, "viser.Icon.GENDER_ANDROGYNE"]], "gender_bigender (viser.icon attribute)": [[32, "viser.Icon.GENDER_BIGENDER"]], "gender_demiboy (viser.icon attribute)": [[32, "viser.Icon.GENDER_DEMIBOY"]], "gender_demigirl (viser.icon attribute)": [[32, "viser.Icon.GENDER_DEMIGIRL"]], "gender_epicene (viser.icon attribute)": [[32, "viser.Icon.GENDER_EPICENE"]], "gender_female (viser.icon attribute)": [[32, "viser.Icon.GENDER_FEMALE"]], "gender_femme (viser.icon attribute)": [[32, "viser.Icon.GENDER_FEMME"]], "gender_genderfluid (viser.icon attribute)": [[32, "viser.Icon.GENDER_GENDERFLUID"]], "gender_genderless (viser.icon attribute)": [[32, "viser.Icon.GENDER_GENDERLESS"]], "gender_genderqueer (viser.icon attribute)": [[32, "viser.Icon.GENDER_GENDERQUEER"]], "gender_hermaphrodite (viser.icon attribute)": [[32, "viser.Icon.GENDER_HERMAPHRODITE"]], "gender_intergender (viser.icon attribute)": [[32, "viser.Icon.GENDER_INTERGENDER"]], "gender_male (viser.icon attribute)": [[32, "viser.Icon.GENDER_MALE"]], "gender_neutrois (viser.icon attribute)": [[32, "viser.Icon.GENDER_NEUTROIS"]], "gender_third (viser.icon attribute)": [[32, "viser.Icon.GENDER_THIRD"]], "gender_transgender (viser.icon attribute)": [[32, "viser.Icon.GENDER_TRANSGENDER"]], "gender_trasvesti (viser.icon attribute)": [[32, "viser.Icon.GENDER_TRASVESTI"]], "geometry (viser.icon attribute)": [[32, "viser.Icon.GEOMETRY"]], "ghost (viser.icon attribute)": [[32, "viser.Icon.GHOST"]], "ghost_2 (viser.icon attribute)": [[32, "viser.Icon.GHOST_2"]], "ghost_2_filled (viser.icon attribute)": [[32, "viser.Icon.GHOST_2_FILLED"]], "ghost_filled (viser.icon attribute)": [[32, "viser.Icon.GHOST_FILLED"]], "ghost_off (viser.icon attribute)": [[32, "viser.Icon.GHOST_OFF"]], "gif (viser.icon attribute)": [[32, "viser.Icon.GIF"]], "gift (viser.icon attribute)": [[32, "viser.Icon.GIFT"]], "gift_card (viser.icon attribute)": [[32, "viser.Icon.GIFT_CARD"]], "gift_off (viser.icon attribute)": [[32, "viser.Icon.GIFT_OFF"]], "git_branch (viser.icon attribute)": [[32, "viser.Icon.GIT_BRANCH"]], "git_branch_deleted (viser.icon attribute)": [[32, "viser.Icon.GIT_BRANCH_DELETED"]], "git_cherry_pick (viser.icon attribute)": [[32, "viser.Icon.GIT_CHERRY_PICK"]], "git_commit (viser.icon attribute)": [[32, "viser.Icon.GIT_COMMIT"]], "git_compare (viser.icon attribute)": [[32, "viser.Icon.GIT_COMPARE"]], "git_fork (viser.icon attribute)": [[32, "viser.Icon.GIT_FORK"]], "git_merge (viser.icon attribute)": [[32, "viser.Icon.GIT_MERGE"]], "git_pull_request (viser.icon attribute)": [[32, "viser.Icon.GIT_PULL_REQUEST"]], "git_pull_request_closed (viser.icon attribute)": [[32, "viser.Icon.GIT_PULL_REQUEST_CLOSED"]], "git_pull_request_draft (viser.icon attribute)": [[32, "viser.Icon.GIT_PULL_REQUEST_DRAFT"]], "gizmo (viser.icon attribute)": [[32, "viser.Icon.GIZMO"]], "glass (viser.icon attribute)": [[32, "viser.Icon.GLASS"]], "glass_full (viser.icon attribute)": [[32, "viser.Icon.GLASS_FULL"]], "glass_off (viser.icon attribute)": [[32, "viser.Icon.GLASS_OFF"]], "globe (viser.icon attribute)": [[32, "viser.Icon.GLOBE"]], "globe_off (viser.icon attribute)": [[32, "viser.Icon.GLOBE_OFF"]], "golf (viser.icon attribute)": [[32, "viser.Icon.GOLF"]], "golf_off (viser.icon attribute)": [[32, "viser.Icon.GOLF_OFF"]], "go_game (viser.icon attribute)": [[32, "viser.Icon.GO_GAME"]], "gps (viser.icon attribute)": [[32, "viser.Icon.GPS"]], "gradienter (viser.icon attribute)": [[32, "viser.Icon.GRADIENTER"]], "grain (viser.icon attribute)": [[32, "viser.Icon.GRAIN"]], "graph (viser.icon attribute)": [[32, "viser.Icon.GRAPH"]], "graph_off (viser.icon attribute)": [[32, "viser.Icon.GRAPH_OFF"]], "grave (viser.icon attribute)": [[32, "viser.Icon.GRAVE"]], "grave_2 (viser.icon attribute)": [[32, "viser.Icon.GRAVE_2"]], "grid_dots (viser.icon attribute)": [[32, "viser.Icon.GRID_DOTS"]], "grid_pattern (viser.icon attribute)": [[32, "viser.Icon.GRID_PATTERN"]], "grill (viser.icon attribute)": [[32, "viser.Icon.GRILL"]], "grill_fork (viser.icon attribute)": [[32, "viser.Icon.GRILL_FORK"]], "grill_off (viser.icon attribute)": [[32, "viser.Icon.GRILL_OFF"]], "grill_spatula (viser.icon attribute)": [[32, "viser.Icon.GRILL_SPATULA"]], "grip_horizontal (viser.icon attribute)": [[32, "viser.Icon.GRIP_HORIZONTAL"]], "grip_vertical (viser.icon attribute)": [[32, "viser.Icon.GRIP_VERTICAL"]], "growth (viser.icon attribute)": [[32, "viser.Icon.GROWTH"]], "guitar_pick (viser.icon attribute)": [[32, "viser.Icon.GUITAR_PICK"]], "guitar_pick_filled (viser.icon attribute)": [[32, "viser.Icon.GUITAR_PICK_FILLED"]], "hammer (viser.icon attribute)": [[32, "viser.Icon.HAMMER"]], "hammer_off (viser.icon attribute)": [[32, "viser.Icon.HAMMER_OFF"]], "hand_click (viser.icon attribute)": [[32, "viser.Icon.HAND_CLICK"]], "hand_finger (viser.icon attribute)": [[32, "viser.Icon.HAND_FINGER"]], "hand_finger_off (viser.icon attribute)": [[32, "viser.Icon.HAND_FINGER_OFF"]], "hand_grab (viser.icon attribute)": [[32, "viser.Icon.HAND_GRAB"]], "hand_little_finger (viser.icon attribute)": [[32, "viser.Icon.HAND_LITTLE_FINGER"]], "hand_middle_finger (viser.icon attribute)": [[32, "viser.Icon.HAND_MIDDLE_FINGER"]], "hand_move (viser.icon attribute)": [[32, "viser.Icon.HAND_MOVE"]], "hand_off (viser.icon attribute)": [[32, "viser.Icon.HAND_OFF"]], "hand_ring_finger (viser.icon attribute)": [[32, "viser.Icon.HAND_RING_FINGER"]], "hand_rock (viser.icon attribute)": [[32, "viser.Icon.HAND_ROCK"]], "hand_sanitizer (viser.icon attribute)": [[32, "viser.Icon.HAND_SANITIZER"]], "hand_stop (viser.icon attribute)": [[32, "viser.Icon.HAND_STOP"]], "hand_three_fingers (viser.icon attribute)": [[32, "viser.Icon.HAND_THREE_FINGERS"]], "hand_two_fingers (viser.icon attribute)": [[32, "viser.Icon.HAND_TWO_FINGERS"]], "hanger (viser.icon attribute)": [[32, "viser.Icon.HANGER"]], "hanger_2 (viser.icon attribute)": [[32, "viser.Icon.HANGER_2"]], "hanger_off (viser.icon attribute)": [[32, "viser.Icon.HANGER_OFF"]], "hash (viser.icon attribute)": [[32, "viser.Icon.HASH"]], "haze (viser.icon attribute)": [[32, "viser.Icon.HAZE"]], "haze_moon (viser.icon attribute)": [[32, "viser.Icon.HAZE_MOON"]], "hdr (viser.icon attribute)": [[32, "viser.Icon.HDR"]], "heading (viser.icon attribute)": [[32, "viser.Icon.HEADING"]], "heading_off (viser.icon attribute)": [[32, "viser.Icon.HEADING_OFF"]], "headphones (viser.icon attribute)": [[32, "viser.Icon.HEADPHONES"]], "headphones_filled (viser.icon attribute)": [[32, "viser.Icon.HEADPHONES_FILLED"]], "headphones_off (viser.icon attribute)": [[32, "viser.Icon.HEADPHONES_OFF"]], "headset (viser.icon attribute)": [[32, "viser.Icon.HEADSET"]], "headset_off (viser.icon attribute)": [[32, "viser.Icon.HEADSET_OFF"]], "health_recognition (viser.icon attribute)": [[32, "viser.Icon.HEALTH_RECOGNITION"]], "heart (viser.icon attribute)": [[32, "viser.Icon.HEART"]], "heartbeat (viser.icon attribute)": [[32, "viser.Icon.HEARTBEAT"]], "hearts (viser.icon attribute)": [[32, "viser.Icon.HEARTS"]], "hearts_off (viser.icon attribute)": [[32, "viser.Icon.HEARTS_OFF"]], "heart_broken (viser.icon attribute)": [[32, "viser.Icon.HEART_BROKEN"]], "heart_filled (viser.icon attribute)": [[32, "viser.Icon.HEART_FILLED"]], "heart_handshake (viser.icon attribute)": [[32, "viser.Icon.HEART_HANDSHAKE"]], "heart_minus (viser.icon attribute)": [[32, "viser.Icon.HEART_MINUS"]], "heart_off (viser.icon attribute)": [[32, "viser.Icon.HEART_OFF"]], "heart_plus (viser.icon attribute)": [[32, "viser.Icon.HEART_PLUS"]], "heart_rate_monitor (viser.icon attribute)": [[32, "viser.Icon.HEART_RATE_MONITOR"]], "helicopter (viser.icon attribute)": [[32, "viser.Icon.HELICOPTER"]], "helicopter_landing (viser.icon attribute)": [[32, "viser.Icon.HELICOPTER_LANDING"]], "helmet (viser.icon attribute)": [[32, "viser.Icon.HELMET"]], "helmet_off (viser.icon attribute)": [[32, "viser.Icon.HELMET_OFF"]], "help (viser.icon attribute)": [[32, "viser.Icon.HELP"]], "help_circle (viser.icon attribute)": [[32, "viser.Icon.HELP_CIRCLE"]], "help_circle_filled (viser.icon attribute)": [[32, "viser.Icon.HELP_CIRCLE_FILLED"]], "help_hexagon (viser.icon attribute)": [[32, "viser.Icon.HELP_HEXAGON"]], "help_hexagon_filled (viser.icon attribute)": [[32, "viser.Icon.HELP_HEXAGON_FILLED"]], "help_octagon (viser.icon attribute)": [[32, "viser.Icon.HELP_OCTAGON"]], "help_octagon_filled (viser.icon attribute)": [[32, "viser.Icon.HELP_OCTAGON_FILLED"]], "help_off (viser.icon attribute)": [[32, "viser.Icon.HELP_OFF"]], "help_small (viser.icon attribute)": [[32, "viser.Icon.HELP_SMALL"]], "help_square (viser.icon attribute)": [[32, "viser.Icon.HELP_SQUARE"]], "help_square_filled (viser.icon attribute)": [[32, "viser.Icon.HELP_SQUARE_FILLED"]], "help_square_rounded (viser.icon attribute)": [[32, "viser.Icon.HELP_SQUARE_ROUNDED"]], "help_square_rounded_filled (viser.icon attribute)": [[32, "viser.Icon.HELP_SQUARE_ROUNDED_FILLED"]], "help_triangle (viser.icon attribute)": [[32, "viser.Icon.HELP_TRIANGLE"]], "help_triangle_filled (viser.icon attribute)": [[32, "viser.Icon.HELP_TRIANGLE_FILLED"]], "hemisphere (viser.icon attribute)": [[32, "viser.Icon.HEMISPHERE"]], "hemisphere_off (viser.icon attribute)": [[32, "viser.Icon.HEMISPHERE_OFF"]], "hemisphere_plus (viser.icon attribute)": [[32, "viser.Icon.HEMISPHERE_PLUS"]], "hexagon (viser.icon attribute)": [[32, "viser.Icon.HEXAGON"]], "hexagonal_prism (viser.icon attribute)": [[32, "viser.Icon.HEXAGONAL_PRISM"]], "hexagonal_prism_off (viser.icon attribute)": [[32, "viser.Icon.HEXAGONAL_PRISM_OFF"]], "hexagonal_prism_plus (viser.icon attribute)": [[32, "viser.Icon.HEXAGONAL_PRISM_PLUS"]], "hexagonal_pyramid (viser.icon attribute)": [[32, "viser.Icon.HEXAGONAL_PYRAMID"]], "hexagonal_pyramid_off (viser.icon attribute)": [[32, "viser.Icon.HEXAGONAL_PYRAMID_OFF"]], "hexagonal_pyramid_plus (viser.icon attribute)": [[32, "viser.Icon.HEXAGONAL_PYRAMID_PLUS"]], "hexagons (viser.icon attribute)": [[32, "viser.Icon.HEXAGONS"]], "hexagons_off (viser.icon attribute)": [[32, "viser.Icon.HEXAGONS_OFF"]], "hexagon_0_filled (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_0_FILLED"]], "hexagon_1_filled (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_1_FILLED"]], "hexagon_2_filled (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_2_FILLED"]], "hexagon_3d (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_3D"]], "hexagon_3_filled (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_3_FILLED"]], "hexagon_4_filled (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_4_FILLED"]], "hexagon_5_filled (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_5_FILLED"]], "hexagon_6_filled (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_6_FILLED"]], "hexagon_7_filled (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_7_FILLED"]], "hexagon_8_filled (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_8_FILLED"]], "hexagon_9_filled (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_9_FILLED"]], "hexagon_filled (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_FILLED"]], "hexagon_letter_a (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_A"]], "hexagon_letter_b (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_B"]], "hexagon_letter_c (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_C"]], "hexagon_letter_d (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_D"]], "hexagon_letter_e (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_E"]], "hexagon_letter_f (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_F"]], "hexagon_letter_g (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_G"]], "hexagon_letter_h (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_H"]], "hexagon_letter_i (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_I"]], "hexagon_letter_j (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_J"]], "hexagon_letter_k (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_K"]], "hexagon_letter_l (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_L"]], "hexagon_letter_m (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_M"]], "hexagon_letter_n (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_N"]], "hexagon_letter_o (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_O"]], "hexagon_letter_p (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_P"]], "hexagon_letter_q (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_Q"]], "hexagon_letter_r (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_R"]], "hexagon_letter_s (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_S"]], "hexagon_letter_t (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_T"]], "hexagon_letter_u (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_U"]], "hexagon_letter_v (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_V"]], "hexagon_letter_w (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_W"]], "hexagon_letter_x (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_X"]], "hexagon_letter_y (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_Y"]], "hexagon_letter_z (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_LETTER_Z"]], "hexagon_number_0 (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_NUMBER_0"]], "hexagon_number_1 (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_NUMBER_1"]], "hexagon_number_2 (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_NUMBER_2"]], "hexagon_number_3 (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_NUMBER_3"]], "hexagon_number_4 (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_NUMBER_4"]], "hexagon_number_5 (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_NUMBER_5"]], "hexagon_number_6 (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_NUMBER_6"]], "hexagon_number_7 (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_NUMBER_7"]], "hexagon_number_8 (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_NUMBER_8"]], "hexagon_number_9 (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_NUMBER_9"]], "hexagon_off (viser.icon attribute)": [[32, "viser.Icon.HEXAGON_OFF"]], "hierarchy (viser.icon attribute)": [[32, "viser.Icon.HIERARCHY"]], "hierarchy_2 (viser.icon attribute)": [[32, "viser.Icon.HIERARCHY_2"]], "hierarchy_3 (viser.icon attribute)": [[32, "viser.Icon.HIERARCHY_3"]], "hierarchy_off (viser.icon attribute)": [[32, "viser.Icon.HIERARCHY_OFF"]], "highlight (viser.icon attribute)": [[32, "viser.Icon.HIGHLIGHT"]], "highlight_off (viser.icon attribute)": [[32, "viser.Icon.HIGHLIGHT_OFF"]], "history (viser.icon attribute)": [[32, "viser.Icon.HISTORY"]], "history_off (viser.icon attribute)": [[32, "viser.Icon.HISTORY_OFF"]], "history_toggle (viser.icon attribute)": [[32, "viser.Icon.HISTORY_TOGGLE"]], "home (viser.icon attribute)": [[32, "viser.Icon.HOME"]], "home_2 (viser.icon attribute)": [[32, "viser.Icon.HOME_2"]], "home_bolt (viser.icon attribute)": [[32, "viser.Icon.HOME_BOLT"]], "home_cancel (viser.icon attribute)": [[32, "viser.Icon.HOME_CANCEL"]], "home_check (viser.icon attribute)": [[32, "viser.Icon.HOME_CHECK"]], "home_cog (viser.icon attribute)": [[32, "viser.Icon.HOME_COG"]], "home_dollar (viser.icon attribute)": [[32, "viser.Icon.HOME_DOLLAR"]], "home_dot (viser.icon attribute)": [[32, "viser.Icon.HOME_DOT"]], "home_down (viser.icon attribute)": [[32, "viser.Icon.HOME_DOWN"]], "home_eco (viser.icon attribute)": [[32, "viser.Icon.HOME_ECO"]], "home_edit (viser.icon attribute)": [[32, "viser.Icon.HOME_EDIT"]], "home_exclamation (viser.icon attribute)": [[32, "viser.Icon.HOME_EXCLAMATION"]], "home_hand (viser.icon attribute)": [[32, "viser.Icon.HOME_HAND"]], "home_heart (viser.icon attribute)": [[32, "viser.Icon.HOME_HEART"]], "home_infinity (viser.icon attribute)": [[32, "viser.Icon.HOME_INFINITY"]], "home_link (viser.icon attribute)": [[32, "viser.Icon.HOME_LINK"]], "home_minus (viser.icon attribute)": [[32, "viser.Icon.HOME_MINUS"]], "home_move (viser.icon attribute)": [[32, "viser.Icon.HOME_MOVE"]], "home_off (viser.icon attribute)": [[32, "viser.Icon.HOME_OFF"]], "home_plus (viser.icon attribute)": [[32, "viser.Icon.HOME_PLUS"]], "home_question (viser.icon attribute)": [[32, "viser.Icon.HOME_QUESTION"]], "home_ribbon (viser.icon attribute)": [[32, "viser.Icon.HOME_RIBBON"]], "home_search (viser.icon attribute)": [[32, "viser.Icon.HOME_SEARCH"]], "home_share (viser.icon attribute)": [[32, "viser.Icon.HOME_SHARE"]], "home_shield (viser.icon attribute)": [[32, "viser.Icon.HOME_SHIELD"]], "home_signal (viser.icon attribute)": [[32, "viser.Icon.HOME_SIGNAL"]], "home_star (viser.icon attribute)": [[32, "viser.Icon.HOME_STAR"]], "home_stats (viser.icon attribute)": [[32, "viser.Icon.HOME_STATS"]], "home_up (viser.icon attribute)": [[32, "viser.Icon.HOME_UP"]], "home_x (viser.icon attribute)": [[32, "viser.Icon.HOME_X"]], "horse_toy (viser.icon attribute)": [[32, "viser.Icon.HORSE_TOY"]], "hotel_service (viser.icon attribute)": [[32, "viser.Icon.HOTEL_SERVICE"]], "hourglass (viser.icon attribute)": [[32, "viser.Icon.HOURGLASS"]], "hourglass_empty (viser.icon attribute)": [[32, "viser.Icon.HOURGLASS_EMPTY"]], "hourglass_filled (viser.icon attribute)": [[32, "viser.Icon.HOURGLASS_FILLED"]], "hourglass_high (viser.icon attribute)": [[32, "viser.Icon.HOURGLASS_HIGH"]], "hourglass_low (viser.icon attribute)": [[32, "viser.Icon.HOURGLASS_LOW"]], "hourglass_off (viser.icon attribute)": [[32, "viser.Icon.HOURGLASS_OFF"]], "html (viser.icon attribute)": [[32, "viser.Icon.HTML"]], "http_connect (viser.icon attribute)": [[32, "viser.Icon.HTTP_CONNECT"]], "http_delete (viser.icon attribute)": [[32, "viser.Icon.HTTP_DELETE"]], "http_get (viser.icon attribute)": [[32, "viser.Icon.HTTP_GET"]], "http_head (viser.icon attribute)": [[32, "viser.Icon.HTTP_HEAD"]], "http_options (viser.icon attribute)": [[32, "viser.Icon.HTTP_OPTIONS"]], "http_patch (viser.icon attribute)": [[32, "viser.Icon.HTTP_PATCH"]], "http_post (viser.icon attribute)": [[32, "viser.Icon.HTTP_POST"]], "http_put (viser.icon attribute)": [[32, "viser.Icon.HTTP_PUT"]], "http_que (viser.icon attribute)": [[32, "viser.Icon.HTTP_QUE"]], "http_trace (viser.icon attribute)": [[32, "viser.Icon.HTTP_TRACE"]], "h_1 (viser.icon attribute)": [[32, "viser.Icon.H_1"]], "h_2 (viser.icon attribute)": [[32, "viser.Icon.H_2"]], "h_3 (viser.icon attribute)": [[32, "viser.Icon.H_3"]], "h_4 (viser.icon attribute)": [[32, "viser.Icon.H_4"]], "h_5 (viser.icon attribute)": [[32, "viser.Icon.H_5"]], "h_6 (viser.icon attribute)": [[32, "viser.Icon.H_6"]], "ice_cream (viser.icon attribute)": [[32, "viser.Icon.ICE_CREAM"]], "ice_cream_2 (viser.icon attribute)": [[32, "viser.Icon.ICE_CREAM_2"]], "ice_cream_off (viser.icon attribute)": [[32, "viser.Icon.ICE_CREAM_OFF"]], "ice_skating (viser.icon attribute)": [[32, "viser.Icon.ICE_SKATING"]], "icons (viser.icon attribute)": [[32, "viser.Icon.ICONS"]], "icons_off (viser.icon attribute)": [[32, "viser.Icon.ICONS_OFF"]], "icon_123 (viser.icon attribute)": [[32, "viser.Icon.ICON_123"]], "icon_24_hours (viser.icon attribute)": [[32, "viser.Icon.ICON_24_HOURS"]], "icon_2fa (viser.icon attribute)": [[32, "viser.Icon.ICON_2FA"]], "icon_360 (viser.icon attribute)": [[32, "viser.Icon.ICON_360"]], "icon_360_view (viser.icon attribute)": [[32, "viser.Icon.ICON_360_VIEW"]], "icon_3d_cube_sphere (viser.icon attribute)": [[32, "viser.Icon.ICON_3D_CUBE_SPHERE"]], "icon_3d_cube_sphere_off (viser.icon attribute)": [[32, "viser.Icon.ICON_3D_CUBE_SPHERE_OFF"]], "icon_3d_rotate (viser.icon attribute)": [[32, "viser.Icon.ICON_3D_ROTATE"]], "id (viser.icon attribute)": [[32, "viser.Icon.ID"]], "id_badge (viser.icon attribute)": [[32, "viser.Icon.ID_BADGE"]], "id_badge_2 (viser.icon attribute)": [[32, "viser.Icon.ID_BADGE_2"]], "id_badge_off (viser.icon attribute)": [[32, "viser.Icon.ID_BADGE_OFF"]], "id_off (viser.icon attribute)": [[32, "viser.Icon.ID_OFF"]], "inbox (viser.icon attribute)": [[32, "viser.Icon.INBOX"]], "inbox_off (viser.icon attribute)": [[32, "viser.Icon.INBOX_OFF"]], "indent_decrease (viser.icon attribute)": [[32, "viser.Icon.INDENT_DECREASE"]], "indent_increase (viser.icon attribute)": [[32, "viser.Icon.INDENT_INCREASE"]], "infinity (viser.icon attribute)": [[32, "viser.Icon.INFINITY"]], "infinity_off (viser.icon attribute)": [[32, "viser.Icon.INFINITY_OFF"]], "info_circle (viser.icon attribute)": [[32, "viser.Icon.INFO_CIRCLE"]], "info_circle_filled (viser.icon attribute)": [[32, "viser.Icon.INFO_CIRCLE_FILLED"]], "info_hexagon (viser.icon attribute)": [[32, "viser.Icon.INFO_HEXAGON"]], "info_hexagon_filled (viser.icon attribute)": [[32, "viser.Icon.INFO_HEXAGON_FILLED"]], "info_octagon (viser.icon attribute)": [[32, "viser.Icon.INFO_OCTAGON"]], "info_octagon_filled (viser.icon attribute)": [[32, "viser.Icon.INFO_OCTAGON_FILLED"]], "info_small (viser.icon attribute)": [[32, "viser.Icon.INFO_SMALL"]], "info_square (viser.icon attribute)": [[32, "viser.Icon.INFO_SQUARE"]], "info_square_filled (viser.icon attribute)": [[32, "viser.Icon.INFO_SQUARE_FILLED"]], "info_square_rounded (viser.icon attribute)": [[32, "viser.Icon.INFO_SQUARE_ROUNDED"]], "info_square_rounded_filled (viser.icon attribute)": [[32, "viser.Icon.INFO_SQUARE_ROUNDED_FILLED"]], "info_triangle (viser.icon attribute)": [[32, "viser.Icon.INFO_TRIANGLE"]], "info_triangle_filled (viser.icon attribute)": [[32, "viser.Icon.INFO_TRIANGLE_FILLED"]], "inner_shadow_bottom (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_BOTTOM"]], "inner_shadow_bottom_filled (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_BOTTOM_FILLED"]], "inner_shadow_bottom_left (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_BOTTOM_LEFT"]], "inner_shadow_bottom_left_filled (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_BOTTOM_LEFT_FILLED"]], "inner_shadow_bottom_right (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_BOTTOM_RIGHT"]], "inner_shadow_bottom_right_filled (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_BOTTOM_RIGHT_FILLED"]], "inner_shadow_left (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_LEFT"]], "inner_shadow_left_filled (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_LEFT_FILLED"]], "inner_shadow_right (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_RIGHT"]], "inner_shadow_right_filled (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_RIGHT_FILLED"]], "inner_shadow_top (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_TOP"]], "inner_shadow_top_filled (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_TOP_FILLED"]], "inner_shadow_top_left (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_TOP_LEFT"]], "inner_shadow_top_left_filled (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_TOP_LEFT_FILLED"]], "inner_shadow_top_right (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_TOP_RIGHT"]], "inner_shadow_top_right_filled (viser.icon attribute)": [[32, "viser.Icon.INNER_SHADOW_TOP_RIGHT_FILLED"]], "input_search (viser.icon attribute)": [[32, "viser.Icon.INPUT_SEARCH"]], "ironing (viser.icon attribute)": [[32, "viser.Icon.IRONING"]], "ironing_1 (viser.icon attribute)": [[32, "viser.Icon.IRONING_1"]], "ironing_2 (viser.icon attribute)": [[32, "viser.Icon.IRONING_2"]], "ironing_3 (viser.icon attribute)": [[32, "viser.Icon.IRONING_3"]], "ironing_off (viser.icon attribute)": [[32, "viser.Icon.IRONING_OFF"]], "ironing_steam (viser.icon attribute)": [[32, "viser.Icon.IRONING_STEAM"]], "ironing_steam_off (viser.icon attribute)": [[32, "viser.Icon.IRONING_STEAM_OFF"]], "irregular_polyhedron (viser.icon attribute)": [[32, "viser.Icon.IRREGULAR_POLYHEDRON"]], "irregular_polyhedron_off (viser.icon attribute)": [[32, "viser.Icon.IRREGULAR_POLYHEDRON_OFF"]], "irregular_polyhedron_plus (viser.icon attribute)": [[32, "viser.Icon.IRREGULAR_POLYHEDRON_PLUS"]], "italic (viser.icon attribute)": [[32, "viser.Icon.ITALIC"]], "icon (class in viser)": [[32, "viser.Icon"]], "iconname (class in viser)": [[32, "viser.IconName"]], "jacket (viser.icon attribute)": [[32, "viser.Icon.JACKET"]], "jetpack (viser.icon attribute)": [[32, "viser.Icon.JETPACK"]], "jewish_star (viser.icon attribute)": [[32, "viser.Icon.JEWISH_STAR"]], "jewish_star_filled (viser.icon attribute)": [[32, "viser.Icon.JEWISH_STAR_FILLED"]], "jpg (viser.icon attribute)": [[32, "viser.Icon.JPG"]], "json (viser.icon attribute)": [[32, "viser.Icon.JSON"]], "jump_rope (viser.icon attribute)": [[32, "viser.Icon.JUMP_ROPE"]], "karate (viser.icon attribute)": [[32, "viser.Icon.KARATE"]], "kayak (viser.icon attribute)": [[32, "viser.Icon.KAYAK"]], "kering (viser.icon attribute)": [[32, "viser.Icon.KERING"]], "key (viser.icon attribute)": [[32, "viser.Icon.KEY"]], "keyboard (viser.icon attribute)": [[32, "viser.Icon.KEYBOARD"]], "keyboard_hide (viser.icon attribute)": [[32, "viser.Icon.KEYBOARD_HIDE"]], "keyboard_off (viser.icon attribute)": [[32, "viser.Icon.KEYBOARD_OFF"]], "keyboard_show (viser.icon attribute)": [[32, "viser.Icon.KEYBOARD_SHOW"]], "keyframe (viser.icon attribute)": [[32, "viser.Icon.KEYFRAME"]], "keyframes (viser.icon attribute)": [[32, "viser.Icon.KEYFRAMES"]], "keyframe_align_center (viser.icon attribute)": [[32, "viser.Icon.KEYFRAME_ALIGN_CENTER"]], "keyframe_align_horizontal (viser.icon attribute)": [[32, "viser.Icon.KEYFRAME_ALIGN_HORIZONTAL"]], "keyframe_align_vertical (viser.icon attribute)": [[32, "viser.Icon.KEYFRAME_ALIGN_VERTICAL"]], "key_off (viser.icon attribute)": [[32, "viser.Icon.KEY_OFF"]], "ladder (viser.icon attribute)": [[32, "viser.Icon.LADDER"]], "ladder_off (viser.icon attribute)": [[32, "viser.Icon.LADDER_OFF"]], "lambda (viser.icon attribute)": [[32, "viser.Icon.LAMBDA"]], "lamp (viser.icon attribute)": [[32, "viser.Icon.LAMP"]], "lamp_2 (viser.icon attribute)": [[32, "viser.Icon.LAMP_2"]], "lamp_off (viser.icon attribute)": [[32, "viser.Icon.LAMP_OFF"]], "lane (viser.icon attribute)": [[32, "viser.Icon.LANE"]], "language (viser.icon attribute)": [[32, "viser.Icon.LANGUAGE"]], "language_hiragana (viser.icon attribute)": [[32, "viser.Icon.LANGUAGE_HIRAGANA"]], "language_katakana (viser.icon attribute)": [[32, "viser.Icon.LANGUAGE_KATAKANA"]], "language_off (viser.icon attribute)": [[32, "viser.Icon.LANGUAGE_OFF"]], "lasso (viser.icon attribute)": [[32, "viser.Icon.LASSO"]], "lasso_off (viser.icon attribute)": [[32, "viser.Icon.LASSO_OFF"]], "lasso_polygon (viser.icon attribute)": [[32, "viser.Icon.LASSO_POLYGON"]], "layers_difference (viser.icon attribute)": [[32, "viser.Icon.LAYERS_DIFFERENCE"]], "layers_intersect (viser.icon attribute)": [[32, "viser.Icon.LAYERS_INTERSECT"]], "layers_intersect_2 (viser.icon attribute)": [[32, "viser.Icon.LAYERS_INTERSECT_2"]], "layers_linked (viser.icon attribute)": [[32, "viser.Icon.LAYERS_LINKED"]], "layers_off (viser.icon attribute)": [[32, "viser.Icon.LAYERS_OFF"]], "layers_subtract (viser.icon attribute)": [[32, "viser.Icon.LAYERS_SUBTRACT"]], "layers_union (viser.icon attribute)": [[32, "viser.Icon.LAYERS_UNION"]], "layout (viser.icon attribute)": [[32, "viser.Icon.LAYOUT"]], "layout_2 (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_2"]], "layout_align_bottom (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_ALIGN_BOTTOM"]], "layout_align_center (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_ALIGN_CENTER"]], "layout_align_left (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_ALIGN_LEFT"]], "layout_align_middle (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_ALIGN_MIDDLE"]], "layout_align_right (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_ALIGN_RIGHT"]], "layout_align_top (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_ALIGN_TOP"]], "layout_board (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_BOARD"]], "layout_board_split (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_BOARD_SPLIT"]], "layout_bottombar (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_BOTTOMBAR"]], "layout_bottombar_collapse (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_BOTTOMBAR_COLLAPSE"]], "layout_bottombar_expand (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_BOTTOMBAR_EXPAND"]], "layout_cards (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_CARDS"]], "layout_collage (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_COLLAGE"]], "layout_columns (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_COLUMNS"]], "layout_dashboard (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_DASHBOARD"]], "layout_distribute_horizontal (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_DISTRIBUTE_HORIZONTAL"]], "layout_distribute_vertical (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_DISTRIBUTE_VERTICAL"]], "layout_grid (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_GRID"]], "layout_grid_add (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_GRID_ADD"]], "layout_grid_remove (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_GRID_REMOVE"]], "layout_kanban (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_KANBAN"]], "layout_list (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_LIST"]], "layout_navbar (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_NAVBAR"]], "layout_navbar_collapse (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_NAVBAR_COLLAPSE"]], "layout_navbar_expand (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_NAVBAR_EXPAND"]], "layout_off (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_OFF"]], "layout_rows (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_ROWS"]], "layout_sidebar (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_SIDEBAR"]], "layout_sidebar_left_collapse (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_SIDEBAR_LEFT_COLLAPSE"]], "layout_sidebar_left_expand (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_SIDEBAR_LEFT_EXPAND"]], "layout_sidebar_right (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_SIDEBAR_RIGHT"]], "layout_sidebar_right_collapse (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_SIDEBAR_RIGHT_COLLAPSE"]], "layout_sidebar_right_expand (viser.icon attribute)": [[32, "viser.Icon.LAYOUT_SIDEBAR_RIGHT_EXPAND"]], "leaf (viser.icon attribute)": [[32, "viser.Icon.LEAF"]], "leaf_off (viser.icon attribute)": [[32, "viser.Icon.LEAF_OFF"]], "lego (viser.icon attribute)": [[32, "viser.Icon.LEGO"]], "lego_off (viser.icon attribute)": [[32, "viser.Icon.LEGO_OFF"]], "lemon (viser.icon attribute)": [[32, "viser.Icon.LEMON"]], "lemon_2 (viser.icon attribute)": [[32, "viser.Icon.LEMON_2"]], "letter_a (viser.icon attribute)": [[32, "viser.Icon.LETTER_A"]], "letter_b (viser.icon attribute)": [[32, "viser.Icon.LETTER_B"]], "letter_c (viser.icon attribute)": [[32, "viser.Icon.LETTER_C"]], "letter_case (viser.icon attribute)": [[32, "viser.Icon.LETTER_CASE"]], "letter_case_lower (viser.icon attribute)": [[32, "viser.Icon.LETTER_CASE_LOWER"]], "letter_case_toggle (viser.icon attribute)": [[32, "viser.Icon.LETTER_CASE_TOGGLE"]], "letter_case_upper (viser.icon attribute)": [[32, "viser.Icon.LETTER_CASE_UPPER"]], "letter_d (viser.icon attribute)": [[32, "viser.Icon.LETTER_D"]], "letter_e (viser.icon attribute)": [[32, "viser.Icon.LETTER_E"]], "letter_f (viser.icon attribute)": [[32, "viser.Icon.LETTER_F"]], "letter_g (viser.icon attribute)": [[32, "viser.Icon.LETTER_G"]], "letter_h (viser.icon attribute)": [[32, "viser.Icon.LETTER_H"]], "letter_i (viser.icon attribute)": [[32, "viser.Icon.LETTER_I"]], "letter_j (viser.icon attribute)": [[32, "viser.Icon.LETTER_J"]], "letter_k (viser.icon attribute)": [[32, "viser.Icon.LETTER_K"]], "letter_l (viser.icon attribute)": [[32, "viser.Icon.LETTER_L"]], "letter_m (viser.icon attribute)": [[32, "viser.Icon.LETTER_M"]], "letter_n (viser.icon attribute)": [[32, "viser.Icon.LETTER_N"]], "letter_o (viser.icon attribute)": [[32, "viser.Icon.LETTER_O"]], "letter_p (viser.icon attribute)": [[32, "viser.Icon.LETTER_P"]], "letter_q (viser.icon attribute)": [[32, "viser.Icon.LETTER_Q"]], "letter_r (viser.icon attribute)": [[32, "viser.Icon.LETTER_R"]], "letter_s (viser.icon attribute)": [[32, "viser.Icon.LETTER_S"]], "letter_spacing (viser.icon attribute)": [[32, "viser.Icon.LETTER_SPACING"]], "letter_t (viser.icon attribute)": [[32, "viser.Icon.LETTER_T"]], "letter_u (viser.icon attribute)": [[32, "viser.Icon.LETTER_U"]], "letter_v (viser.icon attribute)": [[32, "viser.Icon.LETTER_V"]], "letter_w (viser.icon attribute)": [[32, "viser.Icon.LETTER_W"]], "letter_x (viser.icon attribute)": [[32, "viser.Icon.LETTER_X"]], "letter_y (viser.icon attribute)": [[32, "viser.Icon.LETTER_Y"]], "letter_z (viser.icon attribute)": [[32, "viser.Icon.LETTER_Z"]], "license (viser.icon attribute)": [[32, "viser.Icon.LICENSE"]], "license_off (viser.icon attribute)": [[32, "viser.Icon.LICENSE_OFF"]], "lifebuoy (viser.icon attribute)": [[32, "viser.Icon.LIFEBUOY"]], "lifebuoy_off (viser.icon attribute)": [[32, "viser.Icon.LIFEBUOY_OFF"]], "lighter (viser.icon attribute)": [[32, "viser.Icon.LIGHTER"]], "line (viser.icon attribute)": [[32, "viser.Icon.LINE"]], "line_dashed (viser.icon attribute)": [[32, "viser.Icon.LINE_DASHED"]], "line_dotted (viser.icon attribute)": [[32, "viser.Icon.LINE_DOTTED"]], "line_height (viser.icon attribute)": [[32, "viser.Icon.LINE_HEIGHT"]], "link (viser.icon attribute)": [[32, "viser.Icon.LINK"]], "link_off (viser.icon attribute)": [[32, "viser.Icon.LINK_OFF"]], "list (viser.icon attribute)": [[32, "viser.Icon.LIST"]], "list_check (viser.icon attribute)": [[32, "viser.Icon.LIST_CHECK"]], "list_details (viser.icon attribute)": [[32, "viser.Icon.LIST_DETAILS"]], "list_numbers (viser.icon attribute)": [[32, "viser.Icon.LIST_NUMBERS"]], "list_search (viser.icon attribute)": [[32, "viser.Icon.LIST_SEARCH"]], "list_tree (viser.icon attribute)": [[32, "viser.Icon.LIST_TREE"]], "live_photo (viser.icon attribute)": [[32, "viser.Icon.LIVE_PHOTO"]], "live_photo_off (viser.icon attribute)": [[32, "viser.Icon.LIVE_PHOTO_OFF"]], "live_view (viser.icon attribute)": [[32, "viser.Icon.LIVE_VIEW"]], "loader (viser.icon attribute)": [[32, "viser.Icon.LOADER"]], "loader_2 (viser.icon attribute)": [[32, "viser.Icon.LOADER_2"]], "loader_3 (viser.icon attribute)": [[32, "viser.Icon.LOADER_3"]], "loader_quarter (viser.icon attribute)": [[32, "viser.Icon.LOADER_QUARTER"]], "load_balancer (viser.icon attribute)": [[32, "viser.Icon.LOAD_BALANCER"]], "location (viser.icon attribute)": [[32, "viser.Icon.LOCATION"]], "location_broken (viser.icon attribute)": [[32, "viser.Icon.LOCATION_BROKEN"]], "location_filled (viser.icon attribute)": [[32, "viser.Icon.LOCATION_FILLED"]], "location_off (viser.icon attribute)": [[32, "viser.Icon.LOCATION_OFF"]], "lock (viser.icon attribute)": [[32, "viser.Icon.LOCK"]], "lock_access (viser.icon attribute)": [[32, "viser.Icon.LOCK_ACCESS"]], "lock_access_off (viser.icon attribute)": [[32, "viser.Icon.LOCK_ACCESS_OFF"]], "lock_bolt (viser.icon attribute)": [[32, "viser.Icon.LOCK_BOLT"]], "lock_cancel (viser.icon attribute)": [[32, "viser.Icon.LOCK_CANCEL"]], "lock_check (viser.icon attribute)": [[32, "viser.Icon.LOCK_CHECK"]], "lock_code (viser.icon attribute)": [[32, "viser.Icon.LOCK_CODE"]], "lock_cog (viser.icon attribute)": [[32, "viser.Icon.LOCK_COG"]], "lock_dollar (viser.icon attribute)": [[32, "viser.Icon.LOCK_DOLLAR"]], "lock_down (viser.icon attribute)": [[32, "viser.Icon.LOCK_DOWN"]], "lock_exclamation (viser.icon attribute)": [[32, "viser.Icon.LOCK_EXCLAMATION"]], "lock_heart (viser.icon attribute)": [[32, "viser.Icon.LOCK_HEART"]], "lock_minus (viser.icon attribute)": [[32, "viser.Icon.LOCK_MINUS"]], "lock_off (viser.icon attribute)": [[32, "viser.Icon.LOCK_OFF"]], "lock_open (viser.icon attribute)": [[32, "viser.Icon.LOCK_OPEN"]], "lock_open_off (viser.icon attribute)": [[32, "viser.Icon.LOCK_OPEN_OFF"]], "lock_pause (viser.icon attribute)": [[32, "viser.Icon.LOCK_PAUSE"]], "lock_pin (viser.icon attribute)": [[32, "viser.Icon.LOCK_PIN"]], "lock_plus (viser.icon attribute)": [[32, "viser.Icon.LOCK_PLUS"]], "lock_question (viser.icon attribute)": [[32, "viser.Icon.LOCK_QUESTION"]], "lock_search (viser.icon attribute)": [[32, "viser.Icon.LOCK_SEARCH"]], "lock_share (viser.icon attribute)": [[32, "viser.Icon.LOCK_SHARE"]], "lock_square (viser.icon attribute)": [[32, "viser.Icon.LOCK_SQUARE"]], "lock_square_rounded (viser.icon attribute)": [[32, "viser.Icon.LOCK_SQUARE_ROUNDED"]], "lock_square_rounded_filled (viser.icon attribute)": [[32, "viser.Icon.LOCK_SQUARE_ROUNDED_FILLED"]], "lock_star (viser.icon attribute)": [[32, "viser.Icon.LOCK_STAR"]], "lock_up (viser.icon attribute)": [[32, "viser.Icon.LOCK_UP"]], "lock_x (viser.icon attribute)": [[32, "viser.Icon.LOCK_X"]], "logic_and (viser.icon attribute)": [[32, "viser.Icon.LOGIC_AND"]], "logic_buffer (viser.icon attribute)": [[32, "viser.Icon.LOGIC_BUFFER"]], "logic_nand (viser.icon attribute)": [[32, "viser.Icon.LOGIC_NAND"]], "logic_nor (viser.icon attribute)": [[32, "viser.Icon.LOGIC_NOR"]], "logic_not (viser.icon attribute)": [[32, "viser.Icon.LOGIC_NOT"]], "logic_or (viser.icon attribute)": [[32, "viser.Icon.LOGIC_OR"]], "logic_xnor (viser.icon attribute)": [[32, "viser.Icon.LOGIC_XNOR"]], "logic_xor (viser.icon attribute)": [[32, "viser.Icon.LOGIC_XOR"]], "login (viser.icon attribute)": [[32, "viser.Icon.LOGIN"]], "logout (viser.icon attribute)": [[32, "viser.Icon.LOGOUT"]], "logout_2 (viser.icon attribute)": [[32, "viser.Icon.LOGOUT_2"]], "lollipop (viser.icon attribute)": [[32, "viser.Icon.LOLLIPOP"]], "lollipop_off (viser.icon attribute)": [[32, "viser.Icon.LOLLIPOP_OFF"]], "luggage (viser.icon attribute)": [[32, "viser.Icon.LUGGAGE"]], "luggage_off (viser.icon attribute)": [[32, "viser.Icon.LUGGAGE_OFF"]], "lungs (viser.icon attribute)": [[32, "viser.Icon.LUNGS"]], "lungs_off (viser.icon attribute)": [[32, "viser.Icon.LUNGS_OFF"]], "macro (viser.icon attribute)": [[32, "viser.Icon.MACRO"]], "macro_off (viser.icon attribute)": [[32, "viser.Icon.MACRO_OFF"]], "magnet (viser.icon attribute)": [[32, "viser.Icon.MAGNET"]], "magnet_off (viser.icon attribute)": [[32, "viser.Icon.MAGNET_OFF"]], "mail (viser.icon attribute)": [[32, "viser.Icon.MAIL"]], "mailbox (viser.icon attribute)": [[32, "viser.Icon.MAILBOX"]], "mailbox_off (viser.icon attribute)": [[32, "viser.Icon.MAILBOX_OFF"]], "mail_ai (viser.icon attribute)": [[32, "viser.Icon.MAIL_AI"]], "mail_bolt (viser.icon attribute)": [[32, "viser.Icon.MAIL_BOLT"]], "mail_cancel (viser.icon attribute)": [[32, "viser.Icon.MAIL_CANCEL"]], "mail_check (viser.icon attribute)": [[32, "viser.Icon.MAIL_CHECK"]], "mail_code (viser.icon attribute)": [[32, "viser.Icon.MAIL_CODE"]], "mail_cog (viser.icon attribute)": [[32, "viser.Icon.MAIL_COG"]], "mail_dollar (viser.icon attribute)": [[32, "viser.Icon.MAIL_DOLLAR"]], "mail_down (viser.icon attribute)": [[32, "viser.Icon.MAIL_DOWN"]], "mail_exclamation (viser.icon attribute)": [[32, "viser.Icon.MAIL_EXCLAMATION"]], "mail_fast (viser.icon attribute)": [[32, "viser.Icon.MAIL_FAST"]], "mail_filled (viser.icon attribute)": [[32, "viser.Icon.MAIL_FILLED"]], "mail_forward (viser.icon attribute)": [[32, "viser.Icon.MAIL_FORWARD"]], "mail_heart (viser.icon attribute)": [[32, "viser.Icon.MAIL_HEART"]], "mail_minus (viser.icon attribute)": [[32, "viser.Icon.MAIL_MINUS"]], "mail_off (viser.icon attribute)": [[32, "viser.Icon.MAIL_OFF"]], "mail_opened (viser.icon attribute)": [[32, "viser.Icon.MAIL_OPENED"]], "mail_opened_filled (viser.icon attribute)": [[32, "viser.Icon.MAIL_OPENED_FILLED"]], "mail_pause (viser.icon attribute)": [[32, "viser.Icon.MAIL_PAUSE"]], "mail_pin (viser.icon attribute)": [[32, "viser.Icon.MAIL_PIN"]], "mail_plus (viser.icon attribute)": [[32, "viser.Icon.MAIL_PLUS"]], "mail_question (viser.icon attribute)": [[32, "viser.Icon.MAIL_QUESTION"]], "mail_search (viser.icon attribute)": [[32, "viser.Icon.MAIL_SEARCH"]], "mail_share (viser.icon attribute)": [[32, "viser.Icon.MAIL_SHARE"]], "mail_star (viser.icon attribute)": [[32, "viser.Icon.MAIL_STAR"]], "mail_up (viser.icon attribute)": [[32, "viser.Icon.MAIL_UP"]], "mail_x (viser.icon attribute)": [[32, "viser.Icon.MAIL_X"]], "man (viser.icon attribute)": [[32, "viser.Icon.MAN"]], "manual_gearbox (viser.icon attribute)": [[32, "viser.Icon.MANUAL_GEARBOX"]], "map (viser.icon attribute)": [[32, "viser.Icon.MAP"]], "map_2 (viser.icon attribute)": [[32, "viser.Icon.MAP_2"]], "map_off (viser.icon attribute)": [[32, "viser.Icon.MAP_OFF"]], "map_pin (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN"]], "map_pins (viser.icon attribute)": [[32, "viser.Icon.MAP_PINS"]], "map_pin_bolt (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_BOLT"]], "map_pin_cancel (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_CANCEL"]], "map_pin_check (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_CHECK"]], "map_pin_code (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_CODE"]], "map_pin_cog (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_COG"]], "map_pin_dollar (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_DOLLAR"]], "map_pin_down (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_DOWN"]], "map_pin_exclamation (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_EXCLAMATION"]], "map_pin_filled (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_FILLED"]], "map_pin_heart (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_HEART"]], "map_pin_minus (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_MINUS"]], "map_pin_off (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_OFF"]], "map_pin_pause (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_PAUSE"]], "map_pin_pin (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_PIN"]], "map_pin_plus (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_PLUS"]], "map_pin_question (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_QUESTION"]], "map_pin_search (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_SEARCH"]], "map_pin_share (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_SHARE"]], "map_pin_star (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_STAR"]], "map_pin_up (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_UP"]], "map_pin_x (viser.icon attribute)": [[32, "viser.Icon.MAP_PIN_X"]], "map_search (viser.icon attribute)": [[32, "viser.Icon.MAP_SEARCH"]], "markdown (viser.icon attribute)": [[32, "viser.Icon.MARKDOWN"]], "markdown_off (viser.icon attribute)": [[32, "viser.Icon.MARKDOWN_OFF"]], "marquee (viser.icon attribute)": [[32, "viser.Icon.MARQUEE"]], "marquee_2 (viser.icon attribute)": [[32, "viser.Icon.MARQUEE_2"]], "marquee_off (viser.icon attribute)": [[32, "viser.Icon.MARQUEE_OFF"]], "mars (viser.icon attribute)": [[32, "viser.Icon.MARS"]], "mask (viser.icon attribute)": [[32, "viser.Icon.MASK"]], "masks_theater (viser.icon attribute)": [[32, "viser.Icon.MASKS_THEATER"]], "masks_theater_off (viser.icon attribute)": [[32, "viser.Icon.MASKS_THEATER_OFF"]], "mask_off (viser.icon attribute)": [[32, "viser.Icon.MASK_OFF"]], "massage (viser.icon attribute)": [[32, "viser.Icon.MASSAGE"]], "matchstick (viser.icon attribute)": [[32, "viser.Icon.MATCHSTICK"]], "math (viser.icon attribute)": [[32, "viser.Icon.MATH"]], "math_1_divide_2 (viser.icon attribute)": [[32, "viser.Icon.MATH_1_DIVIDE_2"]], "math_1_divide_3 (viser.icon attribute)": [[32, "viser.Icon.MATH_1_DIVIDE_3"]], "math_avg (viser.icon attribute)": [[32, "viser.Icon.MATH_AVG"]], "math_equal_greater (viser.icon attribute)": [[32, "viser.Icon.MATH_EQUAL_GREATER"]], "math_equal_lower (viser.icon attribute)": [[32, "viser.Icon.MATH_EQUAL_LOWER"]], "math_function (viser.icon attribute)": [[32, "viser.Icon.MATH_FUNCTION"]], "math_function_off (viser.icon attribute)": [[32, "viser.Icon.MATH_FUNCTION_OFF"]], "math_function_y (viser.icon attribute)": [[32, "viser.Icon.MATH_FUNCTION_Y"]], "math_greater (viser.icon attribute)": [[32, "viser.Icon.MATH_GREATER"]], "math_integral (viser.icon attribute)": [[32, "viser.Icon.MATH_INTEGRAL"]], "math_integrals (viser.icon attribute)": [[32, "viser.Icon.MATH_INTEGRALS"]], "math_integral_x (viser.icon attribute)": [[32, "viser.Icon.MATH_INTEGRAL_X"]], "math_lower (viser.icon attribute)": [[32, "viser.Icon.MATH_LOWER"]], "math_max (viser.icon attribute)": [[32, "viser.Icon.MATH_MAX"]], "math_min (viser.icon attribute)": [[32, "viser.Icon.MATH_MIN"]], "math_not (viser.icon attribute)": [[32, "viser.Icon.MATH_NOT"]], "math_off (viser.icon attribute)": [[32, "viser.Icon.MATH_OFF"]], "math_pi (viser.icon attribute)": [[32, "viser.Icon.MATH_PI"]], "math_pi_divide_2 (viser.icon attribute)": [[32, "viser.Icon.MATH_PI_DIVIDE_2"]], "math_symbols (viser.icon attribute)": [[32, "viser.Icon.MATH_SYMBOLS"]], "math_xy (viser.icon attribute)": [[32, "viser.Icon.MATH_XY"]], "math_x_divide_2 (viser.icon attribute)": [[32, "viser.Icon.MATH_X_DIVIDE_2"]], "math_x_divide_y (viser.icon attribute)": [[32, "viser.Icon.MATH_X_DIVIDE_Y"]], "math_x_divide_y_2 (viser.icon attribute)": [[32, "viser.Icon.MATH_X_DIVIDE_Y_2"]], "math_x_minus_x (viser.icon attribute)": [[32, "viser.Icon.MATH_X_MINUS_X"]], "math_x_minus_y (viser.icon attribute)": [[32, "viser.Icon.MATH_X_MINUS_Y"]], "math_x_plus_x (viser.icon attribute)": [[32, "viser.Icon.MATH_X_PLUS_X"]], "math_x_plus_y (viser.icon attribute)": [[32, "viser.Icon.MATH_X_PLUS_Y"]], "math_y_minus_y (viser.icon attribute)": [[32, "viser.Icon.MATH_Y_MINUS_Y"]], "math_y_plus_y (viser.icon attribute)": [[32, "viser.Icon.MATH_Y_PLUS_Y"]], "maximize (viser.icon attribute)": [[32, "viser.Icon.MAXIMIZE"]], "maximize_off (viser.icon attribute)": [[32, "viser.Icon.MAXIMIZE_OFF"]], "meat (viser.icon attribute)": [[32, "viser.Icon.MEAT"]], "meat_off (viser.icon attribute)": [[32, "viser.Icon.MEAT_OFF"]], "medal (viser.icon attribute)": [[32, "viser.Icon.MEDAL"]], "medal_2 (viser.icon attribute)": [[32, "viser.Icon.MEDAL_2"]], "medical_cross (viser.icon attribute)": [[32, "viser.Icon.MEDICAL_CROSS"]], "medical_cross_circle (viser.icon attribute)": [[32, "viser.Icon.MEDICAL_CROSS_CIRCLE"]], "medical_cross_filled (viser.icon attribute)": [[32, "viser.Icon.MEDICAL_CROSS_FILLED"]], "medical_cross_off (viser.icon attribute)": [[32, "viser.Icon.MEDICAL_CROSS_OFF"]], "medicine_syrup (viser.icon attribute)": [[32, "viser.Icon.MEDICINE_SYRUP"]], "meeple (viser.icon attribute)": [[32, "viser.Icon.MEEPLE"]], "menorah (viser.icon attribute)": [[32, "viser.Icon.MENORAH"]], "menu (viser.icon attribute)": [[32, "viser.Icon.MENU"]], "menu_2 (viser.icon attribute)": [[32, "viser.Icon.MENU_2"]], "menu_deep (viser.icon attribute)": [[32, "viser.Icon.MENU_DEEP"]], "menu_order (viser.icon attribute)": [[32, "viser.Icon.MENU_ORDER"]], "message (viser.icon attribute)": [[32, "viser.Icon.MESSAGE"]], "messages (viser.icon attribute)": [[32, "viser.Icon.MESSAGES"]], "messages_off (viser.icon attribute)": [[32, "viser.Icon.MESSAGES_OFF"]], "message_2 (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2"]], "message_2_bolt (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_BOLT"]], "message_2_cancel (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_CANCEL"]], "message_2_check (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_CHECK"]], "message_2_code (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_CODE"]], "message_2_cog (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_COG"]], "message_2_dollar (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_DOLLAR"]], "message_2_down (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_DOWN"]], "message_2_exclamation (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_EXCLAMATION"]], "message_2_heart (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_HEART"]], "message_2_minus (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_MINUS"]], "message_2_off (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_OFF"]], "message_2_pause (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_PAUSE"]], "message_2_pin (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_PIN"]], "message_2_plus (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_PLUS"]], "message_2_question (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_QUESTION"]], "message_2_search (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_SEARCH"]], "message_2_share (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_SHARE"]], "message_2_star (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_STAR"]], "message_2_up (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_UP"]], "message_2_x (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_2_X"]], "message_bolt (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_BOLT"]], "message_cancel (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CANCEL"]], "message_chatbot (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CHATBOT"]], "message_check (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CHECK"]], "message_circle (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE"]], "message_circle_2 (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_2"]], "message_circle_2_filled (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_2_FILLED"]], "message_circle_bolt (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_BOLT"]], "message_circle_cancel (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_CANCEL"]], "message_circle_check (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_CHECK"]], "message_circle_code (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_CODE"]], "message_circle_cog (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_COG"]], "message_circle_dollar (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_DOLLAR"]], "message_circle_down (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_DOWN"]], "message_circle_exclamation (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_EXCLAMATION"]], "message_circle_heart (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_HEART"]], "message_circle_minus (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_MINUS"]], "message_circle_off (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_OFF"]], "message_circle_pause (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_PAUSE"]], "message_circle_pin (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_PIN"]], "message_circle_plus (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_PLUS"]], "message_circle_question (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_QUESTION"]], "message_circle_search (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_SEARCH"]], "message_circle_share (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_SHARE"]], "message_circle_star (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_STAR"]], "message_circle_up (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_UP"]], "message_circle_x (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CIRCLE_X"]], "message_code (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_CODE"]], "message_cog (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_COG"]], "message_dollar (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_DOLLAR"]], "message_dots (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_DOTS"]], "message_down (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_DOWN"]], "message_exclamation (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_EXCLAMATION"]], "message_forward (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_FORWARD"]], "message_heart (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_HEART"]], "message_language (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_LANGUAGE"]], "message_minus (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_MINUS"]], "message_off (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_OFF"]], "message_pause (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_PAUSE"]], "message_pin (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_PIN"]], "message_plus (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_PLUS"]], "message_question (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_QUESTION"]], "message_report (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_REPORT"]], "message_search (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_SEARCH"]], "message_share (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_SHARE"]], "message_star (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_STAR"]], "message_up (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_UP"]], "message_x (viser.icon attribute)": [[32, "viser.Icon.MESSAGE_X"]], "meteor (viser.icon attribute)": [[32, "viser.Icon.METEOR"]], "meteor_off (viser.icon attribute)": [[32, "viser.Icon.METEOR_OFF"]], "michelin_bib_gourmand (viser.icon attribute)": [[32, "viser.Icon.MICHELIN_BIB_GOURMAND"]], "michelin_star (viser.icon attribute)": [[32, "viser.Icon.MICHELIN_STAR"]], "michelin_star_green (viser.icon attribute)": [[32, "viser.Icon.MICHELIN_STAR_GREEN"]], "mickey (viser.icon attribute)": [[32, "viser.Icon.MICKEY"]], "mickey_filled (viser.icon attribute)": [[32, "viser.Icon.MICKEY_FILLED"]], "microphone (viser.icon attribute)": [[32, "viser.Icon.MICROPHONE"]], "microphone_2 (viser.icon attribute)": [[32, "viser.Icon.MICROPHONE_2"]], "microphone_2_off (viser.icon attribute)": [[32, "viser.Icon.MICROPHONE_2_OFF"]], "microphone_off (viser.icon attribute)": [[32, "viser.Icon.MICROPHONE_OFF"]], "microscope (viser.icon attribute)": [[32, "viser.Icon.MICROSCOPE"]], "microscope_off (viser.icon attribute)": [[32, "viser.Icon.MICROSCOPE_OFF"]], "microwave (viser.icon attribute)": [[32, "viser.Icon.MICROWAVE"]], "microwave_off (viser.icon attribute)": [[32, "viser.Icon.MICROWAVE_OFF"]], "military_award (viser.icon attribute)": [[32, "viser.Icon.MILITARY_AWARD"]], "military_rank (viser.icon attribute)": [[32, "viser.Icon.MILITARY_RANK"]], "milk (viser.icon attribute)": [[32, "viser.Icon.MILK"]], "milkshake (viser.icon attribute)": [[32, "viser.Icon.MILKSHAKE"]], "milk_off (viser.icon attribute)": [[32, "viser.Icon.MILK_OFF"]], "minimize (viser.icon attribute)": [[32, "viser.Icon.MINIMIZE"]], "minus (viser.icon attribute)": [[32, "viser.Icon.MINUS"]], "minus_vertical (viser.icon attribute)": [[32, "viser.Icon.MINUS_VERTICAL"]], "mist (viser.icon attribute)": [[32, "viser.Icon.MIST"]], "mist_off (viser.icon attribute)": [[32, "viser.Icon.MIST_OFF"]], "mobiledata (viser.icon attribute)": [[32, "viser.Icon.MOBILEDATA"]], "mobiledata_off (viser.icon attribute)": [[32, "viser.Icon.MOBILEDATA_OFF"]], "moneybag (viser.icon attribute)": [[32, "viser.Icon.MONEYBAG"]], "mood_angry (viser.icon attribute)": [[32, "viser.Icon.MOOD_ANGRY"]], "mood_annoyed (viser.icon attribute)": [[32, "viser.Icon.MOOD_ANNOYED"]], "mood_annoyed_2 (viser.icon attribute)": [[32, "viser.Icon.MOOD_ANNOYED_2"]], "mood_boy (viser.icon attribute)": [[32, "viser.Icon.MOOD_BOY"]], "mood_check (viser.icon attribute)": [[32, "viser.Icon.MOOD_CHECK"]], "mood_cog (viser.icon attribute)": [[32, "viser.Icon.MOOD_COG"]], "mood_confuzed (viser.icon attribute)": [[32, "viser.Icon.MOOD_CONFUZED"]], "mood_confuzed_filled (viser.icon attribute)": [[32, "viser.Icon.MOOD_CONFUZED_FILLED"]], "mood_crazy_happy (viser.icon attribute)": [[32, "viser.Icon.MOOD_CRAZY_HAPPY"]], "mood_cry (viser.icon attribute)": [[32, "viser.Icon.MOOD_CRY"]], "mood_dollar (viser.icon attribute)": [[32, "viser.Icon.MOOD_DOLLAR"]], "mood_edit (viser.icon attribute)": [[32, "viser.Icon.MOOD_EDIT"]], "mood_empty (viser.icon attribute)": [[32, "viser.Icon.MOOD_EMPTY"]], "mood_empty_filled (viser.icon attribute)": [[32, "viser.Icon.MOOD_EMPTY_FILLED"]], "mood_happy (viser.icon attribute)": [[32, "viser.Icon.MOOD_HAPPY"]], "mood_happy_filled (viser.icon attribute)": [[32, "viser.Icon.MOOD_HAPPY_FILLED"]], "mood_heart (viser.icon attribute)": [[32, "viser.Icon.MOOD_HEART"]], "mood_kid (viser.icon attribute)": [[32, "viser.Icon.MOOD_KID"]], "mood_kid_filled (viser.icon attribute)": [[32, "viser.Icon.MOOD_KID_FILLED"]], "mood_look_left (viser.icon attribute)": [[32, "viser.Icon.MOOD_LOOK_LEFT"]], "mood_look_right (viser.icon attribute)": [[32, "viser.Icon.MOOD_LOOK_RIGHT"]], "mood_minus (viser.icon attribute)": [[32, "viser.Icon.MOOD_MINUS"]], "mood_nerd (viser.icon attribute)": [[32, "viser.Icon.MOOD_NERD"]], "mood_nervous (viser.icon attribute)": [[32, "viser.Icon.MOOD_NERVOUS"]], "mood_neutral (viser.icon attribute)": [[32, "viser.Icon.MOOD_NEUTRAL"]], "mood_neutral_filled (viser.icon attribute)": [[32, "viser.Icon.MOOD_NEUTRAL_FILLED"]], "mood_off (viser.icon attribute)": [[32, "viser.Icon.MOOD_OFF"]], "mood_pin (viser.icon attribute)": [[32, "viser.Icon.MOOD_PIN"]], "mood_plus (viser.icon attribute)": [[32, "viser.Icon.MOOD_PLUS"]], "mood_sad (viser.icon attribute)": [[32, "viser.Icon.MOOD_SAD"]], "mood_sad_2 (viser.icon attribute)": [[32, "viser.Icon.MOOD_SAD_2"]], "mood_sad_dizzy (viser.icon attribute)": [[32, "viser.Icon.MOOD_SAD_DIZZY"]], "mood_sad_filled (viser.icon attribute)": [[32, "viser.Icon.MOOD_SAD_FILLED"]], "mood_sad_squint (viser.icon attribute)": [[32, "viser.Icon.MOOD_SAD_SQUINT"]], "mood_search (viser.icon attribute)": [[32, "viser.Icon.MOOD_SEARCH"]], "mood_share (viser.icon attribute)": [[32, "viser.Icon.MOOD_SHARE"]], "mood_sick (viser.icon attribute)": [[32, "viser.Icon.MOOD_SICK"]], "mood_silence (viser.icon attribute)": [[32, "viser.Icon.MOOD_SILENCE"]], "mood_sing (viser.icon attribute)": [[32, "viser.Icon.MOOD_SING"]], "mood_smile (viser.icon attribute)": [[32, "viser.Icon.MOOD_SMILE"]], "mood_smile_beam (viser.icon attribute)": [[32, "viser.Icon.MOOD_SMILE_BEAM"]], "mood_smile_dizzy (viser.icon attribute)": [[32, "viser.Icon.MOOD_SMILE_DIZZY"]], "mood_smile_filled (viser.icon attribute)": [[32, "viser.Icon.MOOD_SMILE_FILLED"]], "mood_suprised (viser.icon attribute)": [[32, "viser.Icon.MOOD_SUPRISED"]], "mood_tongue (viser.icon attribute)": [[32, "viser.Icon.MOOD_TONGUE"]], "mood_tongue_wink (viser.icon attribute)": [[32, "viser.Icon.MOOD_TONGUE_WINK"]], "mood_tongue_wink_2 (viser.icon attribute)": [[32, "viser.Icon.MOOD_TONGUE_WINK_2"]], "mood_unamused (viser.icon attribute)": [[32, "viser.Icon.MOOD_UNAMUSED"]], "mood_up (viser.icon attribute)": [[32, "viser.Icon.MOOD_UP"]], "mood_wink (viser.icon attribute)": [[32, "viser.Icon.MOOD_WINK"]], "mood_wink_2 (viser.icon attribute)": [[32, "viser.Icon.MOOD_WINK_2"]], "mood_wrrr (viser.icon attribute)": [[32, "viser.Icon.MOOD_WRRR"]], "mood_x (viser.icon attribute)": [[32, "viser.Icon.MOOD_X"]], "mood_xd (viser.icon attribute)": [[32, "viser.Icon.MOOD_XD"]], "moon (viser.icon attribute)": [[32, "viser.Icon.MOON"]], "moon_2 (viser.icon attribute)": [[32, "viser.Icon.MOON_2"]], "moon_filled (viser.icon attribute)": [[32, "viser.Icon.MOON_FILLED"]], "moon_off (viser.icon attribute)": [[32, "viser.Icon.MOON_OFF"]], "moon_stars (viser.icon attribute)": [[32, "viser.Icon.MOON_STARS"]], "moped (viser.icon attribute)": [[32, "viser.Icon.MOPED"]], "motorbike (viser.icon attribute)": [[32, "viser.Icon.MOTORBIKE"]], "mountain (viser.icon attribute)": [[32, "viser.Icon.MOUNTAIN"]], "mountain_off (viser.icon attribute)": [[32, "viser.Icon.MOUNTAIN_OFF"]], "mouse (viser.icon attribute)": [[32, "viser.Icon.MOUSE"]], "mouse_2 (viser.icon attribute)": [[32, "viser.Icon.MOUSE_2"]], "mouse_off (viser.icon attribute)": [[32, "viser.Icon.MOUSE_OFF"]], "moustache (viser.icon attribute)": [[32, "viser.Icon.MOUSTACHE"]], "movie (viser.icon attribute)": [[32, "viser.Icon.MOVIE"]], "movie_off (viser.icon attribute)": [[32, "viser.Icon.MOVIE_OFF"]], "mug (viser.icon attribute)": [[32, "viser.Icon.MUG"]], "mug_off (viser.icon attribute)": [[32, "viser.Icon.MUG_OFF"]], "multiplier_0_5x (viser.icon attribute)": [[32, "viser.Icon.MULTIPLIER_0_5X"]], "multiplier_1x (viser.icon attribute)": [[32, "viser.Icon.MULTIPLIER_1X"]], "multiplier_1_5x (viser.icon attribute)": [[32, "viser.Icon.MULTIPLIER_1_5X"]], "multiplier_2x (viser.icon attribute)": [[32, "viser.Icon.MULTIPLIER_2X"]], "mushroom (viser.icon attribute)": [[32, "viser.Icon.MUSHROOM"]], "mushroom_filled (viser.icon attribute)": [[32, "viser.Icon.MUSHROOM_FILLED"]], "mushroom_off (viser.icon attribute)": [[32, "viser.Icon.MUSHROOM_OFF"]], "music (viser.icon attribute)": [[32, "viser.Icon.MUSIC"]], "music_off (viser.icon attribute)": [[32, "viser.Icon.MUSIC_OFF"]], "navigation (viser.icon attribute)": [[32, "viser.Icon.NAVIGATION"]], "navigation_filled (viser.icon attribute)": [[32, "viser.Icon.NAVIGATION_FILLED"]], "navigation_north (viser.icon attribute)": [[32, "viser.Icon.NAVIGATION_NORTH"]], "navigation_off (viser.icon attribute)": [[32, "viser.Icon.NAVIGATION_OFF"]], "needle (viser.icon attribute)": [[32, "viser.Icon.NEEDLE"]], "needle_thread (viser.icon attribute)": [[32, "viser.Icon.NEEDLE_THREAD"]], "network (viser.icon attribute)": [[32, "viser.Icon.NETWORK"]], "network_off (viser.icon attribute)": [[32, "viser.Icon.NETWORK_OFF"]], "news (viser.icon attribute)": [[32, "viser.Icon.NEWS"]], "news_off (viser.icon attribute)": [[32, "viser.Icon.NEWS_OFF"]], "new_section (viser.icon attribute)": [[32, "viser.Icon.NEW_SECTION"]], "nfc (viser.icon attribute)": [[32, "viser.Icon.NFC"]], "nfc_off (viser.icon attribute)": [[32, "viser.Icon.NFC_OFF"]], "north_star (viser.icon attribute)": [[32, "viser.Icon.NORTH_STAR"]], "note (viser.icon attribute)": [[32, "viser.Icon.NOTE"]], "notebook (viser.icon attribute)": [[32, "viser.Icon.NOTEBOOK"]], "notebook_off (viser.icon attribute)": [[32, "viser.Icon.NOTEBOOK_OFF"]], "notes (viser.icon attribute)": [[32, "viser.Icon.NOTES"]], "notes_off (viser.icon attribute)": [[32, "viser.Icon.NOTES_OFF"]], "note_off (viser.icon attribute)": [[32, "viser.Icon.NOTE_OFF"]], "notification (viser.icon attribute)": [[32, "viser.Icon.NOTIFICATION"]], "notification_off (viser.icon attribute)": [[32, "viser.Icon.NOTIFICATION_OFF"]], "no_copyright (viser.icon attribute)": [[32, "viser.Icon.NO_COPYRIGHT"]], "no_creative_commons (viser.icon attribute)": [[32, "viser.Icon.NO_CREATIVE_COMMONS"]], "no_derivatives (viser.icon attribute)": [[32, "viser.Icon.NO_DERIVATIVES"]], "number (viser.icon attribute)": [[32, "viser.Icon.NUMBER"]], "numbers (viser.icon attribute)": [[32, "viser.Icon.NUMBERS"]], "number_0 (viser.icon attribute)": [[32, "viser.Icon.NUMBER_0"]], "number_1 (viser.icon attribute)": [[32, "viser.Icon.NUMBER_1"]], "number_2 (viser.icon attribute)": [[32, "viser.Icon.NUMBER_2"]], "number_3 (viser.icon attribute)": [[32, "viser.Icon.NUMBER_3"]], "number_4 (viser.icon attribute)": [[32, "viser.Icon.NUMBER_4"]], "number_5 (viser.icon attribute)": [[32, "viser.Icon.NUMBER_5"]], "number_6 (viser.icon attribute)": [[32, "viser.Icon.NUMBER_6"]], "number_7 (viser.icon attribute)": [[32, "viser.Icon.NUMBER_7"]], "number_8 (viser.icon attribute)": [[32, "viser.Icon.NUMBER_8"]], "number_9 (viser.icon attribute)": [[32, "viser.Icon.NUMBER_9"]], "nurse (viser.icon attribute)": [[32, "viser.Icon.NURSE"]], "octagon (viser.icon attribute)": [[32, "viser.Icon.OCTAGON"]], "octagon_filled (viser.icon attribute)": [[32, "viser.Icon.OCTAGON_FILLED"]], "octagon_off (viser.icon attribute)": [[32, "viser.Icon.OCTAGON_OFF"]], "octahedron (viser.icon attribute)": [[32, "viser.Icon.OCTAHEDRON"]], "octahedron_off (viser.icon attribute)": [[32, "viser.Icon.OCTAHEDRON_OFF"]], "octahedron_plus (viser.icon attribute)": [[32, "viser.Icon.OCTAHEDRON_PLUS"]], "old (viser.icon attribute)": [[32, "viser.Icon.OLD"]], "olympics (viser.icon attribute)": [[32, "viser.Icon.OLYMPICS"]], "olympics_off (viser.icon attribute)": [[32, "viser.Icon.OLYMPICS_OFF"]], "om (viser.icon attribute)": [[32, "viser.Icon.OM"]], "omega (viser.icon attribute)": [[32, "viser.Icon.OMEGA"]], "outbound (viser.icon attribute)": [[32, "viser.Icon.OUTBOUND"]], "outlet (viser.icon attribute)": [[32, "viser.Icon.OUTLET"]], "oval (viser.icon attribute)": [[32, "viser.Icon.OVAL"]], "oval_filled (viser.icon attribute)": [[32, "viser.Icon.OVAL_FILLED"]], "oval_vertical (viser.icon attribute)": [[32, "viser.Icon.OVAL_VERTICAL"]], "oval_vertical_filled (viser.icon attribute)": [[32, "viser.Icon.OVAL_VERTICAL_FILLED"]], "overline (viser.icon attribute)": [[32, "viser.Icon.OVERLINE"]], "package (viser.icon attribute)": [[32, "viser.Icon.PACKAGE"]], "packages (viser.icon attribute)": [[32, "viser.Icon.PACKAGES"]], "package_export (viser.icon attribute)": [[32, "viser.Icon.PACKAGE_EXPORT"]], "package_import (viser.icon attribute)": [[32, "viser.Icon.PACKAGE_IMPORT"]], "package_off (viser.icon attribute)": [[32, "viser.Icon.PACKAGE_OFF"]], "pacman (viser.icon attribute)": [[32, "viser.Icon.PACMAN"]], "page_break (viser.icon attribute)": [[32, "viser.Icon.PAGE_BREAK"]], "paint (viser.icon attribute)": [[32, "viser.Icon.PAINT"]], "paint_filled (viser.icon attribute)": [[32, "viser.Icon.PAINT_FILLED"]], "paint_off (viser.icon attribute)": [[32, "viser.Icon.PAINT_OFF"]], "palette (viser.icon attribute)": [[32, "viser.Icon.PALETTE"]], "palette_off (viser.icon attribute)": [[32, "viser.Icon.PALETTE_OFF"]], "panorama_horizontal (viser.icon attribute)": [[32, "viser.Icon.PANORAMA_HORIZONTAL"]], "panorama_horizontal_off (viser.icon attribute)": [[32, "viser.Icon.PANORAMA_HORIZONTAL_OFF"]], "panorama_vertical (viser.icon attribute)": [[32, "viser.Icon.PANORAMA_VERTICAL"]], "panorama_vertical_off (viser.icon attribute)": [[32, "viser.Icon.PANORAMA_VERTICAL_OFF"]], "paperclip (viser.icon attribute)": [[32, "viser.Icon.PAPERCLIP"]], "paper_bag (viser.icon attribute)": [[32, "viser.Icon.PAPER_BAG"]], "paper_bag_off (viser.icon attribute)": [[32, "viser.Icon.PAPER_BAG_OFF"]], "parachute (viser.icon attribute)": [[32, "viser.Icon.PARACHUTE"]], "parachute_off (viser.icon attribute)": [[32, "viser.Icon.PARACHUTE_OFF"]], "parentheses (viser.icon attribute)": [[32, "viser.Icon.PARENTHESES"]], "parentheses_off (viser.icon attribute)": [[32, "viser.Icon.PARENTHESES_OFF"]], "parking (viser.icon attribute)": [[32, "viser.Icon.PARKING"]], "parking_off (viser.icon attribute)": [[32, "viser.Icon.PARKING_OFF"]], "password (viser.icon attribute)": [[32, "viser.Icon.PASSWORD"]], "paw (viser.icon attribute)": [[32, "viser.Icon.PAW"]], "paw_filled (viser.icon attribute)": [[32, "viser.Icon.PAW_FILLED"]], "paw_off (viser.icon attribute)": [[32, "viser.Icon.PAW_OFF"]], "pdf (viser.icon attribute)": [[32, "viser.Icon.PDF"]], "peace (viser.icon attribute)": [[32, "viser.Icon.PEACE"]], "pencil (viser.icon attribute)": [[32, "viser.Icon.PENCIL"]], "pencil_minus (viser.icon attribute)": [[32, "viser.Icon.PENCIL_MINUS"]], "pencil_off (viser.icon attribute)": [[32, "viser.Icon.PENCIL_OFF"]], "pencil_plus (viser.icon attribute)": [[32, "viser.Icon.PENCIL_PLUS"]], "pennant (viser.icon attribute)": [[32, "viser.Icon.PENNANT"]], "pennant_2 (viser.icon attribute)": [[32, "viser.Icon.PENNANT_2"]], "pennant_2_filled (viser.icon attribute)": [[32, "viser.Icon.PENNANT_2_FILLED"]], "pennant_filled (viser.icon attribute)": [[32, "viser.Icon.PENNANT_FILLED"]], "pennant_off (viser.icon attribute)": [[32, "viser.Icon.PENNANT_OFF"]], "pentagon (viser.icon attribute)": [[32, "viser.Icon.PENTAGON"]], "pentagon_filled (viser.icon attribute)": [[32, "viser.Icon.PENTAGON_FILLED"]], "pentagon_off (viser.icon attribute)": [[32, "viser.Icon.PENTAGON_OFF"]], "pentagram (viser.icon attribute)": [[32, "viser.Icon.PENTAGRAM"]], "pepper (viser.icon attribute)": [[32, "viser.Icon.PEPPER"]], "pepper_off (viser.icon attribute)": [[32, "viser.Icon.PEPPER_OFF"]], "percentage (viser.icon attribute)": [[32, "viser.Icon.PERCENTAGE"]], "perfume (viser.icon attribute)": [[32, "viser.Icon.PERFUME"]], "perspective (viser.icon attribute)": [[32, "viser.Icon.PERSPECTIVE"]], "perspective_off (viser.icon attribute)": [[32, "viser.Icon.PERSPECTIVE_OFF"]], "phone (viser.icon attribute)": [[32, "viser.Icon.PHONE"]], "phone_call (viser.icon attribute)": [[32, "viser.Icon.PHONE_CALL"]], "phone_calling (viser.icon attribute)": [[32, "viser.Icon.PHONE_CALLING"]], "phone_check (viser.icon attribute)": [[32, "viser.Icon.PHONE_CHECK"]], "phone_filled (viser.icon attribute)": [[32, "viser.Icon.PHONE_FILLED"]], "phone_incoming (viser.icon attribute)": [[32, "viser.Icon.PHONE_INCOMING"]], "phone_off (viser.icon attribute)": [[32, "viser.Icon.PHONE_OFF"]], "phone_outgoing (viser.icon attribute)": [[32, "viser.Icon.PHONE_OUTGOING"]], "phone_pause (viser.icon attribute)": [[32, "viser.Icon.PHONE_PAUSE"]], "phone_plus (viser.icon attribute)": [[32, "viser.Icon.PHONE_PLUS"]], "phone_x (viser.icon attribute)": [[32, "viser.Icon.PHONE_X"]], "photo (viser.icon attribute)": [[32, "viser.Icon.PHOTO"]], "photo_ai (viser.icon attribute)": [[32, "viser.Icon.PHOTO_AI"]], "photo_bolt (viser.icon attribute)": [[32, "viser.Icon.PHOTO_BOLT"]], "photo_cancel (viser.icon attribute)": [[32, "viser.Icon.PHOTO_CANCEL"]], "photo_check (viser.icon attribute)": [[32, "viser.Icon.PHOTO_CHECK"]], "photo_code (viser.icon attribute)": [[32, "viser.Icon.PHOTO_CODE"]], "photo_cog (viser.icon attribute)": [[32, "viser.Icon.PHOTO_COG"]], "photo_dollar (viser.icon attribute)": [[32, "viser.Icon.PHOTO_DOLLAR"]], "photo_down (viser.icon attribute)": [[32, "viser.Icon.PHOTO_DOWN"]], "photo_edit (viser.icon attribute)": [[32, "viser.Icon.PHOTO_EDIT"]], "photo_exclamation (viser.icon attribute)": [[32, "viser.Icon.PHOTO_EXCLAMATION"]], "photo_filled (viser.icon attribute)": [[32, "viser.Icon.PHOTO_FILLED"]], "photo_heart (viser.icon attribute)": [[32, "viser.Icon.PHOTO_HEART"]], "photo_minus (viser.icon attribute)": [[32, "viser.Icon.PHOTO_MINUS"]], "photo_off (viser.icon attribute)": [[32, "viser.Icon.PHOTO_OFF"]], "photo_pause (viser.icon attribute)": [[32, "viser.Icon.PHOTO_PAUSE"]], "photo_pin (viser.icon attribute)": [[32, "viser.Icon.PHOTO_PIN"]], "photo_plus (viser.icon attribute)": [[32, "viser.Icon.PHOTO_PLUS"]], "photo_question (viser.icon attribute)": [[32, "viser.Icon.PHOTO_QUESTION"]], "photo_search (viser.icon attribute)": [[32, "viser.Icon.PHOTO_SEARCH"]], "photo_sensor (viser.icon attribute)": [[32, "viser.Icon.PHOTO_SENSOR"]], "photo_sensor_2 (viser.icon attribute)": [[32, "viser.Icon.PHOTO_SENSOR_2"]], "photo_sensor_3 (viser.icon attribute)": [[32, "viser.Icon.PHOTO_SENSOR_3"]], "photo_share (viser.icon attribute)": [[32, "viser.Icon.PHOTO_SHARE"]], "photo_shield (viser.icon attribute)": [[32, "viser.Icon.PHOTO_SHIELD"]], "photo_star (viser.icon attribute)": [[32, "viser.Icon.PHOTO_STAR"]], "photo_up (viser.icon attribute)": [[32, "viser.Icon.PHOTO_UP"]], "photo_x (viser.icon attribute)": [[32, "viser.Icon.PHOTO_X"]], "physotherapist (viser.icon attribute)": [[32, "viser.Icon.PHYSOTHERAPIST"]], "piano (viser.icon attribute)": [[32, "viser.Icon.PIANO"]], "pick (viser.icon attribute)": [[32, "viser.Icon.PICK"]], "picture_in_picture (viser.icon attribute)": [[32, "viser.Icon.PICTURE_IN_PICTURE"]], "picture_in_picture_off (viser.icon attribute)": [[32, "viser.Icon.PICTURE_IN_PICTURE_OFF"]], "picture_in_picture_on (viser.icon attribute)": [[32, "viser.Icon.PICTURE_IN_PICTURE_ON"]], "picture_in_picture_top (viser.icon attribute)": [[32, "viser.Icon.PICTURE_IN_PICTURE_TOP"]], "pig (viser.icon attribute)": [[32, "viser.Icon.PIG"]], "pig_money (viser.icon attribute)": [[32, "viser.Icon.PIG_MONEY"]], "pig_off (viser.icon attribute)": [[32, "viser.Icon.PIG_OFF"]], "pilcrow (viser.icon attribute)": [[32, "viser.Icon.PILCROW"]], "pill (viser.icon attribute)": [[32, "viser.Icon.PILL"]], "pills (viser.icon attribute)": [[32, "viser.Icon.PILLS"]], "pill_off (viser.icon attribute)": [[32, "viser.Icon.PILL_OFF"]], "pin (viser.icon attribute)": [[32, "viser.Icon.PIN"]], "ping_pong (viser.icon attribute)": [[32, "viser.Icon.PING_PONG"]], "pinned (viser.icon attribute)": [[32, "viser.Icon.PINNED"]], "pinned_filled (viser.icon attribute)": [[32, "viser.Icon.PINNED_FILLED"]], "pinned_off (viser.icon attribute)": [[32, "viser.Icon.PINNED_OFF"]], "pin_filled (viser.icon attribute)": [[32, "viser.Icon.PIN_FILLED"]], "pizza (viser.icon attribute)": [[32, "viser.Icon.PIZZA"]], "pizza_off (viser.icon attribute)": [[32, "viser.Icon.PIZZA_OFF"]], "placeholder (viser.icon attribute)": [[32, "viser.Icon.PLACEHOLDER"]], "plane (viser.icon attribute)": [[32, "viser.Icon.PLANE"]], "planet (viser.icon attribute)": [[32, "viser.Icon.PLANET"]], "planet_off (viser.icon attribute)": [[32, "viser.Icon.PLANET_OFF"]], "plane_arrival (viser.icon attribute)": [[32, "viser.Icon.PLANE_ARRIVAL"]], "plane_departure (viser.icon attribute)": [[32, "viser.Icon.PLANE_DEPARTURE"]], "plane_inflight (viser.icon attribute)": [[32, "viser.Icon.PLANE_INFLIGHT"]], "plane_off (viser.icon attribute)": [[32, "viser.Icon.PLANE_OFF"]], "plane_tilt (viser.icon attribute)": [[32, "viser.Icon.PLANE_TILT"]], "plant (viser.icon attribute)": [[32, "viser.Icon.PLANT"]], "plant_2 (viser.icon attribute)": [[32, "viser.Icon.PLANT_2"]], "plant_2_off (viser.icon attribute)": [[32, "viser.Icon.PLANT_2_OFF"]], "plant_off (viser.icon attribute)": [[32, "viser.Icon.PLANT_OFF"]], "player_eject (viser.icon attribute)": [[32, "viser.Icon.PLAYER_EJECT"]], "player_eject_filled (viser.icon attribute)": [[32, "viser.Icon.PLAYER_EJECT_FILLED"]], "player_pause (viser.icon attribute)": [[32, "viser.Icon.PLAYER_PAUSE"]], "player_pause_filled (viser.icon attribute)": [[32, "viser.Icon.PLAYER_PAUSE_FILLED"]], "player_play (viser.icon attribute)": [[32, "viser.Icon.PLAYER_PLAY"]], "player_play_filled (viser.icon attribute)": [[32, "viser.Icon.PLAYER_PLAY_FILLED"]], "player_record (viser.icon attribute)": [[32, "viser.Icon.PLAYER_RECORD"]], "player_record_filled (viser.icon attribute)": [[32, "viser.Icon.PLAYER_RECORD_FILLED"]], "player_skip_back (viser.icon attribute)": [[32, "viser.Icon.PLAYER_SKIP_BACK"]], "player_skip_back_filled (viser.icon attribute)": [[32, "viser.Icon.PLAYER_SKIP_BACK_FILLED"]], "player_skip_forward (viser.icon attribute)": [[32, "viser.Icon.PLAYER_SKIP_FORWARD"]], "player_skip_forward_filled (viser.icon attribute)": [[32, "viser.Icon.PLAYER_SKIP_FORWARD_FILLED"]], "player_stop (viser.icon attribute)": [[32, "viser.Icon.PLAYER_STOP"]], "player_stop_filled (viser.icon attribute)": [[32, "viser.Icon.PLAYER_STOP_FILLED"]], "player_track_next (viser.icon attribute)": [[32, "viser.Icon.PLAYER_TRACK_NEXT"]], "player_track_next_filled (viser.icon attribute)": [[32, "viser.Icon.PLAYER_TRACK_NEXT_FILLED"]], "player_track_prev (viser.icon attribute)": [[32, "viser.Icon.PLAYER_TRACK_PREV"]], "player_track_prev_filled (viser.icon attribute)": [[32, "viser.Icon.PLAYER_TRACK_PREV_FILLED"]], "playlist (viser.icon attribute)": [[32, "viser.Icon.PLAYLIST"]], "playlist_add (viser.icon attribute)": [[32, "viser.Icon.PLAYLIST_ADD"]], "playlist_off (viser.icon attribute)": [[32, "viser.Icon.PLAYLIST_OFF"]], "playlist_x (viser.icon attribute)": [[32, "viser.Icon.PLAYLIST_X"]], "playstation_circle (viser.icon attribute)": [[32, "viser.Icon.PLAYSTATION_CIRCLE"]], "playstation_square (viser.icon attribute)": [[32, "viser.Icon.PLAYSTATION_SQUARE"]], "playstation_triangle (viser.icon attribute)": [[32, "viser.Icon.PLAYSTATION_TRIANGLE"]], "playstation_x (viser.icon attribute)": [[32, "viser.Icon.PLAYSTATION_X"]], "play_basketball (viser.icon attribute)": [[32, "viser.Icon.PLAY_BASKETBALL"]], "play_card (viser.icon attribute)": [[32, "viser.Icon.PLAY_CARD"]], "play_card_off (viser.icon attribute)": [[32, "viser.Icon.PLAY_CARD_OFF"]], "play_football (viser.icon attribute)": [[32, "viser.Icon.PLAY_FOOTBALL"]], "play_handball (viser.icon attribute)": [[32, "viser.Icon.PLAY_HANDBALL"]], "play_volleyball (viser.icon attribute)": [[32, "viser.Icon.PLAY_VOLLEYBALL"]], "plug (viser.icon attribute)": [[32, "viser.Icon.PLUG"]], "plug_connected (viser.icon attribute)": [[32, "viser.Icon.PLUG_CONNECTED"]], "plug_connected_x (viser.icon attribute)": [[32, "viser.Icon.PLUG_CONNECTED_X"]], "plug_off (viser.icon attribute)": [[32, "viser.Icon.PLUG_OFF"]], "plug_x (viser.icon attribute)": [[32, "viser.Icon.PLUG_X"]], "plus (viser.icon attribute)": [[32, "viser.Icon.PLUS"]], "plus_equal (viser.icon attribute)": [[32, "viser.Icon.PLUS_EQUAL"]], "plus_minus (viser.icon attribute)": [[32, "viser.Icon.PLUS_MINUS"]], "png (viser.icon attribute)": [[32, "viser.Icon.PNG"]], "podium (viser.icon attribute)": [[32, "viser.Icon.PODIUM"]], "podium_off (viser.icon attribute)": [[32, "viser.Icon.PODIUM_OFF"]], "point (viser.icon attribute)": [[32, "viser.Icon.POINT"]], "pointer (viser.icon attribute)": [[32, "viser.Icon.POINTER"]], "pointer_bolt (viser.icon attribute)": [[32, "viser.Icon.POINTER_BOLT"]], "pointer_cancel (viser.icon attribute)": [[32, "viser.Icon.POINTER_CANCEL"]], "pointer_check (viser.icon attribute)": [[32, "viser.Icon.POINTER_CHECK"]], "pointer_code (viser.icon attribute)": [[32, "viser.Icon.POINTER_CODE"]], "pointer_cog (viser.icon attribute)": [[32, "viser.Icon.POINTER_COG"]], "pointer_dollar (viser.icon attribute)": [[32, "viser.Icon.POINTER_DOLLAR"]], "pointer_down (viser.icon attribute)": [[32, "viser.Icon.POINTER_DOWN"]], "pointer_exclamation (viser.icon attribute)": [[32, "viser.Icon.POINTER_EXCLAMATION"]], "pointer_heart (viser.icon attribute)": [[32, "viser.Icon.POINTER_HEART"]], "pointer_minus (viser.icon attribute)": [[32, "viser.Icon.POINTER_MINUS"]], "pointer_off (viser.icon attribute)": [[32, "viser.Icon.POINTER_OFF"]], "pointer_pause (viser.icon attribute)": [[32, "viser.Icon.POINTER_PAUSE"]], "pointer_pin (viser.icon attribute)": [[32, "viser.Icon.POINTER_PIN"]], "pointer_plus (viser.icon attribute)": [[32, "viser.Icon.POINTER_PLUS"]], "pointer_question (viser.icon attribute)": [[32, "viser.Icon.POINTER_QUESTION"]], "pointer_search (viser.icon attribute)": [[32, "viser.Icon.POINTER_SEARCH"]], "pointer_share (viser.icon attribute)": [[32, "viser.Icon.POINTER_SHARE"]], "pointer_star (viser.icon attribute)": [[32, "viser.Icon.POINTER_STAR"]], "pointer_up (viser.icon attribute)": [[32, "viser.Icon.POINTER_UP"]], "pointer_x (viser.icon attribute)": [[32, "viser.Icon.POINTER_X"]], "point_filled (viser.icon attribute)": [[32, "viser.Icon.POINT_FILLED"]], "point_off (viser.icon attribute)": [[32, "viser.Icon.POINT_OFF"]], "pokeball (viser.icon attribute)": [[32, "viser.Icon.POKEBALL"]], "pokeball_off (viser.icon attribute)": [[32, "viser.Icon.POKEBALL_OFF"]], "poker_chip (viser.icon attribute)": [[32, "viser.Icon.POKER_CHIP"]], "polaroid (viser.icon attribute)": [[32, "viser.Icon.POLAROID"]], "polaroid_filled (viser.icon attribute)": [[32, "viser.Icon.POLAROID_FILLED"]], "polygon (viser.icon attribute)": [[32, "viser.Icon.POLYGON"]], "polygon_off (viser.icon attribute)": [[32, "viser.Icon.POLYGON_OFF"]], "poo (viser.icon attribute)": [[32, "viser.Icon.POO"]], "pool (viser.icon attribute)": [[32, "viser.Icon.POOL"]], "pool_off (viser.icon attribute)": [[32, "viser.Icon.POOL_OFF"]], "power (viser.icon attribute)": [[32, "viser.Icon.POWER"]], "pray (viser.icon attribute)": [[32, "viser.Icon.PRAY"]], "premium_rights (viser.icon attribute)": [[32, "viser.Icon.PREMIUM_RIGHTS"]], "prescription (viser.icon attribute)": [[32, "viser.Icon.PRESCRIPTION"]], "presentation (viser.icon attribute)": [[32, "viser.Icon.PRESENTATION"]], "presentation_analytics (viser.icon attribute)": [[32, "viser.Icon.PRESENTATION_ANALYTICS"]], "presentation_off (viser.icon attribute)": [[32, "viser.Icon.PRESENTATION_OFF"]], "printer (viser.icon attribute)": [[32, "viser.Icon.PRINTER"]], "printer_off (viser.icon attribute)": [[32, "viser.Icon.PRINTER_OFF"]], "prism (viser.icon attribute)": [[32, "viser.Icon.PRISM"]], "prism_off (viser.icon attribute)": [[32, "viser.Icon.PRISM_OFF"]], "prism_plus (viser.icon attribute)": [[32, "viser.Icon.PRISM_PLUS"]], "prison (viser.icon attribute)": [[32, "viser.Icon.PRISON"]], "progress (viser.icon attribute)": [[32, "viser.Icon.PROGRESS"]], "progress_alert (viser.icon attribute)": [[32, "viser.Icon.PROGRESS_ALERT"]], "progress_bolt (viser.icon attribute)": [[32, "viser.Icon.PROGRESS_BOLT"]], "progress_check (viser.icon attribute)": [[32, "viser.Icon.PROGRESS_CHECK"]], "progress_down (viser.icon attribute)": [[32, "viser.Icon.PROGRESS_DOWN"]], "progress_help (viser.icon attribute)": [[32, "viser.Icon.PROGRESS_HELP"]], "progress_x (viser.icon attribute)": [[32, "viser.Icon.PROGRESS_X"]], "prompt (viser.icon attribute)": [[32, "viser.Icon.PROMPT"]], "propeller (viser.icon attribute)": [[32, "viser.Icon.PROPELLER"]], "propeller_off (viser.icon attribute)": [[32, "viser.Icon.PROPELLER_OFF"]], "pumpkin_scary (viser.icon attribute)": [[32, "viser.Icon.PUMPKIN_SCARY"]], "puzzle (viser.icon attribute)": [[32, "viser.Icon.PUZZLE"]], "puzzle_2 (viser.icon attribute)": [[32, "viser.Icon.PUZZLE_2"]], "puzzle_filled (viser.icon attribute)": [[32, "viser.Icon.PUZZLE_FILLED"]], "puzzle_off (viser.icon attribute)": [[32, "viser.Icon.PUZZLE_OFF"]], "pyramid (viser.icon attribute)": [[32, "viser.Icon.PYRAMID"]], "pyramid_off (viser.icon attribute)": [[32, "viser.Icon.PYRAMID_OFF"]], "pyramid_plus (viser.icon attribute)": [[32, "viser.Icon.PYRAMID_PLUS"]], "qrcode (viser.icon attribute)": [[32, "viser.Icon.QRCODE"]], "qrcode_off (viser.icon attribute)": [[32, "viser.Icon.QRCODE_OFF"]], "question_mark (viser.icon attribute)": [[32, "viser.Icon.QUESTION_MARK"]], "quote (viser.icon attribute)": [[32, "viser.Icon.QUOTE"]], "quote_off (viser.icon attribute)": [[32, "viser.Icon.QUOTE_OFF"]], "radar (viser.icon attribute)": [[32, "viser.Icon.RADAR"]], "radar_2 (viser.icon attribute)": [[32, "viser.Icon.RADAR_2"]], "radar_off (viser.icon attribute)": [[32, "viser.Icon.RADAR_OFF"]], "radio (viser.icon attribute)": [[32, "viser.Icon.RADIO"]], "radioactive (viser.icon attribute)": [[32, "viser.Icon.RADIOACTIVE"]], "radioactive_filled (viser.icon attribute)": [[32, "viser.Icon.RADIOACTIVE_FILLED"]], "radioactive_off (viser.icon attribute)": [[32, "viser.Icon.RADIOACTIVE_OFF"]], "radio_off (viser.icon attribute)": [[32, "viser.Icon.RADIO_OFF"]], "radius_bottom_left (viser.icon attribute)": [[32, "viser.Icon.RADIUS_BOTTOM_LEFT"]], "radius_bottom_right (viser.icon attribute)": [[32, "viser.Icon.RADIUS_BOTTOM_RIGHT"]], "radius_top_left (viser.icon attribute)": [[32, "viser.Icon.RADIUS_TOP_LEFT"]], "radius_top_right (viser.icon attribute)": [[32, "viser.Icon.RADIUS_TOP_RIGHT"]], "rainbow (viser.icon attribute)": [[32, "viser.Icon.RAINBOW"]], "rainbow_off (viser.icon attribute)": [[32, "viser.Icon.RAINBOW_OFF"]], "rating_12_plus (viser.icon attribute)": [[32, "viser.Icon.RATING_12_PLUS"]], "rating_14_plus (viser.icon attribute)": [[32, "viser.Icon.RATING_14_PLUS"]], "rating_16_plus (viser.icon attribute)": [[32, "viser.Icon.RATING_16_PLUS"]], "rating_18_plus (viser.icon attribute)": [[32, "viser.Icon.RATING_18_PLUS"]], "rating_21_plus (viser.icon attribute)": [[32, "viser.Icon.RATING_21_PLUS"]], "razor (viser.icon attribute)": [[32, "viser.Icon.RAZOR"]], "razor_electric (viser.icon attribute)": [[32, "viser.Icon.RAZOR_ELECTRIC"]], "receipt (viser.icon attribute)": [[32, "viser.Icon.RECEIPT"]], "receipt_2 (viser.icon attribute)": [[32, "viser.Icon.RECEIPT_2"]], "receipt_off (viser.icon attribute)": [[32, "viser.Icon.RECEIPT_OFF"]], "receipt_refund (viser.icon attribute)": [[32, "viser.Icon.RECEIPT_REFUND"]], "receipt_tax (viser.icon attribute)": [[32, "viser.Icon.RECEIPT_TAX"]], "recharging (viser.icon attribute)": [[32, "viser.Icon.RECHARGING"]], "record_mail (viser.icon attribute)": [[32, "viser.Icon.RECORD_MAIL"]], "record_mail_off (viser.icon attribute)": [[32, "viser.Icon.RECORD_MAIL_OFF"]], "rectangle (viser.icon attribute)": [[32, "viser.Icon.RECTANGLE"]], "rectangle_filled (viser.icon attribute)": [[32, "viser.Icon.RECTANGLE_FILLED"]], "rectangle_rounded_bottom (viser.icon attribute)": [[32, "viser.Icon.RECTANGLE_ROUNDED_BOTTOM"]], "rectangle_rounded_top (viser.icon attribute)": [[32, "viser.Icon.RECTANGLE_ROUNDED_TOP"]], "rectangle_vertical (viser.icon attribute)": [[32, "viser.Icon.RECTANGLE_VERTICAL"]], "rectangle_vertical_filled (viser.icon attribute)": [[32, "viser.Icon.RECTANGLE_VERTICAL_FILLED"]], "rectangular_prism (viser.icon attribute)": [[32, "viser.Icon.RECTANGULAR_PRISM"]], "rectangular_prism_off (viser.icon attribute)": [[32, "viser.Icon.RECTANGULAR_PRISM_OFF"]], "rectangular_prism_plus (viser.icon attribute)": [[32, "viser.Icon.RECTANGULAR_PRISM_PLUS"]], "recycle (viser.icon attribute)": [[32, "viser.Icon.RECYCLE"]], "recycle_off (viser.icon attribute)": [[32, "viser.Icon.RECYCLE_OFF"]], "refresh (viser.icon attribute)": [[32, "viser.Icon.REFRESH"]], "refresh_alert (viser.icon attribute)": [[32, "viser.Icon.REFRESH_ALERT"]], "refresh_dot (viser.icon attribute)": [[32, "viser.Icon.REFRESH_DOT"]], "refresh_off (viser.icon attribute)": [[32, "viser.Icon.REFRESH_OFF"]], "regex (viser.icon attribute)": [[32, "viser.Icon.REGEX"]], "regex_off (viser.icon attribute)": [[32, "viser.Icon.REGEX_OFF"]], "registered (viser.icon attribute)": [[32, "viser.Icon.REGISTERED"]], "relation_many_to_many (viser.icon attribute)": [[32, "viser.Icon.RELATION_MANY_TO_MANY"]], "relation_one_to_many (viser.icon attribute)": [[32, "viser.Icon.RELATION_ONE_TO_MANY"]], "relation_one_to_one (viser.icon attribute)": [[32, "viser.Icon.RELATION_ONE_TO_ONE"]], "reload (viser.icon attribute)": [[32, "viser.Icon.RELOAD"]], "repeat (viser.icon attribute)": [[32, "viser.Icon.REPEAT"]], "repeat_off (viser.icon attribute)": [[32, "viser.Icon.REPEAT_OFF"]], "repeat_once (viser.icon attribute)": [[32, "viser.Icon.REPEAT_ONCE"]], "replace (viser.icon attribute)": [[32, "viser.Icon.REPLACE"]], "replace_filled (viser.icon attribute)": [[32, "viser.Icon.REPLACE_FILLED"]], "replace_off (viser.icon attribute)": [[32, "viser.Icon.REPLACE_OFF"]], "report (viser.icon attribute)": [[32, "viser.Icon.REPORT"]], "report_analytics (viser.icon attribute)": [[32, "viser.Icon.REPORT_ANALYTICS"]], "report_medical (viser.icon attribute)": [[32, "viser.Icon.REPORT_MEDICAL"]], "report_money (viser.icon attribute)": [[32, "viser.Icon.REPORT_MONEY"]], "report_off (viser.icon attribute)": [[32, "viser.Icon.REPORT_OFF"]], "report_search (viser.icon attribute)": [[32, "viser.Icon.REPORT_SEARCH"]], "reserved_line (viser.icon attribute)": [[32, "viser.Icon.RESERVED_LINE"]], "resize (viser.icon attribute)": [[32, "viser.Icon.RESIZE"]], "restore (viser.icon attribute)": [[32, "viser.Icon.RESTORE"]], "rewind_backward_10 (viser.icon attribute)": [[32, "viser.Icon.REWIND_BACKWARD_10"]], "rewind_backward_15 (viser.icon attribute)": [[32, "viser.Icon.REWIND_BACKWARD_15"]], "rewind_backward_20 (viser.icon attribute)": [[32, "viser.Icon.REWIND_BACKWARD_20"]], "rewind_backward_30 (viser.icon attribute)": [[32, "viser.Icon.REWIND_BACKWARD_30"]], "rewind_backward_40 (viser.icon attribute)": [[32, "viser.Icon.REWIND_BACKWARD_40"]], "rewind_backward_5 (viser.icon attribute)": [[32, "viser.Icon.REWIND_BACKWARD_5"]], "rewind_backward_50 (viser.icon attribute)": [[32, "viser.Icon.REWIND_BACKWARD_50"]], "rewind_backward_60 (viser.icon attribute)": [[32, "viser.Icon.REWIND_BACKWARD_60"]], "rewind_forward_10 (viser.icon attribute)": [[32, "viser.Icon.REWIND_FORWARD_10"]], "rewind_forward_15 (viser.icon attribute)": [[32, "viser.Icon.REWIND_FORWARD_15"]], "rewind_forward_20 (viser.icon attribute)": [[32, "viser.Icon.REWIND_FORWARD_20"]], "rewind_forward_30 (viser.icon attribute)": [[32, "viser.Icon.REWIND_FORWARD_30"]], "rewind_forward_40 (viser.icon attribute)": [[32, "viser.Icon.REWIND_FORWARD_40"]], "rewind_forward_5 (viser.icon attribute)": [[32, "viser.Icon.REWIND_FORWARD_5"]], "rewind_forward_50 (viser.icon attribute)": [[32, "viser.Icon.REWIND_FORWARD_50"]], "rewind_forward_60 (viser.icon attribute)": [[32, "viser.Icon.REWIND_FORWARD_60"]], "ribbon_health (viser.icon attribute)": [[32, "viser.Icon.RIBBON_HEALTH"]], "rings (viser.icon attribute)": [[32, "viser.Icon.RINGS"]], "ripple (viser.icon attribute)": [[32, "viser.Icon.RIPPLE"]], "ripple_off (viser.icon attribute)": [[32, "viser.Icon.RIPPLE_OFF"]], "road (viser.icon attribute)": [[32, "viser.Icon.ROAD"]], "road_off (viser.icon attribute)": [[32, "viser.Icon.ROAD_OFF"]], "road_sign (viser.icon attribute)": [[32, "viser.Icon.ROAD_SIGN"]], "robot (viser.icon attribute)": [[32, "viser.Icon.ROBOT"]], "robot_off (viser.icon attribute)": [[32, "viser.Icon.ROBOT_OFF"]], "rocket (viser.icon attribute)": [[32, "viser.Icon.ROCKET"]], "rocket_off (viser.icon attribute)": [[32, "viser.Icon.ROCKET_OFF"]], "rollercoaster (viser.icon attribute)": [[32, "viser.Icon.ROLLERCOASTER"]], "rollercoaster_off (viser.icon attribute)": [[32, "viser.Icon.ROLLERCOASTER_OFF"]], "roller_skating (viser.icon attribute)": [[32, "viser.Icon.ROLLER_SKATING"]], "rosette (viser.icon attribute)": [[32, "viser.Icon.ROSETTE"]], "rosette_filled (viser.icon attribute)": [[32, "viser.Icon.ROSETTE_FILLED"]], "rosette_number_0 (viser.icon attribute)": [[32, "viser.Icon.ROSETTE_NUMBER_0"]], "rosette_number_1 (viser.icon attribute)": [[32, "viser.Icon.ROSETTE_NUMBER_1"]], "rosette_number_2 (viser.icon attribute)": [[32, "viser.Icon.ROSETTE_NUMBER_2"]], "rosette_number_3 (viser.icon attribute)": [[32, "viser.Icon.ROSETTE_NUMBER_3"]], "rosette_number_4 (viser.icon attribute)": [[32, "viser.Icon.ROSETTE_NUMBER_4"]], "rosette_number_5 (viser.icon attribute)": [[32, "viser.Icon.ROSETTE_NUMBER_5"]], "rosette_number_6 (viser.icon attribute)": [[32, "viser.Icon.ROSETTE_NUMBER_6"]], "rosette_number_7 (viser.icon attribute)": [[32, "viser.Icon.ROSETTE_NUMBER_7"]], "rosette_number_8 (viser.icon attribute)": [[32, "viser.Icon.ROSETTE_NUMBER_8"]], "rosette_number_9 (viser.icon attribute)": [[32, "viser.Icon.ROSETTE_NUMBER_9"]], "rotate (viser.icon attribute)": [[32, "viser.Icon.ROTATE"]], "rotate_2 (viser.icon attribute)": [[32, "viser.Icon.ROTATE_2"]], "rotate_360 (viser.icon attribute)": [[32, "viser.Icon.ROTATE_360"]], "rotate_clockwise (viser.icon attribute)": [[32, "viser.Icon.ROTATE_CLOCKWISE"]], "rotate_clockwise_2 (viser.icon attribute)": [[32, "viser.Icon.ROTATE_CLOCKWISE_2"]], "rotate_dot (viser.icon attribute)": [[32, "viser.Icon.ROTATE_DOT"]], "rotate_rectangle (viser.icon attribute)": [[32, "viser.Icon.ROTATE_RECTANGLE"]], "route (viser.icon attribute)": [[32, "viser.Icon.ROUTE"]], "router (viser.icon attribute)": [[32, "viser.Icon.ROUTER"]], "router_off (viser.icon attribute)": [[32, "viser.Icon.ROUTER_OFF"]], "route_2 (viser.icon attribute)": [[32, "viser.Icon.ROUTE_2"]], "route_off (viser.icon attribute)": [[32, "viser.Icon.ROUTE_OFF"]], "row_insert_bottom (viser.icon attribute)": [[32, "viser.Icon.ROW_INSERT_BOTTOM"]], "row_insert_top (viser.icon attribute)": [[32, "viser.Icon.ROW_INSERT_TOP"]], "row_remove (viser.icon attribute)": [[32, "viser.Icon.ROW_REMOVE"]], "rss (viser.icon attribute)": [[32, "viser.Icon.RSS"]], "rubber_stamp (viser.icon attribute)": [[32, "viser.Icon.RUBBER_STAMP"]], "rubber_stamp_off (viser.icon attribute)": [[32, "viser.Icon.RUBBER_STAMP_OFF"]], "ruler (viser.icon attribute)": [[32, "viser.Icon.RULER"]], "ruler_2 (viser.icon attribute)": [[32, "viser.Icon.RULER_2"]], "ruler_2_off (viser.icon attribute)": [[32, "viser.Icon.RULER_2_OFF"]], "ruler_3 (viser.icon attribute)": [[32, "viser.Icon.RULER_3"]], "ruler_measure (viser.icon attribute)": [[32, "viser.Icon.RULER_MEASURE"]], "ruler_off (viser.icon attribute)": [[32, "viser.Icon.RULER_OFF"]], "run (viser.icon attribute)": [[32, "viser.Icon.RUN"]], "sailboat (viser.icon attribute)": [[32, "viser.Icon.SAILBOAT"]], "sailboat_2 (viser.icon attribute)": [[32, "viser.Icon.SAILBOAT_2"]], "sailboat_off (viser.icon attribute)": [[32, "viser.Icon.SAILBOAT_OFF"]], "salad (viser.icon attribute)": [[32, "viser.Icon.SALAD"]], "salt (viser.icon attribute)": [[32, "viser.Icon.SALT"]], "satellite (viser.icon attribute)": [[32, "viser.Icon.SATELLITE"]], "satellite_off (viser.icon attribute)": [[32, "viser.Icon.SATELLITE_OFF"]], "sausage (viser.icon attribute)": [[32, "viser.Icon.SAUSAGE"]], "scale (viser.icon attribute)": [[32, "viser.Icon.SCALE"]], "scale_off (viser.icon attribute)": [[32, "viser.Icon.SCALE_OFF"]], "scale_outline (viser.icon attribute)": [[32, "viser.Icon.SCALE_OUTLINE"]], "scale_outline_off (viser.icon attribute)": [[32, "viser.Icon.SCALE_OUTLINE_OFF"]], "scan (viser.icon attribute)": [[32, "viser.Icon.SCAN"]], "scan_eye (viser.icon attribute)": [[32, "viser.Icon.SCAN_EYE"]], "schema (viser.icon attribute)": [[32, "viser.Icon.SCHEMA"]], "schema_off (viser.icon attribute)": [[32, "viser.Icon.SCHEMA_OFF"]], "school (viser.icon attribute)": [[32, "viser.Icon.SCHOOL"]], "school_bell (viser.icon attribute)": [[32, "viser.Icon.SCHOOL_BELL"]], "school_off (viser.icon attribute)": [[32, "viser.Icon.SCHOOL_OFF"]], "scissors (viser.icon attribute)": [[32, "viser.Icon.SCISSORS"]], "scissors_off (viser.icon attribute)": [[32, "viser.Icon.SCISSORS_OFF"]], "scooter (viser.icon attribute)": [[32, "viser.Icon.SCOOTER"]], "scooter_electric (viser.icon attribute)": [[32, "viser.Icon.SCOOTER_ELECTRIC"]], "scoreboard (viser.icon attribute)": [[32, "viser.Icon.SCOREBOARD"]], "screenshot (viser.icon attribute)": [[32, "viser.Icon.SCREENSHOT"]], "screen_share (viser.icon attribute)": [[32, "viser.Icon.SCREEN_SHARE"]], "screen_share_off (viser.icon attribute)": [[32, "viser.Icon.SCREEN_SHARE_OFF"]], "scribble (viser.icon attribute)": [[32, "viser.Icon.SCRIBBLE"]], "scribble_off (viser.icon attribute)": [[32, "viser.Icon.SCRIBBLE_OFF"]], "script (viser.icon attribute)": [[32, "viser.Icon.SCRIPT"]], "script_minus (viser.icon attribute)": [[32, "viser.Icon.SCRIPT_MINUS"]], "script_plus (viser.icon attribute)": [[32, "viser.Icon.SCRIPT_PLUS"]], "script_x (viser.icon attribute)": [[32, "viser.Icon.SCRIPT_X"]], "scuba_mask (viser.icon attribute)": [[32, "viser.Icon.SCUBA_MASK"]], "scuba_mask_off (viser.icon attribute)": [[32, "viser.Icon.SCUBA_MASK_OFF"]], "sdk (viser.icon attribute)": [[32, "viser.Icon.SDK"]], "search (viser.icon attribute)": [[32, "viser.Icon.SEARCH"]], "search_off (viser.icon attribute)": [[32, "viser.Icon.SEARCH_OFF"]], "section (viser.icon attribute)": [[32, "viser.Icon.SECTION"]], "section_sign (viser.icon attribute)": [[32, "viser.Icon.SECTION_SIGN"]], "seeding (viser.icon attribute)": [[32, "viser.Icon.SEEDING"]], "seeding_off (viser.icon attribute)": [[32, "viser.Icon.SEEDING_OFF"]], "select (viser.icon attribute)": [[32, "viser.Icon.SELECT"]], "selector (viser.icon attribute)": [[32, "viser.Icon.SELECTOR"]], "select_all (viser.icon attribute)": [[32, "viser.Icon.SELECT_ALL"]], "send (viser.icon attribute)": [[32, "viser.Icon.SEND"]], "send_off (viser.icon attribute)": [[32, "viser.Icon.SEND_OFF"]], "seo (viser.icon attribute)": [[32, "viser.Icon.SEO"]], "separator (viser.icon attribute)": [[32, "viser.Icon.SEPARATOR"]], "separator_horizontal (viser.icon attribute)": [[32, "viser.Icon.SEPARATOR_HORIZONTAL"]], "separator_vertical (viser.icon attribute)": [[32, "viser.Icon.SEPARATOR_VERTICAL"]], "server (viser.icon attribute)": [[32, "viser.Icon.SERVER"]], "server_2 (viser.icon attribute)": [[32, "viser.Icon.SERVER_2"]], "server_bolt (viser.icon attribute)": [[32, "viser.Icon.SERVER_BOLT"]], "server_cog (viser.icon attribute)": [[32, "viser.Icon.SERVER_COG"]], "server_off (viser.icon attribute)": [[32, "viser.Icon.SERVER_OFF"]], "servicemark (viser.icon attribute)": [[32, "viser.Icon.SERVICEMARK"]], "settings (viser.icon attribute)": [[32, "viser.Icon.SETTINGS"]], "settings_2 (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_2"]], "settings_automation (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_AUTOMATION"]], "settings_bolt (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_BOLT"]], "settings_cancel (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_CANCEL"]], "settings_check (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_CHECK"]], "settings_code (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_CODE"]], "settings_cog (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_COG"]], "settings_dollar (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_DOLLAR"]], "settings_down (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_DOWN"]], "settings_exclamation (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_EXCLAMATION"]], "settings_filled (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_FILLED"]], "settings_heart (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_HEART"]], "settings_minus (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_MINUS"]], "settings_off (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_OFF"]], "settings_pause (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_PAUSE"]], "settings_pin (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_PIN"]], "settings_plus (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_PLUS"]], "settings_question (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_QUESTION"]], "settings_search (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_SEARCH"]], "settings_share (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_SHARE"]], "settings_star (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_STAR"]], "settings_up (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_UP"]], "settings_x (viser.icon attribute)": [[32, "viser.Icon.SETTINGS_X"]], "shadow (viser.icon attribute)": [[32, "viser.Icon.SHADOW"]], "shadow_off (viser.icon attribute)": [[32, "viser.Icon.SHADOW_OFF"]], "shape (viser.icon attribute)": [[32, "viser.Icon.SHAPE"]], "shape_2 (viser.icon attribute)": [[32, "viser.Icon.SHAPE_2"]], "shape_3 (viser.icon attribute)": [[32, "viser.Icon.SHAPE_3"]], "shape_off (viser.icon attribute)": [[32, "viser.Icon.SHAPE_OFF"]], "share (viser.icon attribute)": [[32, "viser.Icon.SHARE"]], "share_2 (viser.icon attribute)": [[32, "viser.Icon.SHARE_2"]], "share_3 (viser.icon attribute)": [[32, "viser.Icon.SHARE_3"]], "share_off (viser.icon attribute)": [[32, "viser.Icon.SHARE_OFF"]], "shield (viser.icon attribute)": [[32, "viser.Icon.SHIELD"]], "shield_bolt (viser.icon attribute)": [[32, "viser.Icon.SHIELD_BOLT"]], "shield_cancel (viser.icon attribute)": [[32, "viser.Icon.SHIELD_CANCEL"]], "shield_check (viser.icon attribute)": [[32, "viser.Icon.SHIELD_CHECK"]], "shield_checkered (viser.icon attribute)": [[32, "viser.Icon.SHIELD_CHECKERED"]], "shield_checkered_filled (viser.icon attribute)": [[32, "viser.Icon.SHIELD_CHECKERED_FILLED"]], "shield_check_filled (viser.icon attribute)": [[32, "viser.Icon.SHIELD_CHECK_FILLED"]], "shield_chevron (viser.icon attribute)": [[32, "viser.Icon.SHIELD_CHEVRON"]], "shield_code (viser.icon attribute)": [[32, "viser.Icon.SHIELD_CODE"]], "shield_cog (viser.icon attribute)": [[32, "viser.Icon.SHIELD_COG"]], "shield_dollar (viser.icon attribute)": [[32, "viser.Icon.SHIELD_DOLLAR"]], "shield_down (viser.icon attribute)": [[32, "viser.Icon.SHIELD_DOWN"]], "shield_exclamation (viser.icon attribute)": [[32, "viser.Icon.SHIELD_EXCLAMATION"]], "shield_filled (viser.icon attribute)": [[32, "viser.Icon.SHIELD_FILLED"]], "shield_half (viser.icon attribute)": [[32, "viser.Icon.SHIELD_HALF"]], "shield_half_filled (viser.icon attribute)": [[32, "viser.Icon.SHIELD_HALF_FILLED"]], "shield_heart (viser.icon attribute)": [[32, "viser.Icon.SHIELD_HEART"]], "shield_lock (viser.icon attribute)": [[32, "viser.Icon.SHIELD_LOCK"]], "shield_lock_filled (viser.icon attribute)": [[32, "viser.Icon.SHIELD_LOCK_FILLED"]], "shield_minus (viser.icon attribute)": [[32, "viser.Icon.SHIELD_MINUS"]], "shield_off (viser.icon attribute)": [[32, "viser.Icon.SHIELD_OFF"]], "shield_pause (viser.icon attribute)": [[32, "viser.Icon.SHIELD_PAUSE"]], "shield_pin (viser.icon attribute)": [[32, "viser.Icon.SHIELD_PIN"]], "shield_plus (viser.icon attribute)": [[32, "viser.Icon.SHIELD_PLUS"]], "shield_question (viser.icon attribute)": [[32, "viser.Icon.SHIELD_QUESTION"]], "shield_search (viser.icon attribute)": [[32, "viser.Icon.SHIELD_SEARCH"]], "shield_share (viser.icon attribute)": [[32, "viser.Icon.SHIELD_SHARE"]], "shield_star (viser.icon attribute)": [[32, "viser.Icon.SHIELD_STAR"]], "shield_up (viser.icon attribute)": [[32, "viser.Icon.SHIELD_UP"]], "shield_x (viser.icon attribute)": [[32, "viser.Icon.SHIELD_X"]], "ship (viser.icon attribute)": [[32, "viser.Icon.SHIP"]], "ship_off (viser.icon attribute)": [[32, "viser.Icon.SHIP_OFF"]], "shirt (viser.icon attribute)": [[32, "viser.Icon.SHIRT"]], "shirt_filled (viser.icon attribute)": [[32, "viser.Icon.SHIRT_FILLED"]], "shirt_off (viser.icon attribute)": [[32, "viser.Icon.SHIRT_OFF"]], "shirt_sport (viser.icon attribute)": [[32, "viser.Icon.SHIRT_SPORT"]], "shi_jumping (viser.icon attribute)": [[32, "viser.Icon.SHI_JUMPING"]], "shoe (viser.icon attribute)": [[32, "viser.Icon.SHOE"]], "shoe_off (viser.icon attribute)": [[32, "viser.Icon.SHOE_OFF"]], "shopping_bag (viser.icon attribute)": [[32, "viser.Icon.SHOPPING_BAG"]], "shopping_cart (viser.icon attribute)": [[32, "viser.Icon.SHOPPING_CART"]], "shopping_cart_discount (viser.icon attribute)": [[32, "viser.Icon.SHOPPING_CART_DISCOUNT"]], "shopping_cart_off (viser.icon attribute)": [[32, "viser.Icon.SHOPPING_CART_OFF"]], "shopping_cart_plus (viser.icon attribute)": [[32, "viser.Icon.SHOPPING_CART_PLUS"]], "shopping_cart_x (viser.icon attribute)": [[32, "viser.Icon.SHOPPING_CART_X"]], "shovel (viser.icon attribute)": [[32, "viser.Icon.SHOVEL"]], "shredder (viser.icon attribute)": [[32, "viser.Icon.SHREDDER"]], "signal_2g (viser.icon attribute)": [[32, "viser.Icon.SIGNAL_2G"]], "signal_3g (viser.icon attribute)": [[32, "viser.Icon.SIGNAL_3G"]], "signal_4g (viser.icon attribute)": [[32, "viser.Icon.SIGNAL_4G"]], "signal_4g_plus (viser.icon attribute)": [[32, "viser.Icon.SIGNAL_4G_PLUS"]], "signal_5g (viser.icon attribute)": [[32, "viser.Icon.SIGNAL_5G"]], "signal_6g (viser.icon attribute)": [[32, "viser.Icon.SIGNAL_6G"]], "signal_e (viser.icon attribute)": [[32, "viser.Icon.SIGNAL_E"]], "signal_g (viser.icon attribute)": [[32, "viser.Icon.SIGNAL_G"]], "signal_h (viser.icon attribute)": [[32, "viser.Icon.SIGNAL_H"]], "signal_h_plus (viser.icon attribute)": [[32, "viser.Icon.SIGNAL_H_PLUS"]], "signal_lte (viser.icon attribute)": [[32, "viser.Icon.SIGNAL_LTE"]], "signature (viser.icon attribute)": [[32, "viser.Icon.SIGNATURE"]], "signature_off (viser.icon attribute)": [[32, "viser.Icon.SIGNATURE_OFF"]], "sign_left (viser.icon attribute)": [[32, "viser.Icon.SIGN_LEFT"]], "sign_left_filled (viser.icon attribute)": [[32, "viser.Icon.SIGN_LEFT_FILLED"]], "sign_right (viser.icon attribute)": [[32, "viser.Icon.SIGN_RIGHT"]], "sign_right_filled (viser.icon attribute)": [[32, "viser.Icon.SIGN_RIGHT_FILLED"]], "sitemap (viser.icon attribute)": [[32, "viser.Icon.SITEMAP"]], "sitemap_off (viser.icon attribute)": [[32, "viser.Icon.SITEMAP_OFF"]], "skateboard (viser.icon attribute)": [[32, "viser.Icon.SKATEBOARD"]], "skateboarding (viser.icon attribute)": [[32, "viser.Icon.SKATEBOARDING"]], "skateboard_off (viser.icon attribute)": [[32, "viser.Icon.SKATEBOARD_OFF"]], "skull (viser.icon attribute)": [[32, "viser.Icon.SKULL"]], "slash (viser.icon attribute)": [[32, "viser.Icon.SLASH"]], "slashes (viser.icon attribute)": [[32, "viser.Icon.SLASHES"]], "sleigh (viser.icon attribute)": [[32, "viser.Icon.SLEIGH"]], "slice (viser.icon attribute)": [[32, "viser.Icon.SLICE"]], "slideshow (viser.icon attribute)": [[32, "viser.Icon.SLIDESHOW"]], "smart_home (viser.icon attribute)": [[32, "viser.Icon.SMART_HOME"]], "smart_home_off (viser.icon attribute)": [[32, "viser.Icon.SMART_HOME_OFF"]], "smoking (viser.icon attribute)": [[32, "viser.Icon.SMOKING"]], "smoking_no (viser.icon attribute)": [[32, "viser.Icon.SMOKING_NO"]], "snowflake (viser.icon attribute)": [[32, "viser.Icon.SNOWFLAKE"]], "snowflake_off (viser.icon attribute)": [[32, "viser.Icon.SNOWFLAKE_OFF"]], "snowman (viser.icon attribute)": [[32, "viser.Icon.SNOWMAN"]], "soccer_field (viser.icon attribute)": [[32, "viser.Icon.SOCCER_FIELD"]], "social (viser.icon attribute)": [[32, "viser.Icon.SOCIAL"]], "social_off (viser.icon attribute)": [[32, "viser.Icon.SOCIAL_OFF"]], "sock (viser.icon attribute)": [[32, "viser.Icon.SOCK"]], "sofa (viser.icon attribute)": [[32, "viser.Icon.SOFA"]], "sofa_off (viser.icon attribute)": [[32, "viser.Icon.SOFA_OFF"]], "solar_panel (viser.icon attribute)": [[32, "viser.Icon.SOLAR_PANEL"]], "solar_panel_2 (viser.icon attribute)": [[32, "viser.Icon.SOLAR_PANEL_2"]], "sort_0_9 (viser.icon attribute)": [[32, "viser.Icon.SORT_0_9"]], "sort_9_0 (viser.icon attribute)": [[32, "viser.Icon.SORT_9_0"]], "sort_ascending (viser.icon attribute)": [[32, "viser.Icon.SORT_ASCENDING"]], "sort_ascending_2 (viser.icon attribute)": [[32, "viser.Icon.SORT_ASCENDING_2"]], "sort_ascending_letters (viser.icon attribute)": [[32, "viser.Icon.SORT_ASCENDING_LETTERS"]], "sort_ascending_numbers (viser.icon attribute)": [[32, "viser.Icon.SORT_ASCENDING_NUMBERS"]], "sort_a_z (viser.icon attribute)": [[32, "viser.Icon.SORT_A_Z"]], "sort_descending (viser.icon attribute)": [[32, "viser.Icon.SORT_DESCENDING"]], "sort_descending_2 (viser.icon attribute)": [[32, "viser.Icon.SORT_DESCENDING_2"]], "sort_descending_letters (viser.icon attribute)": [[32, "viser.Icon.SORT_DESCENDING_LETTERS"]], "sort_descending_numbers (viser.icon attribute)": [[32, "viser.Icon.SORT_DESCENDING_NUMBERS"]], "sort_z_a (viser.icon attribute)": [[32, "viser.Icon.SORT_Z_A"]], "sos (viser.icon attribute)": [[32, "viser.Icon.SOS"]], "soup (viser.icon attribute)": [[32, "viser.Icon.SOUP"]], "soup_off (viser.icon attribute)": [[32, "viser.Icon.SOUP_OFF"]], "source_code (viser.icon attribute)": [[32, "viser.Icon.SOURCE_CODE"]], "space (viser.icon attribute)": [[32, "viser.Icon.SPACE"]], "space_off (viser.icon attribute)": [[32, "viser.Icon.SPACE_OFF"]], "spacing_horizontal (viser.icon attribute)": [[32, "viser.Icon.SPACING_HORIZONTAL"]], "spacing_vertical (viser.icon attribute)": [[32, "viser.Icon.SPACING_VERTICAL"]], "spade (viser.icon attribute)": [[32, "viser.Icon.SPADE"]], "spade_filled (viser.icon attribute)": [[32, "viser.Icon.SPADE_FILLED"]], "sparkles (viser.icon attribute)": [[32, "viser.Icon.SPARKLES"]], "speakerphone (viser.icon attribute)": [[32, "viser.Icon.SPEAKERPHONE"]], "speedboat (viser.icon attribute)": [[32, "viser.Icon.SPEEDBOAT"]], "sphere (viser.icon attribute)": [[32, "viser.Icon.SPHERE"]], "sphere_off (viser.icon attribute)": [[32, "viser.Icon.SPHERE_OFF"]], "sphere_plus (viser.icon attribute)": [[32, "viser.Icon.SPHERE_PLUS"]], "spider (viser.icon attribute)": [[32, "viser.Icon.SPIDER"]], "spiral (viser.icon attribute)": [[32, "viser.Icon.SPIRAL"]], "spiral_off (viser.icon attribute)": [[32, "viser.Icon.SPIRAL_OFF"]], "sport_billard (viser.icon attribute)": [[32, "viser.Icon.SPORT_BILLARD"]], "spray (viser.icon attribute)": [[32, "viser.Icon.SPRAY"]], "spy (viser.icon attribute)": [[32, "viser.Icon.SPY"]], "spy_off (viser.icon attribute)": [[32, "viser.Icon.SPY_OFF"]], "sql (viser.icon attribute)": [[32, "viser.Icon.SQL"]], "square (viser.icon attribute)": [[32, "viser.Icon.SQUARE"]], "squares_diagonal (viser.icon attribute)": [[32, "viser.Icon.SQUARES_DIAGONAL"]], "squares_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARES_FILLED"]], "square_0_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_0_FILLED"]], "square_1_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_1_FILLED"]], "square_2_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_2_FILLED"]], "square_3_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_3_FILLED"]], "square_4_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_4_FILLED"]], "square_5_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_5_FILLED"]], "square_6_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_6_FILLED"]], "square_7_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_7_FILLED"]], "square_8_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_8_FILLED"]], "square_9_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_9_FILLED"]], "square_arrow_down (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ARROW_DOWN"]], "square_arrow_left (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ARROW_LEFT"]], "square_arrow_right (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ARROW_RIGHT"]], "square_arrow_up (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ARROW_UP"]], "square_asterisk (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ASTERISK"]], "square_check (viser.icon attribute)": [[32, "viser.Icon.SQUARE_CHECK"]], "square_check_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_CHECK_FILLED"]], "square_chevrons_down (viser.icon attribute)": [[32, "viser.Icon.SQUARE_CHEVRONS_DOWN"]], "square_chevrons_left (viser.icon attribute)": [[32, "viser.Icon.SQUARE_CHEVRONS_LEFT"]], "square_chevrons_right (viser.icon attribute)": [[32, "viser.Icon.SQUARE_CHEVRONS_RIGHT"]], "square_chevrons_up (viser.icon attribute)": [[32, "viser.Icon.SQUARE_CHEVRONS_UP"]], "square_chevron_down (viser.icon attribute)": [[32, "viser.Icon.SQUARE_CHEVRON_DOWN"]], "square_chevron_left (viser.icon attribute)": [[32, "viser.Icon.SQUARE_CHEVRON_LEFT"]], "square_chevron_right (viser.icon attribute)": [[32, "viser.Icon.SQUARE_CHEVRON_RIGHT"]], "square_chevron_up (viser.icon attribute)": [[32, "viser.Icon.SQUARE_CHEVRON_UP"]], "square_dot (viser.icon attribute)": [[32, "viser.Icon.SQUARE_DOT"]], "square_f0 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F0"]], "square_f0_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F0_FILLED"]], "square_f1 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F1"]], "square_f1_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F1_FILLED"]], "square_f2 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F2"]], "square_f2_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F2_FILLED"]], "square_f3 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F3"]], "square_f3_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F3_FILLED"]], "square_f4 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F4"]], "square_f4_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F4_FILLED"]], "square_f5 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F5"]], "square_f5_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F5_FILLED"]], "square_f6 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F6"]], "square_f6_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F6_FILLED"]], "square_f7 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F7"]], "square_f7_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F7_FILLED"]], "square_f8 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F8"]], "square_f8_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F8_FILLED"]], "square_f9 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F9"]], "square_f9_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_F9_FILLED"]], "square_forbid (viser.icon attribute)": [[32, "viser.Icon.SQUARE_FORBID"]], "square_forbid_2 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_FORBID_2"]], "square_half (viser.icon attribute)": [[32, "viser.Icon.SQUARE_HALF"]], "square_key (viser.icon attribute)": [[32, "viser.Icon.SQUARE_KEY"]], "square_letter_a (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_A"]], "square_letter_b (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_B"]], "square_letter_c (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_C"]], "square_letter_d (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_D"]], "square_letter_e (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_E"]], "square_letter_f (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_F"]], "square_letter_g (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_G"]], "square_letter_h (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_H"]], "square_letter_i (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_I"]], "square_letter_j (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_J"]], "square_letter_k (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_K"]], "square_letter_l (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_L"]], "square_letter_m (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_M"]], "square_letter_n (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_N"]], "square_letter_o (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_O"]], "square_letter_p (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_P"]], "square_letter_q (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_Q"]], "square_letter_r (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_R"]], "square_letter_s (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_S"]], "square_letter_t (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_T"]], "square_letter_u (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_U"]], "square_letter_v (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_V"]], "square_letter_w (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_W"]], "square_letter_x (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_X"]], "square_letter_y (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_Y"]], "square_letter_z (viser.icon attribute)": [[32, "viser.Icon.SQUARE_LETTER_Z"]], "square_minus (viser.icon attribute)": [[32, "viser.Icon.SQUARE_MINUS"]], "square_number_0 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_NUMBER_0"]], "square_number_1 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_NUMBER_1"]], "square_number_2 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_NUMBER_2"]], "square_number_3 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_NUMBER_3"]], "square_number_4 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_NUMBER_4"]], "square_number_5 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_NUMBER_5"]], "square_number_6 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_NUMBER_6"]], "square_number_7 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_NUMBER_7"]], "square_number_8 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_NUMBER_8"]], "square_number_9 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_NUMBER_9"]], "square_off (viser.icon attribute)": [[32, "viser.Icon.SQUARE_OFF"]], "square_plus (viser.icon attribute)": [[32, "viser.Icon.SQUARE_PLUS"]], "square_root (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROOT"]], "square_root_2 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROOT_2"]], "square_rotated (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROTATED"]], "square_rotated_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROTATED_FILLED"]], "square_rotated_forbid (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROTATED_FORBID"]], "square_rotated_forbid_2 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROTATED_FORBID_2"]], "square_rotated_off (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROTATED_OFF"]], "square_rounded (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED"]], "square_rounded_arrow_down (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_ARROW_DOWN"]], "square_rounded_arrow_down_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_ARROW_DOWN_FILLED"]], "square_rounded_arrow_left (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_ARROW_LEFT"]], "square_rounded_arrow_left_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_ARROW_LEFT_FILLED"]], "square_rounded_arrow_right (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_ARROW_RIGHT"]], "square_rounded_arrow_right_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_ARROW_RIGHT_FILLED"]], "square_rounded_arrow_up (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_ARROW_UP"]], "square_rounded_arrow_up_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_ARROW_UP_FILLED"]], "square_rounded_check (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHECK"]], "square_rounded_check_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHECK_FILLED"]], "square_rounded_chevrons_down (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_DOWN"]], "square_rounded_chevrons_down_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_DOWN_FILLED"]], "square_rounded_chevrons_left (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_LEFT"]], "square_rounded_chevrons_left_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_LEFT_FILLED"]], "square_rounded_chevrons_right (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_RIGHT"]], "square_rounded_chevrons_right_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_RIGHT_FILLED"]], "square_rounded_chevrons_up (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_UP"]], "square_rounded_chevrons_up_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_UP_FILLED"]], "square_rounded_chevron_down (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRON_DOWN"]], "square_rounded_chevron_down_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRON_DOWN_FILLED"]], "square_rounded_chevron_left (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRON_LEFT"]], "square_rounded_chevron_left_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRON_LEFT_FILLED"]], "square_rounded_chevron_right (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRON_RIGHT"]], "square_rounded_chevron_right_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRON_RIGHT_FILLED"]], "square_rounded_chevron_up (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRON_UP"]], "square_rounded_chevron_up_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_CHEVRON_UP_FILLED"]], "square_rounded_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_FILLED"]], "square_rounded_letter_a (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_A"]], "square_rounded_letter_b (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_B"]], "square_rounded_letter_c (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_C"]], "square_rounded_letter_d (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_D"]], "square_rounded_letter_e (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_E"]], "square_rounded_letter_f (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_F"]], "square_rounded_letter_g (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_G"]], "square_rounded_letter_h (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_H"]], "square_rounded_letter_i (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_I"]], "square_rounded_letter_j (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_J"]], "square_rounded_letter_k (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_K"]], "square_rounded_letter_l (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_L"]], "square_rounded_letter_m (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_M"]], "square_rounded_letter_n (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_N"]], "square_rounded_letter_o (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_O"]], "square_rounded_letter_p (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_P"]], "square_rounded_letter_q (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_Q"]], "square_rounded_letter_r (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_R"]], "square_rounded_letter_s (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_S"]], "square_rounded_letter_t (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_T"]], "square_rounded_letter_u (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_U"]], "square_rounded_letter_v (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_V"]], "square_rounded_letter_w (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_W"]], "square_rounded_letter_x (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_X"]], "square_rounded_letter_y (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_Y"]], "square_rounded_letter_z (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_LETTER_Z"]], "square_rounded_minus (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_MINUS"]], "square_rounded_number_0 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_0"]], "square_rounded_number_0_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_0_FILLED"]], "square_rounded_number_1 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_1"]], "square_rounded_number_1_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_1_FILLED"]], "square_rounded_number_2 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_2"]], "square_rounded_number_2_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_2_FILLED"]], "square_rounded_number_3 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_3"]], "square_rounded_number_3_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_3_FILLED"]], "square_rounded_number_4 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_4"]], "square_rounded_number_4_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_4_FILLED"]], "square_rounded_number_5 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_5"]], "square_rounded_number_5_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_5_FILLED"]], "square_rounded_number_6 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_6"]], "square_rounded_number_6_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_6_FILLED"]], "square_rounded_number_7 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_7"]], "square_rounded_number_7_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_7_FILLED"]], "square_rounded_number_8 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_8"]], "square_rounded_number_8_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_8_FILLED"]], "square_rounded_number_9 (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_9"]], "square_rounded_number_9_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_NUMBER_9_FILLED"]], "square_rounded_plus (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_PLUS"]], "square_rounded_plus_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_PLUS_FILLED"]], "square_rounded_x (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_X"]], "square_rounded_x_filled (viser.icon attribute)": [[32, "viser.Icon.SQUARE_ROUNDED_X_FILLED"]], "square_toggle (viser.icon attribute)": [[32, "viser.Icon.SQUARE_TOGGLE"]], "square_toggle_horizontal (viser.icon attribute)": [[32, "viser.Icon.SQUARE_TOGGLE_HORIZONTAL"]], "square_x (viser.icon attribute)": [[32, "viser.Icon.SQUARE_X"]], "stack (viser.icon attribute)": [[32, "viser.Icon.STACK"]], "stack_2 (viser.icon attribute)": [[32, "viser.Icon.STACK_2"]], "stack_3 (viser.icon attribute)": [[32, "viser.Icon.STACK_3"]], "stack_pop (viser.icon attribute)": [[32, "viser.Icon.STACK_POP"]], "stack_push (viser.icon attribute)": [[32, "viser.Icon.STACK_PUSH"]], "stairs (viser.icon attribute)": [[32, "viser.Icon.STAIRS"]], "stairs_down (viser.icon attribute)": [[32, "viser.Icon.STAIRS_DOWN"]], "stairs_up (viser.icon attribute)": [[32, "viser.Icon.STAIRS_UP"]], "star (viser.icon attribute)": [[32, "viser.Icon.STAR"]], "stars (viser.icon attribute)": [[32, "viser.Icon.STARS"]], "stars_filled (viser.icon attribute)": [[32, "viser.Icon.STARS_FILLED"]], "stars_off (viser.icon attribute)": [[32, "viser.Icon.STARS_OFF"]], "star_filled (viser.icon attribute)": [[32, "viser.Icon.STAR_FILLED"]], "star_half (viser.icon attribute)": [[32, "viser.Icon.STAR_HALF"]], "star_half_filled (viser.icon attribute)": [[32, "viser.Icon.STAR_HALF_FILLED"]], "star_off (viser.icon attribute)": [[32, "viser.Icon.STAR_OFF"]], "status_change (viser.icon attribute)": [[32, "viser.Icon.STATUS_CHANGE"]], "steam (viser.icon attribute)": [[32, "viser.Icon.STEAM"]], "steering_wheel (viser.icon attribute)": [[32, "viser.Icon.STEERING_WHEEL"]], "steering_wheel_off (viser.icon attribute)": [[32, "viser.Icon.STEERING_WHEEL_OFF"]], "step_into (viser.icon attribute)": [[32, "viser.Icon.STEP_INTO"]], "step_out (viser.icon attribute)": [[32, "viser.Icon.STEP_OUT"]], "stereo_glasses (viser.icon attribute)": [[32, "viser.Icon.STEREO_GLASSES"]], "stethoscope (viser.icon attribute)": [[32, "viser.Icon.STETHOSCOPE"]], "stethoscope_off (viser.icon attribute)": [[32, "viser.Icon.STETHOSCOPE_OFF"]], "sticker (viser.icon attribute)": [[32, "viser.Icon.STICKER"]], "storm (viser.icon attribute)": [[32, "viser.Icon.STORM"]], "storm_off (viser.icon attribute)": [[32, "viser.Icon.STORM_OFF"]], "stretching (viser.icon attribute)": [[32, "viser.Icon.STRETCHING"]], "stretching_2 (viser.icon attribute)": [[32, "viser.Icon.STRETCHING_2"]], "strikethrough (viser.icon attribute)": [[32, "viser.Icon.STRIKETHROUGH"]], "submarine (viser.icon attribute)": [[32, "viser.Icon.SUBMARINE"]], "subscript (viser.icon attribute)": [[32, "viser.Icon.SUBSCRIPT"]], "subtask (viser.icon attribute)": [[32, "viser.Icon.SUBTASK"]], "sum (viser.icon attribute)": [[32, "viser.Icon.SUM"]], "sum_off (viser.icon attribute)": [[32, "viser.Icon.SUM_OFF"]], "sun (viser.icon attribute)": [[32, "viser.Icon.SUN"]], "sunglasses (viser.icon attribute)": [[32, "viser.Icon.SUNGLASSES"]], "sunrise (viser.icon attribute)": [[32, "viser.Icon.SUNRISE"]], "sunset (viser.icon attribute)": [[32, "viser.Icon.SUNSET"]], "sunset_2 (viser.icon attribute)": [[32, "viser.Icon.SUNSET_2"]], "sun_filled (viser.icon attribute)": [[32, "viser.Icon.SUN_FILLED"]], "sun_high (viser.icon attribute)": [[32, "viser.Icon.SUN_HIGH"]], "sun_low (viser.icon attribute)": [[32, "viser.Icon.SUN_LOW"]], "sun_moon (viser.icon attribute)": [[32, "viser.Icon.SUN_MOON"]], "sun_off (viser.icon attribute)": [[32, "viser.Icon.SUN_OFF"]], "sun_wind (viser.icon attribute)": [[32, "viser.Icon.SUN_WIND"]], "superscript (viser.icon attribute)": [[32, "viser.Icon.SUPERSCRIPT"]], "svg (viser.icon attribute)": [[32, "viser.Icon.SVG"]], "swimming (viser.icon attribute)": [[32, "viser.Icon.SWIMMING"]], "swipe (viser.icon attribute)": [[32, "viser.Icon.SWIPE"]], "switch (viser.icon attribute)": [[32, "viser.Icon.SWITCH"]], "switch_2 (viser.icon attribute)": [[32, "viser.Icon.SWITCH_2"]], "switch_3 (viser.icon attribute)": [[32, "viser.Icon.SWITCH_3"]], "switch_horizontal (viser.icon attribute)": [[32, "viser.Icon.SWITCH_HORIZONTAL"]], "switch_vertical (viser.icon attribute)": [[32, "viser.Icon.SWITCH_VERTICAL"]], "sword (viser.icon attribute)": [[32, "viser.Icon.SWORD"]], "swords (viser.icon attribute)": [[32, "viser.Icon.SWORDS"]], "sword_off (viser.icon attribute)": [[32, "viser.Icon.SWORD_OFF"]], "s_turn_down (viser.icon attribute)": [[32, "viser.Icon.S_TURN_DOWN"]], "s_turn_left (viser.icon attribute)": [[32, "viser.Icon.S_TURN_LEFT"]], "s_turn_right (viser.icon attribute)": [[32, "viser.Icon.S_TURN_RIGHT"]], "s_turn_up (viser.icon attribute)": [[32, "viser.Icon.S_TURN_UP"]], "table (viser.icon attribute)": [[32, "viser.Icon.TABLE"]], "table_alias (viser.icon attribute)": [[32, "viser.Icon.TABLE_ALIAS"]], "table_column (viser.icon attribute)": [[32, "viser.Icon.TABLE_COLUMN"]], "table_down (viser.icon attribute)": [[32, "viser.Icon.TABLE_DOWN"]], "table_export (viser.icon attribute)": [[32, "viser.Icon.TABLE_EXPORT"]], "table_filled (viser.icon attribute)": [[32, "viser.Icon.TABLE_FILLED"]], "table_heart (viser.icon attribute)": [[32, "viser.Icon.TABLE_HEART"]], "table_import (viser.icon attribute)": [[32, "viser.Icon.TABLE_IMPORT"]], "table_minus (viser.icon attribute)": [[32, "viser.Icon.TABLE_MINUS"]], "table_off (viser.icon attribute)": [[32, "viser.Icon.TABLE_OFF"]], "table_options (viser.icon attribute)": [[32, "viser.Icon.TABLE_OPTIONS"]], "table_plus (viser.icon attribute)": [[32, "viser.Icon.TABLE_PLUS"]], "table_row (viser.icon attribute)": [[32, "viser.Icon.TABLE_ROW"]], "table_share (viser.icon attribute)": [[32, "viser.Icon.TABLE_SHARE"]], "table_shortcut (viser.icon attribute)": [[32, "viser.Icon.TABLE_SHORTCUT"]], "tag (viser.icon attribute)": [[32, "viser.Icon.TAG"]], "tags (viser.icon attribute)": [[32, "viser.Icon.TAGS"]], "tags_off (viser.icon attribute)": [[32, "viser.Icon.TAGS_OFF"]], "tag_off (viser.icon attribute)": [[32, "viser.Icon.TAG_OFF"]], "tallymarks (viser.icon attribute)": [[32, "viser.Icon.TALLYMARKS"]], "tallymark_1 (viser.icon attribute)": [[32, "viser.Icon.TALLYMARK_1"]], "tallymark_2 (viser.icon attribute)": [[32, "viser.Icon.TALLYMARK_2"]], "tallymark_3 (viser.icon attribute)": [[32, "viser.Icon.TALLYMARK_3"]], "tallymark_4 (viser.icon attribute)": [[32, "viser.Icon.TALLYMARK_4"]], "tank (viser.icon attribute)": [[32, "viser.Icon.TANK"]], "target (viser.icon attribute)": [[32, "viser.Icon.TARGET"]], "target_arrow (viser.icon attribute)": [[32, "viser.Icon.TARGET_ARROW"]], "target_off (viser.icon attribute)": [[32, "viser.Icon.TARGET_OFF"]], "teapot (viser.icon attribute)": [[32, "viser.Icon.TEAPOT"]], "telescope (viser.icon attribute)": [[32, "viser.Icon.TELESCOPE"]], "telescope_off (viser.icon attribute)": [[32, "viser.Icon.TELESCOPE_OFF"]], "temperature (viser.icon attribute)": [[32, "viser.Icon.TEMPERATURE"]], "temperature_celsius (viser.icon attribute)": [[32, "viser.Icon.TEMPERATURE_CELSIUS"]], "temperature_fahrenheit (viser.icon attribute)": [[32, "viser.Icon.TEMPERATURE_FAHRENHEIT"]], "temperature_minus (viser.icon attribute)": [[32, "viser.Icon.TEMPERATURE_MINUS"]], "temperature_off (viser.icon attribute)": [[32, "viser.Icon.TEMPERATURE_OFF"]], "temperature_plus (viser.icon attribute)": [[32, "viser.Icon.TEMPERATURE_PLUS"]], "template (viser.icon attribute)": [[32, "viser.Icon.TEMPLATE"]], "template_off (viser.icon attribute)": [[32, "viser.Icon.TEMPLATE_OFF"]], "tent (viser.icon attribute)": [[32, "viser.Icon.TENT"]], "tent_off (viser.icon attribute)": [[32, "viser.Icon.TENT_OFF"]], "terminal (viser.icon attribute)": [[32, "viser.Icon.TERMINAL"]], "terminal_2 (viser.icon attribute)": [[32, "viser.Icon.TERMINAL_2"]], "test_pipe (viser.icon attribute)": [[32, "viser.Icon.TEST_PIPE"]], "test_pipe_2 (viser.icon attribute)": [[32, "viser.Icon.TEST_PIPE_2"]], "test_pipe_off (viser.icon attribute)": [[32, "viser.Icon.TEST_PIPE_OFF"]], "tex (viser.icon attribute)": [[32, "viser.Icon.TEX"]], "texture (viser.icon attribute)": [[32, "viser.Icon.TEXTURE"]], "text_caption (viser.icon attribute)": [[32, "viser.Icon.TEXT_CAPTION"]], "text_color (viser.icon attribute)": [[32, "viser.Icon.TEXT_COLOR"]], "text_decrease (viser.icon attribute)": [[32, "viser.Icon.TEXT_DECREASE"]], "text_direction_ltr (viser.icon attribute)": [[32, "viser.Icon.TEXT_DIRECTION_LTR"]], "text_direction_rtl (viser.icon attribute)": [[32, "viser.Icon.TEXT_DIRECTION_RTL"]], "text_increase (viser.icon attribute)": [[32, "viser.Icon.TEXT_INCREASE"]], "text_orientation (viser.icon attribute)": [[32, "viser.Icon.TEXT_ORIENTATION"]], "text_plus (viser.icon attribute)": [[32, "viser.Icon.TEXT_PLUS"]], "text_recognition (viser.icon attribute)": [[32, "viser.Icon.TEXT_RECOGNITION"]], "text_resize (viser.icon attribute)": [[32, "viser.Icon.TEXT_RESIZE"]], "text_size (viser.icon attribute)": [[32, "viser.Icon.TEXT_SIZE"]], "text_spellcheck (viser.icon attribute)": [[32, "viser.Icon.TEXT_SPELLCHECK"]], "text_wrap (viser.icon attribute)": [[32, "viser.Icon.TEXT_WRAP"]], "text_wrap_disabled (viser.icon attribute)": [[32, "viser.Icon.TEXT_WRAP_DISABLED"]], "theater (viser.icon attribute)": [[32, "viser.Icon.THEATER"]], "thermometer (viser.icon attribute)": [[32, "viser.Icon.THERMOMETER"]], "thumb_down (viser.icon attribute)": [[32, "viser.Icon.THUMB_DOWN"]], "thumb_down_filled (viser.icon attribute)": [[32, "viser.Icon.THUMB_DOWN_FILLED"]], "thumb_down_off (viser.icon attribute)": [[32, "viser.Icon.THUMB_DOWN_OFF"]], "thumb_up (viser.icon attribute)": [[32, "viser.Icon.THUMB_UP"]], "thumb_up_filled (viser.icon attribute)": [[32, "viser.Icon.THUMB_UP_FILLED"]], "thumb_up_off (viser.icon attribute)": [[32, "viser.Icon.THUMB_UP_OFF"]], "ticket (viser.icon attribute)": [[32, "viser.Icon.TICKET"]], "ticket_off (viser.icon attribute)": [[32, "viser.Icon.TICKET_OFF"]], "tic_tac (viser.icon attribute)": [[32, "viser.Icon.TIC_TAC"]], "tie (viser.icon attribute)": [[32, "viser.Icon.TIE"]], "tilde (viser.icon attribute)": [[32, "viser.Icon.TILDE"]], "tilt_shift (viser.icon attribute)": [[32, "viser.Icon.TILT_SHIFT"]], "tilt_shift_off (viser.icon attribute)": [[32, "viser.Icon.TILT_SHIFT_OFF"]], "timeline (viser.icon attribute)": [[32, "viser.Icon.TIMELINE"]], "timeline_event (viser.icon attribute)": [[32, "viser.Icon.TIMELINE_EVENT"]], "timeline_event_exclamation (viser.icon attribute)": [[32, "viser.Icon.TIMELINE_EVENT_EXCLAMATION"]], "timeline_event_minus (viser.icon attribute)": [[32, "viser.Icon.TIMELINE_EVENT_MINUS"]], "timeline_event_plus (viser.icon attribute)": [[32, "viser.Icon.TIMELINE_EVENT_PLUS"]], "timeline_event_text (viser.icon attribute)": [[32, "viser.Icon.TIMELINE_EVENT_TEXT"]], "timeline_event_x (viser.icon attribute)": [[32, "viser.Icon.TIMELINE_EVENT_X"]], "time_duration_0 (viser.icon attribute)": [[32, "viser.Icon.TIME_DURATION_0"]], "time_duration_10 (viser.icon attribute)": [[32, "viser.Icon.TIME_DURATION_10"]], "time_duration_15 (viser.icon attribute)": [[32, "viser.Icon.TIME_DURATION_15"]], "time_duration_30 (viser.icon attribute)": [[32, "viser.Icon.TIME_DURATION_30"]], "time_duration_45 (viser.icon attribute)": [[32, "viser.Icon.TIME_DURATION_45"]], "time_duration_5 (viser.icon attribute)": [[32, "viser.Icon.TIME_DURATION_5"]], "time_duration_60 (viser.icon attribute)": [[32, "viser.Icon.TIME_DURATION_60"]], "time_duration_90 (viser.icon attribute)": [[32, "viser.Icon.TIME_DURATION_90"]], "time_duration_off (viser.icon attribute)": [[32, "viser.Icon.TIME_DURATION_OFF"]], "tir (viser.icon attribute)": [[32, "viser.Icon.TIR"]], "toggle_left (viser.icon attribute)": [[32, "viser.Icon.TOGGLE_LEFT"]], "toggle_right (viser.icon attribute)": [[32, "viser.Icon.TOGGLE_RIGHT"]], "toilet_paper (viser.icon attribute)": [[32, "viser.Icon.TOILET_PAPER"]], "toilet_paper_off (viser.icon attribute)": [[32, "viser.Icon.TOILET_PAPER_OFF"]], "toml (viser.icon attribute)": [[32, "viser.Icon.TOML"]], "tool (viser.icon attribute)": [[32, "viser.Icon.TOOL"]], "tools (viser.icon attribute)": [[32, "viser.Icon.TOOLS"]], "tools_kitchen (viser.icon attribute)": [[32, "viser.Icon.TOOLS_KITCHEN"]], "tools_kitchen_2 (viser.icon attribute)": [[32, "viser.Icon.TOOLS_KITCHEN_2"]], "tools_kitchen_2_off (viser.icon attribute)": [[32, "viser.Icon.TOOLS_KITCHEN_2_OFF"]], "tools_kitchen_off (viser.icon attribute)": [[32, "viser.Icon.TOOLS_KITCHEN_OFF"]], "tools_off (viser.icon attribute)": [[32, "viser.Icon.TOOLS_OFF"]], "tooltip (viser.icon attribute)": [[32, "viser.Icon.TOOLTIP"]], "topology_bus (viser.icon attribute)": [[32, "viser.Icon.TOPOLOGY_BUS"]], "topology_complex (viser.icon attribute)": [[32, "viser.Icon.TOPOLOGY_COMPLEX"]], "topology_full (viser.icon attribute)": [[32, "viser.Icon.TOPOLOGY_FULL"]], "topology_full_hierarchy (viser.icon attribute)": [[32, "viser.Icon.TOPOLOGY_FULL_HIERARCHY"]], "topology_ring (viser.icon attribute)": [[32, "viser.Icon.TOPOLOGY_RING"]], "topology_ring_2 (viser.icon attribute)": [[32, "viser.Icon.TOPOLOGY_RING_2"]], "topology_ring_3 (viser.icon attribute)": [[32, "viser.Icon.TOPOLOGY_RING_3"]], "topology_star (viser.icon attribute)": [[32, "viser.Icon.TOPOLOGY_STAR"]], "topology_star_2 (viser.icon attribute)": [[32, "viser.Icon.TOPOLOGY_STAR_2"]], "topology_star_3 (viser.icon attribute)": [[32, "viser.Icon.TOPOLOGY_STAR_3"]], "topology_star_ring (viser.icon attribute)": [[32, "viser.Icon.TOPOLOGY_STAR_RING"]], "topology_star_ring_2 (viser.icon attribute)": [[32, "viser.Icon.TOPOLOGY_STAR_RING_2"]], "topology_star_ring_3 (viser.icon attribute)": [[32, "viser.Icon.TOPOLOGY_STAR_RING_3"]], "torii (viser.icon attribute)": [[32, "viser.Icon.TORII"]], "tornado (viser.icon attribute)": [[32, "viser.Icon.TORNADO"]], "tournament (viser.icon attribute)": [[32, "viser.Icon.TOURNAMENT"]], "tower (viser.icon attribute)": [[32, "viser.Icon.TOWER"]], "tower_off (viser.icon attribute)": [[32, "viser.Icon.TOWER_OFF"]], "track (viser.icon attribute)": [[32, "viser.Icon.TRACK"]], "tractor (viser.icon attribute)": [[32, "viser.Icon.TRACTOR"]], "trademark (viser.icon attribute)": [[32, "viser.Icon.TRADEMARK"]], "traffic_cone (viser.icon attribute)": [[32, "viser.Icon.TRAFFIC_CONE"]], "traffic_cone_off (viser.icon attribute)": [[32, "viser.Icon.TRAFFIC_CONE_OFF"]], "traffic_lights (viser.icon attribute)": [[32, "viser.Icon.TRAFFIC_LIGHTS"]], "traffic_lights_off (viser.icon attribute)": [[32, "viser.Icon.TRAFFIC_LIGHTS_OFF"]], "train (viser.icon attribute)": [[32, "viser.Icon.TRAIN"]], "transfer_in (viser.icon attribute)": [[32, "viser.Icon.TRANSFER_IN"]], "transfer_out (viser.icon attribute)": [[32, "viser.Icon.TRANSFER_OUT"]], "transform (viser.icon attribute)": [[32, "viser.Icon.TRANSFORM"]], "transform_filled (viser.icon attribute)": [[32, "viser.Icon.TRANSFORM_FILLED"]], "transition_bottom (viser.icon attribute)": [[32, "viser.Icon.TRANSITION_BOTTOM"]], "transition_left (viser.icon attribute)": [[32, "viser.Icon.TRANSITION_LEFT"]], "transition_right (viser.icon attribute)": [[32, "viser.Icon.TRANSITION_RIGHT"]], "transition_top (viser.icon attribute)": [[32, "viser.Icon.TRANSITION_TOP"]], "trash (viser.icon attribute)": [[32, "viser.Icon.TRASH"]], "trash_filled (viser.icon attribute)": [[32, "viser.Icon.TRASH_FILLED"]], "trash_off (viser.icon attribute)": [[32, "viser.Icon.TRASH_OFF"]], "trash_x (viser.icon attribute)": [[32, "viser.Icon.TRASH_X"]], "trash_x_filled (viser.icon attribute)": [[32, "viser.Icon.TRASH_X_FILLED"]], "treadmill (viser.icon attribute)": [[32, "viser.Icon.TREADMILL"]], "tree (viser.icon attribute)": [[32, "viser.Icon.TREE"]], "trees (viser.icon attribute)": [[32, "viser.Icon.TREES"]], "trekking (viser.icon attribute)": [[32, "viser.Icon.TREKKING"]], "trending_down (viser.icon attribute)": [[32, "viser.Icon.TRENDING_DOWN"]], "trending_down_2 (viser.icon attribute)": [[32, "viser.Icon.TRENDING_DOWN_2"]], "trending_down_3 (viser.icon attribute)": [[32, "viser.Icon.TRENDING_DOWN_3"]], "trending_up (viser.icon attribute)": [[32, "viser.Icon.TRENDING_UP"]], "trending_up_2 (viser.icon attribute)": [[32, "viser.Icon.TRENDING_UP_2"]], "trending_up_3 (viser.icon attribute)": [[32, "viser.Icon.TRENDING_UP_3"]], "triangle (viser.icon attribute)": [[32, "viser.Icon.TRIANGLE"]], "triangles (viser.icon attribute)": [[32, "viser.Icon.TRIANGLES"]], "triangle_filled (viser.icon attribute)": [[32, "viser.Icon.TRIANGLE_FILLED"]], "triangle_inverted (viser.icon attribute)": [[32, "viser.Icon.TRIANGLE_INVERTED"]], "triangle_inverted_filled (viser.icon attribute)": [[32, "viser.Icon.TRIANGLE_INVERTED_FILLED"]], "triangle_off (viser.icon attribute)": [[32, "viser.Icon.TRIANGLE_OFF"]], "triangle_square_circle (viser.icon attribute)": [[32, "viser.Icon.TRIANGLE_SQUARE_CIRCLE"]], "trident (viser.icon attribute)": [[32, "viser.Icon.TRIDENT"]], "trolley (viser.icon attribute)": [[32, "viser.Icon.TROLLEY"]], "trophy (viser.icon attribute)": [[32, "viser.Icon.TROPHY"]], "trophy_filled (viser.icon attribute)": [[32, "viser.Icon.TROPHY_FILLED"]], "trophy_off (viser.icon attribute)": [[32, "viser.Icon.TROPHY_OFF"]], "trowel (viser.icon attribute)": [[32, "viser.Icon.TROWEL"]], "truck (viser.icon attribute)": [[32, "viser.Icon.TRUCK"]], "truck_delivery (viser.icon attribute)": [[32, "viser.Icon.TRUCK_DELIVERY"]], "truck_loading (viser.icon attribute)": [[32, "viser.Icon.TRUCK_LOADING"]], "truck_off (viser.icon attribute)": [[32, "viser.Icon.TRUCK_OFF"]], "truck_return (viser.icon attribute)": [[32, "viser.Icon.TRUCK_RETURN"]], "txt (viser.icon attribute)": [[32, "viser.Icon.TXT"]], "typography (viser.icon attribute)": [[32, "viser.Icon.TYPOGRAPHY"]], "typography_off (viser.icon attribute)": [[32, "viser.Icon.TYPOGRAPHY_OFF"]], "ufo (viser.icon attribute)": [[32, "viser.Icon.UFO"]], "ufo_off (viser.icon attribute)": [[32, "viser.Icon.UFO_OFF"]], "umbrella (viser.icon attribute)": [[32, "viser.Icon.UMBRELLA"]], "umbrella_filled (viser.icon attribute)": [[32, "viser.Icon.UMBRELLA_FILLED"]], "umbrella_off (viser.icon attribute)": [[32, "viser.Icon.UMBRELLA_OFF"]], "underline (viser.icon attribute)": [[32, "viser.Icon.UNDERLINE"]], "unlink (viser.icon attribute)": [[32, "viser.Icon.UNLINK"]], "upload (viser.icon attribute)": [[32, "viser.Icon.UPLOAD"]], "urgent (viser.icon attribute)": [[32, "viser.Icon.URGENT"]], "usb (viser.icon attribute)": [[32, "viser.Icon.USB"]], "user (viser.icon attribute)": [[32, "viser.Icon.USER"]], "users (viser.icon attribute)": [[32, "viser.Icon.USERS"]], "users_group (viser.icon attribute)": [[32, "viser.Icon.USERS_GROUP"]], "users_minus (viser.icon attribute)": [[32, "viser.Icon.USERS_MINUS"]], "users_plus (viser.icon attribute)": [[32, "viser.Icon.USERS_PLUS"]], "user_bolt (viser.icon attribute)": [[32, "viser.Icon.USER_BOLT"]], "user_cancel (viser.icon attribute)": [[32, "viser.Icon.USER_CANCEL"]], "user_check (viser.icon attribute)": [[32, "viser.Icon.USER_CHECK"]], "user_circle (viser.icon attribute)": [[32, "viser.Icon.USER_CIRCLE"]], "user_code (viser.icon attribute)": [[32, "viser.Icon.USER_CODE"]], "user_cog (viser.icon attribute)": [[32, "viser.Icon.USER_COG"]], "user_dollar (viser.icon attribute)": [[32, "viser.Icon.USER_DOLLAR"]], "user_down (viser.icon attribute)": [[32, "viser.Icon.USER_DOWN"]], "user_edit (viser.icon attribute)": [[32, "viser.Icon.USER_EDIT"]], "user_exclamation (viser.icon attribute)": [[32, "viser.Icon.USER_EXCLAMATION"]], "user_heart (viser.icon attribute)": [[32, "viser.Icon.USER_HEART"]], "user_minus (viser.icon attribute)": [[32, "viser.Icon.USER_MINUS"]], "user_off (viser.icon attribute)": [[32, "viser.Icon.USER_OFF"]], "user_pause (viser.icon attribute)": [[32, "viser.Icon.USER_PAUSE"]], "user_pin (viser.icon attribute)": [[32, "viser.Icon.USER_PIN"]], "user_plus (viser.icon attribute)": [[32, "viser.Icon.USER_PLUS"]], "user_question (viser.icon attribute)": [[32, "viser.Icon.USER_QUESTION"]], "user_search (viser.icon attribute)": [[32, "viser.Icon.USER_SEARCH"]], "user_share (viser.icon attribute)": [[32, "viser.Icon.USER_SHARE"]], "user_shield (viser.icon attribute)": [[32, "viser.Icon.USER_SHIELD"]], "user_star (viser.icon attribute)": [[32, "viser.Icon.USER_STAR"]], "user_up (viser.icon attribute)": [[32, "viser.Icon.USER_UP"]], "user_x (viser.icon attribute)": [[32, "viser.Icon.USER_X"]], "uv_index (viser.icon attribute)": [[32, "viser.Icon.UV_INDEX"]], "ux_circle (viser.icon attribute)": [[32, "viser.Icon.UX_CIRCLE"]], "vaccine (viser.icon attribute)": [[32, "viser.Icon.VACCINE"]], "vaccine_bottle (viser.icon attribute)": [[32, "viser.Icon.VACCINE_BOTTLE"]], "vaccine_bottle_off (viser.icon attribute)": [[32, "viser.Icon.VACCINE_BOTTLE_OFF"]], "vaccine_off (viser.icon attribute)": [[32, "viser.Icon.VACCINE_OFF"]], "vacuum_cleaner (viser.icon attribute)": [[32, "viser.Icon.VACUUM_CLEANER"]], "variable (viser.icon attribute)": [[32, "viser.Icon.VARIABLE"]], "variable_minus (viser.icon attribute)": [[32, "viser.Icon.VARIABLE_MINUS"]], "variable_off (viser.icon attribute)": [[32, "viser.Icon.VARIABLE_OFF"]], "variable_plus (viser.icon attribute)": [[32, "viser.Icon.VARIABLE_PLUS"]], "vector (viser.icon attribute)": [[32, "viser.Icon.VECTOR"]], "vector_bezier (viser.icon attribute)": [[32, "viser.Icon.VECTOR_BEZIER"]], "vector_bezier_2 (viser.icon attribute)": [[32, "viser.Icon.VECTOR_BEZIER_2"]], "vector_bezier_arc (viser.icon attribute)": [[32, "viser.Icon.VECTOR_BEZIER_ARC"]], "vector_bezier_circle (viser.icon attribute)": [[32, "viser.Icon.VECTOR_BEZIER_CIRCLE"]], "vector_off (viser.icon attribute)": [[32, "viser.Icon.VECTOR_OFF"]], "vector_spline (viser.icon attribute)": [[32, "viser.Icon.VECTOR_SPLINE"]], "vector_triangle (viser.icon attribute)": [[32, "viser.Icon.VECTOR_TRIANGLE"]], "vector_triangle_off (viser.icon attribute)": [[32, "viser.Icon.VECTOR_TRIANGLE_OFF"]], "venus (viser.icon attribute)": [[32, "viser.Icon.VENUS"]], "versions (viser.icon attribute)": [[32, "viser.Icon.VERSIONS"]], "versions_filled (viser.icon attribute)": [[32, "viser.Icon.VERSIONS_FILLED"]], "versions_off (viser.icon attribute)": [[32, "viser.Icon.VERSIONS_OFF"]], "video (viser.icon attribute)": [[32, "viser.Icon.VIDEO"]], "video_minus (viser.icon attribute)": [[32, "viser.Icon.VIDEO_MINUS"]], "video_off (viser.icon attribute)": [[32, "viser.Icon.VIDEO_OFF"]], "video_plus (viser.icon attribute)": [[32, "viser.Icon.VIDEO_PLUS"]], "viewfinder (viser.icon attribute)": [[32, "viser.Icon.VIEWFINDER"]], "viewfinder_off (viser.icon attribute)": [[32, "viser.Icon.VIEWFINDER_OFF"]], "viewport_narrow (viser.icon attribute)": [[32, "viser.Icon.VIEWPORT_NARROW"]], "viewport_wide (viser.icon attribute)": [[32, "viser.Icon.VIEWPORT_WIDE"]], "view_360 (viser.icon attribute)": [[32, "viser.Icon.VIEW_360"]], "view_360_off (viser.icon attribute)": [[32, "viser.Icon.VIEW_360_OFF"]], "vinyl (viser.icon attribute)": [[32, "viser.Icon.VINYL"]], "vip (viser.icon attribute)": [[32, "viser.Icon.VIP"]], "vip_off (viser.icon attribute)": [[32, "viser.Icon.VIP_OFF"]], "virus (viser.icon attribute)": [[32, "viser.Icon.VIRUS"]], "virus_off (viser.icon attribute)": [[32, "viser.Icon.VIRUS_OFF"]], "virus_search (viser.icon attribute)": [[32, "viser.Icon.VIRUS_SEARCH"]], "vocabulary (viser.icon attribute)": [[32, "viser.Icon.VOCABULARY"]], "vocabulary_off (viser.icon attribute)": [[32, "viser.Icon.VOCABULARY_OFF"]], "volcano (viser.icon attribute)": [[32, "viser.Icon.VOLCANO"]], "volume (viser.icon attribute)": [[32, "viser.Icon.VOLUME"]], "volume_2 (viser.icon attribute)": [[32, "viser.Icon.VOLUME_2"]], "volume_3 (viser.icon attribute)": [[32, "viser.Icon.VOLUME_3"]], "volume_off (viser.icon attribute)": [[32, "viser.Icon.VOLUME_OFF"]], "walk (viser.icon attribute)": [[32, "viser.Icon.WALK"]], "wall (viser.icon attribute)": [[32, "viser.Icon.WALL"]], "wallet (viser.icon attribute)": [[32, "viser.Icon.WALLET"]], "wallet_off (viser.icon attribute)": [[32, "viser.Icon.WALLET_OFF"]], "wallpaper (viser.icon attribute)": [[32, "viser.Icon.WALLPAPER"]], "wallpaper_off (viser.icon attribute)": [[32, "viser.Icon.WALLPAPER_OFF"]], "wall_off (viser.icon attribute)": [[32, "viser.Icon.WALL_OFF"]], "wand (viser.icon attribute)": [[32, "viser.Icon.WAND"]], "wand_off (viser.icon attribute)": [[32, "viser.Icon.WAND_OFF"]], "wash (viser.icon attribute)": [[32, "viser.Icon.WASH"]], "wash_dry (viser.icon attribute)": [[32, "viser.Icon.WASH_DRY"]], "wash_dryclean (viser.icon attribute)": [[32, "viser.Icon.WASH_DRYCLEAN"]], "wash_dryclean_off (viser.icon attribute)": [[32, "viser.Icon.WASH_DRYCLEAN_OFF"]], "wash_dry_1 (viser.icon attribute)": [[32, "viser.Icon.WASH_DRY_1"]], "wash_dry_2 (viser.icon attribute)": [[32, "viser.Icon.WASH_DRY_2"]], "wash_dry_3 (viser.icon attribute)": [[32, "viser.Icon.WASH_DRY_3"]], "wash_dry_a (viser.icon attribute)": [[32, "viser.Icon.WASH_DRY_A"]], "wash_dry_dip (viser.icon attribute)": [[32, "viser.Icon.WASH_DRY_DIP"]], "wash_dry_f (viser.icon attribute)": [[32, "viser.Icon.WASH_DRY_F"]], "wash_dry_flat (viser.icon attribute)": [[32, "viser.Icon.WASH_DRY_FLAT"]], "wash_dry_hang (viser.icon attribute)": [[32, "viser.Icon.WASH_DRY_HANG"]], "wash_dry_off (viser.icon attribute)": [[32, "viser.Icon.WASH_DRY_OFF"]], "wash_dry_p (viser.icon attribute)": [[32, "viser.Icon.WASH_DRY_P"]], "wash_dry_shade (viser.icon attribute)": [[32, "viser.Icon.WASH_DRY_SHADE"]], "wash_dry_w (viser.icon attribute)": [[32, "viser.Icon.WASH_DRY_W"]], "wash_eco (viser.icon attribute)": [[32, "viser.Icon.WASH_ECO"]], "wash_gentle (viser.icon attribute)": [[32, "viser.Icon.WASH_GENTLE"]], "wash_hand (viser.icon attribute)": [[32, "viser.Icon.WASH_HAND"]], "wash_machine (viser.icon attribute)": [[32, "viser.Icon.WASH_MACHINE"]], "wash_off (viser.icon attribute)": [[32, "viser.Icon.WASH_OFF"]], "wash_press (viser.icon attribute)": [[32, "viser.Icon.WASH_PRESS"]], "wash_temperature_1 (viser.icon attribute)": [[32, "viser.Icon.WASH_TEMPERATURE_1"]], "wash_temperature_2 (viser.icon attribute)": [[32, "viser.Icon.WASH_TEMPERATURE_2"]], "wash_temperature_3 (viser.icon attribute)": [[32, "viser.Icon.WASH_TEMPERATURE_3"]], "wash_temperature_4 (viser.icon attribute)": [[32, "viser.Icon.WASH_TEMPERATURE_4"]], "wash_temperature_5 (viser.icon attribute)": [[32, "viser.Icon.WASH_TEMPERATURE_5"]], "wash_temperature_6 (viser.icon attribute)": [[32, "viser.Icon.WASH_TEMPERATURE_6"]], "wash_tumble_dry (viser.icon attribute)": [[32, "viser.Icon.WASH_TUMBLE_DRY"]], "wash_tumble_off (viser.icon attribute)": [[32, "viser.Icon.WASH_TUMBLE_OFF"]], "waterpolo (viser.icon attribute)": [[32, "viser.Icon.WATERPOLO"]], "wave_saw_tool (viser.icon attribute)": [[32, "viser.Icon.WAVE_SAW_TOOL"]], "wave_sine (viser.icon attribute)": [[32, "viser.Icon.WAVE_SINE"]], "wave_square (viser.icon attribute)": [[32, "viser.Icon.WAVE_SQUARE"]], "webhook (viser.icon attribute)": [[32, "viser.Icon.WEBHOOK"]], "webhook_off (viser.icon attribute)": [[32, "viser.Icon.WEBHOOK_OFF"]], "weight (viser.icon attribute)": [[32, "viser.Icon.WEIGHT"]], "wheelchair (viser.icon attribute)": [[32, "viser.Icon.WHEELCHAIR"]], "wheelchair_off (viser.icon attribute)": [[32, "viser.Icon.WHEELCHAIR_OFF"]], "whirl (viser.icon attribute)": [[32, "viser.Icon.WHIRL"]], "wifi (viser.icon attribute)": [[32, "viser.Icon.WIFI"]], "wifi_0 (viser.icon attribute)": [[32, "viser.Icon.WIFI_0"]], "wifi_1 (viser.icon attribute)": [[32, "viser.Icon.WIFI_1"]], "wifi_2 (viser.icon attribute)": [[32, "viser.Icon.WIFI_2"]], "wifi_off (viser.icon attribute)": [[32, "viser.Icon.WIFI_OFF"]], "wind (viser.icon attribute)": [[32, "viser.Icon.WIND"]], "windmill (viser.icon attribute)": [[32, "viser.Icon.WINDMILL"]], "windmill_filled (viser.icon attribute)": [[32, "viser.Icon.WINDMILL_FILLED"]], "windmill_off (viser.icon attribute)": [[32, "viser.Icon.WINDMILL_OFF"]], "window (viser.icon attribute)": [[32, "viser.Icon.WINDOW"]], "window_maximize (viser.icon attribute)": [[32, "viser.Icon.WINDOW_MAXIMIZE"]], "window_minimize (viser.icon attribute)": [[32, "viser.Icon.WINDOW_MINIMIZE"]], "window_off (viser.icon attribute)": [[32, "viser.Icon.WINDOW_OFF"]], "windsock (viser.icon attribute)": [[32, "viser.Icon.WINDSOCK"]], "wind_off (viser.icon attribute)": [[32, "viser.Icon.WIND_OFF"]], "wiper (viser.icon attribute)": [[32, "viser.Icon.WIPER"]], "wiper_wash (viser.icon attribute)": [[32, "viser.Icon.WIPER_WASH"]], "woman (viser.icon attribute)": [[32, "viser.Icon.WOMAN"]], "wood (viser.icon attribute)": [[32, "viser.Icon.WOOD"]], "world (viser.icon attribute)": [[32, "viser.Icon.WORLD"]], "world_bolt (viser.icon attribute)": [[32, "viser.Icon.WORLD_BOLT"]], "world_cancel (viser.icon attribute)": [[32, "viser.Icon.WORLD_CANCEL"]], "world_check (viser.icon attribute)": [[32, "viser.Icon.WORLD_CHECK"]], "world_code (viser.icon attribute)": [[32, "viser.Icon.WORLD_CODE"]], "world_cog (viser.icon attribute)": [[32, "viser.Icon.WORLD_COG"]], "world_dollar (viser.icon attribute)": [[32, "viser.Icon.WORLD_DOLLAR"]], "world_down (viser.icon attribute)": [[32, "viser.Icon.WORLD_DOWN"]], "world_download (viser.icon attribute)": [[32, "viser.Icon.WORLD_DOWNLOAD"]], "world_exclamation (viser.icon attribute)": [[32, "viser.Icon.WORLD_EXCLAMATION"]], "world_heart (viser.icon attribute)": [[32, "viser.Icon.WORLD_HEART"]], "world_latitude (viser.icon attribute)": [[32, "viser.Icon.WORLD_LATITUDE"]], "world_longitude (viser.icon attribute)": [[32, "viser.Icon.WORLD_LONGITUDE"]], "world_minus (viser.icon attribute)": [[32, "viser.Icon.WORLD_MINUS"]], "world_off (viser.icon attribute)": [[32, "viser.Icon.WORLD_OFF"]], "world_pause (viser.icon attribute)": [[32, "viser.Icon.WORLD_PAUSE"]], "world_pin (viser.icon attribute)": [[32, "viser.Icon.WORLD_PIN"]], "world_plus (viser.icon attribute)": [[32, "viser.Icon.WORLD_PLUS"]], "world_question (viser.icon attribute)": [[32, "viser.Icon.WORLD_QUESTION"]], "world_search (viser.icon attribute)": [[32, "viser.Icon.WORLD_SEARCH"]], "world_share (viser.icon attribute)": [[32, "viser.Icon.WORLD_SHARE"]], "world_star (viser.icon attribute)": [[32, "viser.Icon.WORLD_STAR"]], "world_up (viser.icon attribute)": [[32, "viser.Icon.WORLD_UP"]], "world_upload (viser.icon attribute)": [[32, "viser.Icon.WORLD_UPLOAD"]], "world_www (viser.icon attribute)": [[32, "viser.Icon.WORLD_WWW"]], "world_x (viser.icon attribute)": [[32, "viser.Icon.WORLD_X"]], "wrecking_ball (viser.icon attribute)": [[32, "viser.Icon.WRECKING_BALL"]], "writing (viser.icon attribute)": [[32, "viser.Icon.WRITING"]], "writing_off (viser.icon attribute)": [[32, "viser.Icon.WRITING_OFF"]], "writing_sign (viser.icon attribute)": [[32, "viser.Icon.WRITING_SIGN"]], "writing_sign_off (viser.icon attribute)": [[32, "viser.Icon.WRITING_SIGN_OFF"]], "x (viser.icon attribute)": [[32, "viser.Icon.X"]], "xbox_a (viser.icon attribute)": [[32, "viser.Icon.XBOX_A"]], "xbox_b (viser.icon attribute)": [[32, "viser.Icon.XBOX_B"]], "xbox_x (viser.icon attribute)": [[32, "viser.Icon.XBOX_X"]], "xbox_y (viser.icon attribute)": [[32, "viser.Icon.XBOX_Y"]], "xd (viser.icon attribute)": [[32, "viser.Icon.XD"]], "yin_yang (viser.icon attribute)": [[32, "viser.Icon.YIN_YANG"]], "yin_yang_filled (viser.icon attribute)": [[32, "viser.Icon.YIN_YANG_FILLED"]], "yoga (viser.icon attribute)": [[32, "viser.Icon.YOGA"]], "zeppelin (viser.icon attribute)": [[32, "viser.Icon.ZEPPELIN"]], "zeppelin_off (viser.icon attribute)": [[32, "viser.Icon.ZEPPELIN_OFF"]], "zip (viser.icon attribute)": [[32, "viser.Icon.ZIP"]], "zodiac_aquarius (viser.icon attribute)": [[32, "viser.Icon.ZODIAC_AQUARIUS"]], "zodiac_aries (viser.icon attribute)": [[32, "viser.Icon.ZODIAC_ARIES"]], "zodiac_cancer (viser.icon attribute)": [[32, "viser.Icon.ZODIAC_CANCER"]], "zodiac_capricorn (viser.icon attribute)": [[32, "viser.Icon.ZODIAC_CAPRICORN"]], "zodiac_gemini (viser.icon attribute)": [[32, "viser.Icon.ZODIAC_GEMINI"]], "zodiac_leo (viser.icon attribute)": [[32, "viser.Icon.ZODIAC_LEO"]], "zodiac_libra (viser.icon attribute)": [[32, "viser.Icon.ZODIAC_LIBRA"]], "zodiac_pisces (viser.icon attribute)": [[32, "viser.Icon.ZODIAC_PISCES"]], "zodiac_sagittarius (viser.icon attribute)": [[32, "viser.Icon.ZODIAC_SAGITTARIUS"]], "zodiac_scorpio (viser.icon attribute)": [[32, "viser.Icon.ZODIAC_SCORPIO"]], "zodiac_taurus (viser.icon attribute)": [[32, "viser.Icon.ZODIAC_TAURUS"]], "zodiac_virgo (viser.icon attribute)": [[32, "viser.Icon.ZODIAC_VIRGO"]], "zoom_cancel (viser.icon attribute)": [[32, "viser.Icon.ZOOM_CANCEL"]], "zoom_check (viser.icon attribute)": [[32, "viser.Icon.ZOOM_CHECK"]], "zoom_check_filled (viser.icon attribute)": [[32, "viser.Icon.ZOOM_CHECK_FILLED"]], "zoom_code (viser.icon attribute)": [[32, "viser.Icon.ZOOM_CODE"]], "zoom_exclamation (viser.icon attribute)": [[32, "viser.Icon.ZOOM_EXCLAMATION"]], "zoom_filled (viser.icon attribute)": [[32, "viser.Icon.ZOOM_FILLED"]], "zoom_in (viser.icon attribute)": [[32, "viser.Icon.ZOOM_IN"]], "zoom_in_area (viser.icon attribute)": [[32, "viser.Icon.ZOOM_IN_AREA"]], "zoom_in_area_filled (viser.icon attribute)": [[32, "viser.Icon.ZOOM_IN_AREA_FILLED"]], "zoom_in_filled (viser.icon attribute)": [[32, "viser.Icon.ZOOM_IN_FILLED"]], "zoom_money (viser.icon attribute)": [[32, "viser.Icon.ZOOM_MONEY"]], "zoom_out (viser.icon attribute)": [[32, "viser.Icon.ZOOM_OUT"]], "zoom_out_area (viser.icon attribute)": [[32, "viser.Icon.ZOOM_OUT_AREA"]], "zoom_out_filled (viser.icon attribute)": [[32, "viser.Icon.ZOOM_OUT_FILLED"]], "zoom_pan (viser.icon attribute)": [[32, "viser.Icon.ZOOM_PAN"]], "zoom_question (viser.icon attribute)": [[32, "viser.Icon.ZOOM_QUESTION"]], "zoom_replace (viser.icon attribute)": [[32, "viser.Icon.ZOOM_REPLACE"]], "zoom_reset (viser.icon attribute)": [[32, "viser.Icon.ZOOM_RESET"]], "zzz (viser.icon attribute)": [[32, "viser.Icon.ZZZ"]], "zzz_off (viser.icon attribute)": [[32, "viser.Icon.ZZZ_OFF"]], "__new__() (viser.iconname method)": [[32, "viser.IconName.__new__"]], "message (class in viser.infra)": [[34, "viser.infra.Message"]], "typescriptannotationoverride (class in viser.infra)": [[34, "viser.infra.TypeScriptAnnotationOverride"]], "websockclientconnection (class in viser.infra)": [[34, "viser.infra.WebsockClientConnection"]], "websockmessagehandler (class in viser.infra)": [[34, "viser.infra.WebsockMessageHandler"]], "websockserver (class in viser.infra)": [[34, "viser.infra.WebsockServer"]], "annotation (viser.infra.typescriptannotationoverride attribute)": [[34, "viser.infra.TypeScriptAnnotationOverride.annotation"]], "as_serializable_dict() (viser.infra.message method)": [[34, "viser.infra.Message.as_serializable_dict"]], "atomic() (viser.infra.websockclientconnection method)": [[34, "viser.infra.WebsockClientConnection.atomic"]], "atomic() (viser.infra.websockmessagehandler method)": [[34, "viser.infra.WebsockMessageHandler.atomic"]], "atomic() (viser.infra.websockserver method)": [[34, "viser.infra.WebsockServer.atomic"]], "deserialize() (viser.infra.message class method)": [[34, "viser.infra.Message.deserialize"]], "excluded_self_client (viser.infra.message attribute)": [[34, "viser.infra.Message.excluded_self_client"]], "flush() (viser.infra.websockserver method)": [[34, "viser.infra.WebsockServer.flush"]], "flush_client() (viser.infra.websockserver method)": [[34, "viser.infra.WebsockServer.flush_client"]], "generate_typescript_interfaces() (in module viser.infra)": [[34, "viser.infra.generate_typescript_interfaces"]], "get_subclasses() (viser.infra.message class method)": [[34, "viser.infra.Message.get_subclasses"]], "on_client_connect() (viser.infra.websockserver method)": [[34, "viser.infra.WebsockServer.on_client_connect"]], "on_client_disconnect() (viser.infra.websockserver method)": [[34, "viser.infra.WebsockServer.on_client_disconnect"]], "queue_message() (viser.infra.websockclientconnection method)": [[34, "viser.infra.WebsockClientConnection.queue_message"]], "queue_message() (viser.infra.websockmessagehandler method)": [[34, "viser.infra.WebsockMessageHandler.queue_message"]], "queue_message() (viser.infra.websockserver method)": [[34, "viser.infra.WebsockServer.queue_message"]], "redundancy_key() (viser.infra.message method)": [[34, "viser.infra.Message.redundancy_key"]], "register_handler() (viser.infra.websockclientconnection method)": [[34, "viser.infra.WebsockClientConnection.register_handler"]], "register_handler() (viser.infra.websockmessagehandler method)": [[34, "viser.infra.WebsockMessageHandler.register_handler"]], "register_handler() (viser.infra.websockserver method)": [[34, "viser.infra.WebsockServer.register_handler"]], "start() (viser.infra.websockserver method)": [[34, "viser.infra.WebsockServer.start"]], "stop() (viser.infra.websockserver method)": [[34, "viser.infra.WebsockServer.stop"]], "unregister_handler() (viser.infra.websockclientconnection method)": [[34, "viser.infra.WebsockClientConnection.unregister_handler"]], "unregister_handler() (viser.infra.websockmessagehandler method)": [[34, "viser.infra.WebsockMessageHandler.unregister_handler"]], "unregister_handler() (viser.infra.websockserver method)": [[34, "viser.infra.WebsockServer.unregister_handler"]], "unsafe_send_message() (viser.infra.websockclientconnection method)": [[34, "viser.infra.WebsockClientConnection.unsafe_send_message"]], "unsafe_send_message() (viser.infra.websockmessagehandler method)": [[34, "viser.infra.WebsockMessageHandler.unsafe_send_message"]], "unsafe_send_message() (viser.infra.websockserver method)": [[34, "viser.infra.WebsockServer.unsafe_send_message"]], "viser.infra": [[34, "module-viser.infra"]], "sceneapi (class in viser)": [[35, "viser.SceneApi"]], "add_3d_gui_container() (viser.sceneapi method)": [[35, "viser.SceneApi.add_3d_gui_container"]], "add_batched_axes() (viser.sceneapi method)": [[35, "viser.SceneApi.add_batched_axes"]], "add_box() (viser.sceneapi method)": [[35, "viser.SceneApi.add_box"]], "add_camera_frustum() (viser.sceneapi method)": [[35, "viser.SceneApi.add_camera_frustum"]], "add_frame() (viser.sceneapi method)": [[35, "viser.SceneApi.add_frame"]], "add_glb() (viser.sceneapi method)": [[35, "viser.SceneApi.add_glb"]], "add_grid() (viser.sceneapi method)": [[35, "viser.SceneApi.add_grid"]], "add_icosphere() (viser.sceneapi method)": [[35, "viser.SceneApi.add_icosphere"]], "add_image() (viser.sceneapi method)": [[35, "viser.SceneApi.add_image"]], "add_label() (viser.sceneapi method)": [[35, "viser.SceneApi.add_label"]], "add_mesh_simple() (viser.sceneapi method)": [[35, "viser.SceneApi.add_mesh_simple"]], "add_mesh_trimesh() (viser.sceneapi method)": [[35, "viser.SceneApi.add_mesh_trimesh"]], "add_point_cloud() (viser.sceneapi method)": [[35, "viser.SceneApi.add_point_cloud"]], "add_spline_catmull_rom() (viser.sceneapi method)": [[35, "viser.SceneApi.add_spline_catmull_rom"]], "add_spline_cubic_bezier() (viser.sceneapi method)": [[35, "viser.SceneApi.add_spline_cubic_bezier"]], "add_transform_controls() (viser.sceneapi method)": [[35, "viser.SceneApi.add_transform_controls"]], "on_pointer_callback_removed() (viser.sceneapi method)": [[35, "viser.SceneApi.on_pointer_callback_removed"]], "on_pointer_event() (viser.sceneapi method)": [[35, "viser.SceneApi.on_pointer_event"]], "remove_pointer_callback() (viser.sceneapi method)": [[35, "viser.SceneApi.remove_pointer_callback"]], "reset() (viser.sceneapi method)": [[35, "viser.SceneApi.reset"]], "set_background_image() (viser.sceneapi method)": [[35, "viser.SceneApi.set_background_image"]], "set_global_visibility() (viser.sceneapi method)": [[35, "viser.SceneApi.set_global_visibility"]], "set_up_direction() (viser.sceneapi method)": [[35, "viser.SceneApi.set_up_direction"]], "world_axes (viser.sceneapi attribute)": [[35, "viser.SceneApi.world_axes"]], "batchedaxeshandle (class in viser)": [[36, "viser.BatchedAxesHandle"]], "camerafrustumhandle (class in viser)": [[36, "viser.CameraFrustumHandle"]], "framehandle (class in viser)": [[36, "viser.FrameHandle"]], "glbhandle (class in viser)": [[36, "viser.GlbHandle"]], "gui3dcontainerhandle (class in viser)": [[36, "viser.Gui3dContainerHandle"]], "imagehandle (class in viser)": [[36, "viser.ImageHandle"]], "labelhandle (class in viser)": [[36, "viser.LabelHandle"]], "meshhandle (class in viser)": [[36, "viser.MeshHandle"]], "pointcloudhandle (class in viser)": [[36, "viser.PointCloudHandle"]], "scenenodehandle (class in viser)": [[36, "viser.SceneNodeHandle"]], "transformcontrolshandle (class in viser)": [[36, "viser.TransformControlsHandle"]], "on_click() (viser.batchedaxeshandle method)": [[36, "viser.BatchedAxesHandle.on_click"]], "on_click() (viser.camerafrustumhandle method)": [[36, "viser.CameraFrustumHandle.on_click"]], "on_click() (viser.framehandle method)": [[36, "viser.FrameHandle.on_click"]], "on_click() (viser.glbhandle method)": [[36, "viser.GlbHandle.on_click"]], "on_click() (viser.imagehandle method)": [[36, "viser.ImageHandle.on_click"]], "on_click() (viser.meshhandle method)": [[36, "viser.MeshHandle.on_click"]], "on_click() (viser.transformcontrolshandle method)": [[36, "viser.TransformControlsHandle.on_click"]], "on_update() (viser.transformcontrolshandle method)": [[36, "viser.TransformControlsHandle.on_update"]], "position (viser.batchedaxeshandle property)": [[36, "viser.BatchedAxesHandle.position"]], "position (viser.camerafrustumhandle property)": [[36, "viser.CameraFrustumHandle.position"]], "position (viser.framehandle property)": [[36, "viser.FrameHandle.position"]], "position (viser.glbhandle property)": [[36, "viser.GlbHandle.position"]], "position (viser.gui3dcontainerhandle property)": [[36, "viser.Gui3dContainerHandle.position"]], "position (viser.imagehandle property)": [[36, "viser.ImageHandle.position"]], "position (viser.labelhandle property)": [[36, "viser.LabelHandle.position"]], "position (viser.meshhandle property)": [[36, "viser.MeshHandle.position"]], "position (viser.pointcloudhandle property)": [[36, "viser.PointCloudHandle.position"]], "position (viser.scenenodehandle property)": [[36, "viser.SceneNodeHandle.position"]], "position (viser.transformcontrolshandle property)": [[36, "viser.TransformControlsHandle.position"]], "remove() (viser.batchedaxeshandle method)": [[36, "viser.BatchedAxesHandle.remove"]], "remove() (viser.camerafrustumhandle method)": [[36, "viser.CameraFrustumHandle.remove"]], "remove() (viser.framehandle method)": [[36, "viser.FrameHandle.remove"]], "remove() (viser.glbhandle method)": [[36, "viser.GlbHandle.remove"]], "remove() (viser.gui3dcontainerhandle method)": [[36, "viser.Gui3dContainerHandle.remove"]], "remove() (viser.imagehandle method)": [[36, "viser.ImageHandle.remove"]], "remove() (viser.labelhandle method)": [[36, "viser.LabelHandle.remove"]], "remove() (viser.meshhandle method)": [[36, "viser.MeshHandle.remove"]], "remove() (viser.pointcloudhandle method)": [[36, "viser.PointCloudHandle.remove"]], "remove() (viser.scenenodehandle method)": [[36, "viser.SceneNodeHandle.remove"]], "remove() (viser.transformcontrolshandle method)": [[36, "viser.TransformControlsHandle.remove"]], "update_timestamp (viser.transformcontrolshandle property)": [[36, "viser.TransformControlsHandle.update_timestamp"]], "visible (viser.batchedaxeshandle property)": [[36, "viser.BatchedAxesHandle.visible"]], "visible (viser.camerafrustumhandle property)": [[36, "viser.CameraFrustumHandle.visible"]], "visible (viser.framehandle property)": [[36, "viser.FrameHandle.visible"]], "visible (viser.glbhandle property)": [[36, "viser.GlbHandle.visible"]], "visible (viser.gui3dcontainerhandle property)": [[36, "viser.Gui3dContainerHandle.visible"]], "visible (viser.imagehandle property)": [[36, "viser.ImageHandle.visible"]], "visible (viser.labelhandle property)": [[36, "viser.LabelHandle.visible"]], "visible (viser.meshhandle property)": [[36, "viser.MeshHandle.visible"]], "visible (viser.pointcloudhandle property)": [[36, "viser.PointCloudHandle.visible"]], "visible (viser.scenenodehandle property)": [[36, "viser.SceneNodeHandle.visible"]], "visible (viser.transformcontrolshandle property)": [[36, "viser.TransformControlsHandle.visible"]], "wxyz (viser.batchedaxeshandle property)": [[36, "viser.BatchedAxesHandle.wxyz"]], "wxyz (viser.camerafrustumhandle property)": [[36, "viser.CameraFrustumHandle.wxyz"]], "wxyz (viser.framehandle property)": [[36, "viser.FrameHandle.wxyz"]], "wxyz (viser.glbhandle property)": [[36, "viser.GlbHandle.wxyz"]], "wxyz (viser.gui3dcontainerhandle property)": [[36, "viser.Gui3dContainerHandle.wxyz"]], "wxyz (viser.imagehandle property)": [[36, "viser.ImageHandle.wxyz"]], "wxyz (viser.labelhandle property)": [[36, "viser.LabelHandle.wxyz"]], "wxyz (viser.meshhandle property)": [[36, "viser.MeshHandle.wxyz"]], "wxyz (viser.pointcloudhandle property)": [[36, "viser.PointCloudHandle.wxyz"]], "wxyz (viser.scenenodehandle property)": [[36, "viser.SceneNodeHandle.wxyz"]], "wxyz (viser.transformcontrolshandle property)": [[36, "viser.TransformControlsHandle.wxyz"]], "viserserver (class in viser)": [[37, "viser.ViserServer"]], "atomic() (viser.viserserver method)": [[37, "viser.ViserServer.atomic"]], "disconnect_share_url() (viser.viserserver method)": [[37, "viser.ViserServer.disconnect_share_url"]], "flush() (viser.viserserver method)": [[37, "viser.ViserServer.flush"]], "get_clients() (viser.viserserver method)": [[37, "viser.ViserServer.get_clients"]], "get_host() (viser.viserserver method)": [[37, "viser.ViserServer.get_host"]], "get_port() (viser.viserserver method)": [[37, "viser.ViserServer.get_port"]], "gui (viser.viserserver attribute)": [[37, "viser.ViserServer.gui"]], "on_client_connect() (viser.viserserver method)": [[37, "viser.ViserServer.on_client_connect"]], "on_client_disconnect() (viser.viserserver method)": [[37, "viser.ViserServer.on_client_disconnect"]], "request_share_url() (viser.viserserver method)": [[37, "viser.ViserServer.request_share_url"]], "scene (viser.viserserver attribute)": [[37, "viser.ViserServer.scene"]], "send_file_download() (viser.viserserver method)": [[37, "viser.ViserServer.send_file_download"]], "stop() (viser.viserserver method)": [[37, "viser.ViserServer.stop"]], "matrixliegroup (class in viser.transforms)": [[38, "viser.transforms.MatrixLieGroup"]], "se2 (class in viser.transforms)": [[38, "viser.transforms.SE2"]], "se3 (class in viser.transforms)": [[38, "viser.transforms.SE3"]], "sebase (class in viser.transforms)": [[38, "viser.transforms.SEBase"]], "so2 (class in viser.transforms)": [[38, "viser.transforms.SO2"]], "so3 (class in viser.transforms)": [[38, "viser.transforms.SO3"]], "sobase (class in viser.transforms)": [[38, "viser.transforms.SOBase"]], "__matmul__() (viser.transforms.matrixliegroup method)": [[38, "viser.transforms.MatrixLieGroup.__matmul__"]], "__matmul__() (viser.transforms.se2 method)": [[38, "viser.transforms.SE2.__matmul__"]], "__matmul__() (viser.transforms.se3 method)": [[38, "viser.transforms.SE3.__matmul__"]], "__matmul__() (viser.transforms.sebase method)": [[38, "viser.transforms.SEBase.__matmul__"]], "__matmul__() (viser.transforms.so2 method)": [[38, "viser.transforms.SO2.__matmul__"]], "__matmul__() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.__matmul__"]], "__matmul__() (viser.transforms.sobase method)": [[38, "viser.transforms.SOBase.__matmul__"]], "adjoint() (viser.transforms.matrixliegroup method)": [[38, "viser.transforms.MatrixLieGroup.adjoint"]], "adjoint() (viser.transforms.se2 method)": [[38, "viser.transforms.SE2.adjoint"]], "adjoint() (viser.transforms.se3 method)": [[38, "viser.transforms.SE3.adjoint"]], "adjoint() (viser.transforms.sebase method)": [[38, "viser.transforms.SEBase.adjoint"]], "adjoint() (viser.transforms.so2 method)": [[38, "viser.transforms.SO2.adjoint"]], "adjoint() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.adjoint"]], "adjoint() (viser.transforms.sobase method)": [[38, "viser.transforms.SOBase.adjoint"]], "apply() (viser.transforms.matrixliegroup method)": [[38, "viser.transforms.MatrixLieGroup.apply"]], "apply() (viser.transforms.se2 method)": [[38, "viser.transforms.SE2.apply"]], "apply() (viser.transforms.se3 method)": [[38, "viser.transforms.SE3.apply"]], "apply() (viser.transforms.sebase method)": [[38, "viser.transforms.SEBase.apply"]], "apply() (viser.transforms.so2 method)": [[38, "viser.transforms.SO2.apply"]], "apply() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.apply"]], "apply() (viser.transforms.sobase method)": [[38, "viser.transforms.SOBase.apply"]], "as_matrix() (viser.transforms.matrixliegroup method)": [[38, "viser.transforms.MatrixLieGroup.as_matrix"]], "as_matrix() (viser.transforms.se2 method)": [[38, "viser.transforms.SE2.as_matrix"]], "as_matrix() (viser.transforms.se3 method)": [[38, "viser.transforms.SE3.as_matrix"]], "as_matrix() (viser.transforms.sebase method)": [[38, "viser.transforms.SEBase.as_matrix"]], "as_matrix() (viser.transforms.so2 method)": [[38, "viser.transforms.SO2.as_matrix"]], "as_matrix() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.as_matrix"]], "as_matrix() (viser.transforms.sobase method)": [[38, "viser.transforms.SOBase.as_matrix"]], "as_quaternion_xyzw() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.as_quaternion_xyzw"]], "as_radians() (viser.transforms.so2 method)": [[38, "viser.transforms.SO2.as_radians"]], "as_rpy_radians() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.as_rpy_radians"]], "compute_pitch_radians() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.compute_pitch_radians"]], "compute_roll_radians() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.compute_roll_radians"]], "compute_yaw_radians() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.compute_yaw_radians"]], "exp() (viser.transforms.matrixliegroup class method)": [[38, "viser.transforms.MatrixLieGroup.exp"]], "exp() (viser.transforms.se2 class method)": [[38, "viser.transforms.SE2.exp"]], "exp() (viser.transforms.se3 class method)": [[38, "viser.transforms.SE3.exp"]], "exp() (viser.transforms.sebase class method)": [[38, "viser.transforms.SEBase.exp"]], "exp() (viser.transforms.so2 class method)": [[38, "viser.transforms.SO2.exp"]], "exp() (viser.transforms.so3 class method)": [[38, "viser.transforms.SO3.exp"]], "exp() (viser.transforms.sobase class method)": [[38, "viser.transforms.SOBase.exp"]], "from_matrix() (viser.transforms.matrixliegroup class method)": [[38, "viser.transforms.MatrixLieGroup.from_matrix"]], "from_matrix() (viser.transforms.se2 class method)": [[38, "viser.transforms.SE2.from_matrix"]], "from_matrix() (viser.transforms.se3 class method)": [[38, "viser.transforms.SE3.from_matrix"]], "from_matrix() (viser.transforms.sebase class method)": [[38, "viser.transforms.SEBase.from_matrix"]], "from_matrix() (viser.transforms.so2 class method)": [[38, "viser.transforms.SO2.from_matrix"]], "from_matrix() (viser.transforms.so3 class method)": [[38, "viser.transforms.SO3.from_matrix"]], "from_matrix() (viser.transforms.sobase class method)": [[38, "viser.transforms.SOBase.from_matrix"]], "from_quaternion_xyzw() (viser.transforms.so3 static method)": [[38, "viser.transforms.SO3.from_quaternion_xyzw"]], "from_radians() (viser.transforms.so2 static method)": [[38, "viser.transforms.SO2.from_radians"]], "from_rotation() (viser.transforms.se2 class method)": [[38, "viser.transforms.SE2.from_rotation"]], "from_rotation() (viser.transforms.se3 class method)": [[38, "viser.transforms.SE3.from_rotation"]], "from_rotation() (viser.transforms.sebase class method)": [[38, "viser.transforms.SEBase.from_rotation"]], "from_rotation_and_translation() (viser.transforms.se2 class method)": [[38, "viser.transforms.SE2.from_rotation_and_translation"]], "from_rotation_and_translation() (viser.transforms.se3 class method)": [[38, "viser.transforms.SE3.from_rotation_and_translation"]], "from_rotation_and_translation() (viser.transforms.sebase class method)": [[38, "viser.transforms.SEBase.from_rotation_and_translation"]], "from_rpy_radians() (viser.transforms.so3 static method)": [[38, "viser.transforms.SO3.from_rpy_radians"]], "from_translation() (viser.transforms.se2 class method)": [[38, "viser.transforms.SE2.from_translation"]], "from_translation() (viser.transforms.se3 class method)": [[38, "viser.transforms.SE3.from_translation"]], "from_translation() (viser.transforms.sebase class method)": [[38, "viser.transforms.SEBase.from_translation"]], "from_x_radians() (viser.transforms.so3 static method)": [[38, "viser.transforms.SO3.from_x_radians"]], "from_xy_theta() (viser.transforms.se2 static method)": [[38, "viser.transforms.SE2.from_xy_theta"]], "from_y_radians() (viser.transforms.so3 static method)": [[38, "viser.transforms.SO3.from_y_radians"]], "from_z_radians() (viser.transforms.so3 static method)": [[38, "viser.transforms.SO3.from_z_radians"]], "get_batch_axes() (viser.transforms.matrixliegroup method)": [[38, "viser.transforms.MatrixLieGroup.get_batch_axes"]], "get_batch_axes() (viser.transforms.se2 method)": [[38, "viser.transforms.SE2.get_batch_axes"]], "get_batch_axes() (viser.transforms.se3 method)": [[38, "viser.transforms.SE3.get_batch_axes"]], "get_batch_axes() (viser.transforms.sebase method)": [[38, "viser.transforms.SEBase.get_batch_axes"]], "get_batch_axes() (viser.transforms.so2 method)": [[38, "viser.transforms.SO2.get_batch_axes"]], "get_batch_axes() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.get_batch_axes"]], "get_batch_axes() (viser.transforms.sobase method)": [[38, "viser.transforms.SOBase.get_batch_axes"]], "identity() (viser.transforms.matrixliegroup class method)": [[38, "viser.transforms.MatrixLieGroup.identity"]], "identity() (viser.transforms.se2 class method)": [[38, "viser.transforms.SE2.identity"]], "identity() (viser.transforms.se3 class method)": [[38, "viser.transforms.SE3.identity"]], "identity() (viser.transforms.sebase class method)": [[38, "viser.transforms.SEBase.identity"]], "identity() (viser.transforms.so2 class method)": [[38, "viser.transforms.SO2.identity"]], "identity() (viser.transforms.so3 class method)": [[38, "viser.transforms.SO3.identity"]], "identity() (viser.transforms.sobase class method)": [[38, "viser.transforms.SOBase.identity"]], "inverse() (viser.transforms.matrixliegroup method)": [[38, "viser.transforms.MatrixLieGroup.inverse"]], "inverse() (viser.transforms.se2 method)": [[38, "viser.transforms.SE2.inverse"]], "inverse() (viser.transforms.se3 method)": [[38, "viser.transforms.SE3.inverse"]], "inverse() (viser.transforms.sebase method)": [[38, "viser.transforms.SEBase.inverse"]], "inverse() (viser.transforms.so2 method)": [[38, "viser.transforms.SO2.inverse"]], "inverse() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.inverse"]], "inverse() (viser.transforms.sobase method)": [[38, "viser.transforms.SOBase.inverse"]], "log() (viser.transforms.matrixliegroup method)": [[38, "viser.transforms.MatrixLieGroup.log"]], "log() (viser.transforms.se2 method)": [[38, "viser.transforms.SE2.log"]], "log() (viser.transforms.se3 method)": [[38, "viser.transforms.SE3.log"]], "log() (viser.transforms.sebase method)": [[38, "viser.transforms.SEBase.log"]], "log() (viser.transforms.so2 method)": [[38, "viser.transforms.SO2.log"]], "log() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.log"]], "log() (viser.transforms.sobase method)": [[38, "viser.transforms.SOBase.log"]], "matrix_dim (viser.transforms.matrixliegroup attribute)": [[38, "viser.transforms.MatrixLieGroup.matrix_dim"]], "matrix_dim (viser.transforms.se2 attribute)": [[38, "viser.transforms.SE2.matrix_dim"]], "matrix_dim (viser.transforms.se3 attribute)": [[38, "viser.transforms.SE3.matrix_dim"]], "matrix_dim (viser.transforms.sebase attribute)": [[38, "viser.transforms.SEBase.matrix_dim"]], "matrix_dim (viser.transforms.so2 attribute)": [[38, "viser.transforms.SO2.matrix_dim"]], "matrix_dim (viser.transforms.so3 attribute)": [[38, "viser.transforms.SO3.matrix_dim"]], "matrix_dim (viser.transforms.sobase attribute)": [[38, "viser.transforms.SOBase.matrix_dim"]], "multiply() (viser.transforms.matrixliegroup method)": [[38, "viser.transforms.MatrixLieGroup.multiply"]], "multiply() (viser.transforms.se2 method)": [[38, "viser.transforms.SE2.multiply"]], "multiply() (viser.transforms.se3 method)": [[38, "viser.transforms.SE3.multiply"]], "multiply() (viser.transforms.sebase method)": [[38, "viser.transforms.SEBase.multiply"]], "multiply() (viser.transforms.so2 method)": [[38, "viser.transforms.SO2.multiply"]], "multiply() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.multiply"]], "multiply() (viser.transforms.sobase method)": [[38, "viser.transforms.SOBase.multiply"]], "normalize() (viser.transforms.matrixliegroup method)": [[38, "viser.transforms.MatrixLieGroup.normalize"]], "normalize() (viser.transforms.se2 method)": [[38, "viser.transforms.SE2.normalize"]], "normalize() (viser.transforms.se3 method)": [[38, "viser.transforms.SE3.normalize"]], "normalize() (viser.transforms.sebase method)": [[38, "viser.transforms.SEBase.normalize"]], "normalize() (viser.transforms.so2 method)": [[38, "viser.transforms.SO2.normalize"]], "normalize() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.normalize"]], "normalize() (viser.transforms.sobase method)": [[38, "viser.transforms.SOBase.normalize"]], "parameters() (viser.transforms.matrixliegroup method)": [[38, "viser.transforms.MatrixLieGroup.parameters"]], "parameters() (viser.transforms.se2 method)": [[38, "viser.transforms.SE2.parameters"]], "parameters() (viser.transforms.se3 method)": [[38, "viser.transforms.SE3.parameters"]], "parameters() (viser.transforms.sebase method)": [[38, "viser.transforms.SEBase.parameters"]], "parameters() (viser.transforms.so2 method)": [[38, "viser.transforms.SO2.parameters"]], "parameters() (viser.transforms.so3 method)": [[38, "viser.transforms.SO3.parameters"]], "parameters() (viser.transforms.sobase method)": [[38, "viser.transforms.SOBase.parameters"]], "parameters_dim (viser.transforms.matrixliegroup attribute)": [[38, "viser.transforms.MatrixLieGroup.parameters_dim"]], "parameters_dim (viser.transforms.se2 attribute)": [[38, "viser.transforms.SE2.parameters_dim"]], "parameters_dim (viser.transforms.se3 attribute)": [[38, "viser.transforms.SE3.parameters_dim"]], "parameters_dim (viser.transforms.sebase attribute)": [[38, "viser.transforms.SEBase.parameters_dim"]], "parameters_dim (viser.transforms.so2 attribute)": [[38, "viser.transforms.SO2.parameters_dim"]], "parameters_dim (viser.transforms.so3 attribute)": [[38, "viser.transforms.SO3.parameters_dim"]], "parameters_dim (viser.transforms.sobase attribute)": [[38, "viser.transforms.SOBase.parameters_dim"]], "rotation() (viser.transforms.se2 method)": [[38, "viser.transforms.SE2.rotation"]], "rotation() (viser.transforms.se3 method)": [[38, "viser.transforms.SE3.rotation"]], "rotation() (viser.transforms.sebase method)": [[38, "viser.transforms.SEBase.rotation"]], "space_dim (viser.transforms.matrixliegroup attribute)": [[38, "viser.transforms.MatrixLieGroup.space_dim"]], "space_dim (viser.transforms.se2 attribute)": [[38, "viser.transforms.SE2.space_dim"]], "space_dim (viser.transforms.se3 attribute)": [[38, "viser.transforms.SE3.space_dim"]], "space_dim (viser.transforms.sebase attribute)": [[38, "viser.transforms.SEBase.space_dim"]], "space_dim (viser.transforms.so2 attribute)": [[38, "viser.transforms.SO2.space_dim"]], "space_dim (viser.transforms.so3 attribute)": [[38, "viser.transforms.SO3.space_dim"]], "space_dim (viser.transforms.sobase attribute)": [[38, "viser.transforms.SOBase.space_dim"]], "tangent_dim (viser.transforms.matrixliegroup attribute)": [[38, "viser.transforms.MatrixLieGroup.tangent_dim"]], "tangent_dim (viser.transforms.se2 attribute)": [[38, "viser.transforms.SE2.tangent_dim"]], "tangent_dim (viser.transforms.se3 attribute)": [[38, "viser.transforms.SE3.tangent_dim"]], "tangent_dim (viser.transforms.sebase attribute)": [[38, "viser.transforms.SEBase.tangent_dim"]], "tangent_dim (viser.transforms.so2 attribute)": [[38, "viser.transforms.SO2.tangent_dim"]], "tangent_dim (viser.transforms.so3 attribute)": [[38, "viser.transforms.SO3.tangent_dim"]], "tangent_dim (viser.transforms.sobase attribute)": [[38, "viser.transforms.SOBase.tangent_dim"]], "translation() (viser.transforms.se2 method)": [[38, "viser.transforms.SE2.translation"]], "translation() (viser.transforms.se3 method)": [[38, "viser.transforms.SE3.translation"]], "translation() (viser.transforms.sebase method)": [[38, "viser.transforms.SEBase.translation"]], "unit_complex (viser.transforms.so2 attribute)": [[38, "viser.transforms.SO2.unit_complex"]], "unit_complex_xy (viser.transforms.se2 attribute)": [[38, "viser.transforms.SE2.unit_complex_xy"]], "viser.transforms": [[38, "module-viser.transforms"]], "wxyz (viser.transforms.so3 attribute)": [[38, "viser.transforms.SO3.wxyz"]], "wxyz_xyz (viser.transforms.se3 attribute)": [[38, "viser.transforms.SE3.wxyz_xyz"]]}}) \ No newline at end of file diff --git a/latest/server/index.html b/latest/server/index.html index b730ca2d2..0121878ba 100644 --- a/latest/server/index.html +++ b/latest/server/index.html @@ -260,7 +260,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer
  • diff --git a/latest/transforms/index.html b/latest/transforms/index.html index 062da981b..763b318ab 100644 --- a/latest/transforms/index.html +++ b/latest/transforms/index.html @@ -260,7 +260,7 @@
  • Camera commands
  • Meshes
  • Record3D visualizer
  • -
  • Visualizer for SMPL human body models. Requires a .npz model file.
  • +
  • SMPL model visualizer
  • Robot URDF visualizer
  • RealSense visualizer
  • COLMAP visualizer