file_path
stringlengths
21
224
content
stringlengths
0
80.8M
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/pipeline/test_instance_mapping.py
import carb from pxr import Gf, UsdGeom, UsdLux, Sdf import omni.hydratexture import omni.kit.test from omni.syntheticdata import SyntheticData, SyntheticDataStage # Test the instance mapping pipeline class TestInstanceMapping(omni.kit.test.AsyncTestCase): def __init__(self, methodName: str) -> None: super().__init__(methodName=methodName) def render_product_path(self, hydra_texture) -> str: '''Return a string to the UsdRender.Product used by the texture''' render_product = hydra_texture.get_render_product_path() if render_product and (not render_product.startswith('/')): render_product = '/Render/RenderProduct_' + render_product return render_product def register_test_instance_mapping_pipeline(self): sdg_iface = SyntheticData.Get() if not sdg_iface.is_node_template_registered("TestSimSWHFrameNumber"): sdg_iface.register_node_template( SyntheticData.NodeTemplate( SyntheticDataStage.SIMULATION, "omni.syntheticdata.SdUpdateSwFrameNumber" ), template_name="TestSimSWHFrameNumber" ) if not sdg_iface.is_node_template_registered("TestSimInstanceMapping"): sdg_iface.register_node_template( SyntheticData.NodeTemplate( SyntheticDataStage.SIMULATION, "omni.syntheticdata.SdTestInstanceMapping", [ SyntheticData.NodeConnectionTemplate("TestSimSWHFrameNumber", ()) ], {"inputs:stage":"simulation"} ), template_name="TestSimInstanceMapping" ) if not sdg_iface.is_node_template_registered("TestOnDemandInstanceMapping"): sdg_iface.register_node_template( SyntheticData.NodeTemplate( SyntheticDataStage.ON_DEMAND, "omni.syntheticdata.SdTestInstanceMapping", [ SyntheticData.NodeConnectionTemplate("InstanceMappingPtrWithTransforms"), SyntheticData.NodeConnectionTemplate("TestSimInstanceMapping", (), attributes_mapping={"outputs:exec": "inputs:exec"}) ], {"inputs:stage":"ondemand"} ), template_name="TestOnDemandInstanceMapping" ) def activate_test_instance_mapping_pipeline(self, case_index): sdg_iface = SyntheticData.Get() sdg_iface.activate_node_template("TestSimInstanceMapping", attributes={"inputs:testCaseIndex":case_index}) sdg_iface.activate_node_template("TestOnDemandInstanceMapping", 0, [self.render_product_path(self._hydra_texture_0)], {"inputs:testCaseIndex":case_index}) sdg_iface.connect_node_template("TestSimInstanceMapping", "InstanceMappingPre", None, {"outputs:semanticFilterPredicate":"inputs:semanticFilterPredicate"}) async def wait_for_num_frames(self, num_frames, max_num_frames=5000): self._hydra_texture_rendered_counter = 0 wait_frames_left = max_num_frames while (self._hydra_texture_rendered_counter < num_frames) and (wait_frames_left > 0): await omni.kit.app.get_app().next_update_async() wait_frames_left -= 1 async def setUp(self): self._settings = carb.settings.acquire_settings_interface() self._hydra_texture_factory = omni.hydratexture.acquire_hydra_texture_factory_interface() self._usd_context_name = '' self._usd_context = omni.usd.get_context(self._usd_context_name) await self._usd_context.new_stage_async() # renderer renderer = "rtx" if renderer not in self._usd_context.get_attached_hydra_engine_names(): omni.usd.add_hydra_engine(renderer, self._usd_context) # create the hydra textures self._hydra_texture_0 = self._hydra_texture_factory.create_hydra_texture( "TEX0", 1920, 1080, self._usd_context_name, hydra_engine_name=renderer, is_async=self._settings.get("/app/asyncRendering") ) self._hydra_texture_rendered_counter = 0 def on_hydra_texture_0(event: carb.events.IEvent): self._hydra_texture_rendered_counter += 1 self._hydra_texture_rendered_counter_sub = self._hydra_texture_0.get_event_stream().create_subscription_to_push_by_type( omni.hydratexture.EVENT_TYPE_DRAWABLE_CHANGED, on_hydra_texture_0, name='async rendering test drawable update', ) self.register_test_instance_mapping_pipeline() async def tearDown(self): self._hydra_texture_rendered_counter_sub = None self._hydra_texture_0 = None self._usd_context.close_stage() omni.usd.release_all_hydra_engines(self._usd_context) self._hydra_texture_factory = None self._settings = None wait_iterations = 6 for _ in range(wait_iterations): await omni.kit.app.get_app().next_update_async() async def test_case_0(self): self.activate_test_instance_mapping_pipeline(0) await self.wait_for_num_frames(11) async def test_case_1(self): self.activate_test_instance_mapping_pipeline(1) await self.wait_for_num_frames(11) async def test_case_2(self): self.activate_test_instance_mapping_pipeline(2) await self.wait_for_num_frames(11) async def test_case_3(self): self.activate_test_instance_mapping_pipeline(3) await self.wait_for_num_frames(11) async def test_case_4(self): self.activate_test_instance_mapping_pipeline(4) await self.wait_for_num_frames(11)
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/sensors/test_motion_vector.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import os import math import asyncio from PIL import Image from time import time from pathlib import Path import carb import numpy as np from numpy.lib.arraysetops import unique import unittest import omni.kit.test from omni.kit.viewport.utility import get_active_viewport from pxr import Gf, UsdGeom # Import extension python module we are testing with absolute import path, as if we are external user (other extension) import omni.syntheticdata as syn from ..utils import add_semantics FILE_DIR = os.path.dirname(os.path.realpath(__file__)) TIMEOUT = 200 # Having a test class derived from omni.kit.test.AsyncTestCase declared on the root of module will make it auto-discoverable by omni.kit.test class TestMotionVector(omni.kit.test.AsyncTestCase): def __init__(self, methodName: str) -> None: super().__init__(methodName=methodName) self.golden_image_path = Path(os.path.dirname(os.path.abspath(__file__))) / ".." / "data" / "golden" self.output_image_path = Path(os.path.dirname(os.path.abspath(__file__))) / ".." / "data" / "output" def writeDataToImage(self, data, name): if not os.path.isdir(self.output_image_path): os.mkdir(self.output_image_path) data = ((data + 1.0) / 2) * 255 outputPath = str(self.output_image_path) + "/" + name + ".png" print("Writing data to " + outputPath) Image.fromarray(data.astype(np.uint8), "RGBA").save(outputPath) # Before running each test async def setUp(self): np.random.seed(1234) # Setup viewport self.viewport = get_active_viewport() # Initialize Sensor await omni.usd.get_context().new_stage_async() stage = omni.usd.get_context().get_stage() await omni.kit.app.get_app().next_update_async() await syn.sensors.create_or_retrieve_sensor_async(self.viewport, syn._syntheticdata.SensorType.MotionVector) async def test_empty(self): """ Test motion vector sensor on empty stage. """ await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_motion_vector(self.viewport) allChannelsAreZero = np.allclose(data, 0, atol=0.001) if not allChannelsAreZero: self.writeDataToImage(data, "test_empty") assert allChannelsAreZero async def test_dtype(self): stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_motion_vector(self.viewport) assert data.dtype == np.float32 async def test_unmoving_cube(self): stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") cube.GetAttribute("size").Set(100) cube.GetAttribute("primvars:displayColor").Set([(0, 0, 1)]) UsdGeom.Xformable(cube).AddTranslateOp() cube.GetAttribute("xformOp:translate").Set((350, 365, 350), time=0) await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_motion_vector(self.viewport) # 4th channel will wary based on geo hit, so we ignore checking it here rgbChannelsAreZero = np.allclose(data[:, [0, 1, 2]], 0, atol=0.001) if not rgbChannelsAreZero: self.writeDataToImage(data, "test_unmoving_cube") assert rgbChannelsAreZero @unittest.skip("OM-44310") async def test_partially_disoccluding_cube(self): # disabling temporarly the test for OMNI-GRAPH support : OM-44310 stage = omni.usd.get_context().get_stage() stage.SetStartTimeCode(0) stage.SetEndTimeCode(100) cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") cube.GetAttribute("size").Set(10) cube.GetAttribute("primvars:displayColor").Set([(0, 0, 1)]) # add translation down to create disocclusion due to fetching from out of screen bounds UsdGeom.Xformable(cube).AddTranslateOp() cube.GetAttribute("xformOp:translate").Set((480, 487, 480), time=0) cube.GetAttribute("xformOp:translate").Set((480, 480, 480), time=0.001) # add rotation around up vector to create disocclusion due to fetching from an incompatible surface UsdGeom.Xformable(cube).AddRotateYOp() cube.GetAttribute("xformOp:rotateY").Set(40, time=0) cube.GetAttribute("xformOp:rotateY").Set(70, time=0.001) await omni.kit.app.get_app().next_update_async() # Render one frame itl = omni.timeline.get_timeline_interface() itl.play() await syn.sensors.next_sensor_data_async(self.viewport, True) data = syn.sensors.get_motion_vector(self.viewport) golden_image = np.load(self.golden_image_path / "motion_partially_disoccluding_cube.npz")["array"] # normalize xy (mvec) to zw channels' value range # x100 seems like a good number to bring mvecs to ~1 data[:, [0, 1]] *= 100 golden_image[:, [0, 1]] *= 100 std_dev = np.sqrt(np.square(data - golden_image).astype(float).mean()) # OM-41605 - using higher std dev here to make linux run succeed std_dev_tolerance = 0.12 print("Calculated std.dev: " + str(std_dev), " Std dev tolerance: " + str(std_dev_tolerance)) if std_dev >= std_dev_tolerance: self.writeDataToImage(golden_image, "test_partially_disoccluding_cube_golden") self.writeDataToImage(data, "test_partially_disoccluding_cube") np.savez_compressed(self.output_image_path / "motion_partially_disoccluding_cube.npz", array=data) assert std_dev < std_dev_tolerance # After running each test async def tearDown(self): pass
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/sensors/test_occlusion.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import os import math from time import time from pathlib import Path import carb import numpy as np import unittest import omni.kit.test from omni.kit.viewport.utility import get_active_viewport from pxr import UsdGeom, Sdf # Import extension python module we are testing with absolute import path, as if we are external user (other extension) import omni.syntheticdata as syn from ..utils import add_semantics FILE_DIR = os.path.dirname(os.path.realpath(__file__)) TIMEOUT = 200 # Having a test class derived from omni.kit.test.AsyncTestCase declared on the root of module will make it auto-discoverable by omni.kit.test class TestOcclusion(omni.kit.test.AsyncTestCase): def __init__(self, methodName: str) -> None: super().__init__(methodName=methodName) self.golden_image_path = Path(os.path.dirname(os.path.abspath(__file__))) / ".." / "data" / "golden" # Before running each test async def setUp(self): await omni.usd.get_context().new_stage_async() stage = omni.usd.get_context().get_stage() self.viewport = get_active_viewport() # Initialize Sensors syn.sensors.enable_sensors( self.viewport, [ syn._syntheticdata.SensorType.BoundingBox2DLoose, syn._syntheticdata.SensorType.BoundingBox2DTight, syn._syntheticdata.SensorType.Occlusion, ], ) await syn.sensors.next_sensor_data_async(self.viewport,True) async def test_fields_exist(self): stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_occlusion(self.viewport) valid_dtype = [("instanceId", "<u4"), ("semanticId", "<u4"), ("occlusionRatio", "<f4")] assert data.dtype == np.dtype(valid_dtype) async def test_fields_exist_parsed(self): stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_occlusion(self.viewport, parsed=True) valid_dtype = [ ("uniqueId", "<i4"), ("name", "O"), ("semanticLabel", "O"), ("metadata", "O"), ("instanceIds", "O"), ("semanticId", "<u4"), ("occlusionRatio", "<f4"), ] assert data.dtype == np.dtype(valid_dtype) async def test_occlusion(self): path = os.path.join(FILE_DIR, "../data/scenes/occlusion.usda") await omni.usd.get_context().open_stage_async(path) syn.sensors.enable_sensors(self.viewport, [syn._syntheticdata.SensorType.Occlusion]) await syn.sensors.next_sensor_data_async(self.viewport,True) occlusion_out = syn.sensors.get_occlusion(self.viewport, parsed=True) for row in occlusion_out: gt = float(row["semanticLabel"]) / 100.0 assert math.isclose(gt, row["occlusionRatio"], abs_tol=0.015), f"Expected {gt}, got {row['occlusionRatio']}" async def test_self_occlusion(self): path = os.path.join(FILE_DIR, "../data/scenes/torus_sphere.usda") await omni.usd.get_context().open_stage_async(path) syn.sensors.enable_sensors(self.viewport, [syn._syntheticdata.SensorType.Occlusion]) await syn.sensors.next_sensor_data_async(self.viewport,True) occlusion_out = syn.sensors.get_occlusion(self.viewport) occlusion_out_ratios = np.sort(occlusion_out["occlusionRatio"]) assert np.allclose(occlusion_out_ratios, [0.0, 0.6709], atol=0.05) async def test_full_occlusion(self): path = os.path.join(FILE_DIR, "../data/scenes/cube_full_occlusion.usda") await omni.usd.get_context().open_stage_async(path) syn.sensors.enable_sensors(self.viewport, [syn._syntheticdata.SensorType.Occlusion]) await syn.sensors.next_sensor_data_async(self.viewport,True) occlusion_out = syn.sensors.get_occlusion(self.viewport) occlusion_out_ratios = np.sort(occlusion_out["occlusionRatio"]) assert np.allclose(occlusion_out_ratios, [0.0, 1.0], atol=0.05) async def test_occlusion_pathtracing(self): """ Basic funtionality test of the sensor, but in path tracing mode. """ settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) path = os.path.join(FILE_DIR, "../data/scenes/occlusion.usda") await omni.usd.get_context().open_stage_async(path) syn.sensors.enable_sensors(self.viewport, [syn._syntheticdata.SensorType.Occlusion]) await syn.sensors.next_sensor_data_async(self.viewport,True) occlusion_out = syn.sensors.get_occlusion(self.viewport, parsed=True) for row in occlusion_out: gt = float(row["semanticLabel"]) / 100.0 assert math.isclose(gt, row["occlusionRatio"], abs_tol=0.015), f"Expected {gt}, got {row['occlusionRatio']}" async def test_occlusion_ray_traced_lighting(self): """ Basic funtionality test of the sensor, but in ray traced lighting. """ # Set the rendering mode to be ray traced lighting. settings_interface = carb.settings.get_settings() settings_interface.set_string("/rtx/rendermode", "RayTracedLighting") path = os.path.join(FILE_DIR, "../data/scenes/occlusion.usda") await omni.usd.get_context().open_stage_async(path) syn.sensors.enable_sensors(self.viewport, [syn._syntheticdata.SensorType.Occlusion]) await syn.sensors.next_sensor_data_async(self.viewport,True) occlusion_out = syn.sensors.get_occlusion(self.viewport, parsed=True) for row in occlusion_out: gt = float(row["semanticLabel"]) / 100.0 assert math.isclose(gt, row["occlusionRatio"], abs_tol=0.015), f"Expected {gt}, got {row['occlusionRatio']}" async def test_occlusion_ftheta(self): """ Basic funtionality test of the sensor under ftheta camera. """ settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) path = os.path.join(FILE_DIR, "../data/scenes/occlusion.usda") await omni.usd.get_context().open_stage_async(path) await omni.kit.app.get_app().next_update_async() stage = omni.usd.get_context().get_stage() camera = stage.DefinePrim("/Camera", "Camera") # Set the camera to be polynomial fish eye camera. camera.CreateAttribute("cameraProjectionType", Sdf.ValueTypeNames.Token).Set("fisheyePolynomial") # Set the Camera's position UsdGeom.Xformable(camera).AddTranslateOp().Set((100, 200, 300)) self.viewport.camera_path = camera.GetPath() syn.sensors.enable_sensors(self.viewport, [syn._syntheticdata.SensorType.Occlusion]) await syn.sensors.next_sensor_data_async(self.viewport,True) # Camera type should not affect occlusion. occlusion_out = syn.sensors.get_occlusion(self.viewport, parsed=True) data = np.array([row['occlusionRatio'] for row in occlusion_out]) # np.savez_compressed(self.golden_image_path / 'occlusion_ftheta.npz', array=data) golden = np.load(self.golden_image_path / "occlusion_ftheta.npz")["array"] assert np.isclose(data, golden, atol=1e-3).all() async def test_occlusion_spherical(self): """ Basic funtionality test of the sensor under spherical camera. """ settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) path = os.path.join(FILE_DIR, "../data/scenes/occlusion.usda") await omni.usd.get_context().open_stage_async(path) await omni.kit.app.get_app().next_update_async() stage = omni.usd.get_context().get_stage() camera = stage.DefinePrim("/Camera", "Camera") # Set the camera to be polynomial fish eye camera. camera.CreateAttribute("cameraProjectionType", Sdf.ValueTypeNames.Token).Set("fisheyeSpherical") # Set the Camera's position UsdGeom.Xformable(camera).AddTranslateOp().Set((100, 200, 300)) self.viewport.camera_path = camera.GetPath() syn.sensors.enable_sensors(self.viewport, [syn._syntheticdata.SensorType.Occlusion]) await syn.sensors.next_sensor_data_async(self.viewport,True) # Camera type should not affect occlusion. occlusion_out = syn.sensors.get_occlusion(self.viewport, parsed=True) data = np.array([row['occlusionRatio'] for row in occlusion_out]) # np.savez_compressed(self.golden_image_path / 'occlusion_spherical.npz', array=data) golden = np.load(self.golden_image_path / "occlusion_spherical.npz")["array"] assert np.isclose(data, golden, atol=1e-1).all() @unittest.skip("OM-44310") async def test_occlusion_quadrant(self): # disabling temporarly the test for OMNI-GRAPH support : OM-44310 # Test quadrant sensor. It takes loose and tight bounding boxes to # return the type of occlusion # Expected occlusion value for time=1, 2, 3... TESTS = [ "fully-occluded", "left", "right", "bottom", "top", "fully-visible", # corner occlusion "fully-visible", # corner occlusion "bottom-right", "bottom-left", "top-right", "top-left", "fully-visible", ] path = os.path.join(FILE_DIR, "../data/scenes/occlusion_quadrant.usda") await omni.usd.get_context().open_stage_async(path) await omni.kit.app.get_app().next_update_async() syn.sensors.enable_sensors( self.viewport, [ syn._syntheticdata.SensorType.BoundingBox2DLoose, syn._syntheticdata.SensorType.BoundingBox2DTight, syn._syntheticdata.SensorType.Occlusion, ], ) await syn.sensors.next_sensor_data_async(self.viewport,True) timeline_iface = omni.timeline.acquire_timeline_interface() timeline_iface.set_time_codes_per_second(1) for time, gt in enumerate(TESTS): timeline_iface.set_current_time(time) await omni.kit.app.get_app().next_update_async() # Investigate these in OM-31155 sensor_out = syn.sensors.get_occlusion_quadrant(self.viewport) result = sensor_out["occlusion_quadrant"][0] assert result == gt, f"Got {result}, expected {gt}" # After running each test async def tearDown(self): pass
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/sensors/test_renderproduct_camera.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import os import carb from pxr import Gf, UsdGeom, Sdf, UsdLux from omni.kit.viewport.utility import get_active_viewport, create_viewport_window import omni.kit.test from omni.syntheticdata import SyntheticData, SyntheticDataStage # Test the RenderProductCamera nodes class TestRenderProductCamera(omni.kit.test.AsyncTestCase): def __init__(self, methodName: str) -> None: super().__init__(methodName=methodName) async def setUp(self): settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) self.numLoops = 7 self.multiViewport = False # Setup the scene await omni.usd.get_context().new_stage_async() stage = omni.usd.get_context().get_stage() # Setup viewports / renderproduct # first default viewport with the default perspective camera viewport_0 = get_active_viewport() resolution_0 = viewport_0.resolution camera_0 = UsdGeom.Camera.Define(stage, "/Camera0").GetPrim() viewport_0.camera_path = camera_0.GetPath() render_product_path_0 = viewport_0.render_product_path self.render_product_path_0 = render_product_path_0 # second viewport with a ftheta camera if self.multiViewport: resolution_1 = (512, 512) viewport_window = create_viewport_window(width=resolution_1[0], height=resolution_1[1]) viewport_1 = viewport_window.viewport_api viewport_1.resolution = resolution_1 camera_1 = UsdGeom.Camera.Define(stage, "/Camera1").GetPrim() viewport_1.camera_path = camera_1.GetPath() render_product_path_1 = viewport_1.render_product_path self.render_product_path_1 = render_product_path_1 # SyntheticData singleton interface sdg_iface = SyntheticData.Get() if not sdg_iface.is_node_template_registered("TestSimRpCam"): sdg_iface.register_node_template( SyntheticData.NodeTemplate( SyntheticDataStage.SIMULATION, "omni.syntheticdata.SdTestRenderProductCamera", attributes={"inputs:stage":"simulation"} ), template_name="TestSimRpCam" ) if not sdg_iface.is_node_template_registered("TestPostRpCam"): sdg_iface.register_node_template( SyntheticData.NodeTemplate( SyntheticDataStage.POST_RENDER, "omni.syntheticdata.SdTestRenderProductCamera", [SyntheticData.NodeConnectionTemplate("PostRenderProductCamera")], attributes={"inputs:stage":"postRender"} ), template_name="TestPostRpCam" ) if not sdg_iface.is_node_template_registered("TestOnDemandRpCam"): sdg_iface.register_node_template( SyntheticData.NodeTemplate( SyntheticDataStage.ON_DEMAND, "omni.syntheticdata.SdTestRenderProductCamera", [SyntheticData.NodeConnectionTemplate("PostProcessRenderProductCamera")], attributes={"inputs:stage":"onDemand"} ), template_name="TestOnDemandRpCam" ) attributes_0 = { "inputs:renderProductCameraPath":camera_0.GetPath().pathString, "inputs:width":resolution_0[0], "inputs:height":resolution_0[1] } sdg_iface.activate_node_template("TestSimRpCam", 0, [render_product_path_0], attributes_0) sdg_iface.activate_node_template("TestPostRpCam", 0, [render_product_path_0], attributes_0) sdg_iface.activate_node_template("TestOnDemandRpCam", 0, [render_product_path_0],attributes_0) if self.multiViewport: attributes_1 = { "inputs:renderProductCameraPath":camera_1.GetPath().pathString, "inputs:width":resolution_1[0], "inputs:height":resolution_1[1] } sdg_iface.activate_node_template("TestSimRpCam", 0, [render_product_path_1], attributes_1) sdg_iface.activate_node_template("TestPostRpCam", 0, [render_product_path_1], attributes_1) sdg_iface.activate_node_template("TestOnDemandRpCam", 0, [render_product_path_1],attributes_1) async def test_renderproduct_camera(self): """ Test render product camera pipeline """ sdg_iface = SyntheticData.Get() test_outname = "outputs:test" test_attributes_names = [test_outname] for _ in range(3): await omni.kit.app.get_app().next_update_async() for _ in range(self.numLoops): await omni.kit.app.get_app().next_update_async() assert sdg_iface.get_node_attributes("TestSimRpCam", test_attributes_names, self.render_product_path_0)[test_outname] assert sdg_iface.get_node_attributes("TestPostRpCam", test_attributes_names, self.render_product_path_0)[test_outname] assert sdg_iface.get_node_attributes("TestOnDemandRpCam", test_attributes_names, self.render_product_path_0)[test_outname] if self.multiViewport: assert sdg_iface.get_node_attributes("TestSimRpCam", test_attributes_names, self.render_product_path_1)[test_outname] assert sdg_iface.get_node_attributes("TestPostRpCam", test_attributes_names, self.render_product_path_1)[test_outname] assert sdg_iface.get_node_attributes("TestOnDemandRpCam", test_attributes_names, self.render_product_path_1)[test_outname] async def tearDown(self): pass
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/sensors/test_swh_frame_number.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import os import carb from pxr import Gf, UsdGeom, UsdLux, Sdf import unittest import omni.kit.test from omni.kit.viewport.utility import get_active_viewport, create_viewport_window from omni.syntheticdata import SyntheticData, SyntheticDataStage # Test the Fabric frame number synchronization class TestSWHFrameNumber(omni.kit.test.AsyncTestCase): def __init__(self, methodName: str) -> None: super().__init__(methodName=methodName) async def setUp(self): settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) # Setup the scene await omni.usd.get_context().new_stage_async() stage = omni.usd.get_context().get_stage() world_prim = UsdGeom.Xform.Define(stage,"/World") UsdGeom.Xformable(world_prim).AddTranslateOp().Set((0, 0, 0)) UsdGeom.Xformable(world_prim).AddRotateXYZOp().Set((0, 0, 0)) capsule0_prim = stage.DefinePrim("/World/Capsule0", "Capsule") UsdGeom.Xformable(capsule0_prim).AddTranslateOp().Set((100, 0, 0)) UsdGeom.Xformable(capsule0_prim).AddScaleOp().Set((30, 30, 30)) UsdGeom.Xformable(capsule0_prim).AddRotateXYZOp().Set((-90, 0, 0)) capsule0_prim.GetAttribute("primvars:displayColor").Set([(0.3, 1, 0)]) capsule1_prim = stage.DefinePrim("/World/Capsule1", "Capsule") UsdGeom.Xformable(capsule1_prim).AddTranslateOp().Set((-100, 0, 0)) UsdGeom.Xformable(capsule1_prim).AddScaleOp().Set((30, 30, 30)) UsdGeom.Xformable(capsule1_prim).AddRotateXYZOp().Set((-90, 0, 0)) capsule1_prim.GetAttribute("primvars:displayColor").Set([(0, 1, 0.3)]) spherelight = UsdLux.SphereLight.Define(stage, "/SphereLight") spherelight.GetIntensityAttr().Set(30000) spherelight.GetRadiusAttr().Set(30) # first default viewport with the default perspective camera viewport_0 = get_active_viewport() render_product_path_0 = viewport_0.render_product_path # second viewport with a ftheta camera viewport_1_window = create_viewport_window(width=512, height=512) viewport_1 = viewport_1_window.viewport_api camera_1 = stage.DefinePrim("/Camera1", "Camera") camera_1.CreateAttribute("cameraProjectionType", Sdf.ValueTypeNames.Token).Set("fisheyePolynomial") UsdGeom.Xformable(camera_1).AddTranslateOp().Set((0, 250, 0)) UsdGeom.Xformable(camera_1).AddRotateXYZOp().Set((-90, 0, 0)) viewport_1.camera_path = camera_1.GetPath() render_product_path_1 = viewport_1.render_product_path # SyntheticData singleton interface sdg_iface = SyntheticData.Get() # Register node templates in the SyntheticData register # (a node template is a template for creating a node specified by its type and its connections) # # to illustrate we are using the generic omni.syntheticdata.SdTestStageSynchronization node type which supports every stage of the SyntheticData pipeline. When executed it logs the fabric frame number. # # register a node template in the simulation stage # NB : this node template has no connections if not sdg_iface.is_node_template_registered("TestSyncSim"): sdg_iface.register_node_template( SyntheticData.NodeTemplate( SyntheticDataStage.SIMULATION, # node tempalte stage "omni.syntheticdata.SdTestStageSynchronization", # node template type attributes={"inputs:tag":"0"}), # node template default attribute values (when differs from the default value specified in the .ogn) template_name="TestSyncSim" # node template name ) # register a node template in the postrender stage # NB : this template may be activated for several different renderproducts if not sdg_iface.is_node_template_registered("TestSyncPost"): sdg_iface.register_node_template( SyntheticData.NodeTemplate( SyntheticDataStage.POST_RENDER, # node template stage "omni.syntheticdata.SdTestStageSynchronization", # node template type # node template connections [ # connected to a TestSyncSim node (a TestSyncSim node will be activated when activating this template) SyntheticData.NodeConnectionTemplate("TestSyncSim", (), None), # connected to a LdrColorSD rendervar (the renderVar will be activated when activating this template) SyntheticData.NodeConnectionTemplate("LdrColorSD"), # connected to a BoundingBox3DSD rendervar (the renderVar will be activated when activating this template) SyntheticData.NodeConnectionTemplate("BoundingBox3DSD") ]), template_name="TestSyncPost" # node template name ) # register a node template in the postprocess stage # NB : this template may be activated for several different renderproducts if not sdg_iface.is_node_template_registered("TestSyncOnDemand"): sdg_iface.register_node_template( SyntheticData.NodeTemplate( SyntheticDataStage.ON_DEMAND, # node template stage "omni.syntheticdata.SdTestStageSynchronization", # node template type # node template connections [ # connected to a TestSyncSim node (a TestSyncSim node will be activated when activating this template) SyntheticData.NodeConnectionTemplate("TestSyncSim", (), None), # connected to a PostProcessDispatch node : the PostProcessDispatch node trigger the execution of its downstream connections for every rendered frame # (a PostProcessDispatch node will be activated when activating this template) SyntheticData.NodeConnectionTemplate("PostProcessDispatch") ] ), template_name="TestSyncOnDemand" # node template name ) # register a node template in the postprocess stage # NB : this template may be activated for any combination of renderproduct pairs if not sdg_iface.is_node_template_registered("TestSyncCross"): # register an accumulator which trigger once when all its upstream connections have triggered sdg_iface.register_node_template( SyntheticData.NodeTemplate( SyntheticDataStage.ON_DEMAND, # node template stage "omni.graph.action.SyncGate", # node template type # node template connections [ # connected to the PostProcessDispatcher for the synchronization value SyntheticData.NodeConnectionTemplate( "PostProcessDispatcher", (), {"outputs:swhFrameNumber":"inputs:syncValue"} ), # connected to a TestSyncOnDemand node for the first renderproduct (a TestSyncSim node will be activated when activating this template) SyntheticData.NodeConnectionTemplate( "TestSyncOnDemand", (0,), {"outputs:exec":"inputs:execIn"} ), # connected to a TestSyncOnDemand node for the second renderproduct (a TestSyncSim node will be activated when activating this template) SyntheticData.NodeConnectionTemplate( "TestSyncOnDemand", (1,), {"outputs:exec":"inputs:execIn"} ), ] ), template_name="TestSyncAccum" # node template name ) sdg_iface.register_node_template( SyntheticData.NodeTemplate( SyntheticDataStage.ON_DEMAND, # node template stage "omni.syntheticdata.SdTestStageSynchronization", # node template type # node template connections [ # connected to a TestSyncAccum node (a TestSyncAccum node will be activated when activating this template) SyntheticData.NodeConnectionTemplate( "TestSyncAccum", (0,1), { "outputs:execOut":"inputs:exec", "outputs:syncValue":"inputs:swhFrameNumber" } ), ] ), template_name="TestSyncCross" # node template name ) # Activate the node templates for the renderproducts # this will create the node (and all their missing dependencies) within the associated graphs # # activate the TestSyncPost for the renderpoduct renderpoduct_0 # this will also activate the TestSyncSim node and the LdrColorSD and BoundingBox3DSD renderVars for the renderpoduct renderpoduct_0 # this will set the tag node attribute to "1" sdg_iface.activate_node_template("TestSyncPost", 0, [render_product_path_0],{"inputs:tag":"1"}) # activate the TestSyncPost for the renderpoduct renderpoduct_1 # this will also activate the LdrColorSD and BoundingBox3DSD renderVars for the renderpoduct renderpoduct_1 # NB TestSyncSim has already been activated # this will set the tag node attribute to "2" sdg_iface.activate_node_template("TestSyncPost", 0, [render_product_path_1],{"inputs:tag":"2"}) # activate the TestSyncCross for the renderpoducts [renderproduct_0, renderproduct_1] # this will also activate : # - TestSyncAccum for the renderpoducts [renderproduct_0, renderproduct_1] # - PostProcessDispatch for the renderpoduct renderproduct_0 # - TestSyncOnDemand for the renderproduct renderproduct_0 # - TestSyncOnDemand for the renderproduct renderproduct_1 # - PostProcessDispatch for the renderpoduct renderproduct_1 # this will set the tag node attribute to "5" sdg_iface.activate_node_template("TestSyncCross", 0, [render_product_path_0,render_product_path_1],{"inputs:tag":"5"}) # Set some specific attributes to nodes that have been automatically activated # set the tag to the TestSyncOnDemand for renderproduct renderproduct_0 sdg_iface.set_node_attributes("TestSyncOnDemand",{"inputs:tag":"3"},render_product_path_0) # set the tag to the TestSyncOnDemand for renderproduct renderproduct_1 sdg_iface.set_node_attributes("TestSyncOnDemand",{"inputs:tag":"4"},render_product_path_1) # setup members self.render_product_path_0 = render_product_path_0 self.render_product_path_1 = render_product_path_1 self.numLoops = 33 async def run_loop(self): sdg_iface = SyntheticData.Get() render_product_path_0 = self.render_product_path_0 render_product_path_1 = self.render_product_path_1 test_attributes_names = ["outputs:swhFrameNumber","outputs:fabricSWHFrameNumber"] # ensuring that the setup is taken into account for _ in range(5): await omni.kit.app.get_app().next_update_async() for _ in range(self.numLoops): await omni.kit.app.get_app().next_update_async() # test the post-render pipeline synchronization sync_post_attributes = sdg_iface.get_node_attributes( "TestSyncPost",test_attributes_names,render_product_path_0) assert sync_post_attributes and all(attr in sync_post_attributes for attr in test_attributes_names) assert sync_post_attributes["outputs:swhFrameNumber"] == sync_post_attributes["outputs:fabricSWHFrameNumber"] # test the on-demand pipeline synchronization sync_ondemand_attributes = sdg_iface.get_node_attributes( "TestSyncOnDemand",test_attributes_names,render_product_path_1) assert sync_ondemand_attributes and all(attr in sync_ondemand_attributes for attr in test_attributes_names) assert sync_ondemand_attributes["outputs:swhFrameNumber"] == sync_ondemand_attributes["outputs:fabricSWHFrameNumber"] # test the on-demand cross renderproduct synchronization sync_cross_ondemand_attributes = sdg_iface.get_node_attributes( "TestSyncCross",test_attributes_names,render_product_path_0) assert sync_cross_ondemand_attributes and all(attr in sync_cross_ondemand_attributes for attr in test_attributes_names) assert sync_cross_ondemand_attributes["outputs:swhFrameNumber"] == sync_cross_ondemand_attributes["outputs:fabricSWHFrameNumber"] async def test_sync_idle(self): """ Test swh frame synhronization with : - asyncRendering Off - waitIdle On """ settings = carb.settings.get_settings() settings.set_bool("/app/asyncRendering",False) settings.set_int("/app/settings/flatCacheStageFrameHistoryCount",3) settings.set_bool("/app/renderer/waitIdle",True) settings.set_bool("/app/hydraEngine/waitIdle",True) await self.run_loop() @unittest.skip("DRIVE-3247 : SyntheticData does not support async rendering.") async def test_sync(self): """ Test swh frame synhronization with : - asyncRendering Off - waitIdle Off """ settings = carb.settings.get_settings() settings.set_bool("/app/asyncRendering",False) settings.set_int("/app/settings/flatCacheStageFrameHistoryCount",3) settings.set_bool("/app/renderer/waitIdle",False) settings.set_bool("/app/hydraEngine/waitIdle",False) await self.run_loop() @unittest.skip("DRIVE-3247 : SyntheticData does not support async rendering.") async def test_async(self): """ Test swh frame synhronization with : - asyncRendering On - waitIdle Off """ settings = carb.settings.get_settings() settings.set_bool("/app/asyncRendering",True) settings.set_int("/app/settings/flatCacheStageFrameHistoryCount",3) settings.set_bool("/app/renderer/waitIdle",False) settings.set_bool("/app/hydraEngine/waitIdle",False) await self.run_loop() async def tearDown(self): # reset to the default params settings = carb.settings.get_settings() settings.set_bool("/app/asyncRendering",False) settings.set_bool("/app/renderer/waitIdle",True) settings.set_bool("/app/hydraEngine/waitIdle",True)
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/sensors/test_distance_to_image_plane.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import os import math import asyncio from time import time import carb import numpy as np import omni.kit.test from omni.kit.viewport.utility import get_active_viewport from pxr import Gf, UsdGeom # Import extension python module we are testing with absolute import path, as if we are external user (other extension) import omni.syntheticdata as syn from ..utils import add_semantics FILE_DIR = os.path.dirname(os.path.realpath(__file__)) TIMEOUT = 200 # Having a test class derived from omni.kit.test.AsyncTestCase declared on the root of module will make it auto-discoverable by omni.kit.test class TestDistanceToImagePlane(omni.kit.test.AsyncTestCase): # Before running each test async def setUp(self): np.random.seed(1234) # Setup viewport self.viewport = get_active_viewport() # Initialize Sensor await omni.usd.get_context().new_stage_async() stage = omni.usd.get_context().get_stage() await omni.kit.app.get_app().next_update_async() await syn.sensors.create_or_retrieve_sensor_async( self.viewport, syn._syntheticdata.SensorType.DistanceToImagePlane ) async def test_parsed_empty(self): """ Test distance-to-image-plane sensor on empty stage. """ # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_distance_to_image_plane(self.viewport) assert np.all(data > 1000) async def test_parsed_dtype(self): stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_distance_to_image_plane(self.viewport) assert data.dtype == np.float32 async def test_distances(self): stage = omni.usd.get_context().get_stage() camera = stage.DefinePrim("/Camera", "Camera") UsdGeom.Xformable(camera).AddTranslateOp().Set((0, 0, 0)) self.viewport.camera_path = camera.GetPath() await omni.kit.app.get_app().next_update_async() for n in range(10, 100, 10): cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") # n = 5 UsdGeom.XformCommonAPI(cube).SetTranslate((0, 0, -n)) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_distance_to_image_plane(self.viewport) assert data.max() > 1000 # The front of the cube is 1 ahead of its center position assert np.isclose(data.min(), (n - 1) / 100, atol=1e-5) async def test_distances_pathtracing(self): """ Basic funtionality test of the sensor, but in path tracing mode. """ # Set the rendering mode to be pathtracing settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) stage = omni.usd.get_context().get_stage() camera = stage.DefinePrim("/Camera", "Camera") UsdGeom.Xformable(camera).AddTranslateOp().Set((0, 0, 0)) self.viewport.camera_path = camera.GetPath() await omni.kit.app.get_app().next_update_async() for n in range(10, 100, 10): cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") # n = 5 UsdGeom.XformCommonAPI(cube).SetTranslate((0, 0, -n)) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_distance_to_image_plane(self.viewport) assert data.max() > 1000 # The front of the cube is 1 ahead of its center position assert np.isclose(data.min(), (n - 1) / 100, atol=1e-5) async def test_distances_ray_traced_lighting(self): """ Basic funtionality test of the sensor, but in ray traced lighting. """ # Set the rendering mode to be pathtracing settings_interface = carb.settings.get_settings() settings_interface.set_string("/rtx/rendermode", "RayTracedLighting") stage = omni.usd.get_context().get_stage() camera = stage.DefinePrim("/Camera", "Camera") UsdGeom.Xformable(camera).AddTranslateOp().Set((0, 0, 0)) self.viewport.camera_path = camera.GetPath() await omni.kit.app.get_app().next_update_async() for n in range(10, 100, 10): cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") # n = 5 UsdGeom.XformCommonAPI(cube).SetTranslate((0, 0, -n)) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_distance_to_image_plane(self.viewport) assert data.max() > 1000 # The front of the cube is 1 ahead of its center position assert np.isclose(data.min(), (n - 1) / 100, atol=1e-5) # After running each test async def tearDown(self): pass
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/sensors/test_semantic_filter.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import os import unittest import omni.kit.test from omni.kit.viewport.utility import get_active_viewport from omni.syntheticdata import SyntheticData from ..utils import add_semantics import numpy as np # Test the semantic filter class TestSemanticFilter(omni.kit.test.AsyncTestCase): def __init__(self, methodName: str) -> None: super().__init__(methodName=methodName) async def setUp(self): await omni.usd.get_context().new_stage_async() stage = omni.usd.get_context().get_stage() # scene # /World [belong_to:world] # /Cube [class:cube] # /Sphere [class:sphere] # /Sphere [class:sphere] # /Capsule [class:capsule] # /Cube [class:cube] # /Capsule [class:capsule] # /Nothing [belong_to:nothing] world_prim = stage.DefinePrim("/World", "Plane") add_semantics(world_prim, "world", "belong_to") world_cube_prim = stage.DefinePrim("/World/Cube", "Cube") add_semantics(world_cube_prim, "cube", "class") world_cube_sphere_prim = stage.DefinePrim("/World/Cube/Sphere", "Sphere") add_semantics(world_cube_sphere_prim, "sphere", "class") world_sphere_prim = stage.DefinePrim("/World/Sphere", "Sphere") add_semantics(world_sphere_prim, "sphere", "class") world_capsule_prim = stage.DefinePrim("/World/Capsule", "Capsule") add_semantics(world_capsule_prim, "capsule", "class") cube_prim = stage.DefinePrim("/Cube", "Cube") add_semantics(cube_prim, "cube", "class") capsule_prim = stage.DefinePrim("/Capsule", "Capsule") add_semantics(capsule_prim, "capsule", "class") nothing_prim = stage.DefinePrim("/Nothing", "Plane") add_semantics(nothing_prim, "nothing", "belong_to") self.render_product_path = get_active_viewport().render_product_path SyntheticData.Get().activate_node_template("SemanticLabelTokenSDExportRawArray", 0, [self.render_product_path]) await omni.kit.app.get_app().next_update_async() def fetch_semantic_label_tokens(self): output_names = ["outputs:data","outputs:bufferSize"] outputs = SyntheticData.Get().get_node_attributes("SemanticLabelTokenSDExportRawArray", output_names, self.render_product_path) assert outputs return outputs["outputs:data"].view(np.uint64) async def check_num_valid_labels(self, expected_num_valid_labels): wait_iterations = 6 for _ in range(wait_iterations): await omni.kit.app.get_app().next_update_async() num_valid_labels = np.count_nonzero(self.fetch_semantic_label_tokens()) assert num_valid_labels == expected_num_valid_labels async def test_semantic_filter_all(self): SyntheticData.Get().set_default_semantic_filter("*:*", True) await self.check_num_valid_labels(8) async def test_semantic_filter_no_world(self): SyntheticData.Get().set_default_semantic_filter("!belong_to:world", True) # /Cube /Capsule /Nothing await self.check_num_valid_labels(3) async def test_semantic_filter_all_class_test(self): SyntheticData.Get().set_default_semantic_filter("class:*", True) await self.check_num_valid_labels(6) async def test_semantic_filter_all_class_no_cube_test(self): SyntheticData.Get().set_default_semantic_filter("class:!cube&*", True) await self.check_num_valid_labels(3) async def test_semantic_filter_only_sphere_or_cube_test(self): SyntheticData.Get().set_default_semantic_filter("class:cube|sphere", True) await self.check_num_valid_labels(4) async def test_semantic_filter_sphere_and_cube_test(self): SyntheticData.Get().set_default_semantic_filter("class:cube&sphere", True) # /World/Cube/Sphere await self.check_num_valid_labels(1) async def test_semantic_filter_world_and_sphere_test(self): SyntheticData.Get().set_default_semantic_filter("class:sphere,belong_to:world", True) await self.check_num_valid_labels(2) async def test_semantic_filter_no_belong_test(self): SyntheticData.Get().set_default_semantic_filter("belong_to:!*", True) # /Cube /Capsule await self.check_num_valid_labels(2) async def test_semantic_filter_world_or_capsule_test(self): SyntheticData.Get().set_default_semantic_filter("belong_to:world;class:capsule", True) await self.check_num_valid_labels(6) async def test_semantic_filter_belong_to_nohierarchy(self): SyntheticData.Get().set_default_semantic_filter("belong_to:*", False) await self.check_num_valid_labels(2) async def tearDown(self): SyntheticData.Get().set_default_semantic_filter("*:*")
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/sensors/test_depth_linear.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import os import math import asyncio from time import time import carb import numpy as np import omni.kit.test from omni.kit.viewport.utility import get_active_viewport from pxr import Gf, UsdGeom, Sdf # Import extension python module we are testing with absolute import path, as if we are external user (other extension) import omni.syntheticdata as syn from ..utils import add_semantics FILE_DIR = os.path.dirname(os.path.realpath(__file__)) TIMEOUT = 200 # Having a test class derived from omni.kit.test.AsyncTestCase declared on the root of module will make it auto-discoverable by omni.kit.test class TestDepthLinear(omni.kit.test.AsyncTestCase): # Before running each test async def setUp(self): np.random.seed(1234) # Setup viewport self.viewport = get_active_viewport() # Initialize Sensor await omni.usd.get_context().new_stage_async() stage = omni.usd.get_context().get_stage() await omni.kit.app.get_app().next_update_async() await syn.sensors.create_or_retrieve_sensor_async(self.viewport, syn._syntheticdata.SensorType.DepthLinear) async def test_parsed_empty(self): """ Test depth sensor on empty stage. """ # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_depth_linear(self.viewport) assert np.all(data > 1000) async def test_parsed_dtype(self): stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_depth_linear(self.viewport) assert data.dtype == np.float32 async def test_distances(self): stage = omni.usd.get_context().get_stage() camera = stage.DefinePrim("/Camera", "Camera") UsdGeom.Xformable(camera).AddTranslateOp().Set((0, 0, 0)) self.viewport.camera_path = camera.GetPath() await omni.kit.app.get_app().next_update_async() for n in range(10, 100, 10): cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") # n = 5 UsdGeom.XformCommonAPI(cube).SetTranslate((0, 0, -n)) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_depth_linear(self.viewport) assert data.max() > 1000 # The front of the cube is 1 ahead of its center position assert np.isclose(data.min(), (n - 1) / 100, atol=1e-5) async def test_distances_pathtracing(self): """ Basic funtionality test of the sensor, but in path tracing mode. """ # Set the rendering mode to be pathtracing settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) stage = omni.usd.get_context().get_stage() stage = omni.usd.get_context().get_stage() camera = stage.DefinePrim("/Camera", "Camera") UsdGeom.Xformable(camera).AddTranslateOp().Set((0, 0, 0)) self.viewport.camera_path = camera.GetPath() await omni.kit.app.get_app().next_update_async() for n in range(10, 100, 10): cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") # n = 5 UsdGeom.XformCommonAPI(cube).SetTranslate((0, 0, -n)) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_depth_linear(self.viewport) assert data.max() > 1000 # The front of the cube is 1 ahead of its center position assert np.isclose(data.min(), (n - 1) / 100, atol=1e-5) async def test_distances_ray_traced_lighting(self): """ Basic funtionality test of the sensor, but in ray traced lighting. """ # Set the rendering mode to be pathtracing settings_interface = carb.settings.get_settings() settings_interface.set_string("/rtx/rendermode", "RayTracedLighting") stage = omni.usd.get_context().get_stage() camera = stage.DefinePrim("/Camera", "Camera") UsdGeom.Xformable(camera).AddTranslateOp().Set((0, 0, 0)) self.viewport.camera_path = camera.GetPath() await omni.kit.app.get_app().next_update_async() for n in range(10, 100, 10): cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") # n = 5 UsdGeom.XformCommonAPI(cube).SetTranslate((0, 0, -n)) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_depth_linear(self.viewport) assert data.max() > 1000 # The front of the cube is 1 ahead of its center position assert np.isclose(data.min(), (n - 1) / 100, atol=1e-5) # After running each test async def tearDown(self): pass
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/sensors/test_cross_correspondence.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import os import math import asyncio from PIL import Image from time import time from pathlib import Path import carb import numpy as np from numpy.lib.arraysetops import unique import omni.kit.test from pxr import Gf, UsdGeom from omni.kit.viewport.utility import get_active_viewport, next_viewport_frame_async, create_viewport_window # Import extension python module we are testing with absolute import path, as if we are external user (other extension) import omni.syntheticdata as syn from ..utils import add_semantics FILE_DIR = os.path.dirname(os.path.realpath(__file__)) TIMEOUT = 200 cameras = ["/World/Cameras/CameraFisheyeLeft", "/World/Cameras/CameraPinhole", "/World/Cameras/CameraFisheyeRight"] # Having a test class derived from omni.kit.test.AsyncTestCase declared on the root of module will make it auto-discoverable by omni.kit.test # This test has to run last and thus it's prefixed as such to force that: # - This is because it has to create additional viewports which makes the test # get stuck if it's not the last one in the OV process session class ZZHasToRunLast_TestCrossCorrespondence(omni.kit.test.AsyncTestCase): def __init__(self, methodName: str) -> None: super().__init__(methodName=methodName) self.golden_image_path = Path(os.path.dirname(os.path.abspath(__file__))) / ".." / "data" / "golden" self.output_image_path = Path(os.path.dirname(os.path.abspath(__file__))) / ".." / "data" / "output" self.StdDevTolerance = 0.1 self.sensorViewport = None # Before running each test async def setUp(self): global cameras np.random.seed(1234) # Load the scene scenePath = os.path.join(FILE_DIR, "../data/scenes/cross_correspondence.usda") await omni.usd.get_context().open_stage_async(scenePath) await omni.kit.app.get_app().next_update_async() # Get the main-viewport as the sensor-viewport self.sensorViewport = get_active_viewport() await next_viewport_frame_async(self.sensorViewport) # Setup viewports resolution = self.sensorViewport.resolution viewport_windows = [None] * 2 x_pos, y_pos = 12, 75 for i in range(len(viewport_windows)): viewport_windows[i] = create_viewport_window(width=resolution[0], height=resolution[1], position_x=x_pos, position_y=y_pos) viewport_windows[i].width = 500 viewport_windows[i].height = 500 x_pos += 500 # Setup cameras self.sensorViewport.camera_path = cameras[0] for i in range(len(viewport_windows)): viewport_windows[i].viewport_api.camera_path = cameras[i + 1] # Use default viewport for sensor target as otherwise sensor enablement doesn't work # also the test will get stuck # Initialize Sensor await syn.sensors.create_or_retrieve_sensor_async( self.sensorViewport, syn._syntheticdata.SensorType.CrossCorrespondence ) async def test_golden_image(self): # Render one frame await syn.sensors.next_sensor_data_async(self.sensorViewport,True) data = syn.sensors.get_cross_correspondence(self.sensorViewport) golden_image = np.load(self.golden_image_path / "cross_correspondence.npz")["array"] # normalize xy (uv offset) to zw channels' value range # x100 seems like a good number to bring uv offset to ~1 data[:, [0, 1]] *= 100 golden_image[:, [0, 1]] *= 100 std_dev = np.sqrt(np.square(data - golden_image).astype(float).mean()) if std_dev >= self.StdDevTolerance: if not os.path.isdir(self.output_image_path): os.mkdir(self.output_image_path) np.savez_compressed(self.output_image_path / "cross_correspondence.npz", array=data) golden_image = ((golden_image + 1.0) / 2) * 255 data = ((data + 1.0) / 2) * 255 Image.fromarray(golden_image.astype(np.uint8), "RGBA").save( self.output_image_path / "cross_correspondence_golden.png" ) Image.fromarray(data.astype(np.uint8), "RGBA").save(self.output_image_path / "cross_correspondence.png") self.assertTrue(std_dev < self.StdDevTolerance) # After running each test async def tearDown(self): pass
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/sensors/__init__.py
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/sensors/test_stage_manipulation.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import os import carb import random from pxr import Gf, UsdGeom, UsdLux, Sdf import unittest import omni.kit.test from omni.syntheticdata import SyntheticData, SyntheticDataStage from omni.kit.viewport.utility import get_active_viewport FILE_DIR = os.path.dirname(os.path.realpath(__file__)) # Test the ogn node repeatability under stage manipulation class TestStageManipulation(omni.kit.test.AsyncTestCase): def __init__(self, methodName: str) -> None: super().__init__(methodName=methodName) async def setUp(self): path = os.path.join(FILE_DIR, "../data/scenes/scene_instance_test.usda") await omni.usd.get_context().open_stage_async(path) #await omni.usd.get_context().new_stage_async() viewport = get_active_viewport() self.render_product_path = viewport.render_product_path # SyntheticData singleton interface sdg_iface = SyntheticData.Get() if not sdg_iface.is_node_template_registered("TestStageManipulationScenarii"): sdg_iface.register_node_template( SyntheticData.NodeTemplate( SyntheticDataStage.SIMULATION, "omni.syntheticdata.SdTestStageManipulationScenarii", attributes={"inputs:worldPrimPath":"/World"} ), template_name="TestStageManipulationScenarii" # node template name ) render_vars = [ #"SemanticMapSD", #"SemanticPrimTokenSD", #"InstanceMapSD", #"InstancePrimTokenSD", #"SemanticLabelTokenSD", #"SemanticLocalTransformSD", #"SemanticWorldTransformSD", "SemanticBoundingBox2DExtentTightSD", #"SemanticBoundingBox2DInfosTightSD", "SemanticBoundingBox2DExtentLooseSD", #"SemanticBoundingBox2DInfosLooseSD", "SemanticBoundingBox3DExtentSD", "SemanticBoundingBox3DInfosSD" ] for rv in render_vars: template_name = "TestRawArray" + rv if not sdg_iface.is_node_template_registered(template_name): sdg_iface.register_node_template( SyntheticData.NodeTemplate( SyntheticDataStage.ON_DEMAND, "omni.syntheticdata.SdTestPrintRawArray", [SyntheticData.NodeConnectionTemplate(rv + "ExportRawArray")] ), template_name=template_name ) self.num_loops = 37 async def render_var_test(self, render_var, ref_values, num_references_values, element_type, rand_seed=0, mode="printReferences"): sdg_iface = SyntheticData.Get() sdg_iface.activate_node_template("TestStageManipulationScenarii") sdg_iface.activate_node_template("TestRawArray" + render_var, 0, [self.render_product_path], {"inputs:elementType": element_type, "inputs:referenceValues": ref_values, "inputs:randomSeed": rand_seed, "inputs:mode": mode, "inputs:referenceNumUniqueRandomValues": num_references_values}) for _ in range(self.num_loops): await omni.kit.app.get_app().next_update_async() sdg_iface.deactivate_node_template("TestRawArray" + render_var, 0, [self.render_product_path]) sdg_iface.deactivate_node_template("TestStageManipulationScenarii") @unittest.skip("Unimplemented") async def test_semantic_map(self): await self.render_var_test("SemanticMapSD", [], "uint16", 2) async def test_semantic_bbox3d_extent(self): await self.render_var_test("SemanticBoundingBox3DExtentSD", [ 87.556404, 223.83577, -129.42677, -155.79227, -49.999996, 421.41083, 88.13742, -50.000004, 49.999905, 39.782856, -50.000004, -155.52794, -16.202198, -50.0, 136.29709, -104.94976, -155.52792, 87.556404, -50.000008, 223.83577, 49.99991, -87.8103, -50.0, -50.00001, 276.29846, 50.000004, 421.41083, -50.0, 60.42457, 223.83574, -129.42676, 312.2204, 277.44424, -50.000004, -37.84166, 87.556404, 188.92877, 136.2971, 50.000004 ], 13, "float32", 3, mode="testReferences") # async def test_semantic_bbox3d_infos(self): # await self.render_var_test("SemanticBoundingBox3DInfosSD", # [ # -50.000008, 57.119793, 49.9999, -50.000004, -50.000015, -50.000004, 62.03122, # -50.000008, -50.000004, -50.000004, -50.0, 50.0, -50.0, 57.119793, # 9.5100141e-01, -4.7552836e-01, 6.1506079e+02, 1.0000000e+00, -1.0000000e+00, 1.3421423e+03, 4.9999901e+01 # ], 11, "int32", 4, mode="printReferences") async def test_semantic_bbox2d_extent_loose(self): await self.render_var_test("SemanticBoundingBox2DExtentLooseSD", [ 733, 479, 532, 507, 460, 611, 763, 309, 17, 827, 789, 698, 554, 947, 789, 581, 534, 156, 582, 323, 825, 298, 562, 959, 595, 299, 117, 445, 572, 31, 622, 609, 228 ], 11, "int32", 5, mode="testReferences") async def test_semantic_bbox2d_extent_tight(self): await self.render_var_test("SemanticBoundingBox2DExtentTightSD", [ 0.0000000e+00, 5.0700000e+02, 1.1600000e+02, 7.4600000e+02, 5.9500000e+02, 2.1474836e+09, 2.1474836e+09, 2.5300000e+02, 3.6100000e+02, 1.7000000e+01, 0.0000000e+00, 2.1474836e+09, 2.1474836e+09, 2.1474836e+09, 2.1474836e+09, 2.1474836e+09, 0.0000000e+00, 0.0000000e+00, 0.0000000e+00, 2.1474836e+09, 0.0000000e+00, 2.1474836e+09, 0.0000000e+00, 3.1000000e+01, 5.3900000e+02, 2.3600000e+02, 2.1474836e+09, 5.7200000e+02, 8.9200000e+02, 9.0500000e+02, 5.6200000e+02, 5.1300000e+02, 0.0000000e+00 ], 11, "int32", 9, mode="testReferences") async def tearDown(self): pass
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/sensors/test_bbox3d.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import os import unittest import uuid import math import shutil import asyncio from time import time import carb.tokens import carb.settings import numpy as np import omni.kit.test from omni.kit.viewport.utility import get_active_viewport from pxr import Gf, UsdGeom, Usd, Sdf # Import extension python module we are testing with absolute import path, as if we are external user (other extension) import omni.syntheticdata as syn from .. import utils FILE_DIR = os.path.dirname(os.path.realpath(__file__)) TIMEOUT = 200 TMP = carb.tokens.get_tokens_interface().resolve("${temp}") # Having a test class derived from omni.kit.test.AsyncTestCase declared on the root of module will make it auto-discoverable by omni.kit.test class TestBBox3D(omni.kit.test.AsyncTestCase): # Before running each test async def setUp(self): np.random.seed(1234) # Setup viewport self.viewport = get_active_viewport() # Initialize Sensor await omni.usd.get_context().new_stage_async() stage = omni.usd.get_context().get_stage() await omni.kit.app.get_app().next_update_async() await syn.sensors.create_or_retrieve_sensor_async(self.viewport, syn._syntheticdata.SensorType.BoundingBox3D) async def test_parsed_empty(self): """ Test 3D bounding box on empty stage. """ bbox3d_data = syn.sensors.get_bounding_box_3d(self.viewport, parsed=True, return_corners=True) assert not bool(bbox3d_data) async def test_fields_exist(self): """ Test the correctness of the output dtype. """ stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") utils.add_semantics(cube, "cube") # Render one frame await syn.sensors.next_sensor_data_async(self.viewport, True) bbox3d_data_raw = syn.sensors.get_bounding_box_3d(self.viewport, parsed=False, return_corners=False) bbox3d_data_parsed = syn.sensors.get_bounding_box_3d(self.viewport, parsed=True, return_corners=True) raw_dtype = np.dtype( [ ("instanceId", "<u4"), ("semanticId", "<u4"), ("x_min", "<f4"), ("y_min", "<f4"), ("z_min", "<f4"), ("x_max", "<f4"), ("y_max", "<f4"), ("z_max", "<f4"), ("transform", "<f4", (4, 4)), ] ) parsed_dtype = np.dtype( [ ("uniqueId", "<i4"), ("name", "O"), ("semanticLabel", "O"), ("metadata", "O"), ("instanceIds", "O"), ("semanticId", "<u4"), ("x_min", "<f4"), ("y_min", "<f4"), ("z_min", "<f4"), ("x_max", "<f4"), ("y_max", "<f4"), ("z_max", "<f4"), ("transform", "<f4", (4, 4)), ("corners", "<f4", (8, 3)), ] ) assert bbox3d_data_raw.dtype == raw_dtype assert bbox3d_data_parsed.dtype == parsed_dtype async def test_parsed_nested_Y_pathtracing(self): """ Test 3D bounding box with nested semantics and transforms, Y-Up, in pathtracing mode. """ settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) # Create 2 cubes (size=1) under a parent prim stage = omni.usd.get_context().get_stage() UsdGeom.SetStageUpAxis(stage, "Y") parent = stage.DefinePrim("/World/Parent", "Xform") child1 = stage.DefinePrim("/World/Parent/Child1", "Cube") child2 = stage.DefinePrim("/World/Parent/Child2", "Cube") child1.GetAttribute("size").Set(1.0) child2.GetAttribute("size").Set(1.0) utils.add_semantics(parent, "parent") utils.add_semantics(child1, "child1") utils.add_semantics(child2, "child2") UsdGeom.Xformable(parent).ClearXformOpOrder() UsdGeom.Xformable(child1).ClearXformOpOrder() UsdGeom.Xformable(child2).ClearXformOpOrder() UsdGeom.Xformable(parent).AddRotateYOp().Set(45) UsdGeom.Xformable(child1).AddTranslateOp().Set((-0.5, 0.5, 0.0)) UsdGeom.Xformable(child1).AddRotateYOp().Set(45) UsdGeom.Xformable(child2).AddTranslateOp().Set((0.5, -0.5, 0.0)) await omni.kit.app.get_app().next_update_async() # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) bbox3d_data = syn.sensors.get_bounding_box_3d(self.viewport, parsed=True, return_corners=True) parent_bbox = [row for row in bbox3d_data if row["name"] == parent.GetPath()][0] child1_bbox = [row for row in bbox3d_data if row["name"] == child1.GetPath()][0] child2_bbox = [row for row in bbox3d_data if row["name"] == child2.GetPath()][0] # Only takes into account child transforms a = math.cos(math.pi / 4) parent_bounds = [[-a - 0.5, -1.0, -a], [1.0, 1.0, a]] child1_bounds = [[-0.5, -0.5, -0.5], [0.5, 0.5, 0.5]] child2_bounds = [[-0.5, -0.5, -0.5], [0.5, 0.5, 0.5]] # Doesn't take into account transforms for bbox, bounds in zip([parent_bbox, child1_bbox, child2_bbox], [parent_bounds, child1_bounds, child2_bounds]): self.assertAlmostEqual(bbox["x_min"], bounds[0][0], places=5) self.assertAlmostEqual(bbox["y_min"], bounds[0][1], places=5) self.assertAlmostEqual(bbox["z_min"], bounds[0][2], places=5) self.assertAlmostEqual(bbox["x_max"], bounds[1][0], places=5) self.assertAlmostEqual(bbox["y_max"], bounds[1][1], places=5) self.assertAlmostEqual(bbox["z_max"], bounds[1][2], places=5) prim = stage.GetPrimAtPath(bbox["name"]) tf = np.array(UsdGeom.Imageable(prim).ComputeLocalToWorldTransform(0.0)) gf_range = Gf.Range3f(*bounds) gf_corners = np.array([gf_range.GetCorner(i) for i in range(8)]) gf_corners = np.pad(gf_corners, ((0, 0), (0, 1)), constant_values=1.0) gf_corners = np.dot(gf_corners, tf)[:, :3] assert np.allclose(bbox["corners"], gf_corners, atol=1e-5) async def test_parsed_nested_Y_ray_traced_lighting(self): """ Test 3D bounding box with nested semantics and transforms, Y-Up, in ray traced lighting mode. """ # Set the rendering mode to be ray traced lighting. settings_interface = carb.settings.get_settings() settings_interface.set_string("/rtx/rendermode", "RayTracedLighting") # Create 2 cubes (size=1) under a parent prim stage = omni.usd.get_context().get_stage() UsdGeom.SetStageUpAxis(stage, "Y") parent = stage.DefinePrim("/World/Parent", "Xform") child1 = stage.DefinePrim("/World/Parent/Child1", "Cube") child2 = stage.DefinePrim("/World/Parent/Child2", "Cube") child1.GetAttribute("size").Set(1.0) child2.GetAttribute("size").Set(1.0) utils.add_semantics(parent, "parent") utils.add_semantics(child1, "child1") utils.add_semantics(child2, "child2") UsdGeom.Xformable(parent).ClearXformOpOrder() UsdGeom.Xformable(child1).ClearXformOpOrder() UsdGeom.Xformable(child2).ClearXformOpOrder() UsdGeom.Xformable(parent).AddRotateYOp().Set(45) UsdGeom.Xformable(child1).AddTranslateOp().Set((-0.5, 0.5, 0.0)) UsdGeom.Xformable(child1).AddRotateYOp().Set(45) UsdGeom.Xformable(child2).AddTranslateOp().Set((0.5, -0.5, 0.0)) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) bbox3d_data = syn.sensors.get_bounding_box_3d(self.viewport, parsed=True, return_corners=True) parent_bbox = [row for row in bbox3d_data if row["name"] == parent.GetPath()][0] child1_bbox = [row for row in bbox3d_data if row["name"] == child1.GetPath()][0] child2_bbox = [row for row in bbox3d_data if row["name"] == child2.GetPath()][0] # Only takes into account child transforms a = math.cos(math.pi / 4) parent_bounds = [[-a - 0.5, -1.0, -a], [1.0, 1.0, a]] child1_bounds = [[-0.5, -0.5, -0.5], [0.5, 0.5, 0.5]] child2_bounds = [[-0.5, -0.5, -0.5], [0.5, 0.5, 0.5]] # Doesn't take into account transforms for bbox, bounds in zip([parent_bbox, child1_bbox, child2_bbox], [parent_bounds, child1_bounds, child2_bounds]): self.assertAlmostEqual(bbox["x_min"], bounds[0][0], places=5) self.assertAlmostEqual(bbox["y_min"], bounds[0][1], places=5) self.assertAlmostEqual(bbox["z_min"], bounds[0][2], places=5) self.assertAlmostEqual(bbox["x_max"], bounds[1][0], places=5) self.assertAlmostEqual(bbox["y_max"], bounds[1][1], places=5) self.assertAlmostEqual(bbox["z_max"], bounds[1][2], places=5) prim = stage.GetPrimAtPath(bbox["name"]) tf = np.array(UsdGeom.Imageable(prim).ComputeLocalToWorldTransform(0.0)) gf_range = Gf.Range3f(*bounds) gf_corners = np.array([gf_range.GetCorner(i) for i in range(8)]) gf_corners = np.pad(gf_corners, ((0, 0), (0, 1)), constant_values=1.0) gf_corners = np.dot(gf_corners, tf)[:, :3] assert np.allclose(bbox["corners"], gf_corners, atol=1e-5) async def test_parsed_nested_Y(self): """ Test 3D bounding box with nested semantics and transforms, Y-Up. """ # Create 2 cubes (size=1) under a parent prim stage = omni.usd.get_context().get_stage() UsdGeom.SetStageUpAxis(stage, "Y") parent = stage.DefinePrim("/World/Parent", "Xform") child1 = stage.DefinePrim("/World/Parent/Child1", "Cube") child2 = stage.DefinePrim("/World/Parent/Child2", "Cube") child1.GetAttribute("size").Set(1.0) child2.GetAttribute("size").Set(1.0) utils.add_semantics(parent, "parent") utils.add_semantics(child1, "child1") utils.add_semantics(child2, "child2") UsdGeom.Xformable(parent).ClearXformOpOrder() UsdGeom.Xformable(child1).ClearXformOpOrder() UsdGeom.Xformable(child2).ClearXformOpOrder() UsdGeom.Xformable(parent).AddRotateYOp().Set(45) UsdGeom.Xformable(child1).AddTranslateOp().Set((-0.5, 0.5, 0.0)) UsdGeom.Xformable(child1).AddRotateYOp().Set(45) UsdGeom.Xformable(child2).AddTranslateOp().Set((0.5, -0.5, 0.0)) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) bbox3d_data = syn.sensors.get_bounding_box_3d(self.viewport, parsed=True, return_corners=True) parent_bbox = [row for row in bbox3d_data if row["name"] == parent.GetPath()][0] child1_bbox = [row for row in bbox3d_data if row["name"] == child1.GetPath()][0] child2_bbox = [row for row in bbox3d_data if row["name"] == child2.GetPath()][0] # Only takes into account child transforms a = math.cos(math.pi / 4) parent_bounds = [[-a - 0.5, -1.0, -a], [1.0, 1.0, a]] child1_bounds = [[-0.5, -0.5, -0.5], [0.5, 0.5, 0.5]] child2_bounds = [[-0.5, -0.5, -0.5], [0.5, 0.5, 0.5]] # Doesn't take into account transforms for bbox, bounds in zip([parent_bbox, child1_bbox, child2_bbox], [parent_bounds, child1_bounds, child2_bounds]): self.assertAlmostEqual(bbox["x_min"], bounds[0][0], places=5) self.assertAlmostEqual(bbox["y_min"], bounds[0][1], places=5) self.assertAlmostEqual(bbox["z_min"], bounds[0][2], places=5) self.assertAlmostEqual(bbox["x_max"], bounds[1][0], places=5) self.assertAlmostEqual(bbox["y_max"], bounds[1][1], places=5) self.assertAlmostEqual(bbox["z_max"], bounds[1][2], places=5) prim = stage.GetPrimAtPath(bbox["name"]) tf = np.array(UsdGeom.Imageable(prim).ComputeLocalToWorldTransform(0.0)) gf_range = Gf.Range3f(*bounds) gf_corners = np.array([gf_range.GetCorner(i) for i in range(8)]) gf_corners = np.pad(gf_corners, ((0, 0), (0, 1)), constant_values=1.0) gf_corners = np.dot(gf_corners, tf)[:, :3] assert np.allclose(bbox["corners"], gf_corners, atol=1e-5) async def test_parsed_nested_Z(self): """ Test 3D bounding box with nested semantics and transforms, Z-Up. """ # Create 2 cubes (size=1) under a parent prim stage = omni.usd.get_context().get_stage() UsdGeom.SetStageUpAxis(stage, "Z") parent = stage.DefinePrim("/World/Parent", "Xform") child1 = stage.DefinePrim("/World/Parent/Child1", "Cube") child2 = stage.DefinePrim("/World/Parent/Child2", "Cube") child1.GetAttribute("size").Set(1.0) child2.GetAttribute("size").Set(1.0) utils.add_semantics(parent, "parent") utils.add_semantics(child1, "child1") utils.add_semantics(child2, "child2") UsdGeom.Xformable(parent).ClearXformOpOrder() UsdGeom.Xformable(child1).ClearXformOpOrder() UsdGeom.Xformable(child2).ClearXformOpOrder() UsdGeom.Xformable(parent).AddRotateYOp().Set(45) UsdGeom.Xformable(child1).AddTranslateOp().Set((-0.5, 0.5, 0.0)) UsdGeom.Xformable(child1).AddRotateYOp().Set(45) UsdGeom.Xformable(child2).AddTranslateOp().Set((0.5, -0.5, 0.0)) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) bbox3d_data = syn.sensors.get_bounding_box_3d(self.viewport, parsed=True, return_corners=True) parent_bbox = [row for row in bbox3d_data if row["name"] == parent.GetPath()][0] child1_bbox = [row for row in bbox3d_data if row["name"] == child1.GetPath()][0] child2_bbox = [row for row in bbox3d_data if row["name"] == child2.GetPath()][0] # Only takes into account child transforms a = math.cos(math.pi / 4) parent_bounds = [[-a - 0.5, -1.0, -a], [1.0, 1.0, a]] child1_bounds = [[-0.5, -0.5, -0.5], [0.5, 0.5, 0.5]] child2_bounds = [[-0.5, -0.5, -0.5], [0.5, 0.5, 0.5]] # Doesn't take into account transforms for bbox, bounds in zip([parent_bbox, child1_bbox, child2_bbox], [parent_bounds, child1_bounds, child2_bounds]): self.assertAlmostEqual(bbox["x_min"], bounds[0][0], places=5) self.assertAlmostEqual(bbox["y_min"], bounds[0][1], places=5) self.assertAlmostEqual(bbox["z_min"], bounds[0][2], places=5) self.assertAlmostEqual(bbox["x_max"], bounds[1][0], places=5) self.assertAlmostEqual(bbox["y_max"], bounds[1][1], places=5) self.assertAlmostEqual(bbox["z_max"], bounds[1][2], places=5) prim = stage.GetPrimAtPath(bbox["name"]) tf = np.array(UsdGeom.Imageable(prim).ComputeLocalToWorldTransform(0.0)) gf_range = Gf.Range3f(*bounds) gf_corners = np.array([gf_range.GetCorner(i) for i in range(8)]) gf_corners = np.pad(gf_corners, ((0, 0), (0, 1)), constant_values=1.0) gf_corners = np.dot(gf_corners, tf)[:, :3] assert np.allclose(bbox["corners"], gf_corners, atol=1e-5) @unittest.skip("OM-45008") async def test_camera_frame_simple_ftheta(self): """ Test 3D bounding box in a simple scene under ftheta camera. """ settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) stage = omni.usd.get_context().get_stage() # TEST SIMPLE SCENE cube = stage.DefinePrim("/Cube", "Cube") cube.GetAttribute("size").Set(2.0) UsdGeom.Xformable(cube).AddTranslateOp().Set((10.0, 1.0, 2)) utils.add_semantics(cube, "cube") camera = stage.DefinePrim("/Camera", "Camera") camera.CreateAttribute("cameraProjectionType", Sdf.ValueTypeNames.Token).Set("fisheyePolynomial") UsdGeom.Xformable(camera).AddTranslateOp().Set((10.0, 0.0, 0.0)) self.viewport.camera_path = camera.GetPath() # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) bbox3d_data = syn.sensors.get_bounding_box_3d( self.viewport, parsed=True, return_corners=True, camera_frame=True ) # TODO: find the correct value of distorted result. # The f theta will distort the result. extents = Gf.Range3d([-1.0, 0, 1], [1.0, 2.0, 3]) corners = np.array([[extents.GetCorner(i) for i in range(8)]]) assert not np.allclose(bbox3d_data[0]["corners"], corners) @unittest.skip("OM-45008") async def test_camera_frame_simple_spherical(self): """ Test 3D bounding box in a simple scene under fisheye spherical camera. """ settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) stage = omni.usd.get_context().get_stage() # TEST SIMPLE SCENE cube = stage.DefinePrim("/Cube", "Cube") cube.GetAttribute("size").Set(2.0) UsdGeom.Xformable(cube).AddTranslateOp().Set((10.0, 1.0, 2)) utils.add_semantics(cube, "cube") camera = stage.DefinePrim("/Camera", "Camera") camera.CreateAttribute("cameraProjectionType", Sdf.ValueTypeNames.Token).Set("fisheyeSpherical") UsdGeom.Xformable(camera).AddTranslateOp().Set((10.0, 0.0, 0.0)) self.viewport.camera_path = camera.GetPath() # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) bbox3d_data = syn.sensors.get_bounding_box_3d( self.viewport, parsed=True, return_corners=True, camera_frame=True ) # TODO: find the correct value of distorted result. # The spherical camera will distort the result. extents = Gf.Range3d([-1.0, 0, 1], [1.0, 2.0, 3]) corners = np.array([[extents.GetCorner(i) for i in range(8)]]) assert not np.allclose(bbox3d_data[0]["corners"], corners) async def test_camera_frame_simple(self): """ Test 3D bounding box in a simple scene. """ stage = omni.usd.get_context().get_stage() # TEST SIMPLE SCENE cube = stage.DefinePrim("/Cube", "Cube") cube.GetAttribute("size").Set(2.0) UsdGeom.Xformable(cube).AddTranslateOp().Set((10.0, 0.0, 10.0)) utils.add_semantics(cube, "cube") camera = stage.DefinePrim("/Camera", "Camera") UsdGeom.Xformable(camera).AddTranslateOp().Set((10.0, 0.0, 0.0)) self.viewport.camera_path = camera.GetPath() # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) bbox3d_data = syn.sensors.get_bounding_box_3d( self.viewport, parsed=True, return_corners=True, camera_frame=True ) extents = Gf.Range3d([-1.0, -1.0, 9.0], [1.0, 1.0, 11.0]) corners = np.array([[extents.GetCorner(i) for i in range(8)]]) assert np.allclose(bbox3d_data[0]["corners"], corners) tf = np.eye(4) tf[3, 2] = 10.0 assert np.allclose(bbox3d_data[0]["transform"], tf) async def test_camera_frame_reference(self): """ Test 3D bounding box in a simple scene. """ ref_path = os.path.join(TMP, f"ref_stage{uuid.uuid1()}.usd") ref_stage = Usd.Stage.CreateNew(ref_path) world = ref_stage.DefinePrim("/World", "Xform") world_tf = utils.get_random_transform() UsdGeom.Xformable(world).AddTransformOp().Set(world_tf) cube = ref_stage.DefinePrim("/World/Cube", "Cube") cube.GetAttribute("size").Set(2.0) cube_tf = Gf.Matrix4d().SetTranslateOnly((10.0, 0.0, 10.0)) UsdGeom.Xformable(cube).AddTransformOp().Set(cube_tf) utils.add_semantics(cube, "cube") camera = ref_stage.DefinePrim("/World/Camera", "Camera") camera_tf = cube_tf UsdGeom.Xformable(camera).AddTransformOp().Set(camera_tf) ref_stage.Save() # omni.usd.get_context().new_stage() # await omni.usd.get_context().new_stage_async() stage = omni.usd.get_context().get_stage() rig = stage.DefinePrim("/Rig", "Xform") rig_tf = utils.get_random_transform() UsdGeom.Xformable(rig).AddTransformOp().Set(rig_tf) ref = stage.DefinePrim("/Rig/Ref") ref.GetReferences().AddReference(ref_path, "/World") self.viewport.camera_path = "/Rig/Ref/Camera" # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) bbox3d_data_world = syn.sensors.get_bounding_box_3d( self.viewport, parsed=True, return_corners=True, camera_frame=False ) bbox3d_data_camera = syn.sensors.get_bounding_box_3d( self.viewport, parsed=True, return_corners=True, camera_frame=True ) extents = Gf.Range3d([-1.0, -1.0, -1.0], [1.0, 1.0, 1.0]) corners = np.array([[extents.GetCorner(i) for i in range(8)]]) assert np.allclose(bbox3d_data_camera[0]["corners"], corners) combined_tf = np.matmul(cube_tf, np.matmul(world_tf, rig_tf)) corners_tf = np.matmul(np.pad(corners.reshape(-1, 3), ((0, 0), (0, 1)), constant_values=1), combined_tf) corners_tf = corners_tf[:, :3].reshape(-1, 8, 3) assert np.allclose(bbox3d_data_world[0]["corners"], corners_tf) # tf = np.eye(4) # tf[3, 2] = 10.0 assert np.allclose(bbox3d_data_world[0]["transform"], combined_tf) pt_camera_min = [bbox3d_data_camera[0][f"{a}_min"] for a in ["x", "y", "z"]] pt_camera_min = np.array([*pt_camera_min, 1.0]) pt_camera_max = [bbox3d_data_camera[0][f"{a}_max"] for a in ["x", "y", "z"]] pt_camera_max = np.array([*pt_camera_max, 1.0]) assert np.allclose(np.matmul(pt_camera_min, bbox3d_data_camera[0]["transform"])[:3], corners[0, 0]) assert np.allclose(np.matmul(pt_camera_max, bbox3d_data_camera[0]["transform"])[:3], corners[0, 7]) async def test_camera_frame_Y(self): # TEST NESTED TRANSFORMS, UP AXIS # Create 2 cubes (size=1) under a parent prim stage = omni.usd.get_context().get_stage() UsdGeom.SetStageUpAxis(stage, "Y") parent = stage.DefinePrim("/World/Parent", "Xform") child1 = stage.DefinePrim("/World/Parent/Child1", "Cube") child2 = stage.DefinePrim("/World/Parent/Child2", "Cube") camera = stage.DefinePrim("/World/Camera", "Camera") child1.GetAttribute("size").Set(1.0) child2.GetAttribute("size").Set(1.0) utils.add_semantics(parent, "parent") utils.add_semantics(child1, "child1") utils.add_semantics(child2, "child2") UsdGeom.Xformable(parent).ClearXformOpOrder() UsdGeom.Xformable(child1).ClearXformOpOrder() UsdGeom.Xformable(child2).ClearXformOpOrder() UsdGeom.Xformable(camera).ClearXformOpOrder() UsdGeom.Xformable(parent).AddRotateYOp().Set(45) UsdGeom.Xformable(child1).AddTranslateOp().Set((-0.5, 0.5, 0.0)) UsdGeom.Xformable(child1).AddRotateYOp().Set(45) UsdGeom.Xformable(child2).AddTranslateOp().Set((0.5, -0.5, 0.0)) # Move camera with random transform camera_tf = utils.get_random_transform() UsdGeom.Xformable(camera).AddTransformOp().Set(Gf.Matrix4d(camera_tf)) camera_tf_inv = np.linalg.inv(camera_tf) self.viewport.camera_path = camera.GetPath() # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) bbox3d_data = syn.sensors.get_bounding_box_3d( self.viewport, parsed=True, return_corners=True, camera_frame=True ) parent_bbox = [row for row in bbox3d_data if row["name"] == parent.GetPath()][0] child1_bbox = [row for row in bbox3d_data if row["name"] == child1.GetPath()][0] child2_bbox = [row for row in bbox3d_data if row["name"] == child2.GetPath()][0] # Only takes into account child transforms a = math.cos(math.pi / 4) parent_bounds = [[-a - 0.5, -1.0, -a], [1.0, 1.0, a]] child1_bounds = [[-0.5, -0.5, -0.5], [0.5, 0.5, 0.5]] child2_bounds = [[-0.5, -0.5, -0.5], [0.5, 0.5, 0.5]] # Doesn't take into account transforms for bbox, bounds in zip([parent_bbox, child1_bbox, child2_bbox], [parent_bounds, child1_bounds, child2_bounds]): self.assertAlmostEqual(bbox["x_min"], bounds[0][0], places=5) self.assertAlmostEqual(bbox["y_min"], bounds[0][1], places=5) self.assertAlmostEqual(bbox["z_min"], bounds[0][2], places=5) self.assertAlmostEqual(bbox["x_max"], bounds[1][0], places=5) self.assertAlmostEqual(bbox["y_max"], bounds[1][1], places=5) self.assertAlmostEqual(bbox["z_max"], bounds[1][2], places=5) prim = stage.GetPrimAtPath(bbox["name"]) tf = np.array(UsdGeom.Imageable(prim).ComputeLocalToWorldTransform(0.0)) gf_range = Gf.Range3f(*bounds) gf_corners = np.array([gf_range.GetCorner(i) for i in range(8)]) gf_corners = np.pad(gf_corners, ((0, 0), (0, 1)), constant_values=1.0) gf_corners = np.dot(gf_corners, tf) gf_corners = np.dot(gf_corners, camera_tf_inv)[:, :3] assert np.allclose(bbox["corners"], gf_corners, atol=1e-5) async def test_camera_frame_Z(self): # TEST NESTED TRANSFORMS, UP AXIS # Create 2 cubes (size=1) under a parent prim stage = omni.usd.get_context().get_stage() UsdGeom.SetStageUpAxis(stage, "Z") parent = stage.DefinePrim("/World/Parent", "Xform") child1 = stage.DefinePrim("/World/Parent/Child1", "Cube") child2 = stage.DefinePrim("/World/Parent/Child2", "Cube") camera = stage.DefinePrim("/World/Camera", "Camera") child1.GetAttribute("size").Set(1.0) child2.GetAttribute("size").Set(1.0) utils.add_semantics(parent, "parent") utils.add_semantics(child1, "child1") utils.add_semantics(child2, "child2") UsdGeom.Xformable(parent).ClearXformOpOrder() UsdGeom.Xformable(child1).ClearXformOpOrder() UsdGeom.Xformable(child2).ClearXformOpOrder() UsdGeom.Xformable(camera).ClearXformOpOrder() UsdGeom.Xformable(parent).AddRotateYOp().Set(45) UsdGeom.Xformable(child1).AddTranslateOp().Set((-0.5, 0.5, 0.0)) UsdGeom.Xformable(child1).AddRotateYOp().Set(45) UsdGeom.Xformable(child2).AddTranslateOp().Set((0.5, -0.5, 0.0)) # Move camera with random transform camera_tf = np.eye(4) camera_tf[:3, :3] = Gf.Matrix3d(Gf.Rotation(np.random.rand(3).tolist(), np.random.rand(3).tolist())) camera_tf[3, :3] = np.random.rand(1, 3) UsdGeom.Xformable(camera).AddTransformOp().Set(Gf.Matrix4d(camera_tf)) camera_tf_inv = np.linalg.inv(camera_tf) self.viewport.camera_path = camera.GetPath() # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) bbox3d_data = syn.sensors.get_bounding_box_3d( self.viewport, parsed=True, return_corners=True, camera_frame=True ) parent_bbox = [row for row in bbox3d_data if row["name"] == parent.GetPath()][0] child1_bbox = [row for row in bbox3d_data if row["name"] == child1.GetPath()][0] child2_bbox = [row for row in bbox3d_data if row["name"] == child2.GetPath()][0] # Only takes into account child transforms a = math.cos(math.pi / 4) parent_bounds = [[-a - 0.5, -1.0, -a], [1.0, 1.0, a]] child1_bounds = [[-0.5, -0.5, -0.5], [0.5, 0.5, 0.5]] child2_bounds = [[-0.5, -0.5, -0.5], [0.5, 0.5, 0.5]] # Doesn't take into account transforms for bbox, bounds in zip([parent_bbox, child1_bbox, child2_bbox], [parent_bounds, child1_bounds, child2_bounds]): self.assertAlmostEqual(bbox["x_min"], bounds[0][0], places=5) self.assertAlmostEqual(bbox["y_min"], bounds[0][1], places=5) self.assertAlmostEqual(bbox["z_min"], bounds[0][2], places=5) self.assertAlmostEqual(bbox["x_max"], bounds[1][0], places=5) self.assertAlmostEqual(bbox["y_max"], bounds[1][1], places=5) self.assertAlmostEqual(bbox["z_max"], bounds[1][2], places=5) prim = stage.GetPrimAtPath(bbox["name"]) tf = np.array(UsdGeom.Imageable(prim).ComputeLocalToWorldTransform(0.0)) gf_range = Gf.Range3f(*bounds) gf_corners = np.array([gf_range.GetCorner(i) for i in range(8)]) gf_corners = np.pad(gf_corners, ((0, 0), (0, 1)), constant_values=1.0) gf_corners = np.dot(gf_corners, tf) gf_corners = np.dot(gf_corners, camera_tf_inv)[:, :3] assert np.allclose(bbox["corners"], gf_corners, atol=1e-5) @unittest.skip("OM-46398") async def test_bbox_3d_scene_instance(self): """ Test sensor on scene instance. """ path = os.path.join(FILE_DIR, "../data/scenes/scene_instance_test.usda") await omni.usd.get_context().open_stage_async(path) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_bounding_box_3d_(self.viewport) # should be 3 prims in the scene # TODO: add more complicated test assert len(data) == 3 # After running each test async def tearDown(self): pass
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/sensors/test_depth.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import os import math import asyncio from time import time import carb import numpy as np import omni.kit.test from omni.kit.viewport.utility import get_active_viewport from pxr import Gf, UsdGeom, Sdf # Import extension python module we are testing with absolute import path, as if we are external user (other extension) import omni.syntheticdata as syn from ..utils import add_semantics FILE_DIR = os.path.dirname(os.path.realpath(__file__)) TIMEOUT = 200 # Having a test class derived from omni.kit.test.AsyncTestCase declared on the root of module will make it auto-discoverable by omni.kit.test class TestDepth(omni.kit.test.AsyncTestCase): # Before running each test async def setUp(self): np.random.seed(1234) # Setup viewport self.viewport = get_active_viewport() # Initialize Sensor await omni.usd.get_context().new_stage_async() stage = omni.usd.get_context().get_stage() await omni.kit.app.get_app().next_update_async() await syn.sensors.create_or_retrieve_sensor_async(self.viewport, syn._syntheticdata.SensorType.Depth) async def test_parsed_empty(self): """ Test depth sensor on empty stage. """ # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_depth(self.viewport) assert data.sum() == 0 async def test_parsed_dtype(self): stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_depth(self.viewport) assert data.dtype == np.float32 async def test_distances(self): stage = omni.usd.get_context().get_stage() camera = stage.DefinePrim("/Camera", "Camera") UsdGeom.Xformable(camera).AddTranslateOp().Set((0, 0, 0)) self.viewport.camera_path = camera.GetPath() await omni.kit.app.get_app().next_update_async() for n in range(10, 100, 10): cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") # n = 5 UsdGeom.XformCommonAPI(cube).SetTranslate((0, 0, -n)) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_depth(self.viewport) assert np.isclose(data.min(), 0, atol=1e-5) # The front of the cube is 1 ahead of its center position assert np.isclose(data.max(), 1 / (n - 1), atol=1e-5) async def test_distances_pathtracing(self): """ Basic funtionality test of the sensor, but in path tracing mode. """ # Set the rendering mode to be pathtracing settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) stage = omni.usd.get_context().get_stage() camera = stage.DefinePrim("/Camera", "Camera") UsdGeom.Xformable(camera).AddTranslateOp().Set((0, 0, 0)) self.viewport.camera_path = camera.GetPath() await omni.kit.app.get_app().next_update_async() for n in range(10, 100, 10): cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") # n = 5 UsdGeom.XformCommonAPI(cube).SetTranslate((0, 0, -n)) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_depth(self.viewport) assert np.isclose(data.min(), 0, atol=1e-5) # The front of the cube is 1 ahead of its center position assert np.isclose(data.max(), 1 / (n - 1), atol=1e-5) async def test_distances_ray_traced_lighting(self): """ Basic funtionality test of the sensor, but in ray traced lighting. """ # Set the rendering mode to be pathtracing settings_interface = carb.settings.get_settings() settings_interface.set_string("/rtx/rendermode", "RayTracedLighting") stage = omni.usd.get_context().get_stage() camera = stage.DefinePrim("/Camera", "Camera") UsdGeom.Xformable(camera).AddTranslateOp().Set((0, 0, 0)) self.viewport.camera_path = camera.GetPath() await omni.kit.app.get_app().next_update_async() for n in range(10, 100, 10): cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") # n = 5 UsdGeom.XformCommonAPI(cube).SetTranslate((0, 0, -n)) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_depth(self.viewport) assert np.isclose(data.min(), 0, atol=1e-5) # The front of the cube is 1 ahead of its center position assert np.isclose(data.max(), 1 / (n - 1), atol=1e-5) async def test_ftheta_camera(self): """ Test the functionality of the sensor under f-theta camera. """ settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) stage = omni.usd.get_context().get_stage() camera = stage.DefinePrim("/Camera", "Camera") # Set the camera to be polynomial fish eye camera. camera.CreateAttribute("cameraProjectionType", Sdf.ValueTypeNames.Token).Set("fisheyePolynomial") # Set the Camera's position UsdGeom.Xformable(camera).AddTranslateOp().Set((0, 0, 0)) self.viewport.camera_path = camera.GetPath() await omni.kit.app.get_app().next_update_async() # Add a cube at the centre of the scene cube_prim = stage.DefinePrim("/Cube", "Cube") add_semantics(cube_prim, "cube") cube = UsdGeom.Cube(cube_prim) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_depth(self.viewport) await omni.kit.app.get_app().next_update_async() # Centre of the data should be half of the cube edge's length, adjusted to correct scale. edge_length = cube.GetSizeAttr().Get() assert np.isclose(1 / (edge_length - 1), data.max(), atol=1e-3) assert np.isclose(1 / (np.sqrt(((edge_length) ** 2)*2) - 1), data[data > 0].min(), atol=1e-1) # After running each test async def tearDown(self): pass
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/sensors/test_semantic_seg.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import os import math import asyncio from time import time from pathlib import Path import carb import numpy as np import omni.kit.test from omni.kit.viewport.utility import get_active_viewport from pxr import Gf, UsdGeom, Sdf # Import extension python module we are testing with absolute import path, as if we are external user (other extension) import omni.syntheticdata as syn from ..utils import add_semantics import unittest FILE_DIR = os.path.dirname(os.path.realpath(__file__)) TIMEOUT = 200 # Having a test class derived from omni.kit.test.AsyncTestCase declared on the root of module will make it auto-discoverable by omni.kit.test class TestSemanticSeg(omni.kit.test.AsyncTestCase): def __init__(self, methodName: str) -> None: super().__init__(methodName=methodName) self.golden_image_path = Path(os.path.dirname(os.path.abspath(__file__))) / ".." / "data" / "golden" # Before running each test async def setUp(self): np.random.seed(1234) # Setup viewport self.viewport = get_active_viewport() # Initialize Sensor await omni.usd.get_context().new_stage_async() await syn.sensors.initialize_async( self.viewport, [ syn._syntheticdata.SensorType.SemanticSegmentation, syn._syntheticdata.SensorType.InstanceSegmentation ] ) async def test_empty(self): """ Test semantic segmentation on empty stage. """ data = syn.sensors.get_semantic_segmentation(self.viewport) assert data.sum() == 0 async def test_dtype(self): stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_semantic_segmentation(self.viewport) assert data.dtype == np.uint32 async def test_cube(self): stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") cube.GetAttribute("size").Set(100) await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_semantic_segmentation(self.viewport) # np.savez_compressed(self.golden_image_path / 'semantic_seg_cube.npz', array=data) golden_image = np.load(self.golden_image_path / "semantic_seg_cube.npz")["array"] std_dev = np.sqrt(np.square(data - golden_image).astype(float).mean()) assert std_dev < 0.1 async def test_cube_sphere(self): stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") cube.GetAttribute("size").Set(100) sphere_prim = stage.DefinePrim("/Sphere", "Sphere") UsdGeom.XformCommonAPI(sphere_prim).SetTranslate((300, 0, 0)) add_semantics(sphere_prim, "sphere") sphere = UsdGeom.Sphere(sphere_prim) sphere.GetRadiusAttr().Set(100) await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_instance_segmentation(self.viewport) # np.savez_compressed(self.golden_image_path / 'instance_seg_cube.npz', array=data) assert len(data) != 0 async def test_cube_pathtracing(self): """ Basic funtionality test of the sensor, but in path tracing mode. """ settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") cube.GetAttribute("size").Set(100) await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_semantic_segmentation(self.viewport) golden_image = np.load(self.golden_image_path / "semantic_seg_cube.npz")["array"] std_dev = np.sqrt(np.square(data - golden_image).astype(float).mean()) assert std_dev < 0.1 async def test_cube_ray_traced_lighting(self): """ Basic funtionality test of the sensor, but in ray traced lighting. """ settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "RayTracedLighting") stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") cube.GetAttribute("size").Set(100) await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_semantic_segmentation(self.viewport) golden_image = np.load(self.golden_image_path / "semantic_seg_cube.npz")["array"] std_dev = np.sqrt(np.square(data - golden_image).astype(float).mean()) assert std_dev < 0.1 async def test_cube_ftheta(self): """ Basic funtionality test of the sensor under f theta camera. """ settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") cube.GetAttribute("size").Set(100) await omni.kit.app.get_app().next_update_async() camera = stage.DefinePrim("/Camera", "Camera") # Set the camera to be polynomial fish eye camera. camera.CreateAttribute("cameraProjectionType", Sdf.ValueTypeNames.Token).Set("fisheyePolynomial") # Set the Camera's position UsdGeom.Xformable(camera).AddTranslateOp().Set((100, 100, 100)) self.viewport.camera_path = camera.GetPath() await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_semantic_segmentation(self.viewport) # np.savez_compressed(self.golden_image_path / 'semantic_seg_cube_ftheta.npz', array=data) golden_image = np.load(self.golden_image_path / "semantic_seg_cube_ftheta.npz")["array"] std_dev = np.sqrt(np.square(data - golden_image).astype(float).mean()) assert std_dev < 0.1 async def test_cube_spherical(self): """ Basic funtionality test of the sensor under spherical camera. """ settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") cube.GetAttribute("size").Set(100) await omni.kit.app.get_app().next_update_async() camera = stage.DefinePrim("/Camera", "Camera") # Set the camera to be spherical fish eye camera. camera.CreateAttribute("cameraProjectionType", Sdf.ValueTypeNames.Token).Set("fisheyeSpherical") # Set the Camera's position UsdGeom.Xformable(camera).AddTranslateOp().Set((100, 100, 100)) self.viewport.camera_path = camera.GetPath() await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_semantic_segmentation(self.viewport) # np.savez_compressed(self.golden_image_path / 'semantic_seg_cube_spherical.npz', array=data) golden_image = np.load(self.golden_image_path / "semantic_seg_cube_spherical.npz")["array"] std_dev = np.sqrt(np.square(data - golden_image).astype(float).mean()) assert std_dev < 0.1 @unittest.skip("OM-46393") async def test_geom_subset(self): """ Test sensor on GeomSubset. """ path = os.path.join(FILE_DIR, "../data/scenes/streetlamp_03_golden.usd") await omni.usd.get_context().open_stage_async(path) await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_semantic_segmentation(self.viewport) assert len(data) != 0 @unittest.skip("OM-46394") async def test_sem_seg_scene_instance(self): """ Test sensor on scene instance. """ path = os.path.join(FILE_DIR, "../data/scenes/scene_instance_test.usda") await omni.usd.get_context().open_stage_async(path) await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_semantic_segmentation(self.viewport) # TODO add more complicated test assert len(data) != 0 # After running each test async def tearDown(self): pass
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/sensors/test_bbox2d_tight.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import os import math import asyncio from time import time import unittest import carb import numpy as np import omni.kit.test from pxr import Gf, UsdGeom from omni.kit.viewport.utility import get_active_viewport # Import extension python module we are testing with absolute import path, as if we are external user (other extension) import omni.syntheticdata as syn from ..utils import add_semantics FILE_DIR = os.path.dirname(os.path.realpath(__file__)) TIMEOUT = 200 # Having a test class derived from omni.kit.test.AsyncTestCase declared on the root of module will make it auto-discoverable by omni.kit.test class TestBBox2DTight(omni.kit.test.AsyncTestCase): # Before running each test async def setUp(self): np.random.seed(1234) # Setup viewport self.viewport = get_active_viewport() # Initialize Sensor await omni.usd.get_context().new_stage_async() stage = omni.usd.get_context().get_stage() await omni.kit.app.get_app().next_update_async() await syn.sensors.create_or_retrieve_sensor_async( self.viewport, syn._syntheticdata.SensorType.BoundingBox2DTight ) async def test_parsed_empty(self): """ Test 2D bounding box on empty stage. """ bbox2d_data = syn.sensors.get_bounding_box_2d_tight(self.viewport) assert not bool(bbox2d_data) async def test_fields_exist(self): stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) bbox2d_data = syn.sensors.get_bounding_box_2d_tight(self.viewport) valid_dtype = [ ("uniqueId", "<i4"), ("name", "O"), ("semanticLabel", "O"), ("metadata", "O"), ("instanceIds", "O"), ("semanticId", "<u4"), ("x_min", "<i4"), ("y_min", "<i4"), ("x_max", "<i4"), ("y_max", "<i4"), ] assert bbox2d_data.dtype == np.dtype(valid_dtype) async def test_cube(self): """ Basic test for the sensor. """ stage = omni.usd.get_context().get_stage() camera = stage.DefinePrim("/Camera", "Camera") UsdGeom.Xformable(camera).AddTranslateOp().Set((0, 0, 0)) self.viewport.camera_path = camera.GetPath() await omni.kit.app.get_app().next_update_async() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") UsdGeom.XformCommonAPI(cube).SetTranslate((0, 0, -10)) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) bbox2d_data = syn.sensors.get_bounding_box_2d_tight(self.viewport) assert bbox2d_data[0] x_min, y_min, x_max, y_max = bbox2d_data[0][6], bbox2d_data[0][7], bbox2d_data[0][8], bbox2d_data[0][9] assert x_min == 301 assert y_min == 21 assert x_max == 978 assert y_max == 698 @unittest.skip("OM-46398") async def test_bbox_2d_tight_scene_instance(self): """ Test sensor on scene instance. """ settings = carb.settings.get_settings() if settings.get("/rtx/hydra/enableSemanticSchema"): path = os.path.join(FILE_DIR, "../data/scenes/scene_instance_test.usda") await omni.usd.get_context().open_stage_async(path) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_bounding_box_2d_tight(self.viewport) # should be 3 prims in the scene. # TODO: Add more complicated test assert len(data) == 3 async def test_cube_pathtracing(self): """ Basic funtionality test of the sensor, but in path tracing mode. """ settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) stage = omni.usd.get_context().get_stage() camera = stage.DefinePrim("/Camera", "Camera") UsdGeom.Xformable(camera).AddTranslateOp().Set((0, 0, 0)) self.viewport.camera_path = camera.GetPath() await omni.kit.app.get_app().next_update_async() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") UsdGeom.XformCommonAPI(cube).SetTranslate((0, 0, -10)) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) bbox2d_data = syn.sensors.get_bounding_box_2d_tight(self.viewport) x_min, y_min, x_max, y_max = bbox2d_data[0][6], bbox2d_data[0][7], bbox2d_data[0][8], bbox2d_data[0][9] assert x_min == 301 assert y_min == 21 assert x_max == 978 assert y_max == 698 async def test_cube_ray_traced_lighting(self): """ Basic test for the sensor, but in ray traced lighting mode. """ # Set the rendering mode to be ray traced lighting. settings_interface = carb.settings.get_settings() settings_interface.set_string("/rtx/rendermode", "RayTracedLighting") stage = omni.usd.get_context().get_stage() camera = stage.DefinePrim("/Camera", "Camera") UsdGeom.Xformable(camera).AddTranslateOp().Set((0, 0, 0)) self.viewport.camera_path = camera.GetPath() await omni.kit.app.get_app().next_update_async() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") UsdGeom.XformCommonAPI(cube).SetTranslate((0, 0, -10)) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) bbox2d_data = syn.sensors.get_bounding_box_2d_tight(self.viewport) x_min, y_min, x_max, y_max = bbox2d_data[0][6], bbox2d_data[0][7], bbox2d_data[0][8], bbox2d_data[0][9] assert x_min == 301 assert y_min == 21 assert x_max == 978 assert y_max == 698 # After running each test async def tearDown(self): pass
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/sensors/test_distance_to_camera.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import os from time import time from pathlib import Path import carb import numpy as np import omni.kit.test from omni.kit.viewport.utility import get_active_viewport from pxr import Gf, UsdGeom, Sdf # Import extension python module we are testing with absolute import path, as if we are external user (other extension) import omni.syntheticdata as syn from ..utils import add_semantics FILE_DIR = os.path.dirname(os.path.realpath(__file__)) TIMEOUT = 200 # Having a test class derived from omni.kit.test.AsyncTestCase declared on the root of module will make it auto-discoverable by omni.kit.test class TestDistanceToCamera(omni.kit.test.AsyncTestCase): # Before running each test async def setUp(self): np.random.seed(1234) # Setup viewport self.viewport = get_active_viewport() self.golden_image_path = Path(os.path.dirname(os.path.abspath(__file__))) / ".." / "data" / "golden" # Initialize Sensor await omni.usd.get_context().new_stage_async() stage = omni.usd.get_context().get_stage() await omni.kit.app.get_app().next_update_async() await syn.sensors.create_or_retrieve_sensor_async(self.viewport, syn._syntheticdata.SensorType.DistanceToCamera) async def test_parsed_empty(self): """ Test distance-to-camera sensor on empty stage. """ # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_distance_to_camera(self.viewport) assert np.all(data > 1000) async def test_parsed_dtype(self): stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_distance_to_camera(self.viewport) assert data.dtype == np.float32 async def test_distances(self): stage = omni.usd.get_context().get_stage() camera = stage.DefinePrim("/Camera", "Camera") UsdGeom.Xformable(camera).AddTranslateOp().Set((0, 0, 0)) self.viewport.camera_path = camera.GetPath() await omni.kit.app.get_app().next_update_async() for n in range(10, 100, 10): cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") # n = 5 UsdGeom.XformCommonAPI(cube).SetTranslate((0, 0, -n)) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_distance_to_camera(self.viewport) assert data.max() > 1000 # The front of the cube is 1 ahead of its center position # TODO get a more precise calculation of eye distance assert np.isclose(data.min(), (n - 1) / 100, atol=1e-1) async def test_distances_pathtracing(self): """ Basic funtionality test of the sensor, but in path tracing mode. """ # Set the rendering mode to be pathtracing settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) stage = omni.usd.get_context().get_stage() camera = stage.DefinePrim("/Camera", "Camera") UsdGeom.Xformable(camera).AddTranslateOp().Set((0, 0, 0)) self.viewport.camera_path = camera.GetPath() await omni.kit.app.get_app().next_update_async() for n in range(10, 100, 10): cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") # n = 5 UsdGeom.XformCommonAPI(cube).SetTranslate((0, 0, -n)) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_distance_to_camera(self.viewport) assert data.max() > 1000 # The front of the cube is 1 ahead of its center position # TODO get a more precise calculation of eye distance assert np.isclose(data.min(), (n - 1) / 100, atol=1e-1) async def test_distances_ray_traced_lighting(self): """ Basic funtionality test of the sensor, but in ray traced lighting. """ # Set the rendering mode to be pathtracing settings_interface = carb.settings.get_settings() settings_interface.set_string("/rtx/rendermode", "RayTracedLighting") stage = omni.usd.get_context().get_stage() camera = stage.DefinePrim("/Camera", "Camera") UsdGeom.Xformable(camera).AddTranslateOp().Set((0, 0, 0)) self.viewport.camera_path = camera.GetPath() await omni.kit.app.get_app().next_update_async() for n in range(10, 100, 10): cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") # n = 5 UsdGeom.XformCommonAPI(cube).SetTranslate((0, 0, -n)) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_distance_to_camera(self.viewport) assert data.max() > 1000 # The front of the cube is 1 ahead of its center position # TODO get a more precise calculation of eye distance assert np.isclose(data.min(), (n - 1) / 100, atol=1e-1) async def test_ftheta_camera(self): """ Test the functionality of the sensor under f-theta camera. """ settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) stage = omni.usd.get_context().get_stage() camera = stage.DefinePrim("/Camera", "Camera") # Set the camera to be polynomial fish eye camera. camera.CreateAttribute("cameraProjectionType", Sdf.ValueTypeNames.Token).Set("fisheyePolynomial") # Set the Camera's position UsdGeom.Xformable(camera).AddTranslateOp().Set((0, 0, 0)) self.viewport.camera_path = camera.GetPath() await omni.kit.app.get_app().next_update_async() # Add a cube at the centre of the scene cube_prim = stage.DefinePrim("/Cube", "Cube") add_semantics(cube_prim, "cube") cube = UsdGeom.Cube(cube_prim) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_distance_to_camera(self.viewport) await omni.kit.app.get_app().next_update_async() # Centre of the data should be half of the cube edge's length, adjusted to correct scale. edge_length = (cube.GetSizeAttr().Get() - 1) / 100 # The max should be sqrt(((edge_length / 2) ** 2) * 2), which a pinhole camera won't see. assert np.isclose(np.sqrt(((edge_length / 2) ** 2)*2), data[data != np.inf].max(), atol=1e-3) async def test_spherical_camera(self): """ Test the functionality of the sensor under fisheye spherical camera. """ settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) stage = omni.usd.get_context().get_stage() camera = stage.DefinePrim("/Camera", "Camera") # Set the camera to be spherical camera camera.CreateAttribute("cameraProjectionType", Sdf.ValueTypeNames.Token).Set("fisheyeSpherical") # Set the Camera at the centre of the stage. UsdGeom.Xformable(camera).AddTranslateOp().Set((0, 0, 0)) self.viewport.camera_path = camera.GetPath() await omni.kit.app.get_app().next_update_async() sphere_prim = stage.DefinePrim("/Sphere", "Sphere") add_semantics(sphere_prim, "sphere") sphere = UsdGeom.Sphere(sphere_prim) sphere.GetRadiusAttr().Set(20) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_distance_to_camera(self.viewport) # np.savez_compressed(self.golden_image_path / 'distance_to_camera_spherical.npz', array=data) golden_image = np.load(self.golden_image_path / "distance_to_camera_spherical.npz")["array"] std_dev = np.sqrt(np.square(data - golden_image).astype(float).mean()) assert std_dev < 2 # After running each test async def tearDown(self): pass
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/sensors/test_normals.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import os import math import asyncio from time import time from pathlib import Path import carb import numpy as np import omni.kit.test from omni.kit.viewport.utility import get_active_viewport from pxr import Gf, UsdGeom, Sdf # Import extension python module we are testing with absolute import path, as if we are external user (other extension) import omni.syntheticdata as syn from ..utils import add_semantics FILE_DIR = os.path.dirname(os.path.realpath(__file__)) TIMEOUT = 200 # Having a test class derived from omni.kit.test.AsyncTestCase declared on the root of module will make it auto-discoverable by omni.kit.test class TestNormals(omni.kit.test.AsyncTestCase): def __init__(self, methodName: str) -> None: super().__init__(methodName=methodName) self.golden_image_path = Path(os.path.dirname(os.path.abspath(__file__))) / ".." / "data" / "golden" # Before running each test async def setUp(self): np.random.seed(1234) # Setup viewport self.viewport = get_active_viewport() # Initialize Sensor await omni.usd.get_context().new_stage_async() stage = omni.usd.get_context().get_stage() await omni.kit.app.get_app().next_update_async() await syn.sensors.create_or_retrieve_sensor_async(self.viewport, syn._syntheticdata.SensorType.Normal) async def test_parsed_empty(self): """ Test normals sensor on empty stage. """ # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_normals(self.viewport) assert np.allclose(data, 0, 1e-3) async def test_parsed_dtype(self): stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_normals(self.viewport) assert data.dtype == np.float32 async def test_neg_z(self): """ Test that negative z faces are distinct from background """ stage = omni.usd.get_context().get_stage() camera = stage.DefinePrim("/Camera", "Camera") UsdGeom.Xformable(camera).AddRotateYOp().Set(180) UsdGeom.Xformable(camera).AddTranslateOp().Set((0.0, 0.0, 20.0)) self.viewport.camera_path = camera.GetPath() await omni.kit.app.get_app().next_update_async() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_normals(self.viewport) assert len(np.unique(data)) == 2 async def test_rotated_cube(self): stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") cube.GetAttribute("size").Set(100) await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_normals(self.viewport) # np.savez_compressed(self.golden_image_path / 'normals_cube.npz', array=data) golden_image = np.load(self.golden_image_path / "normals_cube.npz")["array"] std_dev = np.sqrt(np.square(data - golden_image).astype(float).mean()) assert std_dev < 2 async def test_rotated_cube_pathtracing(self): """ Basic funtionality test of the sensor, but in path tracing mode. """ settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") cube.GetAttribute("size").Set(100) await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_normals(self.viewport) # np.savez_compressed(self.golden_image_path / 'normals_cube.npz', array=data) golden_image = np.load(self.golden_image_path / "normals_cube.npz")["array"] std_dev = np.sqrt(np.square(data - golden_image).astype(float).mean()) assert std_dev < 2 async def test_rotated_cube_ray_traced_lighting(self): """ Basic funtionality test of the sensor, but in ray traced lighting. """ # Set the rendering mode to be ray traced lighting. settings_interface = carb.settings.get_settings() settings_interface.set_string("/rtx/rendermode", "RayTracedLighting") stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") cube.GetAttribute("size").Set(100) await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_normals(self.viewport) # np.savez_compressed(self.golden_image_path / 'normals_cube.npz', array=data) golden_image = np.load(self.golden_image_path / "normals_cube.npz")["array"] std_dev = np.sqrt(np.square(data - golden_image).astype(float).mean()) assert std_dev < 2 async def test_rotated_cube_ftheta(self): """ Basic funtionality test of the sensor in f theta camera. """ # Set the mode to path traced for f theta camera. settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") cube.GetAttribute("size").Set(100) await omni.kit.app.get_app().next_update_async() # Setting up camera. camera = stage.DefinePrim("/Camera", "Camera") # Set the camera to be polynomial fish eye camera. camera.CreateAttribute("cameraProjectionType", Sdf.ValueTypeNames.Token).Set("fisheyePolynomial") # Set the Camera's position UsdGeom.Xformable(camera).AddTranslateOp().Set((200, 200, 200)) self.viewport.camera_path = camera.GetPath() await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_normals(self.viewport) # np.savez_compressed(self.golden_image_path / 'normals_cube_ftheta.npz', array=data) golden_image = np.load(self.golden_image_path / "normals_cube_ftheta.npz")["array"] std_dev = np.sqrt(np.square(data - golden_image).astype(float).mean()) assert std_dev < 2 async def test_rotated_cube_spherical(self): """ Basic funtionality test of the sensor in fisheye spherical camera. """ # Set the mode to path traced. settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") cube.GetAttribute("size").Set(100) # Setting up camera. camera = stage.DefinePrim("/Camera", "Camera") # Set the camera to be polynomial fish eye camera. camera.CreateAttribute("cameraProjectionType", Sdf.ValueTypeNames.Token).Set("fisheyeSpherical") # Set the Camera's position UsdGeom.Xformable(camera).AddTranslateOp().Set((200, 200, 200)) self.viewport.camera_path = camera.GetPath() await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_normals(self.viewport) # np.savez_compressed(self.golden_image_path / 'normals_cube_spherical.npz', array=data) golden_image = np.load(self.golden_image_path / "normals_cube_spherical.npz")["array"] std_dev = np.sqrt(np.square(data - golden_image).astype(float).mean()) assert std_dev < 2 # After running each test async def tearDown(self): pass
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/sensors/test_rgb.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import os import math import asyncio from time import time from pathlib import Path import unittest from PIL import Image import carb import numpy as np from numpy.lib.arraysetops import unique import omni.kit.test from omni.kit.viewport.utility import get_active_viewport from pxr import Gf, UsdGeom, Sdf, UsdLux # Import extension python module we are testing with absolute import path, as if we are external user (other extension) import omni.syntheticdata as syn from ..utils import add_semantics FILE_DIR = os.path.dirname(os.path.realpath(__file__)) TIMEOUT = 200 # Having a test class derived from omni.kit.test.AsyncTestCase declared on the root of module will make it auto-discoverable by omni.kit.test class TestRGB(omni.kit.test.AsyncTestCase): def __init__(self, methodName: str) -> None: super().__init__(methodName=methodName) self.golden_image_path = Path(os.path.dirname(os.path.abspath(__file__))) / ".." / "data" / "golden" # Before running each test async def setUp(self): np.random.seed(1234) settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) # Setup viewport self.viewport = get_active_viewport() # Initialize Sensor await omni.usd.get_context().new_stage_async() stage = omni.usd.get_context().get_stage() await omni.kit.app.get_app().next_update_async() await syn.sensors.create_or_retrieve_sensor_async(self.viewport, syn._syntheticdata.SensorType.Rgb) async def test_empty(self): """ Test RGB sensor on empty stage. """ # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_rgb(self.viewport) std_dev = np.sqrt(np.square(data - np.zeros_like(data)).astype(float).mean()) assert std_dev < 2 async def test_cube(self): """ Test RGB sensor on stage with cube. """ stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") cube.GetAttribute("size").Set(100) cube.GetAttribute("primvars:displayColor").Set([(0, 0, 1)]) await omni.kit.app.get_app().next_update_async() # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_rgb(self.viewport) golden_image = np.asarray(Image.open(str(self.golden_image_path / "rgb_cube.png"))) std_dev = np.sqrt(np.square(data - golden_image).astype(float).mean()) assert std_dev < 2 async def test_dtype(self): stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_rgb(self.viewport) assert data.dtype == np.uint8 @unittest.skip("OM-44741") async def test_cube_polynomial(self): """ Test RGB sensor on stage with cube. """ settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") cube.GetAttribute("size").Set(100) cube.GetAttribute("primvars:displayColor").Set([(0, 0, 1)]) await omni.kit.app.get_app().next_update_async() # TODO: Add a light camera = stage.DefinePrim("/Camera", "Camera") # Set the camera to be spherical camera camera.CreateAttribute("cameraProjectionType", Sdf.ValueTypeNames.Token).Set("fisheyePolynomial") UsdGeom.Xformable(camera).AddTranslateOp().Set((0, 0, 200)) self.viewport.camera_path = camera.GetPath() # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_rgb(self.viewport) # image = Image.fromarray(data) # image.save(str(self.golden_image_path / "rgb_cube_ftheta.png")) golden_image = np.asarray(Image.open(str(self.golden_image_path / "rgb_cube_ftheta.png"))) std_dev = np.sqrt(np.square(data - golden_image).astype(float).mean()) assert std_dev < 2 @unittest.skip("OM-44741") async def test_cube_spherical(self): """ Test RGB sensor on stage with cube. """ settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") cube.GetAttribute("size").Set(100) cube.GetAttribute("primvars:displayColor").Set([(0, 0, 1)]) await omni.kit.app.get_app().next_update_async() # TODO: Add a light camera = stage.DefinePrim("/Camera", "Camera") # Set the camera to be spherical camera camera.CreateAttribute("cameraProjectionType", Sdf.ValueTypeNames.Token).Set("fisheyeSpherical") UsdGeom.Xformable(camera).AddTranslateOp().Set((0, 0, 200)) self.viewport.camera_path = camera.GetPath() # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_rgb(self.viewport) # image = Image.fromarray(data) # image.save(str(self.golden_image_path / "rgb_cube_spherical.png")) golden_image = np.asarray(Image.open(str(self.golden_image_path / "rgb_cube_spherical.png"))) std_dev = np.sqrt(np.square(data - golden_image).astype(float).mean()) assert std_dev < 2 # After running each test async def tearDown(self): pass
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/sensors/test_rendervar_buff_host_ptr.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import unittest import numpy as np import ctypes import omni.kit.test from omni.kit.viewport.utility import get_active_viewport from pxr import UsdGeom, UsdLux # Import extension python module we are testing with absolute import path, as if we are external user (other extension) import omni.syntheticdata as syn from ..utils import add_semantics # Test the SyntheticData following nodes : # - SdPostRenderVarTextureToBuffer : node to convert a texture device rendervar into a buffer device rendervar # - SdPostRenderVarToHost : node to readback a device rendervar into a host rendervar # - SdRenderVarPtr : node to expose in the action graph, raw device / host pointers on the renderVars # # the tests consists in pulling the ptr data and comparing it with the data ouputed by : # - SdRenderVarToRawArray # class TestRenderVarBuffHostPtr(omni.kit.test.AsyncTestCase): _tolerance = 1.1 _outputs_ptr = ["outputs:dataPtr","outputs:width","outputs:height","outputs:bufferSize","outputs:format"] _outputs_arr = ["outputs:data","outputs:width","outputs:height","outputs:bufferSize","outputs:format"] @staticmethod def _assert_equal_tex_infos(out_a, out_b): assert((out_a["outputs:width"] == out_b["outputs:width"]) and (out_a["outputs:height"] == out_b["outputs:height"]) and (out_a["outputs:format"] == out_b["outputs:format"])) @staticmethod def _assert_equal_buff_infos(out_a, out_b): assert((out_a["outputs:bufferSize"] == out_b["outputs:bufferSize"])) @staticmethod def _assert_equal_data(data_a, data_b): assert(np.amax(np.square(data_a - data_b)) < TestRenderVarBuffHostPtr._tolerance) def _get_raw_array(self, rv): return syn.SyntheticData.Get().get_node_attributes(rv + "ExportRawArray", TestRenderVarBuffHostPtr._outputs_arr, self.render_product) def _get_ptr_array(self, rv, ptr_suffix): ptr_outputs = syn.SyntheticData.Get().get_node_attributes(rv + ptr_suffix, TestRenderVarBuffHostPtr._outputs_ptr, self.render_product) c_ptr = ctypes.cast(ptr_outputs["outputs:dataPtr"],ctypes.POINTER(ctypes.c_ubyte)) ptr_outputs["outputs:dataPtr"] = np.ctypeslib.as_array(c_ptr,shape=(ptr_outputs["outputs:bufferSize"],)) return ptr_outputs def _assert_equal_rv_ptr(self, rv:str, ptr_suffix:str, texture=None): arr_out = self._get_raw_array(rv) ptr_out = self._get_ptr_array(rv,ptr_suffix) if not texture is None: if texture: TestRenderVarBuffHostPtr._assert_equal_tex_infos(arr_out,ptr_out) else: TestRenderVarBuffHostPtr._assert_equal_buff_infos(arr_out,ptr_out) TestRenderVarBuffHostPtr._assert_equal_data(arr_out["outputs:data"],ptr_out["outputs:dataPtr"]) def _assert_equal_rv_arr(self, rv:str, ptr_suffix:str, texture=None): arr_out_a = self._get_raw_array(rv) arr_out_b = self._get_raw_array(rv+ptr_suffix) if not texture is None: if texture: TestRenderVarBuffHostPtr._assert_equal_tex_infos(arr_out_a,arr_out_b) else: TestRenderVarBuffHostPtr._assert_equal_buff_infos(arr_out_a,arr_out_b) TestRenderVarBuffHostPtr._assert_equal_data(arr_out_a["outputs:data"],arr_out_b["outputs:data"]) def __init__(self, methodName: str) -> None: super().__init__(methodName=methodName) async def setUp(self): await omni.usd.get_context().new_stage_async() stage = omni.usd.get_context().get_stage() world_prim = UsdGeom.Xform.Define(stage,"/World") UsdGeom.Xformable(world_prim).AddTranslateOp().Set((0, 0, 0)) UsdGeom.Xformable(world_prim).AddRotateXYZOp().Set((0, 0, 0)) sphere_prim = stage.DefinePrim("/World/Sphere", "Sphere") add_semantics(sphere_prim, "sphere") UsdGeom.Xformable(sphere_prim).AddTranslateOp().Set((0, 0, 0)) UsdGeom.Xformable(sphere_prim).AddScaleOp().Set((77, 77, 77)) UsdGeom.Xformable(sphere_prim).AddRotateXYZOp().Set((-90, 0, 0)) sphere_prim.GetAttribute("primvars:displayColor").Set([(1, 0.3, 1)]) capsule0_prim = stage.DefinePrim("/World/Sphere/Capsule0", "Capsule") add_semantics(capsule0_prim, "capsule0") UsdGeom.Xformable(capsule0_prim).AddTranslateOp().Set((3, 0, 0)) UsdGeom.Xformable(capsule0_prim).AddRotateXYZOp().Set((0, 0, 0)) capsule0_prim.GetAttribute("primvars:displayColor").Set([(0.3, 1, 0)]) capsule1_prim = stage.DefinePrim("/World/Sphere/Capsule1", "Capsule") add_semantics(capsule1_prim, "capsule1") UsdGeom.Xformable(capsule1_prim).AddTranslateOp().Set((-3, 0, 0)) UsdGeom.Xformable(capsule1_prim).AddRotateXYZOp().Set((0, 0, 0)) capsule1_prim.GetAttribute("primvars:displayColor").Set([(0, 1, 0.3)]) capsule2_prim = stage.DefinePrim("/World/Sphere/Capsule2", "Capsule") add_semantics(capsule2_prim, "capsule2") UsdGeom.Xformable(capsule2_prim).AddTranslateOp().Set((0, 3, 0)) UsdGeom.Xformable(capsule2_prim).AddRotateXYZOp().Set((0, 0, 0)) capsule2_prim.GetAttribute("primvars:displayColor").Set([(0.7, 0.1, 0.4)]) capsule3_prim = stage.DefinePrim("/World/Sphere/Capsule3", "Capsule") add_semantics(capsule3_prim, "capsule3") UsdGeom.Xformable(capsule3_prim).AddTranslateOp().Set((0, -3, 0)) UsdGeom.Xformable(capsule3_prim).AddRotateXYZOp().Set((0, 0, 0)) capsule3_prim.GetAttribute("primvars:displayColor").Set([(0.1, 0.7, 0.4)]) spherelight = UsdLux.SphereLight.Define(stage, "/SphereLight") spherelight.GetIntensityAttr().Set(30000) spherelight.GetRadiusAttr().Set(30) self.viewport = get_active_viewport() self.render_product = self.viewport.render_product_path async def test_host_arr(self): render_vars = [ "BoundingBox2DLooseSD", "SemanticLocalTransformSD" ] for rv in render_vars: syn.SyntheticData.Get().activate_node_template(rv + "ExportRawArray", 0, [self.render_product]) syn.SyntheticData.Get().activate_node_template(rv + "hostExportRawArray", 0, [self.render_product]) await syn.sensors.next_sensor_data_async(self.viewport,True) await omni.kit.app.get_app().next_update_async() for rv in render_vars: self._assert_equal_rv_arr(rv,"host", False) async def test_buff_arr(self): render_vars = [ "Camera3dPositionSD", "DistanceToImagePlaneSD", ] for rv in render_vars: syn.SyntheticData.Get().activate_node_template(rv + "ExportRawArray", 0, [self.render_product]) syn.SyntheticData.Get().activate_node_template(rv + "buffExportRawArray", 0, [self.render_product]) await syn.sensors.next_sensor_data_async(self.viewport,True) await omni.kit.app.get_app().next_update_async() for rv in render_vars: self._assert_equal_rv_arr(rv, "buff") async def test_host_ptr(self): render_vars = [ "BoundingBox2DTightSD", "BoundingBox3DSD", "InstanceMapSD" ] for rv in render_vars: syn.SyntheticData.Get().activate_node_template(rv + "ExportRawArray", 0, [self.render_product]) syn.SyntheticData.Get().activate_node_template(rv + "hostPtr", 0, [self.render_product]) await syn.sensors.next_sensor_data_async(self.viewport,True) await omni.kit.app.get_app().next_update_async() for rv in render_vars: self._assert_equal_rv_ptr(rv,"hostPtr",False) async def test_host_ptr_tex(self): render_vars = [ "NormalSD", "DistanceToCameraSD" ] for rv in render_vars: syn.SyntheticData.Get().activate_node_template(rv + "ExportRawArray", 0, [self.render_product]) syn.SyntheticData.Get().activate_node_template(rv + "hostPtr", 0, [self.render_product]) await syn.sensors.next_sensor_data_async(self.viewport,True) await omni.kit.app.get_app().next_update_async() for rv in render_vars: self._assert_equal_rv_ptr(rv,"hostPtr",True) async def test_buff_host_ptr(self): render_vars = [ "LdrColorSD", "InstanceSegmentationSD", ] for rv in render_vars: syn.SyntheticData.Get().activate_node_template(rv + "ExportRawArray", 0, [self.render_product]) syn.SyntheticData.Get().activate_node_template(rv + "buffhostPtr", 0, [self.render_product]) await syn.sensors.next_sensor_data_async(self.viewport,True) await syn.sensors.next_sensor_data_async(self.viewport,True) await syn.sensors.next_sensor_data_async(self.viewport,True) await omni.kit.app.get_app().next_update_async() for rv in render_vars: self._assert_equal_rv_ptr(rv, "buffhostPtr",True) # After running each test async def tearDown(self): pass
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/sensors/test_bbox2d_loose.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import os import math import asyncio from time import time import unittest import carb import numpy as np import omni.kit.test from omni.kit.viewport.utility import get_active_viewport from pxr import Gf, UsdGeom, Sdf # Import extension python module we are testing with absolute import path, as if we are external user (other extension) import omni.syntheticdata as syn from ..utils import add_semantics FILE_DIR = os.path.dirname(os.path.realpath(__file__)) TIMEOUT = 200 # Having a test class derived from omni.kit.test.AsyncTestCase declared on the root of module will make it auto-discoverable by omni.kit.test class TestBBox2DLoose(omni.kit.test.AsyncTestCase): # Before running each test async def setUp(self): np.random.seed(1234) # Setup viewport self.viewport = get_active_viewport() # Initialize Sensor await omni.usd.get_context().new_stage_async() stage = omni.usd.get_context().get_stage() await omni.kit.app.get_app().next_update_async() await syn.sensors.create_or_retrieve_sensor_async( self.viewport, syn._syntheticdata.SensorType.BoundingBox2DLoose ) async def test_parsed_empty(self): """ Test 2D bounding box on empty stage. """ bbox2d_data = syn.sensors.get_bounding_box_2d_loose(self.viewport) assert not bool(bbox2d_data) async def test_bbox_2d_loose_fields_exist(self): stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) bbox2d_data = syn.sensors.get_bounding_box_2d_loose(self.viewport) valid_dtype = [ ("uniqueId", "<i4"), ("name", "O"), ("semanticLabel", "O"), ("metadata", "O"), ("instanceIds", "O"), ("semanticId", "<u4"), ("x_min", "<i4"), ("y_min", "<i4"), ("x_max", "<i4"), ("y_max", "<i4"), ] assert bbox2d_data.dtype == np.dtype(valid_dtype) async def test_bbox_2d_loose_cube(self): """ Basic test for the sensor. """ stage = omni.usd.get_context().get_stage() camera = stage.DefinePrim("/Camera", "Camera") UsdGeom.Xformable(camera).AddTranslateOp().Set((0, 0, 0)) self.viewport.camera_path = camera.GetPath() await omni.kit.app.get_app().next_update_async() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") UsdGeom.XformCommonAPI(cube).SetTranslate((0, 0, -10)) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) bbox2d_data = syn.sensors.get_bounding_box_2d_loose(self.viewport) assert bbox2d_data['x_min'] == 301 assert bbox2d_data['y_min'] == 21 assert bbox2d_data['x_max'] == 978 assert bbox2d_data['y_max'] == 698 async def test_cube_pathtracing(self): """ Basic funtionality test of the sensor, but in path tracing mode. """ settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) stage = omni.usd.get_context().get_stage() camera = stage.DefinePrim("/Camera", "Camera") UsdGeom.Xformable(camera).AddTranslateOp().Set((0, 0, 0)) self.viewport.camera_path = camera.GetPath() await omni.kit.app.get_app().next_update_async() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") UsdGeom.XformCommonAPI(cube).SetTranslate((0, 0, -10)) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) bbox2d_data = syn.sensors.get_bounding_box_2d_loose(self.viewport) assert bbox2d_data['x_min'] == 301 assert bbox2d_data['y_min'] == 21 assert bbox2d_data['x_max'] == 978 assert bbox2d_data['y_max'] == 698 async def test_cube_ray_traced_lighting(self): """ Basic test for the sensor, but in ray traced lighting mode. """ # Set the rendering mode to be ray traced lighting. settings_interface = carb.settings.get_settings() settings_interface.set_string("/rtx/rendermode", "RayTracedLighting") stage = omni.usd.get_context().get_stage() camera = stage.DefinePrim("/Camera", "Camera") UsdGeom.Xformable(camera).AddTranslateOp().Set((0, 0, 0)) self.viewport.camera_path = camera.GetPath() await omni.kit.app.get_app().next_update_async() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") UsdGeom.XformCommonAPI(cube).SetTranslate((0, 0, -10)) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) bbox2d_data = syn.sensors.get_bounding_box_2d_loose(self.viewport) assert bbox2d_data['x_min'] == 301 assert bbox2d_data['y_min'] == 21 assert bbox2d_data['x_max'] == 978 assert bbox2d_data['y_max'] == 698 async def test_cube_ftheta(self): """ Basic funtionality test of the sensor in ftheta camera. """ settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) stage = omni.usd.get_context().get_stage() camera = stage.DefinePrim("/Camera", "Camera") # Set the camera to be polynomial fish eye camera. camera.CreateAttribute("cameraProjectionType", Sdf.ValueTypeNames.Token).Set("fisheyePolynomial") UsdGeom.Xformable(camera).AddTranslateOp().Set((0, 0, 0)) self.viewport.camera_path = camera.GetPath() await omni.kit.app.get_app().next_update_async() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") UsdGeom.XformCommonAPI(cube).SetTranslate((0, 0, -10)) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) bbox2d_data = syn.sensors.get_bounding_box_2d_loose(self.viewport) assert bbox2d_data['x_min'] == 612 assert bbox2d_data['y_min'] == 325 assert bbox2d_data['x_max'] == 671 assert bbox2d_data['y_max'] == 384 async def test_cube_spherical(self): """ Basic funtionality test of the sensor in fisheye spherical camera. """ settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) stage = omni.usd.get_context().get_stage() camera = stage.DefinePrim("/Camera", "Camera") # Set the camera to be polynomial fish eye camera. camera.CreateAttribute("cameraProjectionType", Sdf.ValueTypeNames.Token).Set("fisheyeSpherical") UsdGeom.Xformable(camera).AddTranslateOp().Set((0, 0, 0)) self.viewport.camera_path = camera.GetPath() await omni.kit.app.get_app().next_update_async() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") UsdGeom.XformCommonAPI(cube).SetTranslate((0, 0, -10)) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) bbox2d_data = syn.sensors.get_bounding_box_2d_loose(self.viewport) assert bbox2d_data['x_min'] == 617 assert bbox2d_data['y_min'] == 335 assert bbox2d_data['x_max'] == 662 assert bbox2d_data['y_max'] == 384 # After running each test async def tearDown(self): pass
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/sensors/test_instance_seg.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import os import math import asyncio from time import time from pathlib import Path import unittest import carb import numpy as np import omni.kit.test from omni.kit.viewport.utility import get_active_viewport from pxr import Gf, UsdGeom, Sdf # Import extension python module we are testing with absolute import path, as if we are external user (other extension) import omni.syntheticdata as syn from ..utils import add_semantics FILE_DIR = os.path.dirname(os.path.realpath(__file__)) TIMEOUT = 200 # Having a test class derived from omni.kit.test.AsyncTestCase declared on the root of module will make it auto-discoverable by omni.kit.test class TestInstanceSeg(omni.kit.test.AsyncTestCase): def __init__(self, methodName: str) -> None: super().__init__(methodName=methodName) self.golden_image_path = Path(os.path.dirname(os.path.abspath(__file__))) / ".." / "data" / "golden" # Before running each test async def setUp(self): settings = carb.settings.get_settings() settings.set_bool("syntheticdata/sensors/perSubsetSegmentation", False) np.random.seed(1234) # Setup viewport self.viewport = get_active_viewport() # Initialize Sensor await omni.usd.get_context().new_stage_async() stage = omni.usd.get_context().get_stage() await omni.kit.app.get_app().next_update_async() await syn.sensors.create_or_retrieve_sensor_async( self.viewport, syn._syntheticdata.SensorType.InstanceSegmentation ) # TODO # async def test_parsed_empty(self): # """ Test instance segmentation on empty stage. # """ # data = syn.sensors.get_instance_segmentation(self.viewport, parsed=True) # assert data.sum() == 0 async def test_parsed_dtype(self): stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") await omni.kit.app.get_app().next_update_async() # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_instance_segmentation(self.viewport, parsed=True) assert data.dtype == np.uint32 async def test_cube(self): stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") cube.GetAttribute("size").Set(100) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_instance_segmentation(self.viewport, return_mapping=False) # np.savez_compressed(self.golden_image_path / 'instance_seg_cube.npz', array=data) golden_image = np.load(self.golden_image_path / "instance_seg_cube.npz")["array"] std_dev = np.sqrt(np.square(data - golden_image).astype(float).mean()) assert std_dev < 2 async def test_cube_sphere(self): stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") cube.GetAttribute("size").Set(100) sphere_prim = stage.DefinePrim("/Sphere", "Sphere") UsdGeom.XformCommonAPI(sphere_prim).SetTranslate((300, 0, 0)) add_semantics(sphere_prim, "sphere") sphere = UsdGeom.Sphere(sphere_prim) sphere.GetRadiusAttr().Set(100) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_instance_segmentation(self.viewport) # np.savez_compressed(self.golden_image_path / 'instance_seg_cube_sphere.npz', array=data) golden_image = np.load(self.golden_image_path / "instance_seg_cube_sphere.npz")["array"] std_dev = np.sqrt(np.square(data - golden_image).astype(float).mean()) assert std_dev < 2 async def test_cube_pathtracing(self): """ Basic funtionality test of the sensor, but in path tracing mode. """ settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") cube.GetAttribute("size").Set(100) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_instance_segmentation(self.viewport) # np.savez_compressed(self.golden_image_path / 'instance_seg_cube_pathtracing.npz', array=data) golden_image = np.load(self.golden_image_path / "instance_seg_cube_pathtracing.npz")["array"] std_dev = np.sqrt(np.square(data - golden_image).astype(float).mean()) assert std_dev < 2 async def test_cube_ray_traced_lighting(self): """ Basic funtionality test of the sensor, but in ray traced lighting. """ # Set the rendering mode to be ray traced lighting. settings_interface = carb.settings.get_settings() settings_interface.set_string("/rtx/rendermode", "RayTracedLighting") stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") cube.GetAttribute("size").Set(100) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_instance_segmentation(self.viewport) # np.savez_compressed(self.golden_image_path / 'instance_seg_cube_ray_traced_lighting.npz', array=data) golden_image = np.load(self.golden_image_path / "instance_seg_cube_ray_traced_lighting.npz")["array"] std_dev = np.sqrt(np.square(data - golden_image).astype(float).mean()) assert std_dev < 2 async def test_cube_ftheta(self): """ Basic funtionality test of the sensor under ftheta camera. """ settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") cube.GetAttribute("size").Set(100) await omni.kit.app.get_app().next_update_async() camera = stage.DefinePrim("/Camera", "Camera") # Set the camera to be polynomial fish eye camera. camera.CreateAttribute("cameraProjectionType", Sdf.ValueTypeNames.Token).Set("fisheyePolynomial") # Set the Camera's position UsdGeom.Xformable(camera).AddTranslateOp().Set((100, 100, 100)) self.viewport.camera_path = camera.GetPath() # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_instance_segmentation(self.viewport) # np.savez_compressed(self.golden_image_path / 'instance_seg_cube_ftheta.npz', array=data) golden_image = np.load(self.golden_image_path / "instance_seg_cube_ftheta.npz")["array"] std_dev = np.sqrt(np.square(data - golden_image).astype(float).mean()) assert std_dev < 2 async def test_cube_spherical(self): """ Basic funtionality test of the sensor under fisheye spherical camera. """ settings = carb.settings.get_settings() settings.set_string("/rtx/rendermode", "PathTracing") settings.set_int("/rtx/pathtracing/spp", 32) settings.set_int("/persistent/app/viewport/displayOptions", 0) stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube", "Cube") add_semantics(cube, "cube") cube.GetAttribute("size").Set(100) await omni.kit.app.get_app().next_update_async() camera = stage.DefinePrim("/Camera", "Camera") # Set the camera to be spherical fish eye camera. camera.CreateAttribute("cameraProjectionType", Sdf.ValueTypeNames.Token).Set("fisheyeSpherical") # Set the Camera's position UsdGeom.Xformable(camera).AddTranslateOp().Set((100, 100, 100)) self.viewport.camera_path = camera.GetPath() # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_instance_segmentation(self.viewport) # np.savez_compressed(self.golden_image_path / 'instance_seg_cube_spherical.npz', array=data) golden_image = np.load(self.golden_image_path / "instance_seg_cube_spherical.npz")["array"] std_dev = np.sqrt(np.square(data - golden_image).astype(float).mean()) assert std_dev < 2 @unittest.skip("OM-46393") async def test_geom_subset(self): """ Test sensor on GeomSubset. """ path = os.path.join(FILE_DIR, "../data/scenes/streetlamp_03_golden.usd") await omni.usd.get_context().open_stage_async(path) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_instance_segmentation(self.viewport) assert len(data) != 0 async def test_instance_seg_scene_instance(self): """ Test sensor on scene instance. """ settings = carb.settings.get_settings() path = os.path.join(FILE_DIR, "../data/scenes/scene_instance_test.usda") await omni.usd.get_context().open_stage_async(path) await omni.kit.app.get_app().next_update_async() await syn.sensors.create_or_retrieve_sensor_async( self.viewport, syn._syntheticdata.SensorType.InstanceSegmentation ) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_instance_segmentation(self.viewport) assert len(data) != 0 async def test_instance_seg_scene_instance_benchchair(self): """ Test sensor on scene instanced bench and chair data. """ settings = carb.settings.get_settings() path = os.path.join(FILE_DIR, "../data/scenes/BenchChair_SceneInstance_Mini.usda") await omni.usd.get_context().open_stage_async(path) await omni.kit.app.get_app().next_update_async() await syn.sensors.create_or_retrieve_sensor_async( self.viewport, syn._syntheticdata.SensorType.InstanceSegmentation ) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_instance_segmentation(self.viewport,parsed=True) assert len(data) != 0 # should be 4 semantic objects in the scene. assert data.max() == 4 async def test_instance_seg_point_instance_benchchair(self): """ Test sensor on point instanced bench and chair data. """ settings = carb.settings.get_settings() path = os.path.join(FILE_DIR, "../data/scenes/BenchChair_Mini.usda") await omni.usd.get_context().open_stage_async(path) await omni.kit.app.get_app().next_update_async() await syn.sensors.create_or_retrieve_sensor_async( self.viewport, syn._syntheticdata.SensorType.InstanceSegmentation ) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_instance_segmentation(self.viewport,parsed=True) assert len(data) != 0 assert data.max() == 2 async def test_instance_seg_point_instance_shapes(self): """ Test sensor on point instanced shapes that have semantics on the mesh. """ settings = carb.settings.get_settings() path = os.path.join(FILE_DIR, "../data/scenes/point_instancer_semantic_shapes.usda") await omni.usd.get_context().open_stage_async(path) await omni.kit.app.get_app().next_update_async() await syn.sensors.create_or_retrieve_sensor_async( self.viewport, syn._syntheticdata.SensorType.InstanceSegmentation ) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) data = syn.sensors.get_instance_segmentation(self.viewport,parsed=True) assert len(data) != 0 # After running each test async def tearDown(self): settings = carb.settings.get_settings() settings.set_bool("syntheticdata/sensors/perSubsetSegmentation", True) pass
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/helpers/test_projection.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import os import math import asyncio from time import time import carb import numpy as np import omni.kit.test from omni.kit.viewport.utility import get_active_viewport from pxr import Sdf, UsdGeom, Vt # Import extension python module we are testing with absolute import path, as if we are external user (other extension) import omni.syntheticdata as syn from ..utils import add_semantics FILE_DIR = os.path.dirname(os.path.realpath(__file__)) # Having a test class derived from omni.kit.test.AsyncTestCase declared on the root of module will make it auto-discoverable by omni.kit.test class TestProjection(omni.kit.test.AsyncTestCase): # Before running each test async def setUp(self): await omni.usd.get_context().new_stage_async() # Setup viewport self.viewport = get_active_viewport() self.stage = omni.usd.get_context().get_stage() prim = self.stage.DefinePrim("/World", "Xform") self.stage.SetDefaultPrim(prim) cube = self.stage.DefinePrim("/World/Cube", "Cube") add_semantics(cube, "cube") usd_camera = UsdGeom.Camera.Define(self.stage, "/World/Camera") usd_camera.AddTranslateOp() self.camera = usd_camera.GetPrim() self.camera.CreateAttribute("cameraProjectionType", Sdf.ValueTypeNames.Token).Set(Vt.Token("pinhole")) self.camera.CreateAttribute("fthetaWidth", Sdf.ValueTypeNames.Float).Set(960) self.camera.CreateAttribute("fthetaHeight", Sdf.ValueTypeNames.Float).Set(604) self.camera.CreateAttribute("fthetaCx", Sdf.ValueTypeNames.Float).Set(460) self.camera.CreateAttribute("fthetaCy", Sdf.ValueTypeNames.Float).Set(340) self.camera.CreateAttribute("fthetaMaxFov", Sdf.ValueTypeNames.Float).Set(200.0) self.camera.CreateAttribute("fthetaPolyA", Sdf.ValueTypeNames.Float).Set(0.0) self.camera.CreateAttribute("fthetaPolyB", Sdf.ValueTypeNames.Float).Set(0.0059) self.camera.CreateAttribute("fthetaPolyC", Sdf.ValueTypeNames.Float).Set(0.0) self.camera.CreateAttribute("fthetaPolyD", Sdf.ValueTypeNames.Float).Set(0.0) self.camera.CreateAttribute("fthetaPolyE", Sdf.ValueTypeNames.Float).Set(0.0) self.viewport.camera_path = self.camera.GetPath() syn.sensors.enable_sensors(self.viewport, [syn._syntheticdata.SensorType.BoundingBox3D]) await syn.sensors.next_sensor_data_async(self.viewport, True) async def test_pinhole(self): """ Test pinhole projection """ self.camera.GetAttribute("xformOp:translate").Set((0.0, 0.0, 9.0)) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) # Get 3D bbox bbox3d = syn.sensors.get_bounding_box_3d(self.viewport, return_corners=True, parsed=True) # Project corners corners = bbox3d["corners"] projected = syn.helpers.world_to_image(corners.reshape(-1, 3), self.viewport).reshape(-1, 8, 3) # GT # Confirmed visually to be correct GT = [ [ [0.26139346, 0.9241894, 0.9000009], [0.73860654, 0.9241894, 0.9000009], [0.26139346, 0.0758106, 0.9000009], [0.73860654, 0.0758106, 0.9000009], [0.20174183, 1.03023675, 0.87500088], [0.79825817, 1.03023675, 0.87500088], [0.20174183, -0.03023675, 0.87500088], [0.79825817, -0.03023675, 0.87500088], ] ] # Validate assert np.allclose(GT, projected) async def test_fisheye_polynomial(self): """ Test fisheye polynomial projection (F-Theta) """ self.camera.GetAttribute("xformOp:translate").Set((0.0, 0.0, 3.0)) self.camera.GetAttribute("cameraProjectionType").Set(Vt.Token("fisheyePolynomial")) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport, True) # Get 3D bbox bbox3d = syn.sensors.get_bounding_box_3d(self.viewport, return_corners=True, parsed=True) # Project corners corners = bbox3d["corners"] projected = syn.helpers.world_to_image(corners.reshape(-1, 3), self.viewport).reshape(-1, 8, 3) # GT # Confirmed visually to be correct GT = [ [ [0.43674065, 0.6457944, 0.0], [0.52159268, 0.6457944, 0.0], [0.43674065, 0.49494634, 0.0], [0.52159268, 0.49494634, 0.0], [0.40232877, 0.70697108, 0.0], [0.55600456, 0.70697108, 0.0], [0.40232877, 0.43376967, 0.0], [0.55600456, 0.43376967, 0.0], ] ] # Validate assert np.allclose(GT, projected) # Run the operation in reverse view_params = syn.helpers.get_view_params(self.viewport) proj_i2w = projected[0, :, :2] proj_i2w[..., 0] *= view_params["width"] proj_i2w[..., 1] *= view_params["height"] origin, directions = syn.helpers.image_to_world(proj_i2w, view_params) gt_corner_directions = corners[0] - origin gt_corner_directions /= np.linalg.norm(gt_corner_directions, axis=1, keepdims=True) assert np.allclose(gt_corner_directions, directions) # FOR VISUAL DEBUGGING self.camera.GetAttribute("clippingRange").Set((0.1, 1000000)) for i, d in enumerate(directions): s = self.stage.DefinePrim(f"/World/pt{i}", "Sphere") UsdGeom.Xformable(s).AddTranslateOp().Set(tuple((d + origin).tolist())) s.GetAttribute("radius").Set(0.03) await syn.sensors.next_sensor_data_async(self.viewport,True) async def test_fisheye_polynomial_edge(self): """ Test fisheye polynomial projection (F-Theta) at edge of FOV """ self.camera.GetAttribute("xformOp:translate").Set((4.0, 0.0, 0.5)) self.camera.GetAttribute("cameraProjectionType").Set(Vt.Token("fisheyePolynomial")) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport, True) # Get 3D bbox bbox3d = syn.sensors.get_bounding_box_3d(self.viewport, return_corners=True, parsed=True) # Project corners corners = bbox3d["corners"] projected = syn.helpers.world_to_image(corners.reshape(-1, 3), self.viewport).reshape(-1, 8, 3) # GT # Confirmed visually to be correct GT = [ [ [0.25675408, 0.6494504, 0.0], [0.2902532, 0.68231909, 0.0], [0.25675408, 0.49129034, 0.0], [0.2902532, 0.45842165, 0.0], [0.19030016, 0.67307846, 0.0], [0.18980286, 0.74184522, 0.0], [0.19030016, 0.46766228, 0.0], [0.18980286, 0.39889552, 0.0], ] ] # Validate assert np.allclose(GT, projected) # Run the operation in reverse view_params = syn.helpers.get_view_params(self.viewport) proj_i2w = projected[0, :, :2] proj_i2w[..., 0] *= view_params["width"] proj_i2w[..., 1] *= view_params["height"] origin, directions = syn.helpers.image_to_world(proj_i2w, view_params) gt_corner_directions = corners[0] - origin gt_corner_directions /= np.linalg.norm(gt_corner_directions, axis=1, keepdims=True) assert np.allclose(gt_corner_directions, directions) # FOR VISUAL DEBUGGING self.camera.GetAttribute("clippingRange").Set((0.1, 1000000)) for i, d in enumerate(directions): s = self.stage.DefinePrim(f"/World/pt{i}", "Sphere") UsdGeom.Xformable(s).AddTranslateOp().Set(tuple((d + origin).tolist())) await syn.sensors.next_sensor_data_async(self.viewport,True) # After running each test async def tearDown(self): pass
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/helpers/test_instance_mapping.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import os import math import asyncio from time import time import carb import numpy as np import omni.kit.test from omni.kit.viewport.utility import get_active_viewport from pxr import UsdPhysics # Import extension python module we are testing with absolute import path, as if we are external user (other extension) import omni.syntheticdata as syn from ..utils import add_semantics FILE_DIR = os.path.dirname(os.path.realpath(__file__)) # Having a test class derived from omni.kit.test.AsyncTestCase declared on the root of module will make it auto-discoverable by omni.kit.test class TestHelpersInstanceMappings(omni.kit.test.AsyncTestCase): # Before running each test async def setUp(self): # Setup viewport self.viewport = get_active_viewport() await omni.usd.get_context().new_stage_async() self.stage = omni.usd.get_context().get_stage() prim = self.stage.DefinePrim("/World", "Xform") self.stage.SetDefaultPrim(prim) async def test_non_semantic_schemas(self): """ Test mixture of applied schemas including non-semantics. """ prim = self.stage.DefinePrim("/World/Cone", "Cone") # Add semantics schema add_semantics(prim, "Je ne suis pas un cone.") # Non-semantics schema UsdPhysics.RigidBodyAPI.Apply(prim) await syn.sensors.next_sensor_data_async(self.viewport,True) # Get instance mappings instance_mappings = syn.helpers.get_instance_mappings() # Validate cone_im = instance_mappings[0] assert cone_im["uniqueId"] == 1 assert cone_im["name"] == "/World/Cone" assert cone_im["semanticId"] == 1 assert cone_im["semanticLabel"] == "Je ne suis pas un cone." # After running each test async def tearDown(self): pass
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/helpers/__init__.py
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/helpers/test_bboxes.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import os import math import asyncio from time import time import carb import numpy as np import omni.kit.test from omni.kit.viewport.utility import get_active_viewport from pxr import Sdf, UsdGeom, Vt # Import extension python module we are testing with absolute import path, as if we are external user (other extension) import omni.syntheticdata as syn from ..utils import add_semantics FILE_DIR = os.path.dirname(os.path.realpath(__file__)) # Having a test class derived from omni.kit.test.AsyncTestCase declared on the root of module will make it auto-discoverable by omni.kit.test class TestBBoxes(omni.kit.test.AsyncTestCase): # Before running each test async def setUp(self): await omni.usd.get_context().new_stage_async() # Setup viewport self.viewport = get_active_viewport() await omni.usd.get_context().new_stage_async() self.stage = omni.usd.get_context().get_stage() prim = self.stage.DefinePrim("/World", "Xform") self.stage.SetDefaultPrim(prim) marked_cube = self.stage.DefinePrim("/World/MarkedCube0", "Cube") add_semantics(marked_cube, "cube") marked_cube.GetAttribute("size").Set(100) UsdGeom.XformCommonAPI(marked_cube).SetTranslate((3, 3, 0)) unmarked_cube = self.stage.DefinePrim("/World/UnmarkedCube", "Cube") unmarked_cube.GetAttribute("size").Set(100) UsdGeom.XformCommonAPI(unmarked_cube).SetTranslate((3, 3, -100)) await omni.kit.app.get_app().next_update_async() syn.sensors.enable_sensors(self.viewport, [syn._syntheticdata.SensorType.BoundingBox2DLoose]) syn.sensors.enable_sensors(self.viewport, [syn._syntheticdata.SensorType.BoundingBox2DTight]) syn.sensors.enable_sensors(self.viewport, [syn._syntheticdata.SensorType.BoundingBox3D]) syn.sensors.enable_sensors(self.viewport, [syn._syntheticdata.SensorType.Occlusion]) async def test_reduce_bboxes_3d(self): """Verify that reduce_bboxes_3d removes a cube without a semantic label""" # Render one frame await syn.sensors.next_sensor_data_async(self.viewport,True) # Get 3D bbox bbox = syn.sensors.get_bounding_box_3d(self.viewport, return_corners=True) assert np.allclose(bbox["z_min"], [-50, -50]) # Transform of unmarked cube should be included in pre-reduced bbox but not included in reduced bbox UNMARKED_CUBE_GT = [[[1.0, 0.0, 0.0, 0.0], [0.0, 1.0, 0.0, 0.0], [0.0, 0.0, 1.0, 0.0], [3.0, 3.0, -100.0, 1.0]]] assert np.allclose(bbox["transform"][0], UNMARKED_CUBE_GT) or np.allclose( bbox["transform"][1], UNMARKED_CUBE_GT ) instance_mappings = syn.helpers.get_instance_mappings() bbox_reduced = syn.helpers.reduce_bboxes_3d(bbox, instance_mappings) assert np.allclose(bbox_reduced["z_min"], [-50]) assert np.allclose( bbox_reduced["transform"], [[[1.0, 0.0, 0.0, 0.0], [0.0, 1.0, 0.0, 0.0], [0.0, 0.0, 1.0, 0.0], [3.0, 3.0, 0.0, 1.0]]], ) async def test_reduce_occlusion(self): """Verify that reduce_occlusion removes a cube without a semantic label""" # Add an extra cube cube = self.stage.DefinePrim("/World/MarkedCube1", "Cube") add_semantics(cube, "cube") cube.GetAttribute("size").Set(100) UsdGeom.XformCommonAPI(cube).SetTranslate((3, -10, 0)) # Render one frame await syn.sensors.next_sensor_data_async(self.viewport, True) # Get occlusion occlusion = syn.sensors.get_occlusion(self.viewport) occlusion_ratios = np.sort(occlusion["occlusionRatio"]) assert np.allclose(occlusion_ratios, [0.0327, 0.38059998, 0.8886], atol=0.05) instance_mappings = syn.helpers.get_instance_mappings() reduced_occlusion = syn.helpers.reduce_occlusion(occlusion, instance_mappings) reduced_occlusion_ratios = np.sort(reduced_occlusion["occlusionRatio"]) assert np.allclose(reduced_occlusion_ratios, [0.0327, 0.8886], atol=0.05) async def test_merge_sensors(self): """Verify that merge_sensors merges the data correctly""" # Render one frame await syn.sensors.next_sensor_data_async(self.viewport, True) # Get bounding boxes and merge bounding_box_2d_tight = syn.sensors.get_bounding_box_2d_tight(self.viewport) bounding_box_2d_loose = syn.sensors.get_bounding_box_2d_loose(self.viewport) bounding_box_3d = syn.sensors.get_bounding_box_3d(self.viewport, parsed=True) merged_data = syn.helpers.merge_sensors(bounding_box_2d_tight, bounding_box_2d_loose, bounding_box_3d) for suffix, data_source in [ ("_bbox2d_tight", bounding_box_2d_tight), ("_bbox2d_loose", bounding_box_2d_loose), ("_bbox3d", bounding_box_3d), ]: suffix_present = False for key in merged_data.dtype.fields: if key.endswith(suffix): sub_key = key[: -len(suffix)] assert merged_data[key] == data_source[key] suffix_present = True assert suffix_present # After running each test async def tearDown(self): pass
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/visualize/test_warp_post_vis.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import os import carb from pxr import Gf, UsdGeom, UsdLux, Sdf import unittest import omni.kit.test from omni.syntheticdata import SyntheticData, SyntheticDataStage from ..utils import add_semantics class TestWarpPostVisualization(omni.kit.test.AsyncTestCase): def __init__(self, methodName: str) -> None: super().__init__(methodName=methodName) async def setUp(self): # Setup the scene await omni.usd.get_context().new_stage_async() stage = omni.usd.get_context().get_stage() world_prim = UsdGeom.Xform.Define(stage,"/World") UsdGeom.Xformable(world_prim).AddTranslateOp().Set((0, 0, 0)) UsdGeom.Xformable(world_prim).AddRotateXYZOp().Set((0, 0, 0)) capsule0_prim = stage.DefinePrim("/World/Capsule0", "Capsule") add_semantics(capsule0_prim, "capsule_0") UsdGeom.Xformable(capsule0_prim).AddTranslateOp().Set((100, 0, 0)) UsdGeom.Xformable(capsule0_prim).AddScaleOp().Set((30, 30, 30)) UsdGeom.Xformable(capsule0_prim).AddRotateXYZOp().Set((-90, 0, 0)) capsule0_prim.GetAttribute("primvars:displayColor").Set([(0.3, 1, 0)]) capsule1_prim = stage.DefinePrim("/World/Capsule1", "Capsule") add_semantics(capsule0_prim, "capsule_1") UsdGeom.Xformable(capsule1_prim).AddTranslateOp().Set((-100, 0, 0)) UsdGeom.Xformable(capsule1_prim).AddScaleOp().Set((30, 30, 30)) UsdGeom.Xformable(capsule1_prim).AddRotateXYZOp().Set((-90, 0, 0)) capsule1_prim.GetAttribute("primvars:displayColor").Set([(0, 1, 0.3)]) spherelight = UsdLux.SphereLight.Define(stage, "/SphereLight") spherelight.GetIntensityAttr().Set(30000) spherelight.GetRadiusAttr().Set(30) # Setup viewports / renderproduct vp_iface = omni.kit.viewport_legacy.get_viewport_interface() viewport = vp_iface.get_viewport_window() render_product_path = viewport.get_render_product_path() # SyntheticData singleton interface sdg_iface = SyntheticData.Get() if not sdg_iface.is_node_template_registered("TestWarpPostVisualization"): sdg_iface.register_node_template( SyntheticData.NodeTemplate( SyntheticDataStage.ON_DEMAND, # node tempalte stage "omni.syntheticdata.SdTestWarpPostVisulation", # node template type # node template connections [ SyntheticData.NodeConnectionTemplate("LdrColorSDExportRawArray"), ]), template_name="TestWarpPostVisualization" # node template name ) if not sdg_iface.is_node_template_registered("TestWarpPostVisualizationDisplay"): sdg_iface.register_node_template( SyntheticData.NodeTemplate( SyntheticDataStage.ON_DEMAND, # node tempalte stage "omni.syntheticdata.SdLinearArrayToTexture", # node template type # node template connections [ SyntheticData.NodeConnectionTemplate("TestWarpPostVisualization"), ]), template_name="TestWarpPostVisualizationDisplay" # node template name ) sdg_iface.activate_node_template("TestWarpPostVisualizationDisplay", 0, [render_product_path]) self.numLoops = 100 async def run_loop(self): # ensuring that the setup is taken into account for _ in range(5): await omni.kit.app.get_app().next_update_async() for _ in range(self.numLoops): await omni.kit.app.get_app().next_update_async() async def test_display(self): """ Test display """ await self.run_loop() async def tearDown(self): pass
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/visualize/test_flattener.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import os import math from time import time import carb import numpy as np import omni.kit.test from omni.kit.viewport.utility import get_active_viewport # Import extension python module we are testing with absolute import path, as if we are external user (other extension) import omni.syntheticdata as syn FILE_DIR = os.path.dirname(os.path.realpath(__file__)) TIMEOUT = 50 BAKE_ACCURACY_THRESHOLD = 0.9 # segmentation mask testing against inputs of different resolutions def test_against_golden(semantic_data, golden_semantic_data): input_dim = semantic_data.shape golden_dim = golden_semantic_data.shape correct_count = 0 for y in range(0, input_dim[0]): for x in range(0, input_dim[1]): u = x / input_dim[1] v = y / input_dim[0] sample_x = math.floor(u * golden_dim[1]) sample_y = math.floor(v * golden_dim[0]) if semantic_data[y, x] == golden_semantic_data[sample_y, sample_x]: correct_count += 1 return correct_count / (input_dim[0] * input_dim[1]) # Having a test class derived from omni.kit.test.AsyncTestCase declared on the root of module will make it auto-discoverable by omni.kit.test class TestFlattenerSegmentationBakingVis(omni.kit.test.AsyncTestCase): # Before running each test async def setUp(self): np.random.seed(1234) # Setup viewport self.viewport = get_active_viewport() await omni.kit.app.get_app_interface().next_update_async() filepath = os.path.join(FILE_DIR, "../data/scenes/OmniUe4-benchmark.usda") usd_context = omni.usd.get_context() await usd_context.open_stage_async(filepath) await omni.kit.app.get_app().next_update_async() syn.sensors.enable_sensors(self.viewport, [syn._syntheticdata.SensorType.SemanticSegmentation]) async def _wait_for_data(self): data = np.empty(0) start = time() settings = carb.settings.get_settings() # wait until flattener is done loading in assets while not settings.get_as_bool("/app/captureFrame/ready"): await omni.kit.app.get_app_interface().next_update_async() # stall a couple of frames until samplerFeedback kicks off baking work. # NOTE: If we don't stall here, then we won't bake at all, because the ready flag will be falsely set # since samplerFeedback hasn't seen any tiles yet, so flattener thinks scene is ready for capture. for i in range(0, 20): await omni.kit.app.get_app_interface().next_update_async() # wait until baking to be done while not settings.get_as_bool("/app/captureFrame/ready"): await omni.kit.app.get_app_interface().next_update_async() async def test_baking(self): """ Test that flattener correctly bakes semantic information into vtex """ settings = carb.settings.get_settings() settings.set("/app/hydraEngine/waitIdle", True) # start flattener baking settings.set("/rtx/materialflattener/bake", True) settings.set("/rtx/materialflattener/rebaking", True) await omni.kit.app.get_app_interface().next_update_async() await self._wait_for_data() await syn.sensors.next_sensor_data_async(self.viewport) semantic_data = syn.sensors.get_semantic_segmentation(self.viewport) unique_classes = np.unique(semantic_data) # visual debug code #from PIL import Image #semantic_image = syn.visualize.colorize_segmentation(semantic_data) #semantic_image = np.uint8(semantic_image[:,:,:3]) #im = Image.fromarray(semantic_image) #im.save('/home/chen/work/debug_segmentation.png') golden_filepath = os.path.join(FILE_DIR, "../data/golden/baked_segmentation.npz") golden_semantic_data = np.load(golden_filepath)["array"] unique_classes = np.unique(semantic_data) carb.log_warn(f'unique classes = {unique_classes}') assert len(unique_classes) == 3 if len(unique_classes) == 3: accuracy = test_against_golden(semantic_data, golden_semantic_data) carb.log_warn(f'1st accuracy = {accuracy}') # it's possible semantic labels are flipped between road and lanemark, so redo the test # if accuracy is strikingly low if accuracy < BAKE_ACCURACY_THRESHOLD: for y in range(0, semantic_data.shape[0]): for x in range(0, semantic_data.shape[1]): # flip classes if semantic_data[y, x] == unique_classes[1]: semantic_data[y, x] = unique_classes[2] elif semantic_data[y, x] == unique_classes[2]: semantic_data[y, x] = unique_classes[1] accuracy = test_against_golden(semantic_data, golden_semantic_data) # visual debug code #semantic_image = syn.visualize.colorize_segmentation(semantic_data) #semantic_image = np.uint8(semantic_image[:,:,:3]) #im = Image.fromarray(semantic_image) #im.save('/home/chen/work/debug_segmentation_2nd_try.png') carb.log_warn(f'2nd accuracy = {accuracy}') assert accuracy >= BAKE_ACCURACY_THRESHOLD # After running each test async def tearDown(self): pass
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/visualize/test_post_vis.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import os import carb from pxr import Gf, UsdGeom, UsdLux, Sdf import unittest import omni.kit.test from omni.syntheticdata import SyntheticData, SyntheticDataStage from ..utils import add_semantics class TestPostVisualization(omni.kit.test.AsyncTestCase): def __init__(self, methodName: str) -> None: super().__init__(methodName=methodName) def activate_post_vis(self,render_product_path, render_var): sdg_iface = SyntheticData.Get() render_var_post_display = "Test" + render_var + "PostDisplay" if not sdg_iface.is_node_template_registered(render_var_post_display): sdg_iface.register_node_template( SyntheticData.NodeTemplate( SyntheticDataStage.ON_DEMAND, # node tempalte stage "omni.syntheticdata.SdLinearArrayToTexture", # node template type # node template connections [ SyntheticData.NodeConnectionTemplate(render_var), ]), template_name=render_var_post_display ) sdg_iface.activate_node_template(render_var_post_display, 0, [render_product_path]) async def setUp(self): # Setup the scene await omni.usd.get_context().new_stage_async() stage = omni.usd.get_context().get_stage() world_prim = UsdGeom.Xform.Define(stage,"/World") UsdGeom.Xformable(world_prim).AddTranslateOp().Set((0, 0, 0)) UsdGeom.Xformable(world_prim).AddRotateXYZOp().Set((0, 0, 0)) capsule0_prim = stage.DefinePrim("/World/Capsule0", "Capsule") add_semantics(capsule0_prim, "capsule_0") UsdGeom.Xformable(capsule0_prim).AddTranslateOp().Set((100, 0, 0)) UsdGeom.Xformable(capsule0_prim).AddScaleOp().Set((30, 30, 30)) UsdGeom.Xformable(capsule0_prim).AddRotateXYZOp().Set((-90, 0, 0)) capsule0_prim.GetAttribute("primvars:displayColor").Set([(0.3, 1, 0)]) capsule1_prim = stage.DefinePrim("/World/Capsule1", "Capsule") add_semantics(capsule0_prim, "capsule_1") UsdGeom.Xformable(capsule1_prim).AddTranslateOp().Set((-100, 0, 0)) UsdGeom.Xformable(capsule1_prim).AddScaleOp().Set((30, 30, 30)) UsdGeom.Xformable(capsule1_prim).AddRotateXYZOp().Set((-90, 0, 0)) capsule1_prim.GetAttribute("primvars:displayColor").Set([(0, 1, 0.3)]) spherelight = UsdLux.SphereLight.Define(stage, "/SphereLight") spherelight.GetIntensityAttr().Set(30000) spherelight.GetRadiusAttr().Set(30) # Setup viewports / renderproduct vp_iface = omni.kit.viewport_legacy.get_viewport_interface() viewport = vp_iface.get_viewport_window() render_product_path = viewport.get_render_product_path() self.activate_post_vis("LdrColorSD") self.numLoops = 100 async def run_loop(self): # ensuring that the setup is taken into account for _ in range(5): await omni.kit.app.get_app().next_update_async() for _ in range(self.numLoops): await omni.kit.app.get_app().next_update_async() async def test_display(self): """ Test display """ await self.run_loop() async def tearDown(self): pass
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/visualize/test_semantic_seg.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import os import numpy as np import omni.kit.test from omni.kit.viewport.utility import get_active_viewport from pxr import UsdGeom # Import extension python module we are testing with absolute import path, as if we are external user (other extension) import omni.syntheticdata as syn from ..utils import add_semantics FILE_DIR = os.path.dirname(os.path.realpath(__file__)) TIMEOUT = 50 # Having a test class derived from omni.kit.test.AsyncTestCase declared on the root of module will make it auto-discoverable by omni.kit.test class TestSemanticSegVis(omni.kit.test.AsyncTestCase): # Before running each test async def setUp(self): np.random.seed(1234) # Setup viewport self.viewport = get_active_viewport() # Initialize Sensor await omni.usd.get_context().new_stage_async() stage = omni.usd.get_context().get_stage() await omni.kit.app.get_app().next_update_async() syn.sensors.enable_sensors( self.viewport, [syn._syntheticdata.SensorType.SemanticSegmentation, syn._syntheticdata.SensorType.InstanceSegmentation], ) async def test_parsed_empty(self): """ Test semantic segmentation returns zero array with empty scene """ await syn.sensors.next_sensor_data_async(self.viewport, True) data = syn.visualize.get_semantic_segmentation(self.viewport, mode="parsed") assert np.array_equal(data, np.zeros_like(data).astype(np.uint8)) async def test_number_of_classes(self): """ Test that number of classes in output matches number of classes in scene """ stage = omni.usd.get_context().get_stage() cube = stage.DefinePrim("/Cube1", "Cube") add_semantics(cube, "cube1") UsdGeom.Xformable(cube).AddTranslateOp().Set((0, 10, 0)) cube = stage.DefinePrim("/Cube2", "Cube") add_semantics(cube, "cube2") UsdGeom.Xformable(cube).AddTranslateOp().Set((0, -10, 0)) await syn.sensors.next_sensor_data_async(self.viewport, True) data = syn.visualize.get_semantic_segmentation(self.viewport, mode="parsed") data_non_bkg = data[data.sum(axis=-1) != 0] # Remove background, encoded as (0, 0, 0, 0) assert len(np.unique(data_non_bkg, axis=0)) == 2 # After running each test async def tearDown(self): pass
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/graph/test_graph_manipulation.py
import carb from pxr import Gf, UsdGeom, UsdLux, Sdf import omni.hydratexture import omni.kit.test from omni.syntheticdata import SyntheticData, SyntheticDataStage # Test the instance mapping pipeline class TestGraphManipulation(omni.kit.test.AsyncTestCase): def __init__(self, methodName: str) -> None: super().__init__(methodName=methodName) def render_product_path(self, hydra_texture) -> str: '''Return a string to the UsdRender.Product used by the texture''' render_product = hydra_texture.get_render_product_path() if render_product and (not render_product.startswith('/')): render_product = '/Render/RenderProduct_' + render_product return render_product async def setUp(self): self._settings = carb.settings.acquire_settings_interface() self._hydra_texture_factory = omni.hydratexture.acquire_hydra_texture_factory_interface() self._usd_context_name = '' self._usd_context = omni.usd.get_context(self._usd_context_name) await self._usd_context.new_stage_async() self._stage = omni.usd.get_context().get_stage() # renderer renderer = "rtx" if renderer not in self._usd_context.get_attached_hydra_engine_names(): omni.usd.add_hydra_engine(renderer, self._usd_context) # create the hydra textures self._hydra_texture_0 = self._hydra_texture_factory.create_hydra_texture( "TEX0", 1920, 1080, self._usd_context_name, hydra_engine_name=renderer, is_async=self._settings.get("/app/asyncRendering") ) self._render_product_path_0 = self.render_product_path(self._hydra_texture_0) self._hydra_texture_rendered_counter = 0 def on_hydra_texture_0(event: carb.events.IEvent): self._hydra_texture_rendered_counter += 1 self._hydra_texture_rendered_counter_sub = self._hydra_texture_0.get_event_stream().create_subscription_to_push_by_type( omni.hydratexture.EVENT_TYPE_DRAWABLE_CHANGED, on_hydra_texture_0, name='async rendering test drawable update', ) async def tearDown(self): self._hydra_texture_rendered_counter_sub = None self._hydra_texture_0 = None self._usd_context.close_stage() omni.usd.release_all_hydra_engines(self._usd_context) self._hydra_texture_factory = None self._settings = None wait_iterations = 6 for _ in range(wait_iterations): await omni.kit.app.get_app().next_update_async() async def test_rendervar_enable(self): isdg = SyntheticData.Get() render_var = "BoundingBox3DSD" assert(not isdg.is_rendervar_enabled(self._render_product_path_0, render_var, False, self._stage)) assert(not isdg.is_rendervar_used(self._render_product_path_0, render_var)) isdg.enable_rendervar(self._render_product_path_0, render_var, self._stage) assert(isdg.is_rendervar_enabled(self._render_product_path_0, render_var, False, self._stage)) assert(not isdg.is_rendervar_used(self._render_product_path_0, render_var)) isdg.disable_rendervar(self._render_product_path_0, render_var, self._stage) assert(not isdg.is_rendervar_enabled(self._render_product_path_0, render_var, False, self._stage)) assert(not isdg.is_rendervar_used(self._render_product_path_0, render_var)) async def test_rendervar_auto_activation(self): isdg = SyntheticData.Get() render_var = "BoundingBox3DSD" assert(not isdg.is_rendervar_enabled(self._render_product_path_0, render_var, True, self._stage)) assert(not isdg.is_rendervar_used(self._render_product_path_0, render_var)) isdg.activate_node_template("BoundingBox3DReduction",0, [self._render_product_path_0], {}, self._stage, True) assert(isdg.is_rendervar_enabled(self._render_product_path_0, render_var, False, self._stage)) assert(isdg.is_rendervar_used(self._render_product_path_0, render_var)) assert(isdg.is_rendervar_enabled(self._render_product_path_0, render_var, True, self._stage)) isdg.deactivate_node_template("BoundingBox3DReduction",0, [self._render_product_path_0], self._stage, True) assert(not isdg.is_rendervar_enabled(self._render_product_path_0, render_var, False, self._stage)) assert(not isdg.is_rendervar_used(self._render_product_path_0, render_var)) async def test_rendervar_manual_activation(self): isdg = SyntheticData.Get() render_var = "BoundingBox3DSD" assert(not isdg.is_rendervar_enabled(self._render_product_path_0, render_var, False, self._stage)) assert(not isdg.is_rendervar_used(self._render_product_path_0, render_var)) assert(not isdg.is_node_template_activated("BoundingBox3DReduction",self._render_product_path_0,False)) isdg.activate_node_template("BoundingBox3DReduction",0, [self._render_product_path_0], {}, self._stage, False) assert(isdg.is_node_template_activated("BoundingBox3DReduction",self._render_product_path_0,False)) assert(isdg.is_node_template_activated("BoundingBox3DReduction",self._render_product_path_0,True)) assert(not isdg.is_rendervar_enabled(self._render_product_path_0, render_var, False, self._stage)) assert(isdg.is_rendervar_used(self._render_product_path_0, render_var)) isdg.enable_rendervar(self._render_product_path_0, render_var, self._stage) assert(isdg.is_rendervar_enabled(self._render_product_path_0, render_var, False, self._stage)) assert(isdg.is_rendervar_used(self._render_product_path_0, render_var)) assert(not isdg.is_rendervar_enabled(self._render_product_path_0, render_var, True, self._stage)) isdg.deactivate_node_template("BoundingBox3DReduction",0, [self._render_product_path_0], self._stage, False) assert(not isdg.is_node_template_activated("BoundingBox3DReduction",self._render_product_path_0,True)) assert(isdg.is_rendervar_enabled(self._render_product_path_0, render_var, False, self._stage)) assert(not isdg.is_rendervar_used(self._render_product_path_0, render_var)) isdg.disable_rendervar(self._render_product_path_0, render_var, self._stage) assert(not isdg.is_rendervar_enabled(self._render_product_path_0, render_var, False, self._stage)) assert(not isdg.is_rendervar_used(self._render_product_path_0, render_var)) async def test_rendervar_hybrid_activation(self): isdg = SyntheticData.Get() render_var = "BoundingBox3DSD" assert(not isdg.is_rendervar_enabled(self._render_product_path_0, render_var, False, self._stage)) assert(not isdg.is_rendervar_used(self._render_product_path_0, render_var)) isdg.activate_node_template("BoundingBox3DReduction",0, [self._render_product_path_0], {}, self._stage, False) assert(not isdg.is_rendervar_enabled(self._render_product_path_0, render_var, False, self._stage)) assert(isdg.is_rendervar_used(self._render_product_path_0, render_var)) isdg.enable_rendervar(self._render_product_path_0, render_var, self._stage) assert(isdg.is_rendervar_enabled(self._render_product_path_0, render_var, False, self._stage)) assert(isdg.is_rendervar_used(self._render_product_path_0, render_var)) isdg.deactivate_node_template("BoundingBox3DReduction",0, [self._render_product_path_0], self._stage, True) assert(isdg.is_rendervar_enabled(self._render_product_path_0, render_var, False, self._stage)) assert(not isdg.is_rendervar_used(self._render_product_path_0, render_var)) assert(not isdg.is_rendervar_enabled(self._render_product_path_0, render_var, True, self._stage)) isdg.disable_rendervar(self._render_product_path_0, render_var, self._stage) assert(not isdg.is_rendervar_enabled(self._render_product_path_0, render_var, False, self._stage)) async def test_rendervar_initially_activated(self): isdg = SyntheticData.Get() render_var = "BoundingBox3DSD" assert(not isdg.is_rendervar_enabled(self._render_product_path_0, render_var, False, self._stage)) assert(not isdg.is_rendervar_used(self._render_product_path_0, render_var)) isdg.enable_rendervar(self._render_product_path_0, render_var, self._stage) assert(isdg.is_rendervar_enabled(self._render_product_path_0, render_var, False, self._stage)) assert(not isdg.is_rendervar_used(self._render_product_path_0, render_var)) isdg.activate_node_template("BoundingBox3DReduction",0, [self._render_product_path_0], {}, self._stage, True) assert(isdg.is_rendervar_enabled(self._render_product_path_0, render_var, False, self._stage)) assert(isdg.is_rendervar_used(self._render_product_path_0, render_var)) assert(not isdg.is_rendervar_enabled(self._render_product_path_0, render_var, True, self._stage)) isdg.deactivate_node_template("BoundingBox3DReduction",0, [self._render_product_path_0], self._stage, True) assert(isdg.is_rendervar_enabled(self._render_product_path_0, render_var, False, self._stage)) assert(not isdg.is_rendervar_used(self._render_product_path_0, render_var)) isdg.disable_rendervar(self._render_product_path_0, render_var, self._stage) assert(not isdg.is_rendervar_enabled(self._render_product_path_0, render_var, False, self._stage)) async def test_rendervar_multiple_activation(self): isdg = SyntheticData.Get() render_var = "BoundingBox3DSD" if not isdg.is_node_template_registered("BoundingBox3DDisplayPostDuplicate"): isdg.register_node_template( SyntheticData.NodeTemplate( SyntheticDataStage.POST_RENDER, "omni.syntheticdata.SdPostRenderVarDisplayTexture", [ SyntheticData.NodeConnectionTemplate("LdrColorSD"), SyntheticData.NodeConnectionTemplate("Camera3dPositionSD"), SyntheticData.NodeConnectionTemplate("PostRenderProductCamera"), SyntheticData.NodeConnectionTemplate("InstanceMappingPost"), SyntheticData.NodeConnectionTemplate("BoundingBox3DReduction") ], { "inputs:renderVar": "LdrColorSD", "inputs:renderVarDisplay": "BoundingBox3DSDDisplay", "inputs:mode": "semanticBoundingBox3dMode", "inputs:parameters": [0.0, 5.0, 0.027, 0.27] } ), # node template default attribute values (when differs from the default value specified in the .ogn) template_name="BoundingBox3DDisplayPostDuplicate" # node template name ) assert(not isdg.is_rendervar_enabled(self._render_product_path_0, render_var, False, self._stage)) assert(not isdg.is_rendervar_used(self._render_product_path_0, render_var)) isdg.activate_node_template("BoundingBox3DDisplayPost",0, [self._render_product_path_0], {}, self._stage, True) assert(not isdg.is_node_template_activated("BoundingBox3DReduction",self._render_product_path_0,True)) assert(isdg.is_node_template_activated("BoundingBox3DReduction",self._render_product_path_0,False)) assert(isdg.is_rendervar_enabled(self._render_product_path_0, render_var, True, self._stage)) assert(isdg.is_rendervar_used(self._render_product_path_0, render_var)) isdg.activate_node_template("BoundingBox3DDisplayPostDuplicate",0, [self._render_product_path_0], {}, self._stage, True) isdg.deactivate_node_template("BoundingBox3DDisplayPost",0, [self._render_product_path_0], self._stage, True) assert(isdg.is_rendervar_enabled(self._render_product_path_0, render_var, True, self._stage)) assert(isdg.is_rendervar_used(self._render_product_path_0, render_var)) assert(not isdg.is_node_template_activated("BoundingBox3DReduction",self._render_product_path_0,True)) assert(isdg.is_node_template_activated("BoundingBox3DReduction",self._render_product_path_0,False)) isdg.deactivate_node_template("BoundingBox3DDisplayPostDuplicate",0, [self._render_product_path_0], self._stage, True) assert(not isdg.is_node_template_activated("BoundingBox3DReduction",self._render_product_path_0,False)) assert(not isdg.is_rendervar_enabled(self._render_product_path_0, render_var, True, self._stage)) assert(not isdg.is_rendervar_used(self._render_product_path_0, render_var))
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/scenes/OmniUe4-benchmark.usda
#usda 1.0 ( customLayerData = { dictionary audioSettings = { double dopplerLimit = 2 double dopplerScale = 1 token enableDoppler = "off" double nonSpatialTimeScale = 1 double spatialTimeScale = 1 double speedOfSound = 340 } dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (-24.033213095504543, -12999.287136619847, 1.064741362676223) double3 target = (-28.947327053926287, -12864.479153751896, -24.096511278608087) } dictionary Right = { double radius = 500 double3 target = (0, 0, 0) } dictionary Top = { double radius = 500 double3 target = (0, 0, 0) } string boundCamera = "/OmniverseKit_Persp" } dictionary omni_layer = { dictionary muteness = { } } dictionary renderSettings = { float "rtx:materialflattener:decalDistanceTolerance" = 1000 token "rtx:materialflattener:upAxis" = "z" float "rtx:post:lensDistortion:cameraFocalLength" = 18.147562 } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Z" ) def Xform "World" { def DistantLight "defaultLight" ( prepend apiSchemas = ["ShapingAPI"] ) { float angle = 1 float intensity = 3000 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file float3 xformOp:rotateZYX = (49.25, 359.75, 0) float3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateZYX"] } def Scope "Looks" { def Material "road_base" { token outputs:mdl:displacement.connect = </World/Looks/road_base/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/road_base/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/road_base/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @../ds2_materials/drivable_surfaces/general/road/road_base.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "road_base" float inputs:AlbedoMult = 1.75 ( customData = { float default = 2 } ) float inputs:Puddle_NoiseBlend = 0.2 ( customData = { float default = 1 } ) float inputs:RoughnessMult_Order2 = 0.5 ( customData = { float default = 1 } ) float inputs:RoughnessOffset_Order3 = 0 ( customData = { float default = -0.085716 } ) float inputs:RoughnessPow_Order1 = 0.5 ( customData = { float default = 1.5 } ) float inputs:WorldSpaceUVMult = 50 ( customData = { float default = 5000 } ) token outputs:out } } def Material "road_base_omniue4" { token outputs:mdl:displacement.connect = </World/Looks/road_base/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/road_base/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/road_base/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @../ds2_materials/drivable_surfaces/general/road/road_base_omniue4.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "road_base" float inputs:AlbedoMult = 1.75 ( customData = { float default = 2 } ) float inputs:Puddle_NoiseBlend = 0.2 ( customData = { float default = 1 } ) float inputs:RoughnessMult_Order2 = 0.5 ( customData = { float default = 1 } ) float inputs:RoughnessOffset_Order3 = 0 ( customData = { float default = -0.085716 } ) float inputs:RoughnessPow_Order1 = 0.5 ( customData = { float default = 1.5 } ) float inputs:WorldSpaceUVMult = 50 ( customData = { float default = 5000 } ) token outputs:out } } def Material "DrivesimPBR_LaneMarking" { token outputs:mdl:displacement.connect = </World/Looks/DrivesimPBR_LaneMarking/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/DrivesimPBR_LaneMarking/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/DrivesimPBR_LaneMarking/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @../ds2_materials/DrivesimPBR.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "DrivesimPBR" float inputs:alpha_cutout_cutoff = 1 ( customData = { float default = 1 dictionary range = { float max = 1 float min = 0 } } displayGroup = "Alpha" displayName = "Alpha Cutout Cutoff" ) asset inputs:diffuse_texture = @../ds2_materials/drivable_surfaces/general/lanemarkings/lw/lw_basecolor.png@ ( colorSpace = "auto" customData = { asset default = @@ } displayGroup = "Diffuse" displayName = "Albedo Map" ) bool inputs:enable_opacity = 0 ( customData = { bool default = 0 } displayGroup = "Alpha" displayName = "Enable Opacity" ) bool inputs:enable_opacity_cutout = 1 ( customData = { bool default = 0 } displayGroup = "Alpha" displayName = "Enable Alpha Cutout" ) asset inputs:normalmap_texture = @../ds2_materials/drivable_surfaces/general/lanemarkings/lw/lw_n.png@ ( colorSpace = "auto" customData = { asset default = @@ } displayGroup = "Normal" displayName = "Normal Map" ) asset inputs:opacity_texture = @../ds2_materials/drivable_surfaces/general/lanemarkings/lw/lw_opacity.png@ ( colorSpace = "auto" customData = { asset default = @@ } displayGroup = "Alpha" displayName = "Opacity Map" ) asset inputs:ORM_texture = @../ds2_materials/drivable_surfaces/general/lanemarkings/lw/lw_orm.png@ ( colorSpace = "auto" customData = { asset default = @@ } displayGroup = "Reflectivity" displayName = "ORM Map" ) asset inputs:reflectionroughness_texture = @../ds2_materials/drivable_surfaces/general/lanemarkings/lw/lw_r.png@ ( colorSpace = "auto" customData = { asset default = @@ } displayGroup = "Specular" displayName = "Roughness Map" ) float inputs:specular_constant = 1 ( customData = { float default = 1 dictionary range = { float max = 1 float min = 0 } } displayGroup = "Specular" displayName = "Specular amount" ) float2 inputs:texture_scale = (0.39999998, 115.7) ( customData = { float2 default = (1, 1) } displayGroup = "UV" displayName = "Texture Scale" ) token outputs:out } } def Material "DrivesimPBR" { token outputs:mdl:displacement.connect = </World/Looks/DrivesimPBR/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/DrivesimPBR/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/DrivesimPBR/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @../ds2_materials/DrivesimPBR.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "DrivesimPBR" float inputs:ao_to_diffuse = 0 ( customData = { float default = 0 } displayGroup = "AO" displayName = "AO to Diffuse" ) asset inputs:diffuse_texture = @../ds2_materials/drivable_surfaces/general/asphalt/asphalt_base/asphalt_base_basecolor_ms.png@ ( colorSpace = "auto" customData = { asset default = @@ } displayGroup = "Diffuse" displayName = "Albedo Map" ) bool inputs:enable_opacity = 0 ( customData = { bool default = 0 } displayGroup = "Alpha" displayName = "Enable Opacity" ) bool inputs:enable_ORM_texture = 1 ( customData = { bool default = 1 } displayGroup = "Reflectivity" displayName = "Enable ORM Texture" ) bool inputs:enable_retroreflection = 0 ( customData = { bool default = 0 } displayGroup = "Reflectivity" displayName = "Enable Retroreflection" ) asset inputs:normalmap_texture = @../ds2_materials/drivable_surfaces/general/asphalt/asphalt_base/asphalt_base_n_ms.png@ ( colorSpace = "auto" customData = { asset default = @@ } displayGroup = "Normal" displayName = "Normal Map" ) asset inputs:ORM_texture = @../ds2_materials/drivable_surfaces/general/asphalt/asphalt_base/asphalt_base_orm_ms.png@ ( colorSpace = "auto" customData = { asset default = @@ } displayGroup = "Reflectivity" displayName = "ORM Map" ) token outputs:out } } def Material "OmniPBR" { token outputs:mdl:displacement.connect = </World/Looks/OmniPBR/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/OmniPBR/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/OmniPBR/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @OmniPBR.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "OmniPBR" token outputs:out } } def Material "DrivesimPBR_01" { token outputs:mdl:displacement.connect = </World/Looks/DrivesimPBR_01/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/DrivesimPBR_01/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/DrivesimPBR_01/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @E:/material-flattening-assets/ds2_materials/DrivesimPBR.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "DrivesimPBR" token outputs:out } } def Material "DrivesimPBR_2" { token outputs:mdl:displacement.connect = </World/Looks/DrivesimPBR_2/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/DrivesimPBR_2/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/DrivesimPBR_2/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @../ds2_materials/DrivesimPBR.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "DrivesimPBR" token outputs:out } } } def "road_base" ( prepend references = @../ds2_materials/drivable_surfaces/general/road/road_base.usda@ ) { float3 xformOp:rotateXYZ = (0, -0, 0) float3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (-118.774872, -116.608191, -1723.065986) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Xform "road_omniue4" ( prepend references = @maya2_atlas_road_tile_237_01.usd2.usda@ ) { float3 xformOp:rotateZYX = (-0, 0, -0) float3 xformOp:scale = (1, 120.700005, 1) double3 xformOp:translate = (0, -45001, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateZYX", "xformOp:scale"] over "SceneNode" { over "Tile_0_0Node" { over "RoadsNode" { over "Road_RoadNode" { over "Road_Road_Layer0Node" ( prepend apiSchemas = ["SemanticsAPI:Semantics"] ) { rel material:binding = </World/Looks/road_base> ( bindMaterialAs = "weakerThanDescendants" ) string semantic:Semantics:params:semanticData = "road" string semantic:Semantics:params:semanticType = "class" float3 xformOp:rotateXYZ = (90, -0, 0) float3 xformOp:scale = (0.9999998, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } } } } } } def Mesh "Plane" ( prepend apiSchemas = ["SemanticsAPI:Semantics"] ) { int[] faceVertexCounts = [4] int[] faceVertexIndices = [0, 1, 3, 2] rel material:binding = </World/Looks/DrivesimPBR_LaneMarking> ( bindMaterialAs = "weakerThanDescendants" ) normal3f[] normals = [(0, 0, 1), (0, 0, 1), (0, 0, 1), (0, 0, 1)] ( interpolation = "faceVarying" ) point3f[] points = [(-50, -50, 0), (50, -50, 0), (-50, 50, 0), (50, 50, 0)] bool primvars:isDecal = 1 bool primvars:materialFlattening_isDecal = 1 float2[] primvars:st = [(0, 0), (1, 0), (1, 1), (0, 1)] ( interpolation = "faceVarying" ) string semantic:Semantics:params:semanticData = "lane" string semantic:Semantics:params:semanticType = "class" uniform token subdivisionScheme = "none" token visibility = "inherited" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (0.005, 50, 1) double3 xformOp:translate = (-24, -10497, 0.1) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } }
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/scenes/torus_sphere.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500, 500, 500) double3 target = (-0.0000039780385918675165, 0.00000795607684267452, -0.000003978038364493841) } dictionary Right = { double3 position = (-50000, 0, 0) double radius = 500 } dictionary Top = { double3 position = (0, 50000, 0) double radius = 467.708984375 } string boundCamera = "/OmniverseKit_Front" } dictionary omni_layer = { dictionary muteness = { } } dictionary renderSettings = { float3 "rtx:debugView:pixelDebug:textColor" = (0, 1e18, 0) float3 "rtx:dynamicDiffuseGI:probeCounts" = (6, 6, 6) float3 "rtx:dynamicDiffuseGI:probeGridOrigin" = (-210, -250, -10) float3 "rtx:dynamicDiffuseGI:volumeSize" = (600, 440, 300) float3 "rtx:fog:fogColor" = (0.75, 0.75, 0.75) float3 "rtx:raytracing:inscattering:singleScatteringAlbedo" = (0.9, 0.9, 0.9) float3 "rtx:raytracing:inscattering:transmittanceColor" = (0.5, 0.5, 0.5) token "rtx:rendermode" = "PathTracing" float3 "rtx:sceneDb:ambientLightColor" = (0.1, 0.1, 0.1) } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.01 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def Mesh "Torus" { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4] int[] faceVertexIndices = [0, 33, 34, 1, 1, 34, 35, 2, 2, 35, 36, 3, 3, 36, 37, 4, 4, 37, 38, 5, 5, 38, 39, 6, 6, 39, 40, 7, 7, 40, 41, 8, 8, 41, 42, 9, 9, 42, 43, 10, 10, 43, 44, 11, 11, 44, 45, 12, 12, 45, 46, 13, 13, 46, 47, 14, 14, 47, 48, 15, 15, 48, 49, 16, 16, 49, 50, 17, 17, 50, 51, 18, 18, 51, 52, 19, 19, 52, 53, 20, 20, 53, 54, 21, 21, 54, 55, 22, 22, 55, 56, 23, 23, 56, 57, 24, 24, 57, 58, 25, 25, 58, 59, 26, 26, 59, 60, 27, 27, 60, 61, 28, 28, 61, 62, 29, 29, 62, 63, 30, 30, 63, 64, 31, 31, 64, 65, 32, 32, 65, 33, 0, 33, 66, 67, 34, 34, 67, 68, 35, 35, 68, 69, 36, 36, 69, 70, 37, 37, 70, 71, 38, 38, 71, 72, 39, 39, 72, 73, 40, 40, 73, 74, 41, 41, 74, 75, 42, 42, 75, 76, 43, 43, 76, 77, 44, 44, 77, 78, 45, 45, 78, 79, 46, 46, 79, 80, 47, 47, 80, 81, 48, 48, 81, 82, 49, 49, 82, 83, 50, 50, 83, 84, 51, 51, 84, 85, 52, 52, 85, 86, 53, 53, 86, 87, 54, 54, 87, 88, 55, 55, 88, 89, 56, 56, 89, 90, 57, 57, 90, 91, 58, 58, 91, 92, 59, 59, 92, 93, 60, 60, 93, 94, 61, 61, 94, 95, 62, 62, 95, 96, 63, 63, 96, 97, 64, 64, 97, 98, 65, 65, 98, 66, 33, 66, 99, 100, 67, 67, 100, 101, 68, 68, 101, 102, 69, 69, 102, 103, 70, 70, 103, 104, 71, 71, 104, 105, 72, 72, 105, 106, 73, 73, 106, 107, 74, 74, 107, 108, 75, 75, 108, 109, 76, 76, 109, 110, 77, 77, 110, 111, 78, 78, 111, 112, 79, 79, 112, 113, 80, 80, 113, 114, 81, 81, 114, 115, 82, 82, 115, 116, 83, 83, 116, 117, 84, 84, 117, 118, 85, 85, 118, 119, 86, 86, 119, 120, 87, 87, 120, 121, 88, 88, 121, 122, 89, 89, 122, 123, 90, 90, 123, 124, 91, 91, 124, 125, 92, 92, 125, 126, 93, 93, 126, 127, 94, 94, 127, 128, 95, 95, 128, 129, 96, 96, 129, 130, 97, 97, 130, 131, 98, 98, 131, 99, 66, 99, 132, 133, 100, 100, 133, 134, 101, 101, 134, 135, 102, 102, 135, 136, 103, 103, 136, 137, 104, 104, 137, 138, 105, 105, 138, 139, 106, 106, 139, 140, 107, 107, 140, 141, 108, 108, 141, 142, 109, 109, 142, 143, 110, 110, 143, 144, 111, 111, 144, 145, 112, 112, 145, 146, 113, 113, 146, 147, 114, 114, 147, 148, 115, 115, 148, 149, 116, 116, 149, 150, 117, 117, 150, 151, 118, 118, 151, 152, 119, 119, 152, 153, 120, 120, 153, 154, 121, 121, 154, 155, 122, 122, 155, 156, 123, 123, 156, 157, 124, 124, 157, 158, 125, 125, 158, 159, 126, 126, 159, 160, 127, 127, 160, 161, 128, 128, 161, 162, 129, 129, 162, 163, 130, 130, 163, 164, 131, 131, 164, 132, 99, 132, 165, 166, 133, 133, 166, 167, 134, 134, 167, 168, 135, 135, 168, 169, 136, 136, 169, 170, 137, 137, 170, 171, 138, 138, 171, 172, 139, 139, 172, 173, 140, 140, 173, 174, 141, 141, 174, 175, 142, 142, 175, 176, 143, 143, 176, 177, 144, 144, 177, 178, 145, 145, 178, 179, 146, 146, 179, 180, 147, 147, 180, 181, 148, 148, 181, 182, 149, 149, 182, 183, 150, 150, 183, 184, 151, 151, 184, 185, 152, 152, 185, 186, 153, 153, 186, 187, 154, 154, 187, 188, 155, 155, 188, 189, 156, 156, 189, 190, 157, 157, 190, 191, 158, 158, 191, 192, 159, 159, 192, 193, 160, 160, 193, 194, 161, 161, 194, 195, 162, 162, 195, 196, 163, 163, 196, 197, 164, 164, 197, 165, 132, 165, 198, 199, 166, 166, 199, 200, 167, 167, 200, 201, 168, 168, 201, 202, 169, 169, 202, 203, 170, 170, 203, 204, 171, 171, 204, 205, 172, 172, 205, 206, 173, 173, 206, 207, 174, 174, 207, 208, 175, 175, 208, 209, 176, 176, 209, 210, 177, 177, 210, 211, 178, 178, 211, 212, 179, 179, 212, 213, 180, 180, 213, 214, 181, 181, 214, 215, 182, 182, 215, 216, 183, 183, 216, 217, 184, 184, 217, 218, 185, 185, 218, 219, 186, 186, 219, 220, 187, 187, 220, 221, 188, 188, 221, 222, 189, 189, 222, 223, 190, 190, 223, 224, 191, 191, 224, 225, 192, 192, 225, 226, 193, 193, 226, 227, 194, 194, 227, 228, 195, 195, 228, 229, 196, 196, 229, 230, 197, 197, 230, 198, 165, 198, 231, 232, 199, 199, 232, 233, 200, 200, 233, 234, 201, 201, 234, 235, 202, 202, 235, 236, 203, 203, 236, 237, 204, 204, 237, 238, 205, 205, 238, 239, 206, 206, 239, 240, 207, 207, 240, 241, 208, 208, 241, 242, 209, 209, 242, 243, 210, 210, 243, 244, 211, 211, 244, 245, 212, 212, 245, 246, 213, 213, 246, 247, 214, 214, 247, 248, 215, 215, 248, 249, 216, 216, 249, 250, 217, 217, 250, 251, 218, 218, 251, 252, 219, 219, 252, 253, 220, 220, 253, 254, 221, 221, 254, 255, 222, 222, 255, 256, 223, 223, 256, 257, 224, 224, 257, 258, 225, 225, 258, 259, 226, 226, 259, 260, 227, 227, 260, 261, 228, 228, 261, 262, 229, 229, 262, 263, 230, 230, 263, 231, 198, 231, 264, 265, 232, 232, 265, 266, 233, 233, 266, 267, 234, 234, 267, 268, 235, 235, 268, 269, 236, 236, 269, 270, 237, 237, 270, 271, 238, 238, 271, 272, 239, 239, 272, 273, 240, 240, 273, 274, 241, 241, 274, 275, 242, 242, 275, 276, 243, 243, 276, 277, 244, 244, 277, 278, 245, 245, 278, 279, 246, 246, 279, 280, 247, 247, 280, 281, 248, 248, 281, 282, 249, 249, 282, 283, 250, 250, 283, 284, 251, 251, 284, 285, 252, 252, 285, 286, 253, 253, 286, 287, 254, 254, 287, 288, 255, 255, 288, 289, 256, 256, 289, 290, 257, 257, 290, 291, 258, 258, 291, 292, 259, 259, 292, 293, 260, 260, 293, 294, 261, 261, 294, 295, 262, 262, 295, 296, 263, 263, 296, 264, 231, 264, 297, 298, 265, 265, 298, 299, 266, 266, 299, 300, 267, 267, 300, 301, 268, 268, 301, 302, 269, 269, 302, 303, 270, 270, 303, 304, 271, 271, 304, 305, 272, 272, 305, 306, 273, 273, 306, 307, 274, 274, 307, 308, 275, 275, 308, 309, 276, 276, 309, 310, 277, 277, 310, 311, 278, 278, 311, 312, 279, 279, 312, 313, 280, 280, 313, 314, 281, 281, 314, 315, 282, 282, 315, 316, 283, 283, 316, 317, 284, 284, 317, 318, 285, 285, 318, 319, 286, 286, 319, 320, 287, 287, 320, 321, 288, 288, 321, 322, 289, 289, 322, 323, 290, 290, 323, 324, 291, 291, 324, 325, 292, 292, 325, 326, 293, 293, 326, 327, 294, 294, 327, 328, 295, 295, 328, 329, 296, 296, 329, 297, 264, 297, 330, 331, 298, 298, 331, 332, 299, 299, 332, 333, 300, 300, 333, 334, 301, 301, 334, 335, 302, 302, 335, 336, 303, 303, 336, 337, 304, 304, 337, 338, 305, 305, 338, 339, 306, 306, 339, 340, 307, 307, 340, 341, 308, 308, 341, 342, 309, 309, 342, 343, 310, 310, 343, 344, 311, 311, 344, 345, 312, 312, 345, 346, 313, 313, 346, 347, 314, 314, 347, 348, 315, 315, 348, 349, 316, 316, 349, 350, 317, 317, 350, 351, 318, 318, 351, 352, 319, 319, 352, 353, 320, 320, 353, 354, 321, 321, 354, 355, 322, 322, 355, 356, 323, 323, 356, 357, 324, 324, 357, 358, 325, 325, 358, 359, 326, 326, 359, 360, 327, 327, 360, 361, 328, 328, 361, 362, 329, 329, 362, 330, 297, 330, 363, 364, 331, 331, 364, 365, 332, 332, 365, 366, 333, 333, 366, 367, 334, 334, 367, 368, 335, 335, 368, 369, 336, 336, 369, 370, 337, 337, 370, 371, 338, 338, 371, 372, 339, 339, 372, 373, 340, 340, 373, 374, 341, 341, 374, 375, 342, 342, 375, 376, 343, 343, 376, 377, 344, 344, 377, 378, 345, 345, 378, 379, 346, 346, 379, 380, 347, 347, 380, 381, 348, 348, 381, 382, 349, 349, 382, 383, 350, 350, 383, 384, 351, 351, 384, 385, 352, 352, 385, 386, 353, 353, 386, 387, 354, 354, 387, 388, 355, 355, 388, 389, 356, 356, 389, 390, 357, 357, 390, 391, 358, 358, 391, 392, 359, 359, 392, 393, 360, 360, 393, 394, 361, 361, 394, 395, 362, 362, 395, 363, 330, 363, 396, 397, 364, 364, 397, 398, 365, 365, 398, 399, 366, 366, 399, 400, 367, 367, 400, 401, 368, 368, 401, 402, 369, 369, 402, 403, 370, 370, 403, 404, 371, 371, 404, 405, 372, 372, 405, 406, 373, 373, 406, 407, 374, 374, 407, 408, 375, 375, 408, 409, 376, 376, 409, 410, 377, 377, 410, 411, 378, 378, 411, 412, 379, 379, 412, 413, 380, 380, 413, 414, 381, 381, 414, 415, 382, 382, 415, 416, 383, 383, 416, 417, 384, 384, 417, 418, 385, 385, 418, 419, 386, 386, 419, 420, 387, 387, 420, 421, 388, 388, 421, 422, 389, 389, 422, 423, 390, 390, 423, 424, 391, 391, 424, 425, 392, 392, 425, 426, 393, 393, 426, 427, 394, 394, 427, 428, 395, 395, 428, 396, 363, 396, 429, 430, 397, 397, 430, 431, 398, 398, 431, 432, 399, 399, 432, 433, 400, 400, 433, 434, 401, 401, 434, 435, 402, 402, 435, 436, 403, 403, 436, 437, 404, 404, 437, 438, 405, 405, 438, 439, 406, 406, 439, 440, 407, 407, 440, 441, 408, 408, 441, 442, 409, 409, 442, 443, 410, 410, 443, 444, 411, 411, 444, 445, 412, 412, 445, 446, 413, 413, 446, 447, 414, 414, 447, 448, 415, 415, 448, 449, 416, 416, 449, 450, 417, 417, 450, 451, 418, 418, 451, 452, 419, 419, 452, 453, 420, 420, 453, 454, 421, 421, 454, 455, 422, 422, 455, 456, 423, 423, 456, 457, 424, 424, 457, 458, 425, 425, 458, 459, 426, 426, 459, 460, 427, 427, 460, 461, 428, 428, 461, 429, 396, 429, 462, 463, 430, 430, 463, 464, 431, 431, 464, 465, 432, 432, 465, 466, 433, 433, 466, 467, 434, 434, 467, 468, 435, 435, 468, 469, 436, 436, 469, 470, 437, 437, 470, 471, 438, 438, 471, 472, 439, 439, 472, 473, 440, 440, 473, 474, 441, 441, 474, 475, 442, 442, 475, 476, 443, 443, 476, 477, 444, 444, 477, 478, 445, 445, 478, 479, 446, 446, 479, 480, 447, 447, 480, 481, 448, 448, 481, 482, 449, 449, 482, 483, 450, 450, 483, 484, 451, 451, 484, 485, 452, 452, 485, 486, 453, 453, 486, 487, 454, 454, 487, 488, 455, 455, 488, 489, 456, 456, 489, 490, 457, 457, 490, 491, 458, 458, 491, 492, 459, 459, 492, 493, 460, 460, 493, 494, 461, 461, 494, 462, 429, 462, 495, 496, 463, 463, 496, 497, 464, 464, 497, 498, 465, 465, 498, 499, 466, 466, 499, 500, 467, 467, 500, 501, 468, 468, 501, 502, 469, 469, 502, 503, 470, 470, 503, 504, 471, 471, 504, 505, 472, 472, 505, 506, 473, 473, 506, 507, 474, 474, 507, 508, 475, 475, 508, 509, 476, 476, 509, 510, 477, 477, 510, 511, 478, 478, 511, 512, 479, 479, 512, 513, 480, 480, 513, 514, 481, 481, 514, 515, 482, 482, 515, 516, 483, 483, 516, 517, 484, 484, 517, 518, 485, 485, 518, 519, 486, 486, 519, 520, 487, 487, 520, 521, 488, 488, 521, 522, 489, 489, 522, 523, 490, 490, 523, 524, 491, 491, 524, 525, 492, 492, 525, 526, 493, 493, 526, 527, 494, 494, 527, 495, 462, 495, 528, 529, 496, 496, 529, 530, 497, 497, 530, 531, 498, 498, 531, 532, 499, 499, 532, 533, 500, 500, 533, 534, 501, 501, 534, 535, 502, 502, 535, 536, 503, 503, 536, 537, 504, 504, 537, 538, 505, 505, 538, 539, 506, 506, 539, 540, 507, 507, 540, 541, 508, 508, 541, 542, 509, 509, 542, 543, 510, 510, 543, 544, 511, 511, 544, 545, 512, 512, 545, 546, 513, 513, 546, 547, 514, 514, 547, 548, 515, 515, 548, 549, 516, 516, 549, 550, 517, 517, 550, 551, 518, 518, 551, 552, 519, 519, 552, 553, 520, 520, 553, 554, 521, 521, 554, 555, 522, 522, 555, 556, 523, 523, 556, 557, 524, 524, 557, 558, 525, 525, 558, 559, 526, 526, 559, 560, 527, 527, 560, 528, 495, 528, 561, 562, 529, 529, 562, 563, 530, 530, 563, 564, 531, 531, 564, 565, 532, 532, 565, 566, 533, 533, 566, 567, 534, 534, 567, 568, 535, 535, 568, 569, 536, 536, 569, 570, 537, 537, 570, 571, 538, 538, 571, 572, 539, 539, 572, 573, 540, 540, 573, 574, 541, 541, 574, 575, 542, 542, 575, 576, 543, 543, 576, 577, 544, 544, 577, 578, 545, 545, 578, 579, 546, 546, 579, 580, 547, 547, 580, 581, 548, 548, 581, 582, 549, 549, 582, 583, 550, 550, 583, 584, 551, 551, 584, 585, 552, 552, 585, 586, 553, 553, 586, 587, 554, 554, 587, 588, 555, 555, 588, 589, 556, 556, 589, 590, 557, 557, 590, 591, 558, 558, 591, 592, 559, 559, 592, 593, 560, 560, 593, 561, 528, 561, 594, 595, 562, 562, 595, 596, 563, 563, 596, 597, 564, 564, 597, 598, 565, 565, 598, 599, 566, 566, 599, 600, 567, 567, 600, 601, 568, 568, 601, 602, 569, 569, 602, 603, 570, 570, 603, 604, 571, 571, 604, 605, 572, 572, 605, 606, 573, 573, 606, 607, 574, 574, 607, 608, 575, 575, 608, 609, 576, 576, 609, 610, 577, 577, 610, 611, 578, 578, 611, 612, 579, 579, 612, 613, 580, 580, 613, 614, 581, 581, 614, 615, 582, 582, 615, 616, 583, 583, 616, 617, 584, 584, 617, 618, 585, 585, 618, 619, 586, 586, 619, 620, 587, 587, 620, 621, 588, 588, 621, 622, 589, 589, 622, 623, 590, 590, 623, 624, 591, 591, 624, 625, 592, 592, 625, 626, 593, 593, 626, 594, 561, 594, 627, 628, 595, 595, 628, 629, 596, 596, 629, 630, 597, 597, 630, 631, 598, 598, 631, 632, 599, 599, 632, 633, 600, 600, 633, 634, 601, 601, 634, 635, 602, 602, 635, 636, 603, 603, 636, 637, 604, 604, 637, 638, 605, 605, 638, 639, 606, 606, 639, 640, 607, 607, 640, 641, 608, 608, 641, 642, 609, 609, 642, 643, 610, 610, 643, 644, 611, 611, 644, 645, 612, 612, 645, 646, 613, 613, 646, 647, 614, 614, 647, 648, 615, 615, 648, 649, 616, 616, 649, 650, 617, 617, 650, 651, 618, 618, 651, 652, 619, 619, 652, 653, 620, 620, 653, 654, 621, 621, 654, 655, 622, 622, 655, 656, 623, 623, 656, 657, 624, 624, 657, 658, 625, 625, 658, 659, 626, 626, 659, 627, 594, 627, 660, 661, 628, 628, 661, 662, 629, 629, 662, 663, 630, 630, 663, 664, 631, 631, 664, 665, 632, 632, 665, 666, 633, 633, 666, 667, 634, 634, 667, 668, 635, 635, 668, 669, 636, 636, 669, 670, 637, 637, 670, 671, 638, 638, 671, 672, 639, 639, 672, 673, 640, 640, 673, 674, 641, 641, 674, 675, 642, 642, 675, 676, 643, 643, 676, 677, 644, 644, 677, 678, 645, 645, 678, 679, 646, 646, 679, 680, 647, 647, 680, 681, 648, 648, 681, 682, 649, 649, 682, 683, 650, 650, 683, 684, 651, 651, 684, 685, 652, 652, 685, 686, 653, 653, 686, 687, 654, 654, 687, 688, 655, 655, 688, 689, 656, 656, 689, 690, 657, 657, 690, 691, 658, 658, 691, 692, 659, 659, 692, 660, 627, 660, 693, 694, 661, 661, 694, 695, 662, 662, 695, 696, 663, 663, 696, 697, 664, 664, 697, 698, 665, 665, 698, 699, 666, 666, 699, 700, 667, 667, 700, 701, 668, 668, 701, 702, 669, 669, 702, 703, 670, 670, 703, 704, 671, 671, 704, 705, 672, 672, 705, 706, 673, 673, 706, 707, 674, 674, 707, 708, 675, 675, 708, 709, 676, 676, 709, 710, 677, 677, 710, 711, 678, 678, 711, 712, 679, 679, 712, 713, 680, 680, 713, 714, 681, 681, 714, 715, 682, 682, 715, 716, 683, 683, 716, 717, 684, 684, 717, 718, 685, 685, 718, 719, 686, 686, 719, 720, 687, 687, 720, 721, 688, 688, 721, 722, 689, 689, 722, 723, 690, 690, 723, 724, 691, 691, 724, 725, 692, 692, 725, 693, 660, 693, 726, 727, 694, 694, 727, 728, 695, 695, 728, 729, 696, 696, 729, 730, 697, 697, 730, 731, 698, 698, 731, 732, 699, 699, 732, 733, 700, 700, 733, 734, 701, 701, 734, 735, 702, 702, 735, 736, 703, 703, 736, 737, 704, 704, 737, 738, 705, 705, 738, 739, 706, 706, 739, 740, 707, 707, 740, 741, 708, 708, 741, 742, 709, 709, 742, 743, 710, 710, 743, 744, 711, 711, 744, 745, 712, 712, 745, 746, 713, 713, 746, 747, 714, 714, 747, 748, 715, 715, 748, 749, 716, 716, 749, 750, 717, 717, 750, 751, 718, 718, 751, 752, 719, 719, 752, 753, 720, 720, 753, 754, 721, 721, 754, 755, 722, 722, 755, 756, 723, 723, 756, 757, 724, 724, 757, 758, 725, 725, 758, 726, 693, 726, 759, 760, 727, 727, 760, 761, 728, 728, 761, 762, 729, 729, 762, 763, 730, 730, 763, 764, 731, 731, 764, 765, 732, 732, 765, 766, 733, 733, 766, 767, 734, 734, 767, 768, 735, 735, 768, 769, 736, 736, 769, 770, 737, 737, 770, 771, 738, 738, 771, 772, 739, 739, 772, 773, 740, 740, 773, 774, 741, 741, 774, 775, 742, 742, 775, 776, 743, 743, 776, 777, 744, 744, 777, 778, 745, 745, 778, 779, 746, 746, 779, 780, 747, 747, 780, 781, 748, 748, 781, 782, 749, 749, 782, 783, 750, 750, 783, 784, 751, 751, 784, 785, 752, 752, 785, 786, 753, 753, 786, 787, 754, 754, 787, 788, 755, 755, 788, 789, 756, 756, 789, 790, 757, 757, 790, 791, 758, 758, 791, 759, 726, 759, 792, 793, 760, 760, 793, 794, 761, 761, 794, 795, 762, 762, 795, 796, 763, 763, 796, 797, 764, 764, 797, 798, 765, 765, 798, 799, 766, 766, 799, 800, 767, 767, 800, 801, 768, 768, 801, 802, 769, 769, 802, 803, 770, 770, 803, 804, 771, 771, 804, 805, 772, 772, 805, 806, 773, 773, 806, 807, 774, 774, 807, 808, 775, 775, 808, 809, 776, 776, 809, 810, 777, 777, 810, 811, 778, 778, 811, 812, 779, 779, 812, 813, 780, 780, 813, 814, 781, 781, 814, 815, 782, 782, 815, 816, 783, 783, 816, 817, 784, 784, 817, 818, 785, 785, 818, 819, 786, 786, 819, 820, 787, 787, 820, 821, 788, 788, 821, 822, 789, 789, 822, 823, 790, 790, 823, 824, 791, 791, 824, 792, 759, 792, 825, 826, 793, 793, 826, 827, 794, 794, 827, 828, 795, 795, 828, 829, 796, 796, 829, 830, 797, 797, 830, 831, 798, 798, 831, 832, 799, 799, 832, 833, 800, 800, 833, 834, 801, 801, 834, 835, 802, 802, 835, 836, 803, 803, 836, 837, 804, 804, 837, 838, 805, 805, 838, 839, 806, 806, 839, 840, 807, 807, 840, 841, 808, 808, 841, 842, 809, 809, 842, 843, 810, 810, 843, 844, 811, 811, 844, 845, 812, 812, 845, 846, 813, 813, 846, 847, 814, 814, 847, 848, 815, 815, 848, 849, 816, 816, 849, 850, 817, 817, 850, 851, 818, 818, 851, 852, 819, 819, 852, 853, 820, 820, 853, 854, 821, 821, 854, 855, 822, 822, 855, 856, 823, 823, 856, 857, 824, 824, 857, 825, 792, 825, 858, 859, 826, 826, 859, 860, 827, 827, 860, 861, 828, 828, 861, 862, 829, 829, 862, 863, 830, 830, 863, 864, 831, 831, 864, 865, 832, 832, 865, 866, 833, 833, 866, 867, 834, 834, 867, 868, 835, 835, 868, 869, 836, 836, 869, 870, 837, 837, 870, 871, 838, 838, 871, 872, 839, 839, 872, 873, 840, 840, 873, 874, 841, 841, 874, 875, 842, 842, 875, 876, 843, 843, 876, 877, 844, 844, 877, 878, 845, 845, 878, 879, 846, 846, 879, 880, 847, 847, 880, 881, 848, 848, 881, 882, 849, 849, 882, 883, 850, 850, 883, 884, 851, 851, 884, 885, 852, 852, 885, 886, 853, 853, 886, 887, 854, 854, 887, 888, 855, 855, 888, 889, 856, 856, 889, 890, 857, 857, 890, 858, 825, 858, 891, 892, 859, 859, 892, 893, 860, 860, 893, 894, 861, 861, 894, 895, 862, 862, 895, 896, 863, 863, 896, 897, 864, 864, 897, 898, 865, 865, 898, 899, 866, 866, 899, 900, 867, 867, 900, 901, 868, 868, 901, 902, 869, 869, 902, 903, 870, 870, 903, 904, 871, 871, 904, 905, 872, 872, 905, 906, 873, 873, 906, 907, 874, 874, 907, 908, 875, 875, 908, 909, 876, 876, 909, 910, 877, 877, 910, 911, 878, 878, 911, 912, 879, 879, 912, 913, 880, 880, 913, 914, 881, 881, 914, 915, 882, 882, 915, 916, 883, 883, 916, 917, 884, 884, 917, 918, 885, 885, 918, 919, 886, 886, 919, 920, 887, 887, 920, 921, 888, 888, 921, 922, 889, 889, 922, 923, 890, 890, 923, 891, 858, 891, 924, 925, 892, 892, 925, 926, 893, 893, 926, 927, 894, 894, 927, 928, 895, 895, 928, 929, 896, 896, 929, 930, 897, 897, 930, 931, 898, 898, 931, 932, 899, 899, 932, 933, 900, 900, 933, 934, 901, 901, 934, 935, 902, 902, 935, 936, 903, 903, 936, 937, 904, 904, 937, 938, 905, 905, 938, 939, 906, 906, 939, 940, 907, 907, 940, 941, 908, 908, 941, 942, 909, 909, 942, 943, 910, 910, 943, 944, 911, 911, 944, 945, 912, 912, 945, 946, 913, 913, 946, 947, 914, 914, 947, 948, 915, 915, 948, 949, 916, 916, 949, 950, 917, 917, 950, 951, 918, 918, 951, 952, 919, 919, 952, 953, 920, 920, 953, 954, 921, 921, 954, 955, 922, 922, 955, 956, 923, 923, 956, 924, 891, 924, 957, 958, 925, 925, 958, 959, 926, 926, 959, 960, 927, 927, 960, 961, 928, 928, 961, 962, 929, 929, 962, 963, 930, 930, 963, 964, 931, 931, 964, 965, 932, 932, 965, 966, 933, 933, 966, 967, 934, 934, 967, 968, 935, 935, 968, 969, 936, 936, 969, 970, 937, 937, 970, 971, 938, 938, 971, 972, 939, 939, 972, 973, 940, 940, 973, 974, 941, 941, 974, 975, 942, 942, 975, 976, 943, 943, 976, 977, 944, 944, 977, 978, 945, 945, 978, 979, 946, 946, 979, 980, 947, 947, 980, 981, 948, 948, 981, 982, 949, 949, 982, 983, 950, 950, 983, 984, 951, 951, 984, 985, 952, 952, 985, 986, 953, 953, 986, 987, 954, 954, 987, 988, 955, 955, 988, 989, 956, 956, 989, 957, 924, 957, 990, 991, 958, 958, 991, 992, 959, 959, 992, 993, 960, 960, 993, 994, 961, 961, 994, 995, 962, 962, 995, 996, 963, 963, 996, 997, 964, 964, 997, 998, 965, 965, 998, 999, 966, 966, 999, 1000, 967, 967, 1000, 1001, 968, 968, 1001, 1002, 969, 969, 1002, 1003, 970, 970, 1003, 1004, 971, 971, 1004, 1005, 972, 972, 1005, 1006, 973, 973, 1006, 1007, 974, 974, 1007, 1008, 975, 975, 1008, 1009, 976, 976, 1009, 1010, 977, 977, 1010, 1011, 978, 978, 1011, 1012, 979, 979, 1012, 1013, 980, 980, 1013, 1014, 981, 981, 1014, 1015, 982, 982, 1015, 1016, 983, 983, 1016, 1017, 984, 984, 1017, 1018, 985, 985, 1018, 1019, 986, 986, 1019, 1020, 987, 987, 1020, 1021, 988, 988, 1021, 1022, 989, 989, 1022, 990, 957, 990, 1023, 1024, 991, 991, 1024, 1025, 992, 992, 1025, 1026, 993, 993, 1026, 1027, 994, 994, 1027, 1028, 995, 995, 1028, 1029, 996, 996, 1029, 1030, 997, 997, 1030, 1031, 998, 998, 1031, 1032, 999, 999, 1032, 1033, 1000, 1000, 1033, 1034, 1001, 1001, 1034, 1035, 1002, 1002, 1035, 1036, 1003, 1003, 1036, 1037, 1004, 1004, 1037, 1038, 1005, 1005, 1038, 1039, 1006, 1006, 1039, 1040, 1007, 1007, 1040, 1041, 1008, 1008, 1041, 1042, 1009, 1009, 1042, 1043, 1010, 1010, 1043, 1044, 1011, 1011, 1044, 1045, 1012, 1012, 1045, 1046, 1013, 1013, 1046, 1047, 1014, 1014, 1047, 1048, 1015, 1015, 1048, 1049, 1016, 1016, 1049, 1050, 1017, 1017, 1050, 1051, 1018, 1018, 1051, 1052, 1019, 1019, 1052, 1053, 1020, 1020, 1053, 1054, 1021, 1021, 1054, 1055, 1022, 1022, 1055, 1023, 990, 1023, 1056, 1057, 1024, 1024, 1057, 1058, 1025, 1025, 1058, 1059, 1026, 1026, 1059, 1060, 1027, 1027, 1060, 1061, 1028, 1028, 1061, 1062, 1029, 1029, 1062, 1063, 1030, 1030, 1063, 1064, 1031, 1031, 1064, 1065, 1032, 1032, 1065, 1066, 1033, 1033, 1066, 1067, 1034, 1034, 1067, 1068, 1035, 1035, 1068, 1069, 1036, 1036, 1069, 1070, 1037, 1037, 1070, 1071, 1038, 1038, 1071, 1072, 1039, 1039, 1072, 1073, 1040, 1040, 1073, 1074, 1041, 1041, 1074, 1075, 1042, 1042, 1075, 1076, 1043, 1043, 1076, 1077, 1044, 1044, 1077, 1078, 1045, 1045, 1078, 1079, 1046, 1046, 1079, 1080, 1047, 1047, 1080, 1081, 1048, 1048, 1081, 1082, 1049, 1049, 1082, 1083, 1050, 1050, 1083, 1084, 1051, 1051, 1084, 1085, 1052, 1052, 1085, 1086, 1053, 1053, 1086, 1087, 1054, 1054, 1087, 1088, 1055, 1055, 1088, 1056, 1023, 1056, 0, 1, 1057, 1057, 1, 2, 1058, 1058, 2, 3, 1059, 1059, 3, 4, 1060, 1060, 4, 5, 1061, 1061, 5, 6, 1062, 1062, 6, 7, 1063, 1063, 7, 8, 1064, 1064, 8, 9, 1065, 1065, 9, 10, 1066, 1066, 10, 11, 1067, 1067, 11, 12, 1068, 1068, 12, 13, 1069, 1069, 13, 14, 1070, 1070, 14, 15, 1071, 1071, 15, 16, 1072, 1072, 16, 17, 1073, 1073, 17, 18, 1074, 1074, 18, 19, 1075, 1075, 19, 20, 1076, 1076, 20, 21, 1077, 1077, 21, 22, 1078, 1078, 22, 23, 1079, 1079, 23, 24, 1080, 1080, 24, 25, 1081, 1081, 25, 26, 1082, 1082, 26, 27, 1083, 1083, 27, 28, 1084, 1084, 28, 29, 1085, 1085, 29, 30, 1086, 1086, 30, 31, 1087, 1087, 31, 32, 1088, 1088, 32, 0, 1056] rel material:binding = None ( bindMaterialAs = "weakerThanDescendants" ) normal3f[] normals = [(1, 0, 0), (0.98078567, 0.1950884, 0), (0.9619405, 0.1950884, 0.1913399), (0.98078567, 0, 0.1950884), (0.98078567, 0, 0.1950884), (0.9619405, 0.1950884, 0.1913399), (0.9061293, 0.1950884, 0.37532687), (0.92388105, 0, 0.3826798), (0.92388105, 0, 0.3826798), (0.9061293, 0.1950884, 0.37532687), (0.8154967, 0.1950884, 0.5448905), (0.8314729, 0, 0.55556536), (0.8314729, 0, 0.55556536), (0.8154967, 0.1950884, 0.5448905), (0.6935256, 0.1950884, 0.69351476), (0.7071123, 0, 0.7071012), (0.7071123, 0, 0.7071012), (0.6935256, 0.1950884, 0.69351476), (0.54490334, 0.1950884, 0.8154881), (0.5555784, 0, 0.8314642), (0.5555784, 0, 0.8314642), (0.54490334, 0.1950884, 0.8154881), (0.3753411, 0.1950884, 0.9061234), (0.3826943, 0, 0.92387503), (0.3826943, 0, 0.92387503), (0.3753411, 0.1950884, 0.9061234), (0.191355, 0.1950884, 0.9619375), (0.19510381, 0, 0.9807826), (0.19510381, 0, 0.9807826), (0.191355, 0.1950884, 0.9619375), (0.000015406145, 0.1950884, 0.98078567), (0.000015707963, 0, 1), (0.000015707963, 0, 1), (0.000015406145, 0.1950884, 0.98078567), (-0.19132479, 0.1950884, 0.9619435), (-0.195073, 0, 0.9807887), (-0.195073, 0, 0.9807887), (-0.19132479, 0.1950884, 0.9619435), (-0.37531263, 0.1950884, 0.90613514), (-0.3826653, 0, 0.9238871), (-0.3826653, 0, 0.9238871), (-0.37531263, 0.1950884, 0.90613514), (-0.5448777, 0.1950884, 0.81550527), (-0.5555523, 0, 0.83148164), (-0.5555523, 0, 0.83148164), (-0.5448777, 0.1950884, 0.81550527), (-0.69350386, 0.1950884, 0.6935365), (-0.70709014, 0, 0.70712346), (-0.70709014, 0, 0.70712346), (-0.69350386, 0.1950884, 0.6935365), (-0.8154796, 0.1950884, 0.54491615), (-0.8314554, 0, 0.55559146), (-0.8314554, 0, 0.55559146), (-0.8154796, 0.1950884, 0.54491615), (-0.9061175, 0.1950884, 0.37535533), (-0.923869, 0, 0.38270882), (-0.923869, 0, 0.38270882), (-0.9061175, 0.1950884, 0.37535533), (-0.9619345, 0.1950884, 0.19137013), (-0.9807795, 0, 0.1951192), (-0.9807795, 0, 0.1951192), (-0.9619345, 0.1950884, 0.19137013), (-0.98078567, 0.1950884, 0.00003081229), (-1, 0, 0.000031415926), (-1, 0, 0.000031415926), (-0.98078567, 0.1950884, 0.00003081229), (-0.96194655, 0.1950884, -0.19130968), (-0.9807918, 0, -0.19505759), (-0.9807918, 0, -0.19505759), (-0.96194655, 0.1950884, -0.19130968), (-0.90614104, 0.1950884, -0.3752984), (-0.92389303, 0, -0.3826508), (-0.92389303, 0, -0.3826508), (-0.90614104, 0.1950884, -0.3752984), (-0.8155138, 0.1950884, -0.5448649), (-0.83149034, 0, -0.5555392), (-0.83149034, 0, -0.5555392), (-0.8155138, 0.1950884, -0.5448649), (-0.6935474, 0.1950884, -0.69349295), (-0.70713454, 0, -0.707079), (-0.70713454, 0, -0.707079), (-0.6935474, 0.1950884, -0.69349295), (-0.54492897, 0.1950884, -0.815471), (-0.5556045, 0, -0.8314467), (-0.5556045, 0, -0.8314467), (-0.54492897, 0.1950884, -0.815471), (-0.37536958, 0.1950884, -0.9061116), (-0.38272333, 0, -0.923863), (-0.38272333, 0, -0.923863), (-0.37536958, 0.1950884, -0.9061116), (-0.19138524, 0.1950884, -0.9619315), (-0.19513461, 0, -0.9807765), (-0.19513461, 0, -0.9807765), (-0.19138524, 0.1950884, -0.9619315), (-0.000046218436, 0.1950884, -0.98078567), (-0.00004712389, 0, -1), (-0.00004712389, 0, -1), (-0.000046218436, 0.1950884, -0.98078567), (0.19129457, 0.1950884, -0.9619495), (0.19504218, 0, -0.98079485), (0.19504218, 0, -0.98079485), (0.19129457, 0.1950884, -0.9619495), (0.37528417, 0.1950884, -0.90614694), (0.38263628, 0, -0.92389905), (0.38263628, 0, -0.92389905), (0.37528417, 0.1950884, -0.90614694), (0.5448521, 0.1950884, -0.8155224), (0.55552614, 0, -0.83149904), (0.55552614, 0, -0.83149904), (0.5448521, 0.1950884, -0.8155224), (0.69348204, 0.1950884, -0.69355834), (0.7070679, 0, -0.70714563), (0.7070679, 0, -0.70714563), (0.69348204, 0.1950884, -0.69355834), (0.81546247, 0.1950884, -0.5449418), (0.831438, 0, -0.5556176), (0.831438, 0, -0.5556176), (0.81546247, 0.1950884, -0.5449418), (0.9061057, 0.1950884, -0.3753838), (0.923857, 0, -0.38273785), (0.923857, 0, -0.38273785), (0.9061057, 0.1950884, -0.3753838), (0.9619285, 0.1950884, -0.19140035), (0.9807734, 0, -0.19515002), (0.9807734, 0, -0.19515002), (0.9619285, 0.1950884, -0.19140035), (0.98078567, 0.1950884, -2.402232e-16), (1, 0, -2.4492937e-16), (1, 0, -2.4492937e-16), (0.98078567, 0.1950884, -2.402232e-16), (0.98078567, 0.1950884, 0), (1, 0, 0), (0.98078567, 0.1950884, 0), (0.92388105, 0.3826798, 0), (0.9061293, 0.3826798, 0.18023847), (0.9619405, 0.1950884, 0.1913399), (0.9619405, 0.1950884, 0.1913399), (0.9061293, 0.3826798, 0.18023847), (0.85355616, 0.3826798, 0.3535506), (0.9061293, 0.1950884, 0.37532687), (0.9061293, 0.1950884, 0.37532687), (0.85355616, 0.3826798, 0.3535506), (0.76818204, 0.3826798, 0.5132763), (0.8154967, 0.1950884, 0.5448905), (0.8154967, 0.1950884, 0.5448905), (0.76818204, 0.3826798, 0.5132763), (0.65328765, 0.3826798, 0.6532774), (0.6935256, 0.1950884, 0.69351476), (0.6935256, 0.1950884, 0.69351476), (0.65328765, 0.3826798, 0.6532774), (0.5132883, 0.3826798, 0.768174), (0.54490334, 0.1950884, 0.8154881), (0.54490334, 0.1950884, 0.8154881), (0.5132883, 0.3826798, 0.768174), (0.35356402, 0.3826798, 0.8535506), (0.3753411, 0.1950884, 0.9061234), (0.3753411, 0.1950884, 0.9061234), (0.35356402, 0.3826798, 0.8535506), (0.1802527, 0.3826798, 0.90612644), (0.191355, 0.1950884, 0.9619375), (0.191355, 0.1950884, 0.9619375), (0.1802527, 0.3826798, 0.90612644), (0.000014512289, 0.3826798, 0.92388105), (0.000015406145, 0.1950884, 0.98078567), (0.000015406145, 0.1950884, 0.98078567), (0.000014512289, 0.3826798, 0.92388105), (-0.18022424, 0.3826798, 0.9061321), (-0.19132479, 0.1950884, 0.9619435), (-0.19132479, 0.1950884, 0.9619435), (-0.18022424, 0.3826798, 0.9061321), (-0.3535372, 0.3826798, 0.8535617), (-0.37531263, 0.1950884, 0.90613514), (-0.37531263, 0.1950884, 0.90613514), (-0.3535372, 0.3826798, 0.8535617), (-0.51326424, 0.3826798, 0.7681901), (-0.5448777, 0.1950884, 0.81550527), (-0.5448777, 0.1950884, 0.81550527), (-0.51326424, 0.3826798, 0.7681901), (-0.65326715, 0.3826798, 0.65329796), (-0.69350386, 0.1950884, 0.6935365), (-0.69350386, 0.1950884, 0.6935365), (-0.65326715, 0.3826798, 0.65329796), (-0.7681659, 0.3826798, 0.5133004), (-0.8154796, 0.1950884, 0.54491615), (-0.8154796, 0.1950884, 0.54491615), (-0.7681659, 0.3826798, 0.5133004), (-0.85354507, 0.3826798, 0.35357744), (-0.9061175, 0.1950884, 0.37535533), (-0.9061175, 0.1950884, 0.37535533), (-0.85354507, 0.3826798, 0.35357744), (-0.90612364, 0.3826798, 0.18026693), (-0.9619345, 0.1950884, 0.19137013), (-0.9619345, 0.1950884, 0.19137013), (-0.90612364, 0.3826798, 0.18026693), (-0.92388105, 0.3826798, 0.000029024579), (-0.98078567, 0.1950884, 0.00003081229), (-0.98078567, 0.1950884, 0.00003081229), (-0.92388105, 0.3826798, 0.000029024579), (-0.90613496, 0.3826798, -0.18021001), (-0.96194655, 0.1950884, -0.19130968), (-0.96194655, 0.1950884, -0.19130968), (-0.90613496, 0.3826798, -0.18021001), (-0.8535673, 0.3826798, -0.3535238), (-0.90614104, 0.1950884, -0.3752984), (-0.90614104, 0.1950884, -0.3752984), (-0.8535673, 0.3826798, -0.3535238), (-0.76819813, 0.3826798, -0.51325214), (-0.8155138, 0.1950884, -0.5448649), (-0.8155138, 0.1950884, -0.5448649), (-0.76819813, 0.3826798, -0.51325214), (-0.6533082, 0.3826798, -0.6532569), (-0.6935474, 0.1950884, -0.69349295), (-0.6935474, 0.1950884, -0.69349295), (-0.6533082, 0.3826798, -0.6532569), (-0.51331246, 0.3826798, -0.76815784), (-0.54492897, 0.1950884, -0.815471), (-0.54492897, 0.1950884, -0.815471), (-0.51331246, 0.3826798, -0.76815784), (-0.35359085, 0.3826798, -0.8535395), (-0.37536958, 0.1950884, -0.9061116), (-0.37536958, 0.1950884, -0.9061116), (-0.35359085, 0.3826798, -0.8535395), (-0.18028116, 0.3826798, -0.9061208), (-0.19138524, 0.1950884, -0.9619315), (-0.19138524, 0.1950884, -0.9619315), (-0.18028116, 0.3826798, -0.9061208), (-0.000043536867, 0.3826798, -0.92388105), (-0.000046218436, 0.1950884, -0.98078567), (-0.000046218436, 0.1950884, -0.98078567), (-0.000043536867, 0.3826798, -0.92388105), (0.18019576, 0.3826798, -0.90613776), (0.19129457, 0.1950884, -0.9619495), (0.19129457, 0.1950884, -0.9619495), (0.18019576, 0.3826798, -0.90613776), (0.35351038, 0.3826798, -0.85357285), (0.37528417, 0.1950884, -0.90614694), (0.37528417, 0.1950884, -0.90614694), (0.35351038, 0.3826798, -0.85357285), (0.5132401, 0.3826798, -0.76820624), (0.5448521, 0.1950884, -0.8155224), (0.5448521, 0.1950884, -0.8155224), (0.5132401, 0.3826798, -0.76820624), (0.65324664, 0.3826798, -0.65331846), (0.69348204, 0.1950884, -0.69355834), (0.69348204, 0.1950884, -0.69355834), (0.65324664, 0.3826798, -0.65331846), (0.7681498, 0.3826798, -0.51332456), (0.81546247, 0.1950884, -0.5449418), (0.81546247, 0.1950884, -0.5449418), (0.7681498, 0.3826798, -0.51332456), (0.8535339, 0.3826798, -0.35360426), (0.9061057, 0.1950884, -0.3753838), (0.9061057, 0.1950884, -0.3753838), (0.8535339, 0.3826798, -0.35360426), (0.906118, 0.3826798, -0.18029541), (0.9619285, 0.1950884, -0.19140035), (0.9619285, 0.1950884, -0.19140035), (0.906118, 0.3826798, -0.18029541), (0.92388105, 0.3826798, -2.262856e-16), (0.98078567, 0.1950884, -2.402232e-16), (0.98078567, 0.1950884, -2.402232e-16), (0.92388105, 0.3826798, -2.262856e-16), (0.92388105, 0.3826798, 0), (0.98078567, 0.1950884, 0), (0.92388105, 0.3826798, 0), (0.8314729, 0.55556536, 0), (0.8154967, 0.55556536, 0.16221072), (0.9061293, 0.3826798, 0.18023847), (0.9061293, 0.3826798, 0.18023847), (0.8154967, 0.55556536, 0.16221072), (0.76818204, 0.55556536, 0.3181879), (0.85355616, 0.3826798, 0.3535506), (0.85355616, 0.3826798, 0.3535506), (0.76818204, 0.55556536, 0.3181879), (0.6913472, 0.55556536, 0.46193752), (0.76818204, 0.3826798, 0.5132763), (0.76818204, 0.3826798, 0.5132763), (0.6913472, 0.55556536, 0.46193752), (0.58794475, 0.55556536, 0.5879355), (0.65328765, 0.3826798, 0.6532774), (0.65328765, 0.3826798, 0.6532774), (0.58794475, 0.55556536, 0.5879355), (0.46194836, 0.55556536, 0.6913399), (0.5132883, 0.3826798, 0.768174), (0.5132883, 0.3826798, 0.768174), (0.46194836, 0.55556536, 0.6913399), (0.31819993, 0.55556536, 0.76817703), (0.35356402, 0.3826798, 0.8535506), (0.35356402, 0.3826798, 0.8535506), (0.31819993, 0.55556536, 0.76817703), (0.16222352, 0.55556536, 0.8154941), (0.1802527, 0.3826798, 0.90612644), (0.1802527, 0.3826798, 0.90612644), (0.16222352, 0.55556536, 0.8154941), (0.000013060746, 0.55556536, 0.8314729), (0.000014512289, 0.3826798, 0.92388105), (0.000014512289, 0.3826798, 0.92388105), (0.000013060746, 0.55556536, 0.8314729), (-0.1621979, 0.55556536, 0.81549925), (-0.18022424, 0.3826798, 0.9061321), (-0.18022424, 0.3826798, 0.9061321), (-0.1621979, 0.55556536, 0.81549925), (-0.31817582, 0.55556536, 0.76818705), (-0.3535372, 0.3826798, 0.8535617), (-0.3535372, 0.3826798, 0.8535617), (-0.31817582, 0.55556536, 0.76818705), (-0.46192664, 0.55556536, 0.6913544), (-0.51326424, 0.3826798, 0.7681901), (-0.51326424, 0.3826798, 0.7681901), (-0.46192664, 0.55556536, 0.6913544), (-0.58792627, 0.55556536, 0.587954), (-0.65326715, 0.3826798, 0.65329796), (-0.65326715, 0.3826798, 0.65329796), (-0.58792627, 0.55556536, 0.587954), (-0.69133264, 0.55556536, 0.46195924), (-0.7681659, 0.3826798, 0.5133004), (-0.7681659, 0.3826798, 0.5133004), (-0.69133264, 0.55556536, 0.46195924), (-0.768172, 0.55556536, 0.318212), (-0.85354507, 0.3826798, 0.35357744), (-0.85354507, 0.3826798, 0.35357744), (-0.768172, 0.55556536, 0.318212), (-0.8154916, 0.55556536, 0.16223633), (-0.90612364, 0.3826798, 0.18026693), (-0.90612364, 0.3826798, 0.18026693), (-0.8154916, 0.55556536, 0.16223633), (-0.8314729, 0.55556536, 0.000026121492), (-0.92388105, 0.3826798, 0.000029024579), (-0.92388105, 0.3826798, 0.000029024579), (-0.8314729, 0.55556536, 0.000026121492), (-0.8155018, 0.55556536, -0.16218509), (-0.90613496, 0.3826798, -0.18021001), (-0.90613496, 0.3826798, -0.18021001), (-0.8155018, 0.55556536, -0.16218509), (-0.76819205, 0.55556536, -0.31816375), (-0.8535673, 0.3826798, -0.3535238), (-0.8535673, 0.3826798, -0.3535238), (-0.76819205, 0.55556536, -0.31816375), (-0.69136167, 0.55556536, -0.4619158), (-0.76819813, 0.3826798, -0.51325214), (-0.76819813, 0.3826798, -0.51325214), (-0.69136167, 0.55556536, -0.4619158), (-0.5879632, 0.55556536, -0.58791703), (-0.6533082, 0.3826798, -0.6532569), (-0.6533082, 0.3826798, -0.6532569), (-0.5879632, 0.55556536, -0.58791703), (-0.4619701, 0.55556536, -0.69132537), (-0.51331246, 0.3826798, -0.76815784), (-0.51331246, 0.3826798, -0.76815784), (-0.4619701, 0.55556536, -0.69132537), (-0.31822407, 0.55556536, -0.768167), (-0.35359085, 0.3826798, -0.8535395), (-0.35359085, 0.3826798, -0.8535395), (-0.31822407, 0.55556536, -0.768167), (-0.16224915, 0.55556536, -0.81548905), (-0.18028116, 0.3826798, -0.9061208), (-0.18028116, 0.3826798, -0.9061208), (-0.16224915, 0.55556536, -0.81548905), (-0.000039182236, 0.55556536, -0.8314729), (-0.000043536867, 0.3826798, -0.92388105), (-0.000043536867, 0.3826798, -0.92388105), (-0.000039182236, 0.55556536, -0.8314729), (0.16217229, 0.55556536, -0.8155043), (0.18019576, 0.3826798, -0.90613776), (0.18019576, 0.3826798, -0.90613776), (0.16217229, 0.55556536, -0.8155043), (0.31815168, 0.55556536, -0.768197), (0.35351038, 0.3826798, -0.85357285), (0.35351038, 0.3826798, -0.85357285), (0.31815168, 0.55556536, -0.768197), (0.46190494, 0.55556536, -0.69136894), (0.5132401, 0.3826798, -0.76820624), (0.5132401, 0.3826798, -0.76820624), (0.46190494, 0.55556536, -0.69136894), (0.5879078, 0.55556536, -0.58797246), (0.65324664, 0.3826798, -0.65331846), (0.65324664, 0.3826798, -0.65331846), (0.5879078, 0.55556536, -0.58797246), (0.69131815, 0.55556536, -0.46198094), (0.7681498, 0.3826798, -0.51332456), (0.7681498, 0.3826798, -0.51332456), (0.69131815, 0.55556536, -0.46198094), (0.768162, 0.55556536, -0.31823614), (0.8535339, 0.3826798, -0.35360426), (0.8535339, 0.3826798, -0.35360426), (0.768162, 0.55556536, -0.31823614), (0.8154865, 0.55556536, -0.16226195), (0.906118, 0.3826798, -0.18029541), (0.906118, 0.3826798, -0.18029541), (0.8154865, 0.55556536, -0.16226195), (0.8314729, 0.55556536, -2.0365212e-16), (0.92388105, 0.3826798, -2.262856e-16), (0.92388105, 0.3826798, -2.262856e-16), (0.8314729, 0.55556536, -2.0365212e-16), (0.8314729, 0.55556536, 0), (0.92388105, 0.3826798, 0), (0.8314729, 0.55556536, 0), (0.7071123, 0.7071012, 0), (0.6935256, 0.7071012, 0.1379494), (0.8154967, 0.55556536, 0.16221072), (0.8154967, 0.55556536, 0.16221072), (0.6935256, 0.7071012, 0.1379494), (0.65328765, 0.7071012, 0.2705976), (0.76818204, 0.55556536, 0.3181879), (0.76818204, 0.55556536, 0.3181879), (0.65328765, 0.7071012, 0.2705976), (0.58794475, 0.7071012, 0.3928471), (0.6913472, 0.55556536, 0.46193752), (0.6913472, 0.55556536, 0.46193752), (0.58794475, 0.7071012, 0.3928471), (0.50000787, 0.7071012, 0.5), (0.58794475, 0.55556536, 0.5879355), (0.58794475, 0.55556536, 0.5879355), (0.50000787, 0.7071012, 0.5), (0.39285633, 0.7071012, 0.58793855), (0.46194836, 0.55556536, 0.6913399), (0.46194836, 0.55556536, 0.6913399), (0.39285633, 0.7071012, 0.58793855), (0.27060786, 0.7071012, 0.6532834), (0.31819993, 0.55556536, 0.76817703), (0.31819993, 0.55556536, 0.76817703), (0.27060786, 0.7071012, 0.6532834), (0.1379603, 0.7071012, 0.69352347), (0.16222352, 0.55556536, 0.8154941), (0.16222352, 0.55556536, 0.8154941), (0.1379603, 0.7071012, 0.69352347), (0.000011107295, 0.7071012, 0.7071123), (0.000013060746, 0.55556536, 0.8314729), (0.000013060746, 0.55556536, 0.8314729), (0.000011107295, 0.7071012, 0.7071123), (-0.13793851, 0.7071012, 0.6935278), (-0.1621979, 0.55556536, 0.81549925), (-0.1621979, 0.55556536, 0.81549925), (-0.13793851, 0.7071012, 0.6935278), (-0.27058735, 0.7071012, 0.65329194), (-0.31817582, 0.55556536, 0.76818705), (-0.31817582, 0.55556536, 0.76818705), (-0.27058735, 0.7071012, 0.65329194), (-0.39283785, 0.7071012, 0.5879509), (-0.46192664, 0.55556536, 0.6913544), (-0.46192664, 0.55556536, 0.6913544), (-0.39283785, 0.7071012, 0.5879509), (-0.49999213, 0.7071012, 0.50001574), (-0.58792627, 0.55556536, 0.587954), (-0.58792627, 0.55556536, 0.587954), (-0.49999213, 0.7071012, 0.50001574), (-0.5879324, 0.7071012, 0.39286557), (-0.69133264, 0.55556536, 0.46195924), (-0.69133264, 0.55556536, 0.46195924), (-0.5879324, 0.7071012, 0.39286557), (-0.6532792, 0.7071012, 0.27061814), (-0.768172, 0.55556536, 0.318212), (-0.768172, 0.55556536, 0.318212), (-0.6532792, 0.7071012, 0.27061814), (-0.6935213, 0.7071012, 0.1379712), (-0.8154916, 0.55556536, 0.16223633), (-0.8154916, 0.55556536, 0.16223633), (-0.6935213, 0.7071012, 0.1379712), (-0.7071123, 0.7071012, 0.00002221459), (-0.8314729, 0.55556536, 0.000026121492), (-0.8314729, 0.55556536, 0.000026121492), (-0.7071123, 0.7071012, 0.00002221459), (-0.69352996, 0.7071012, -0.13792762), (-0.8155018, 0.55556536, -0.16218509), (-0.8155018, 0.55556536, -0.16218509), (-0.69352996, 0.7071012, -0.13792762), (-0.6532962, 0.7071012, -0.27057707), (-0.76819205, 0.55556536, -0.31816375), (-0.76819205, 0.55556536, -0.31816375), (-0.6532962, 0.7071012, -0.27057707), (-0.5879571, 0.7071012, -0.39282864), (-0.69136167, 0.55556536, -0.4619158), (-0.69136167, 0.55556536, -0.4619158), (-0.5879571, 0.7071012, -0.39282864), (-0.50002354, 0.7071012, -0.4999843), (-0.5879632, 0.55556536, -0.58791703), (-0.5879632, 0.55556536, -0.58791703), (-0.50002354, 0.7071012, -0.4999843), (-0.3928748, 0.7071012, -0.5879262), (-0.4619701, 0.55556536, -0.69132537), (-0.4619701, 0.55556536, -0.69132537), (-0.3928748, 0.7071012, -0.5879262), (-0.2706284, 0.7071012, -0.65327495), (-0.31822407, 0.55556536, -0.768167), (-0.31822407, 0.55556536, -0.768167), (-0.2706284, 0.7071012, -0.65327495), (-0.1379821, 0.7071012, -0.6935191), (-0.16224915, 0.55556536, -0.81548905), (-0.16224915, 0.55556536, -0.81548905), (-0.1379821, 0.7071012, -0.6935191), (-0.000033321885, 0.7071012, -0.7071123), (-0.000039182236, 0.55556536, -0.8314729), (-0.000039182236, 0.55556536, -0.8314729), (-0.000033321885, 0.7071012, -0.7071123), (0.13791673, 0.7071012, -0.69353217), (0.16217229, 0.55556536, -0.8155043), (0.16217229, 0.55556536, -0.8155043), (0.13791673, 0.7071012, -0.69353217), (0.27056682, 0.7071012, -0.6533004), (0.31815168, 0.55556536, -0.768197), (0.31815168, 0.55556536, -0.768197), (0.27056682, 0.7071012, -0.6533004), (0.3928194, 0.7071012, -0.5879632), (0.46190494, 0.55556536, -0.69136894), (0.46190494, 0.55556536, -0.69136894), (0.3928194, 0.7071012, -0.5879632), (0.49997643, 0.7071012, -0.5000314), (0.5879078, 0.55556536, -0.58797246), (0.5879078, 0.55556536, -0.58797246), (0.49997643, 0.7071012, -0.5000314), (0.58792007, 0.7071012, -0.39288405), (0.69131815, 0.55556536, -0.46198094), (0.69131815, 0.55556536, -0.46198094), (0.58792007, 0.7071012, -0.39288405), (0.65327066, 0.7071012, -0.27063864), (0.768162, 0.55556536, -0.31823614), (0.768162, 0.55556536, -0.31823614), (0.65327066, 0.7071012, -0.27063864), (0.69351697, 0.7071012, -0.137993), (0.8154865, 0.55556536, -0.16226195), (0.8154865, 0.55556536, -0.16226195), (0.69351697, 0.7071012, -0.137993), (0.7071123, 0.7071012, -1.7319258e-16), (0.8314729, 0.55556536, -2.0365212e-16), (0.8314729, 0.55556536, -2.0365212e-16), (0.7071123, 0.7071012, -1.7319258e-16), (0.7071123, 0.7071012, 0), (0.8314729, 0.55556536, 0), (0.7071123, 0.7071012, 0), (0.5555784, 0.8314642, 0), (0.54490334, 0.8314642, 0.1083869), (0.6935256, 0.7071012, 0.1379494), (0.6935256, 0.7071012, 0.1379494), (0.54490334, 0.8314642, 0.1083869), (0.5132883, 0.8314642, 0.21260864), (0.65328765, 0.7071012, 0.2705976), (0.65328765, 0.7071012, 0.2705976), (0.5132883, 0.8314642, 0.21260864), (0.46194836, 0.8314642, 0.3086601), (0.58794475, 0.7071012, 0.3928471), (0.58794475, 0.7071012, 0.3928471), (0.46194836, 0.8314642, 0.3086601), (0.39285633, 0.8314642, 0.39285016), (0.50000787, 0.7071012, 0.5), (0.50000787, 0.7071012, 0.5), (0.39285633, 0.8314642, 0.39285016), (0.30866736, 0.8314642, 0.46194354), (0.39285633, 0.7071012, 0.58793855), (0.39285633, 0.7071012, 0.58793855), (0.30866736, 0.8314642, 0.46194354), (0.2126167, 0.8314642, 0.513285), (0.27060786, 0.7071012, 0.6532834), (0.27060786, 0.7071012, 0.6532834), (0.2126167, 0.8314642, 0.513285), (0.10839546, 0.8314642, 0.5449016), (0.1379603, 0.7071012, 0.69352347), (0.1379603, 0.7071012, 0.69352347), (0.10839546, 0.8314642, 0.5449016), (0.0000087270055, 0.8314642, 0.5555784), (0.000011107295, 0.7071012, 0.7071123), (0.000011107295, 0.7071012, 0.7071123), (0.0000087270055, 0.8314642, 0.5555784), (-0.108378336, 0.8314642, 0.544905), (-0.13793851, 0.7071012, 0.6935278), (-0.13793851, 0.7071012, 0.6935278), (-0.108378336, 0.8314642, 0.544905), (-0.21260057, 0.8314642, 0.51329166), (-0.27058735, 0.7071012, 0.65329194), (-0.27058735, 0.7071012, 0.65329194), (-0.21260057, 0.8314642, 0.51329166), (-0.30865285, 0.8314642, 0.46195322), (-0.39283785, 0.7071012, 0.5879509), (-0.39283785, 0.7071012, 0.5879509), (-0.30865285, 0.8314642, 0.46195322), (-0.392844, 0.8314642, 0.3928625), (-0.49999213, 0.7071012, 0.50001574), (-0.49999213, 0.7071012, 0.50001574), (-0.392844, 0.8314642, 0.3928625), (-0.46193868, 0.8314642, 0.3086746), (-0.5879324, 0.7071012, 0.39286557), (-0.5879324, 0.7071012, 0.39286557), (-0.46193868, 0.8314642, 0.3086746), (-0.51328164, 0.8314642, 0.21262476), (-0.6532792, 0.7071012, 0.27061814), (-0.6532792, 0.7071012, 0.27061814), (-0.51328164, 0.8314642, 0.21262476), (-0.54489994, 0.8314642, 0.10840402), (-0.6935213, 0.7071012, 0.1379712), (-0.6935213, 0.7071012, 0.1379712), (-0.54489994, 0.8314642, 0.10840402), (-0.5555784, 0.8314642, 0.000017454011), (-0.7071123, 0.7071012, 0.00002221459), (-0.7071123, 0.7071012, 0.00002221459), (-0.5555784, 0.8314642, 0.000017454011), (-0.54490674, 0.8314642, -0.10836978), (-0.69352996, 0.7071012, -0.13792762), (-0.69352996, 0.7071012, -0.13792762), (-0.54490674, 0.8314642, -0.10836978), (-0.513295, 0.8314642, -0.21259251), (-0.6532962, 0.7071012, -0.27057707), (-0.6532962, 0.7071012, -0.27057707), (-0.513295, 0.8314642, -0.21259251), (-0.46195808, 0.8314642, -0.30864558), (-0.5879571, 0.7071012, -0.39282864), (-0.5879571, 0.7071012, -0.39282864), (-0.46195808, 0.8314642, -0.30864558), (-0.39286867, 0.8314642, -0.39283782), (-0.50002354, 0.7071012, -0.4999843), (-0.50002354, 0.7071012, -0.4999843), (-0.39286867, 0.8314642, -0.39283782), (-0.30868188, 0.8314642, -0.46193382), (-0.3928748, 0.7071012, -0.5879262), (-0.3928748, 0.7071012, -0.5879262), (-0.30868188, 0.8314642, -0.46193382), (-0.21263282, 0.8314642, -0.5132783), (-0.2706284, 0.7071012, -0.65327495), (-0.2706284, 0.7071012, -0.65327495), (-0.21263282, 0.8314642, -0.5132783), (-0.10841258, 0.8314642, -0.5448982), (-0.1379821, 0.7071012, -0.6935191), (-0.1379821, 0.7071012, -0.6935191), (-0.10841258, 0.8314642, -0.5448982), (-0.000026181015, 0.8314642, -0.5555784), (-0.000033321885, 0.7071012, -0.7071123), (-0.000033321885, 0.7071012, -0.7071123), (-0.000026181015, 0.8314642, -0.5555784), (0.10836122, 0.8314642, -0.5449084), (0.13791673, 0.7071012, -0.69353217), (0.13791673, 0.7071012, -0.69353217), (0.10836122, 0.8314642, -0.5449084), (0.21258445, 0.8314642, -0.51329833), (0.27056682, 0.7071012, -0.6533004), (0.27056682, 0.7071012, -0.6533004), (0.21258445, 0.8314642, -0.51329833), (0.30863833, 0.8314642, -0.4619629), (0.3928194, 0.7071012, -0.5879632), (0.3928194, 0.7071012, -0.5879632), (0.30863833, 0.8314642, -0.4619629), (0.39283165, 0.8314642, -0.39287484), (0.49997643, 0.7071012, -0.5000314), (0.49997643, 0.7071012, -0.5000314), (0.39283165, 0.8314642, -0.39287484), (0.46192896, 0.8314642, -0.30868912), (0.58792007, 0.7071012, -0.39288405), (0.58792007, 0.7071012, -0.39288405), (0.46192896, 0.8314642, -0.30868912), (0.51327497, 0.8314642, -0.21264088), (0.65327066, 0.7071012, -0.27063864), (0.65327066, 0.7071012, -0.27063864), (0.51327497, 0.8314642, -0.21264088), (0.54489654, 0.8314642, -0.10842113), (0.69351697, 0.7071012, -0.137993), (0.69351697, 0.7071012, -0.137993), (0.54489654, 0.8314642, -0.10842113), (0.5555784, 0.8314642, -1.3607746e-16), (0.7071123, 0.7071012, -1.7319258e-16), (0.7071123, 0.7071012, -1.7319258e-16), (0.5555784, 0.8314642, -1.3607746e-16), (0.5555784, 0.8314642, 0), (0.7071123, 0.7071012, 0), (0.5555784, 0.8314642, 0), (0.3826943, 0.92387503, 0), (0.3753411, 0.92387503, 0.07465922), (0.54490334, 0.8314642, 0.1083869), (0.54490334, 0.8314642, 0.1083869), (0.3753411, 0.92387503, 0.07465922), (0.35356402, 0.92387503, 0.14644939), (0.5132883, 0.8314642, 0.21260864), (0.5132883, 0.8314642, 0.21260864), (0.35356402, 0.92387503, 0.14644939), (0.31819993, 0.92387503, 0.21261169), (0.46194836, 0.8314642, 0.3086601), (0.46194836, 0.8314642, 0.3086601), (0.31819993, 0.92387503, 0.21261169), (0.27060786, 0.92387503, 0.27060363), (0.39285633, 0.8314642, 0.39285016), (0.39285633, 0.8314642, 0.39285016), (0.27060786, 0.92387503, 0.27060363), (0.2126167, 0.92387503, 0.3181966), (0.30866736, 0.8314642, 0.46194354), (0.30866736, 0.8314642, 0.46194354), (0.2126167, 0.92387503, 0.3181966), (0.14645495, 0.92387503, 0.35356173), (0.2126167, 0.8314642, 0.513285), (0.2126167, 0.8314642, 0.513285), (0.14645495, 0.92387503, 0.35356173), (0.074665114, 0.92387503, 0.37533993), (0.10839546, 0.8314642, 0.5449016), (0.10839546, 0.8314642, 0.5449016), (0.074665114, 0.92387503, 0.37533993), (0.0000060113484, 0.92387503, 0.3826943), (0.0000087270055, 0.8314642, 0.5555784), (0.0000087270055, 0.8314642, 0.5555784), (0.0000060113484, 0.92387503, 0.3826943), (-0.07465333, 0.92387503, 0.37534228), (-0.108378336, 0.8314642, 0.544905), (-0.108378336, 0.8314642, 0.544905), (-0.07465333, 0.92387503, 0.37534228), (-0.14644383, 0.92387503, 0.35356632), (-0.21260057, 0.8314642, 0.51329166), (-0.21260057, 0.8314642, 0.51329166), (-0.14644383, 0.92387503, 0.35356632), (-0.2126067, 0.92387503, 0.3182033), (-0.30865285, 0.8314642, 0.46195322), (-0.30865285, 0.8314642, 0.46195322), (-0.2126067, 0.92387503, 0.3182033), (-0.27059937, 0.92387503, 0.27061212), (-0.392844, 0.8314642, 0.3928625), (-0.392844, 0.8314642, 0.3928625), (-0.27059937, 0.92387503, 0.27061212), (-0.31819326, 0.92387503, 0.21262169), (-0.46193868, 0.8314642, 0.3086746), (-0.46193868, 0.8314642, 0.3086746), (-0.31819326, 0.92387503, 0.21262169), (-0.35355943, 0.92387503, 0.14646049), (-0.51328164, 0.8314642, 0.21262476), (-0.51328164, 0.8314642, 0.21262476), (-0.35355943, 0.92387503, 0.14646049), (-0.37533876, 0.92387503, 0.074671015), (-0.54489994, 0.8314642, 0.10840402), (-0.54489994, 0.8314642, 0.10840402), (-0.37533876, 0.92387503, 0.074671015), (-0.3826943, 0.92387503, 0.000012022697), (-0.5555784, 0.8314642, 0.000017454011), (-0.5555784, 0.8314642, 0.000017454011), (-0.3826943, 0.92387503, 0.000012022697), (-0.37534344, 0.92387503, -0.07464743), (-0.54490674, 0.8314642, -0.10836978), (-0.54490674, 0.8314642, -0.10836978), (-0.37534344, 0.92387503, -0.07464743), (-0.3535686, 0.92387503, -0.14643829), (-0.513295, 0.8314642, -0.21259251), (-0.513295, 0.8314642, -0.21259251), (-0.3535686, 0.92387503, -0.14643829), (-0.31820664, 0.92387503, -0.2126017), (-0.46195808, 0.8314642, -0.30864558), (-0.46195808, 0.8314642, -0.30864558), (-0.31820664, 0.92387503, -0.2126017), (-0.27061638, 0.92387503, -0.27059513), (-0.39286867, 0.8314642, -0.39283782), (-0.39286867, 0.8314642, -0.39283782), (-0.27061638, 0.92387503, -0.27059513), (-0.2126267, 0.92387503, -0.31818992), (-0.30868188, 0.8314642, -0.46193382), (-0.30868188, 0.8314642, -0.46193382), (-0.2126267, 0.92387503, -0.31818992), (-0.14646605, 0.92387503, -0.3535571), (-0.21263282, 0.8314642, -0.5132783), (-0.21263282, 0.8314642, -0.5132783), (-0.14646605, 0.92387503, -0.3535571), (-0.07467691, 0.92387503, -0.37533757), (-0.10841258, 0.8314642, -0.5448982), (-0.10841258, 0.8314642, -0.5448982), (-0.07467691, 0.92387503, -0.37533757), (-0.000018034045, 0.92387503, -0.3826943), (-0.000026181015, 0.8314642, -0.5555784), (-0.000026181015, 0.8314642, -0.5555784), (-0.000018034045, 0.92387503, -0.3826943), (0.07464153, 0.92387503, -0.3753446), (0.10836122, 0.8314642, -0.5449084), (0.10836122, 0.8314642, -0.5449084), (0.07464153, 0.92387503, -0.3753446), (0.14643273, 0.92387503, -0.3535709), (0.21258445, 0.8314642, -0.51329833), (0.21258445, 0.8314642, -0.51329833), (0.14643273, 0.92387503, -0.3535709), (0.2125967, 0.92387503, -0.31820998), (0.30863833, 0.8314642, -0.4619629), (0.30863833, 0.8314642, -0.4619629), (0.2125967, 0.92387503, -0.31820998), (0.27059087, 0.92387503, -0.2706206), (0.39283165, 0.8314642, -0.39287484), (0.39283165, 0.8314642, -0.39287484), (0.27059087, 0.92387503, -0.2706206), (0.31818658, 0.92387503, -0.21263169), (0.46192896, 0.8314642, -0.30868912), (0.46192896, 0.8314642, -0.30868912), (0.31818658, 0.92387503, -0.21263169), (0.35355482, 0.92387503, -0.1464716), (0.51327497, 0.8314642, -0.21264088), (0.51327497, 0.8314642, -0.21264088), (0.35355482, 0.92387503, -0.1464716), (0.3753364, 0.92387503, -0.0746828), (0.54489654, 0.8314642, -0.10842113), (0.54489654, 0.8314642, -0.10842113), (0.3753364, 0.92387503, -0.0746828), (0.3826943, 0.92387503, -9.3733076e-17), (0.5555784, 0.8314642, -1.3607746e-16), (0.5555784, 0.8314642, -1.3607746e-16), (0.3826943, 0.92387503, -9.3733076e-17), (0.3826943, 0.92387503, 0), (0.5555784, 0.8314642, 0), (0.3826943, 0.92387503, 0), (0.19510381, 0.9807826, 0), (0.191355, 0.9807826, 0.038062487), (0.3753411, 0.92387503, 0.07465922), (0.3753411, 0.92387503, 0.07465922), (0.191355, 0.9807826, 0.038062487), (0.1802527, 0.9807826, 0.07466228), (0.35356402, 0.92387503, 0.14644939), (0.35356402, 0.92387503, 0.14644939), (0.1802527, 0.9807826, 0.07466228), (0.16222352, 0.9807826, 0.10839291), (0.31819993, 0.92387503, 0.21261169), (0.31819993, 0.92387503, 0.21261169), (0.16222352, 0.9807826, 0.10839291), (0.1379603, 0.9807826, 0.13795814), (0.27060786, 0.92387503, 0.27060363), (0.27060786, 0.92387503, 0.27060363), (0.1379603, 0.9807826, 0.13795814), (0.10839546, 0.9807826, 0.16222182), (0.2126167, 0.92387503, 0.3181966), (0.2126167, 0.92387503, 0.3181966), (0.10839546, 0.9807826, 0.16222182), (0.074665114, 0.9807826, 0.18025152), (0.14645495, 0.92387503, 0.35356173), (0.14645495, 0.92387503, 0.35356173), (0.074665114, 0.9807826, 0.18025152), (0.038065493, 0.9807826, 0.19135441), (0.074665114, 0.92387503, 0.37533993), (0.074665114, 0.92387503, 0.37533993), (0.038065493, 0.9807826, 0.19135441), (0.0000030646834, 0.9807826, 0.19510381), (0.0000060113484, 0.92387503, 0.3826943), (0.0000060113484, 0.92387503, 0.3826943), (0.0000030646834, 0.9807826, 0.19510381), (-0.03805948, 0.9807826, 0.19135562), (-0.07465333, 0.92387503, 0.37534228), (-0.07465333, 0.92387503, 0.37534228), (-0.03805948, 0.9807826, 0.19135562), (-0.07465945, 0.9807826, 0.18025388), (-0.14644383, 0.92387503, 0.35356632), (-0.14644383, 0.92387503, 0.35356632), (-0.07465945, 0.9807826, 0.18025388), (-0.10839036, 0.9807826, 0.16222522), (-0.2126067, 0.92387503, 0.3182033), (-0.2126067, 0.92387503, 0.3182033), (-0.10839036, 0.9807826, 0.16222522), (-0.13795598, 0.9807826, 0.13796248), (-0.27059937, 0.92387503, 0.27061212), (-0.27059937, 0.92387503, 0.27061212), (-0.13795598, 0.9807826, 0.13796248), (-0.16222012, 0.9807826, 0.108398005), (-0.31819326, 0.92387503, 0.21262169), (-0.31819326, 0.92387503, 0.21262169), (-0.16222012, 0.9807826, 0.108398005), (-0.18025036, 0.9807826, 0.074667946), (-0.35355943, 0.92387503, 0.14646049), (-0.35355943, 0.92387503, 0.14646049), (-0.18025036, 0.9807826, 0.074667946), (-0.19135381, 0.9807826, 0.0380685), (-0.37533876, 0.92387503, 0.074671015), (-0.37533876, 0.92387503, 0.074671015), (-0.19135381, 0.9807826, 0.0380685), (-0.19510381, 0.9807826, 0.0000061293667), (-0.3826943, 0.92387503, 0.000012022697), (-0.3826943, 0.92387503, 0.000012022697), (-0.19510381, 0.9807826, 0.0000061293667), (-0.19135621, 0.9807826, -0.038056478), (-0.37534344, 0.92387503, -0.07464743), (-0.37534344, 0.92387503, -0.07464743), (-0.19135621, 0.9807826, -0.038056478), (-0.18025506, 0.9807826, -0.07465662), (-0.3535686, 0.92387503, -0.14643829), (-0.3535686, 0.92387503, -0.14643829), (-0.18025506, 0.9807826, -0.07465662), (-0.16222693, 0.9807826, -0.10838781), (-0.31820664, 0.92387503, -0.2126017), (-0.31820664, 0.92387503, -0.2126017), (-0.16222693, 0.9807826, -0.10838781), (-0.13796464, 0.9807826, -0.1379538), (-0.27061638, 0.92387503, -0.27059513), (-0.27061638, 0.92387503, -0.27059513), (-0.13796464, 0.9807826, -0.1379538), (-0.10840055, 0.9807826, -0.1622184), (-0.2126267, 0.92387503, -0.31818992), (-0.2126267, 0.92387503, -0.31818992), (-0.10840055, 0.9807826, -0.1622184), (-0.07467078, 0.9807826, -0.18024918), (-0.14646605, 0.92387503, -0.3535571), (-0.14646605, 0.92387503, -0.3535571), (-0.07467078, 0.9807826, -0.18024918), (-0.038071506, 0.9807826, -0.19135322), (-0.07467691, 0.92387503, -0.37533757), (-0.07467691, 0.92387503, -0.37533757), (-0.038071506, 0.9807826, -0.19135322), (-0.00000919405, 0.9807826, -0.19510381), (-0.000018034045, 0.92387503, -0.3826943), (-0.000018034045, 0.92387503, -0.3826943), (-0.00000919405, 0.9807826, -0.19510381), (0.03805347, 0.9807826, -0.19135681), (0.07464153, 0.92387503, -0.3753446), (0.07464153, 0.92387503, -0.3753446), (0.03805347, 0.9807826, -0.19135681), (0.07465379, 0.9807826, -0.18025622), (0.14643273, 0.92387503, -0.3535709), (0.14643273, 0.92387503, -0.3535709), (0.07465379, 0.9807826, -0.18025622), (0.108385265, 0.9807826, -0.16222863), (0.2125967, 0.92387503, -0.31820998), (0.2125967, 0.92387503, -0.31820998), (0.108385265, 0.9807826, -0.16222863), (0.13795164, 0.9807826, -0.13796681), (0.27059087, 0.92387503, -0.2706206), (0.27059087, 0.92387503, -0.2706206), (0.13795164, 0.9807826, -0.13796681), (0.16221671, 0.9807826, -0.1084031), (0.31818658, 0.92387503, -0.21263169), (0.31818658, 0.92387503, -0.21263169), (0.16221671, 0.9807826, -0.1084031), (0.180248, 0.9807826, -0.07467361), (0.35355482, 0.92387503, -0.1464716), (0.35355482, 0.92387503, -0.1464716), (0.180248, 0.9807826, -0.07467361), (0.19135262, 0.9807826, -0.038074512), (0.3753364, 0.92387503, -0.0746828), (0.3753364, 0.92387503, -0.0746828), (0.19135262, 0.9807826, -0.038074512), (0.19510381, 0.9807826, -4.778665e-17), (0.3826943, 0.92387503, -9.3733076e-17), (0.3826943, 0.92387503, -9.3733076e-17), (0.19510381, 0.9807826, -4.778665e-17), (0.19510381, 0.9807826, 0), (0.3826943, 0.92387503, 0), (0.19510381, 0.9807826, 0), (0.000015707963, 1, 0), (0.000015406145, 1, 0.0000030644414), (0.191355, 0.9807826, 0.038062487), (0.191355, 0.9807826, 0.038062487), (0.000015406145, 1, 0.0000030644414), (0.000014512289, 1, 0.00000601112), (0.1802527, 0.9807826, 0.07466228), (0.1802527, 0.9807826, 0.07466228), (0.000014512289, 1, 0.00000601112), (0.000013060746, 1, 0.0000087268), (0.16222352, 0.9807826, 0.10839291), (0.16222352, 0.9807826, 0.10839291), (0.000013060746, 1, 0.0000087268), (0.000011107295, 1, 0.00001110712), (0.1379603, 0.9807826, 0.13795814), (0.1379603, 0.9807826, 0.13795814), (0.000011107295, 1, 0.00001110712), (0.0000087270055, 1, 0.000013060609), (0.10839546, 0.9807826, 0.16222182), (0.10839546, 0.9807826, 0.16222182), (0.0000087270055, 1, 0.000013060609), (0.0000060113484, 1, 0.000014512195), (0.074665114, 0.9807826, 0.18025152), (0.074665114, 0.9807826, 0.18025152), (0.0000060113484, 1, 0.000014512195), (0.0000030646834, 1, 0.000015406096), (0.038065493, 0.9807826, 0.19135441), (0.038065493, 0.9807826, 0.19135441), (0.0000030646834, 1, 0.000015406096), (2.467401e-10, 1, 0.000015707963), (0.0000030646834, 0.9807826, 0.19510381), (0.0000030646834, 0.9807826, 0.19510381), (2.467401e-10, 1, 0.000015707963), (-0.0000030641993, 1, 0.000015406193), (-0.03805948, 0.9807826, 0.19135562), (-0.03805948, 0.9807826, 0.19135562), (-0.0000030641993, 1, 0.000015406193), (-0.0000060108923, 1, 0.000014512384), (-0.07465945, 0.9807826, 0.18025388), (-0.07465945, 0.9807826, 0.18025388), (-0.0000060108923, 1, 0.000014512384), (-0.000008726594, 1, 0.000013060882), (-0.10839036, 0.9807826, 0.16222522), (-0.10839036, 0.9807826, 0.16222522), (-0.000008726594, 1, 0.000013060882), (-0.000011106946, 1, 0.000011107469), (-0.13795598, 0.9807826, 0.13796248), (-0.13795598, 0.9807826, 0.13796248), (-0.000011106946, 1, 0.000011107469), (-0.000013060471, 1, 0.00000872721), (-0.16222012, 0.9807826, 0.108398005), (-0.16222012, 0.9807826, 0.108398005), (-0.000013060471, 1, 0.00000872721), (-0.0000145121, 1, 0.0000060115763), (-0.18025036, 0.9807826, 0.074667946), (-0.18025036, 0.9807826, 0.074667946), (-0.0000145121, 1, 0.0000060115763), (-0.000015406049, 1, 0.0000030649253), (-0.19135381, 0.9807826, 0.0380685), (-0.19135381, 0.9807826, 0.0380685), (-0.000015406049, 1, 0.0000030649253), (-0.000015707963, 1, 4.934802e-10), (-0.19510381, 0.9807826, 0.0000061293667), (-0.19510381, 0.9807826, 0.0000061293667), (-0.000015707963, 1, 4.934802e-10), (-0.000015406242, 1, -0.0000030639574), (-0.19135621, 0.9807826, -0.038056478), (-0.19135621, 0.9807826, -0.038056478), (-0.000015406242, 1, -0.0000030639574), (-0.000014512479, 1, -0.0000060106645), (-0.18025506, 0.9807826, -0.07465662), (-0.18025506, 0.9807826, -0.07465662), (-0.000014512479, 1, -0.0000060106645), (-0.00001306102, 1, -0.00000872639), (-0.16222693, 0.9807826, -0.10838781), (-0.16222693, 0.9807826, -0.10838781), (-0.00001306102, 1, -0.00000872639), (-0.000011107643, 1, -0.000011106771), (-0.13796464, 0.9807826, -0.1379538), (-0.13796464, 0.9807826, -0.1379538), (-0.000011107643, 1, -0.000011106771), (-0.000008727416, 1, -0.000013060334), (-0.10840055, 0.9807826, -0.1622184), (-0.10840055, 0.9807826, -0.1622184), (-0.000008727416, 1, -0.000013060334), (-0.000006011804, 1, -0.000014512006), (-0.07467078, 0.9807826, -0.18024918), (-0.07467078, 0.9807826, -0.18024918), (-0.000006011804, 1, -0.000014512006), (-0.0000030651674, 1, -0.000015406), (-0.038071506, 0.9807826, -0.19135322), (-0.038071506, 0.9807826, -0.19135322), (-0.0000030651674, 1, -0.000015406), (-7.4022033e-10, 1, -0.000015707963), (-0.00000919405, 0.9807826, -0.19510381), (-0.00000919405, 0.9807826, -0.19510381), (-7.4022033e-10, 1, -0.000015707963), (0.0000030637154, 1, -0.00001540629), (0.03805347, 0.9807826, -0.19135681), (0.03805347, 0.9807826, -0.19135681), (0.0000030637154, 1, -0.00001540629), (0.000006010436, 1, -0.000014512572), (0.07465379, 0.9807826, -0.18025622), (0.07465379, 0.9807826, -0.18025622), (0.000006010436, 1, -0.000014512572), (0.000008726184, 1, -0.000013061157), (0.108385265, 0.9807826, -0.16222863), (0.108385265, 0.9807826, -0.16222863), (0.000008726184, 1, -0.000013061157), (0.0000111065965, 1, -0.000011107818), (0.13795164, 0.9807826, -0.13796681), (0.13795164, 0.9807826, -0.13796681), (0.0000111065965, 1, -0.000011107818), (0.0000130601975, 1, -0.00000872762), (0.16221671, 0.9807826, -0.1084031), (0.16221671, 0.9807826, -0.1084031), (0.0000130601975, 1, -0.00000872762), (0.000014511912, 1, -0.000006012032), (0.180248, 0.9807826, -0.07467361), (0.180248, 0.9807826, -0.07467361), (0.000014511912, 1, -0.000006012032), (0.000015405953, 1, -0.0000030654094), (0.19135262, 0.9807826, -0.038074512), (0.19135262, 0.9807826, -0.038074512), (0.000015405953, 1, -0.0000030654094), (0.000015707963, 1, -3.8473414e-21), (0.19510381, 0.9807826, -4.778665e-17), (0.19510381, 0.9807826, -4.778665e-17), (0.000015707963, 1, -3.8473414e-21), (0.000015707963, 1, 0), (0.19510381, 0.9807826, 0), (0.000015707963, 1, 0), (-0.195073, 0.9807887, 0), (-0.19132479, 0.9807887, -0.038056478), (0.000015406145, 1, 0.0000030644414), (0.000015406145, 1, 0.0000030644414), (-0.19132479, 0.9807887, -0.038056478), (-0.18022424, 0.9807887, -0.074650496), (0.000014512289, 1, 0.00000601112), (0.000014512289, 1, 0.00000601112), (-0.18022424, 0.9807887, -0.074650496), (-0.1621979, 0.9807887, -0.10837579), (0.000013060746, 1, 0.0000087268), (0.000013060746, 1, 0.0000087268), (-0.1621979, 0.9807887, -0.10837579), (-0.13793851, 0.9807887, -0.13793635), (0.000011107295, 1, 0.00001110712), (0.000011107295, 1, 0.00001110712), (-0.13793851, 0.9807887, -0.13793635), (-0.108378336, 0.9807887, -0.1621962), (0.0000087270055, 1, 0.000013060609), (0.0000087270055, 1, 0.000013060609), (-0.108378336, 0.9807887, -0.1621962), (-0.07465333, 0.9807887, -0.18022306), (0.0000060113484, 1, 0.000014512195), (0.0000060113484, 1, 0.000014512195), (-0.07465333, 0.9807887, -0.18022306), (-0.03805948, 0.9807887, -0.19132419), (0.0000030646834, 1, 0.000015406096), (0.0000030646834, 1, 0.000015406096), (-0.03805948, 0.9807887, -0.19132419), (-0.0000030641993, 0.9807887, -0.195073), (2.467401e-10, 1, 0.000015707963), (2.467401e-10, 1, 0.000015707963), (-0.0000030641993, 0.9807887, -0.195073), (0.03805347, 0.9807887, -0.1913254), (-0.0000030641993, 1, 0.000015406193), (-0.0000030641993, 1, 0.000015406193), (0.03805347, 0.9807887, -0.1913254), (0.074647665, 0.9807887, -0.1802254), (-0.0000060108923, 1, 0.000014512384), (-0.0000060108923, 1, 0.000014512384), (0.074647665, 0.9807887, -0.1802254), (0.10837324, 0.9807887, -0.1621996), (-0.000008726594, 1, 0.000013060882), (-0.000008726594, 1, 0.000013060882), (0.10837324, 0.9807887, -0.1621996), (0.13793418, 0.9807887, -0.13794069), (-0.000011106946, 1, 0.000011107469), (-0.000011106946, 1, 0.000011107469), (0.13793418, 0.9807887, -0.13794069), (0.16219449, 0.9807887, -0.108380884), (-0.000013060471, 1, 0.00000872721), (-0.000013060471, 1, 0.00000872721), (0.16219449, 0.9807887, -0.108380884), (0.18022189, 0.9807887, -0.07465616), (-0.0000145121, 1, 0.0000060115763), (-0.0000145121, 1, 0.0000060115763), (0.18022189, 0.9807887, -0.07465616), (0.1913236, 0.9807887, -0.038062487), (-0.000015406049, 1, 0.0000030649253), (-0.000015406049, 1, 0.0000030649253), (0.1913236, 0.9807887, -0.038062487), (0.195073, 0.9807887, -0.0000061283986), (-0.000015707963, 1, 4.934802e-10), (-0.000015707963, 1, 4.934802e-10), (0.195073, 0.9807887, -0.0000061283986), (0.19132599, 0.9807887, 0.038050465), (-0.000015406242, 1, -0.0000030639574), (-0.000015406242, 1, -0.0000030639574), (0.19132599, 0.9807887, 0.038050465), (0.18022658, 0.9807887, 0.074644834), (-0.000014512479, 1, -0.0000060106645), (-0.000014512479, 1, -0.0000060106645), (0.18022658, 0.9807887, 0.074644834), (0.1622013, 0.9807887, 0.1083707), (-0.00001306102, 1, -0.00000872639), (-0.00001306102, 1, -0.00000872639), (0.1622013, 0.9807887, 0.1083707), (0.13794285, 0.9807887, 0.13793202), (-0.000011107643, 1, -0.000011106771), (-0.000011107643, 1, -0.000011106771), (0.13794285, 0.9807887, 0.13793202), (0.10838343, 0.9807887, 0.16219279), (-0.000008727416, 1, -0.000013060334), (-0.000008727416, 1, -0.000013060334), (0.10838343, 0.9807887, 0.16219279), (0.07465899, 0.9807887, 0.18022072), (-0.000006011804, 1, -0.000014512006), (-0.000006011804, 1, -0.000014512006), (0.07465899, 0.9807887, 0.18022072), (0.038065493, 0.9807887, 0.191323), (-0.0000030651674, 1, -0.000015406), (-0.0000030651674, 1, -0.000015406), (0.038065493, 0.9807887, 0.191323), (0.000009192598, 0.9807887, 0.195073), (-7.4022033e-10, 1, -0.000015707963), (-7.4022033e-10, 1, -0.000015707963), (0.000009192598, 0.9807887, 0.195073), (-0.03804746, 0.9807887, 0.19132659), (0.0000030637154, 1, -0.00001540629), (0.0000030637154, 1, -0.00001540629), (-0.03804746, 0.9807887, 0.19132659), (-0.074642, 0.9807887, 0.18022776), (0.000006010436, 1, -0.000014512572), (0.000006010436, 1, -0.000014512572), (-0.074642, 0.9807887, 0.18022776), (-0.10836815, 0.9807887, 0.16220301), (0.000008726184, 1, -0.000013061157), (0.000008726184, 1, -0.000013061157), (-0.10836815, 0.9807887, 0.16220301), (-0.13792986, 0.9807887, 0.13794501), (0.0000111065965, 1, -0.000011107818), (0.0000111065965, 1, -0.000011107818), (-0.13792986, 0.9807887, 0.13794501), (-0.1621911, 0.9807887, 0.10838598), (0.0000130601975, 1, -0.00000872762), (0.0000130601975, 1, -0.00000872762), (-0.1621911, 0.9807887, 0.10838598), (-0.18021955, 0.9807887, 0.07466181), (0.000014511912, 1, -0.000006012032), (0.000014511912, 1, -0.000006012032), (-0.18021955, 0.9807887, 0.07466181), (-0.1913224, 0.9807887, 0.0380685), (0.000015405953, 1, -0.0000030654094), (0.000015405953, 1, -0.0000030654094), (-0.1913224, 0.9807887, 0.0380685), (-0.195073, 0.9807887, 4.7779104e-17), (0.000015707963, 1, -3.8473414e-21), (0.000015707963, 1, -3.8473414e-21), (-0.195073, 0.9807887, 4.7779104e-17), (-0.195073, 0.9807887, 0), (0.000015707963, 1, 0), (-0.195073, 0.9807887, 0), (-0.3826653, 0.9238871, 0), (-0.37531263, 0.9238871, -0.07465356), (-0.19132479, 0.9807887, -0.038056478), (-0.19132479, 0.9807887, -0.038056478), (-0.37531263, 0.9238871, -0.07465356), (-0.3535372, 0.9238871, -0.14643829), (-0.18022424, 0.9807887, -0.074650496), (-0.18022424, 0.9807887, -0.074650496), (-0.3535372, 0.9238871, -0.14643829), (-0.31817582, 0.9238871, -0.21259557), (-0.1621979, 0.9807887, -0.10837579), (-0.1621979, 0.9807887, -0.10837579), (-0.31817582, 0.9238871, -0.21259557), (-0.27058735, 0.9238871, -0.2705831), (-0.13793851, 0.9807887, -0.13793635), (-0.13793851, 0.9807887, -0.13793635), (-0.27058735, 0.9238871, -0.2705831), (-0.21260057, 0.9238871, -0.31817248), (-0.108378336, 0.9807887, -0.1621962), (-0.108378336, 0.9807887, -0.1621962), (-0.21260057, 0.9238871, -0.31817248), (-0.14644383, 0.9238871, -0.3535349), (-0.07465333, 0.9807887, -0.18022306), (-0.07465333, 0.9807887, -0.18022306), (-0.14644383, 0.9238871, -0.3535349), (-0.07465945, 0.9238871, -0.37531146), (-0.03805948, 0.9807887, -0.19132419), (-0.03805948, 0.9807887, -0.19132419), (-0.07465945, 0.9238871, -0.37531146), (-0.0000060108923, 0.9238871, -0.3826653), (-0.0000030641993, 0.9807887, -0.195073), (-0.0000030641993, 0.9807887, -0.195073), (-0.0000060108923, 0.9238871, -0.3826653), (0.074647665, 0.9238871, -0.37531382), (0.03805347, 0.9807887, -0.1913254), (0.03805347, 0.9807887, -0.1913254), (0.074647665, 0.9238871, -0.37531382), (0.14643273, 0.9238871, -0.3535395), (0.074647665, 0.9807887, -0.1802254), (0.074647665, 0.9807887, -0.1802254), (0.14643273, 0.9238871, -0.3535395), (0.21259058, 0.9238871, -0.31817916), (0.10837324, 0.9807887, -0.1621996), (0.10837324, 0.9807887, -0.1621996), (0.21259058, 0.9238871, -0.31817916), (0.27057886, 0.9238871, -0.2705916), (0.13793418, 0.9807887, -0.13794069), (0.13793418, 0.9807887, -0.13794069), (0.27057886, 0.9238871, -0.2705916), (0.31816915, 0.9238871, -0.21260557), (0.16219449, 0.9807887, -0.108380884), (0.16219449, 0.9807887, -0.108380884), (0.31816915, 0.9238871, -0.21260557), (0.3535326, 0.9238871, -0.14644939), (0.18022189, 0.9807887, -0.07465616), (0.18022189, 0.9807887, -0.07465616), (0.3535326, 0.9238871, -0.14644939), (0.37531027, 0.9238871, -0.074665345), (0.1913236, 0.9807887, -0.038062487), (0.1913236, 0.9807887, -0.038062487), (0.37531027, 0.9238871, -0.074665345), (0.3826653, 0.9238871, -0.000012021785), (0.195073, 0.9807887, -0.0000061283986), (0.195073, 0.9807887, -0.0000061283986), (0.3826653, 0.9238871, -0.000012021785), (0.37531498, 0.9238871, 0.074641764), (0.19132599, 0.9807887, 0.038050465), (0.19132599, 0.9807887, 0.038050465), (0.37531498, 0.9238871, 0.074641764), (0.35354182, 0.9238871, 0.14642717), (0.18022658, 0.9807887, 0.074644834), (0.18022658, 0.9807887, 0.074644834), (0.35354182, 0.9238871, 0.14642717), (0.3181825, 0.9238871, 0.21258557), (0.1622013, 0.9807887, 0.1083707), (0.1622013, 0.9807887, 0.1083707), (0.3181825, 0.9238871, 0.21258557), (0.27059585, 0.9238871, 0.2705746), (0.13794285, 0.9807887, 0.13793202), (0.13794285, 0.9807887, 0.13793202), (0.27059585, 0.9238871, 0.2705746), (0.21261056, 0.9238871, 0.3181658), (0.10838343, 0.9807887, 0.16219279), (0.10838343, 0.9807887, 0.16219279), (0.21261056, 0.9238871, 0.3181658), (0.14645495, 0.9238871, 0.35353032), (0.07465899, 0.9807887, 0.18022072), (0.07465899, 0.9807887, 0.18022072), (0.14645495, 0.9238871, 0.35353032), (0.074671246, 0.9238871, 0.3753091), (0.038065493, 0.9807887, 0.191323), (0.038065493, 0.9807887, 0.191323), (0.074671246, 0.9238871, 0.3753091), (0.000018032677, 0.9238871, 0.3826653), (0.000009192598, 0.9807887, 0.195073), (0.000009192598, 0.9807887, 0.195073), (0.000018032677, 0.9238871, 0.3826653), (-0.07463587, 0.9238871, 0.37531614), (-0.03804746, 0.9807887, 0.19132659), (-0.03804746, 0.9807887, 0.19132659), (-0.07463587, 0.9238871, 0.37531614), (-0.14642163, 0.9238871, 0.35354412), (-0.074642, 0.9807887, 0.18022776), (-0.074642, 0.9807887, 0.18022776), (-0.14642163, 0.9238871, 0.35354412), (-0.21258058, 0.9238871, 0.31818584), (-0.10836815, 0.9807887, 0.16220301), (-0.10836815, 0.9807887, 0.16220301), (-0.21258058, 0.9238871, 0.31818584), (-0.27057034, 0.9238871, 0.2706001), (-0.13792986, 0.9807887, 0.13794501), (-0.13792986, 0.9807887, 0.13794501), (-0.27057034, 0.9238871, 0.2706001), (-0.31816244, 0.9238871, 0.21261556), (-0.1621911, 0.9807887, 0.10838598), (-0.1621911, 0.9807887, 0.10838598), (-0.31816244, 0.9238871, 0.21261556), (-0.353528, 0.9238871, 0.14646049), (-0.18021955, 0.9807887, 0.07466181), (-0.18021955, 0.9807887, 0.07466181), (-0.353528, 0.9238871, 0.14646049), (-0.37530795, 0.9238871, 0.07467714), (-0.1913224, 0.9807887, 0.0380685), (-0.1913224, 0.9807887, 0.0380685), (-0.37530795, 0.9238871, 0.07467714), (-0.3826653, 0.9238871, 9.372596e-17), (-0.195073, 0.9807887, 4.7779104e-17), (-0.195073, 0.9807887, 4.7779104e-17), (-0.3826653, 0.9238871, 9.372596e-17), (-0.3826653, 0.9238871, 0), (-0.195073, 0.9807887, 0), (-0.3826653, 0.9238871, 0), (-0.5555523, 0.83148164, 0), (-0.5448777, 0.83148164, -0.1083818), (-0.37531263, 0.9238871, -0.07465356), (-0.37531263, 0.9238871, -0.07465356), (-0.5448777, 0.83148164, -0.1083818), (-0.51326424, 0.83148164, -0.21259864), (-0.3535372, 0.9238871, -0.14643829), (-0.3535372, 0.9238871, -0.14643829), (-0.51326424, 0.83148164, -0.21259864), (-0.46192664, 0.83148164, -0.30864558), (-0.31817582, 0.9238871, -0.21259557), (-0.31817582, 0.9238871, -0.21259557), (-0.46192664, 0.83148164, -0.30864558), (-0.39283785, 0.83148164, -0.39283168), (-0.27058735, 0.9238871, -0.2705831), (-0.27058735, 0.9238871, -0.2705831), (-0.39283785, 0.83148164, -0.39283168), (-0.30865285, 0.83148164, -0.4619218), (-0.21260057, 0.9238871, -0.31817248), (-0.21260057, 0.9238871, -0.31817248), (-0.30865285, 0.83148164, -0.4619218), (-0.2126067, 0.83148164, -0.51326084), (-0.14644383, 0.9238871, -0.3535349), (-0.14644383, 0.9238871, -0.3535349), (-0.2126067, 0.83148164, -0.51326084), (-0.10839036, 0.83148164, -0.544876), (-0.07465945, 0.9238871, -0.37531146), (-0.07465945, 0.9238871, -0.37531146), (-0.10839036, 0.83148164, -0.544876), (-0.000008726594, 0.83148164, -0.5555523), (-0.0000060108923, 0.9238871, -0.3826653), (-0.0000060108923, 0.9238871, -0.3826653), (-0.000008726594, 0.83148164, -0.5555523), (0.10837324, 0.83148164, -0.54487944), (0.074647665, 0.9238871, -0.37531382), (0.074647665, 0.9238871, -0.37531382), (0.10837324, 0.83148164, -0.54487944), (0.21259058, 0.83148164, -0.5132676), (0.14643273, 0.9238871, -0.3535395), (0.14643273, 0.9238871, -0.3535395), (0.21259058, 0.83148164, -0.5132676), (0.30863833, 0.83148164, -0.4619315), (0.21259058, 0.9238871, -0.31817916), (0.21259058, 0.9238871, -0.31817916), (0.30863833, 0.83148164, -0.4619315), (0.3928255, 0.83148164, -0.39284405), (0.27057886, 0.9238871, -0.2705916), (0.27057886, 0.9238871, -0.2705916), (0.3928255, 0.83148164, -0.39284405), (0.46191695, 0.83148164, -0.3086601), (0.31816915, 0.9238871, -0.21260557), (0.31816915, 0.9238871, -0.21260557), (0.46191695, 0.83148164, -0.3086601), (0.5132575, 0.83148164, -0.21261476), (0.3535326, 0.9238871, -0.14644939), (0.3535326, 0.9238871, -0.14644939), (0.5132575, 0.83148164, -0.21261476), (0.5448743, 0.83148164, -0.10839892), (0.37531027, 0.9238871, -0.074665345), (0.37531027, 0.9238871, -0.074665345), (0.5448743, 0.83148164, -0.10839892), (0.5555523, 0.83148164, -0.000017453189), (0.3826653, 0.9238871, -0.000012021785), (0.3826653, 0.9238871, -0.000012021785), (0.5555523, 0.83148164, -0.000017453189), (0.5448811, 0.83148164, 0.10836469), (0.37531498, 0.9238871, 0.074641764), (0.37531498, 0.9238871, 0.074641764), (0.5448811, 0.83148164, 0.10836469), (0.5132709, 0.83148164, 0.21258251), (0.35354182, 0.9238871, 0.14642717), (0.35354182, 0.9238871, 0.14642717), (0.5132709, 0.83148164, 0.21258251), (0.46193635, 0.83148164, 0.30863106), (0.3181825, 0.9238871, 0.21258557), (0.3181825, 0.9238871, 0.21258557), (0.46193635, 0.83148164, 0.30863106), (0.39285022, 0.83148164, 0.39281934), (0.27059585, 0.9238871, 0.2705746), (0.27059585, 0.9238871, 0.2705746), (0.39285022, 0.83148164, 0.39281934), (0.30866736, 0.83148164, 0.4619121), (0.21261056, 0.9238871, 0.3181658), (0.21261056, 0.9238871, 0.3181658), (0.30866736, 0.83148164, 0.4619121), (0.21262282, 0.83148164, 0.51325417), (0.14645495, 0.9238871, 0.35353032), (0.14645495, 0.9238871, 0.35353032), (0.21262282, 0.83148164, 0.51325417), (0.10840748, 0.83148164, 0.5448726), (0.074671246, 0.9238871, 0.3753091), (0.074671246, 0.9238871, 0.3753091), (0.10840748, 0.83148164, 0.5448726), (0.000026179785, 0.83148164, 0.55555224), (0.000018032677, 0.9238871, 0.3826653), (0.000018032677, 0.9238871, 0.3826653), (0.000026179785, 0.83148164, 0.55555224), (-0.108356126, 0.83148164, 0.54488283), (-0.07463587, 0.9238871, 0.37531614), (-0.07463587, 0.9238871, 0.37531614), (-0.108356126, 0.83148164, 0.54488283), (-0.21257445, 0.83148164, 0.51327425), (-0.14642163, 0.9238871, 0.35354412), (-0.14642163, 0.9238871, 0.35354412), (-0.21257445, 0.83148164, 0.51327425), (-0.30862382, 0.83148164, 0.46194118), (-0.21258058, 0.9238871, 0.31818584), (-0.21258058, 0.9238871, 0.31818584), (-0.30862382, 0.83148164, 0.46194118), (-0.39281318, 0.83148164, 0.3928564), (-0.27057034, 0.9238871, 0.2706001), (-0.27057034, 0.9238871, 0.2706001), (-0.39281318, 0.83148164, 0.3928564), (-0.46190727, 0.83148164, 0.3086746), (-0.31816244, 0.9238871, 0.21261556), (-0.31816244, 0.9238871, 0.21261556), (-0.46190727, 0.83148164, 0.3086746), (-0.5132508, 0.83148164, 0.21263088), (-0.353528, 0.9238871, 0.14646049), (-0.353528, 0.9238871, 0.14646049), (-0.5132508, 0.83148164, 0.21263088), (-0.5448709, 0.83148164, 0.108416036), (-0.37530795, 0.9238871, 0.07467714), (-0.37530795, 0.9238871, 0.07467714), (-0.5448709, 0.83148164, 0.108416036), (-0.5555523, 0.83148164, 1.3607107e-16), (-0.3826653, 0.9238871, 9.372596e-17), (-0.3826653, 0.9238871, 9.372596e-17), (-0.5555523, 0.83148164, 1.3607107e-16), (-0.5555523, 0.83148164, 0), (-0.3826653, 0.9238871, 0), (-0.5555523, 0.83148164, 0), (-0.70709014, 0.70712346, 0), (-0.69350386, 0.70712346, -0.13794507), (-0.5448777, 0.83148164, -0.1083818), (-0.5448777, 0.83148164, -0.1083818), (-0.69350386, 0.70712346, -0.13794507), (-0.65326715, 0.70712346, -0.2705891), (-0.51326424, 0.83148164, -0.21259864), (-0.51326424, 0.83148164, -0.21259864), (-0.65326715, 0.70712346, -0.2705891), (-0.58792627, 0.70712346, -0.39283475), (-0.46192664, 0.83148164, -0.30864558), (-0.46192664, 0.83148164, -0.30864558), (-0.58792627, 0.70712346, -0.39283475), (-0.49999213, 0.70712346, -0.4999843), (-0.39283785, 0.83148164, -0.39283168), (-0.39283785, 0.83148164, -0.39283168), (-0.49999213, 0.70712346, -0.4999843), (-0.392844, 0.70712346, -0.58792007), (-0.30865285, 0.83148164, -0.4619218), (-0.30865285, 0.83148164, -0.4619218), (-0.392844, 0.70712346, -0.58792007), (-0.27059937, 0.70712346, -0.6532629), (-0.2126067, 0.83148164, -0.51326084), (-0.2126067, 0.83148164, -0.51326084), (-0.27059937, 0.70712346, -0.6532629), (-0.13795598, 0.70712346, -0.6935017), (-0.10839036, 0.83148164, -0.544876), (-0.10839036, 0.83148164, -0.544876), (-0.13795598, 0.70712346, -0.6935017), (-0.000011106946, 0.70712346, -0.70709014), (-0.000008726594, 0.83148164, -0.5555523), (-0.000008726594, 0.83148164, -0.5555523), (-0.000011106946, 0.70712346, -0.70709014), (0.13793418, 0.70712346, -0.693506), (0.10837324, 0.83148164, -0.54487944), (0.10837324, 0.83148164, -0.54487944), (0.13793418, 0.70712346, -0.693506), (0.27057886, 0.70712346, -0.6532714), (0.21259058, 0.83148164, -0.5132676), (0.21259058, 0.83148164, -0.5132676), (0.27057886, 0.70712346, -0.6532714), (0.3928255, 0.70712346, -0.5879324), (0.30863833, 0.83148164, -0.4619315), (0.30863833, 0.83148164, -0.4619315), (0.3928255, 0.70712346, -0.5879324), (0.49997643, 0.70712346, -0.5), (0.3928255, 0.83148164, -0.39284405), (0.3928255, 0.83148164, -0.39284405), (0.49997643, 0.70712346, -0.5), (0.58791393, 0.70712346, -0.39285323), (0.46191695, 0.83148164, -0.3086601), (0.46191695, 0.83148164, -0.3086601), (0.58791393, 0.70712346, -0.39285323), (0.6532586, 0.70712346, -0.27060962), (0.5132575, 0.83148164, -0.21261476), (0.5132575, 0.83148164, -0.21261476), (0.6532586, 0.70712346, -0.27060962), (0.6934995, 0.70712346, -0.13796687), (0.5448743, 0.83148164, -0.10839892), (0.5448743, 0.83148164, -0.10839892), (0.6934995, 0.70712346, -0.13796687), (0.70709014, 0.70712346, -0.000022213891), (0.5555523, 0.83148164, -0.000017453189), (0.5555523, 0.83148164, -0.000017453189), (0.70709014, 0.70712346, -0.000022213891), (0.6935082, 0.70712346, 0.13792329), (0.5448811, 0.83148164, 0.10836469), (0.5448811, 0.83148164, 0.10836469), (0.6935082, 0.70712346, 0.13792329), (0.65327567, 0.70712346, 0.27056858), (0.5132709, 0.83148164, 0.21258251), (0.5132709, 0.83148164, 0.21258251), (0.65327567, 0.70712346, 0.27056858), (0.5879386, 0.70712346, 0.39281628), (0.46193635, 0.83148164, 0.30863106), (0.46193635, 0.83148164, 0.30863106), (0.5879386, 0.70712346, 0.39281628), (0.50000787, 0.70712346, 0.4999686), (0.39285022, 0.83148164, 0.39281934), (0.39285022, 0.83148164, 0.39281934), (0.50000787, 0.70712346, 0.4999686), (0.39286247, 0.70712346, 0.58790773), (0.30866736, 0.83148164, 0.4619121), (0.30866736, 0.83148164, 0.4619121), (0.39286247, 0.70712346, 0.58790773), (0.2706199, 0.70712346, 0.6532544), (0.21262282, 0.83148164, 0.51325417), (0.21262282, 0.83148164, 0.51325417), (0.2706199, 0.70712346, 0.6532544), (0.13797776, 0.70712346, 0.69349736), (0.10840748, 0.83148164, 0.5448726), (0.10840748, 0.83148164, 0.5448726), (0.13797776, 0.70712346, 0.69349736), (0.000033320837, 0.70712346, 0.70709014), (0.000026179785, 0.83148164, 0.55555224), (0.000026179785, 0.83148164, 0.55555224), (0.000033320837, 0.70712346, 0.70709014), (-0.1379124, 0.70712346, 0.69351035), (-0.108356126, 0.83148164, 0.54488283), (-0.108356126, 0.83148164, 0.54488283), (-0.1379124, 0.70712346, 0.69351035), (-0.27055833, 0.70712346, 0.6532799), (-0.21257445, 0.83148164, 0.51327425), (-0.21257445, 0.83148164, 0.51327425), (-0.27055833, 0.70712346, 0.6532799), (-0.39280707, 0.70712346, 0.58794475), (-0.30862382, 0.83148164, 0.46194118), (-0.30862382, 0.83148164, 0.46194118), (-0.39280707, 0.70712346, 0.58794475), (-0.49996072, 0.70712346, 0.50001574), (-0.39281318, 0.83148164, 0.3928564), (-0.39281318, 0.83148164, 0.3928564), (-0.49996072, 0.70712346, 0.50001574), (-0.5879016, 0.70712346, 0.3928717), (-0.46190727, 0.83148164, 0.3086746), (-0.46190727, 0.83148164, 0.3086746), (-0.5879016, 0.70712346, 0.3928717), (-0.65325016, 0.70712346, 0.27063015), (-0.5132508, 0.83148164, 0.21263088), (-0.5132508, 0.83148164, 0.21263088), (-0.65325016, 0.70712346, 0.27063015), (-0.69349515, 0.70712346, 0.13798866), (-0.5448709, 0.83148164, 0.108416036), (-0.5448709, 0.83148164, 0.108416036), (-0.69349515, 0.70712346, 0.13798866), (-0.70709014, 0.70712346, 1.7318714e-16), (-0.5555523, 0.83148164, 1.3607107e-16), (-0.5555523, 0.83148164, 1.3607107e-16), (-0.70709014, 0.70712346, 1.7318714e-16), (-0.70709014, 0.70712346, 0), (-0.5555523, 0.83148164, 0), (-0.70709014, 0.70712346, 0), (-0.8314554, 0.55559146, 0), (-0.8154796, 0.55559146, -0.1622073), (-0.69350386, 0.70712346, -0.13794507), (-0.69350386, 0.70712346, -0.13794507), (-0.8154796, 0.55559146, -0.1622073), (-0.7681659, 0.55559146, -0.3181812), (-0.65326715, 0.70712346, -0.2705891), (-0.65326715, 0.70712346, -0.2705891), (-0.7681659, 0.55559146, -0.3181812), (-0.69133264, 0.55559146, -0.4619278), (-0.58792627, 0.70712346, -0.39283475), (-0.58792627, 0.70712346, -0.39283475), (-0.69133264, 0.55559146, -0.4619278), (-0.5879324, 0.55559146, -0.58792317), (-0.49999213, 0.70712346, -0.4999843), (-0.49999213, 0.70712346, -0.4999843), (-0.5879324, 0.55559146, -0.58792317), (-0.46193868, 0.55559146, -0.69132537), (-0.392844, 0.70712346, -0.58792007), (-0.392844, 0.70712346, -0.58792007), (-0.46193868, 0.55559146, -0.69132537), (-0.31819326, 0.55559146, -0.7681609), (-0.27059937, 0.70712346, -0.6532629), (-0.27059937, 0.70712346, -0.6532629), (-0.31819326, 0.55559146, -0.7681609), (-0.16222012, 0.55559146, -0.815477), (-0.13795598, 0.70712346, -0.6935017), (-0.13795598, 0.70712346, -0.6935017), (-0.16222012, 0.55559146, -0.815477), (-0.000013060471, 0.55559146, -0.8314554), (-0.000011106946, 0.70712346, -0.70709014), (-0.000011106946, 0.70712346, -0.70709014), (-0.000013060471, 0.55559146, -0.8314554), (0.16219449, 0.55559146, -0.81548214), (0.13793418, 0.70712346, -0.693506), (0.13793418, 0.70712346, -0.693506), (0.16219449, 0.55559146, -0.81548214), (0.31816915, 0.55559146, -0.7681709), (0.27057886, 0.70712346, -0.6532714), (0.27057886, 0.70712346, -0.6532714), (0.31816915, 0.55559146, -0.7681709), (0.46191695, 0.55559146, -0.6913399), (0.3928255, 0.70712346, -0.5879324), (0.3928255, 0.70712346, -0.5879324), (0.46191695, 0.55559146, -0.6913399), (0.58791393, 0.55559146, -0.58794165), (0.49997643, 0.70712346, -0.5), (0.49997643, 0.70712346, -0.5), (0.58791393, 0.55559146, -0.58794165), (0.69131815, 0.55559146, -0.46194953), (0.58791393, 0.70712346, -0.39285323), (0.58791393, 0.70712346, -0.39285323), (0.69131815, 0.55559146, -0.46194953), (0.76815593, 0.55559146, -0.31820533), (0.6532586, 0.70712346, -0.27060962), (0.6532586, 0.70712346, -0.27060962), (0.76815593, 0.55559146, -0.31820533), (0.81547445, 0.55559146, -0.16223292), (0.6934995, 0.70712346, -0.13796687), (0.6934995, 0.70712346, -0.13796687), (0.81547445, 0.55559146, -0.16223292), (0.8314554, 0.55559146, -0.000026120942), (0.70709014, 0.70712346, -0.000022213891), (0.70709014, 0.70712346, -0.000022213891), (0.8314554, 0.55559146, -0.000026120942), (0.81548464, 0.55559146, 0.16218169), (0.6935082, 0.70712346, 0.13792329), (0.6935082, 0.70712346, 0.13792329), (0.81548464, 0.55559146, 0.16218169), (0.7681759, 0.55559146, 0.31815708), (0.65327567, 0.70712346, 0.27056858), (0.65327567, 0.70712346, 0.27056858), (0.7681759, 0.55559146, 0.31815708), (0.6913472, 0.55559146, 0.4619061), (0.5879386, 0.70712346, 0.39281628), (0.5879386, 0.70712346, 0.39281628), (0.6913472, 0.55559146, 0.4619061), (0.5879509, 0.55559146, 0.5879047), (0.50000787, 0.70712346, 0.4999686), (0.50000787, 0.70712346, 0.4999686), (0.5879509, 0.55559146, 0.5879047), (0.4619604, 0.55559146, 0.6913109), (0.39286247, 0.70712346, 0.58790773), (0.39286247, 0.70712346, 0.58790773), (0.4619604, 0.55559146, 0.6913109), (0.3182174, 0.55559146, 0.7681509), (0.2706199, 0.70712346, 0.6532544), (0.2706199, 0.70712346, 0.6532544), (0.3182174, 0.55559146, 0.7681509), (0.16224574, 0.55559146, 0.81547195), (0.13797776, 0.70712346, 0.69349736), (0.13797776, 0.70712346, 0.69349736), (0.16224574, 0.55559146, 0.81547195), (0.000039181414, 0.55559146, 0.8314554), (0.000033320837, 0.70712346, 0.70709014), (0.000033320837, 0.70712346, 0.70709014), (0.000039181414, 0.55559146, 0.8314554), (-0.16216888, 0.55559146, 0.8154872), (-0.1379124, 0.70712346, 0.69351035), (-0.1379124, 0.70712346, 0.69351035), (-0.16216888, 0.55559146, 0.8154872), (-0.318145, 0.55559146, 0.7681809), (-0.27055833, 0.70712346, 0.6532799), (-0.27055833, 0.70712346, 0.6532799), (-0.318145, 0.55559146, 0.7681809), (-0.46189523, 0.55559146, 0.6913544), (-0.39280707, 0.70712346, 0.58794475), (-0.39280707, 0.70712346, 0.58794475), (-0.46189523, 0.55559146, 0.6913544), (-0.58789545, 0.55559146, 0.5879601), (-0.49996072, 0.70712346, 0.50001574), (-0.49996072, 0.70712346, 0.50001574), (-0.58789545, 0.55559146, 0.5879601), (-0.6913036, 0.55559146, 0.46197125), (-0.5879016, 0.70712346, 0.3928717), (-0.5879016, 0.70712346, 0.3928717), (-0.6913036, 0.55559146, 0.46197125), (-0.7681459, 0.55559146, 0.31822947), (-0.65325016, 0.70712346, 0.27063015), (-0.65325016, 0.70712346, 0.27063015), (-0.7681459, 0.55559146, 0.31822947), (-0.8154694, 0.55559146, 0.16225855), (-0.69349515, 0.70712346, 0.13798866), (-0.69349515, 0.70712346, 0.13798866), (-0.8154694, 0.55559146, 0.16225855), (-0.8314554, 0.55559146, 2.0364784e-16), (-0.70709014, 0.70712346, 1.7318714e-16), (-0.70709014, 0.70712346, 1.7318714e-16), (-0.8314554, 0.55559146, 2.0364784e-16), (-0.8314554, 0.55559146, 0), (-0.70709014, 0.70712346, 0), (-0.8314554, 0.55559146, 0), (-0.923869, 0.38270882, 0), (-0.9061175, 0.38270882, -0.18023613), (-0.8154796, 0.55559146, -0.1622073), (-0.8154796, 0.55559146, -0.1622073), (-0.9061175, 0.38270882, -0.18023613), (-0.85354507, 0.38270882, -0.35354602), (-0.7681659, 0.55559146, -0.3181812), (-0.7681659, 0.55559146, -0.3181812), (-0.85354507, 0.38270882, -0.35354602), (-0.768172, 0.38270882, -0.5132696), (-0.69133264, 0.55559146, -0.4619278), (-0.69133264, 0.55559146, -0.4619278), (-0.768172, 0.38270882, -0.5132696), (-0.6532792, 0.38270882, -0.65326893), (-0.5879324, 0.55559146, -0.58792317), (-0.5879324, 0.55559146, -0.58792317), (-0.6532792, 0.38270882, -0.65326893), (-0.51328164, 0.38270882, -0.768164), (-0.46193868, 0.55559146, -0.69132537), (-0.46193868, 0.55559146, -0.69132537), (-0.51328164, 0.38270882, -0.768164), (-0.35355943, 0.38270882, -0.8535395), (-0.31819326, 0.55559146, -0.7681609), (-0.31819326, 0.55559146, -0.7681609), (-0.35355943, 0.38270882, -0.8535395), (-0.18025036, 0.38270882, -0.90611464), (-0.16222012, 0.55559146, -0.815477), (-0.16222012, 0.55559146, -0.815477), (-0.18025036, 0.38270882, -0.90611464), (-0.0000145121, 0.38270882, -0.923869), (-0.000013060471, 0.55559146, -0.8314554), (-0.000013060471, 0.55559146, -0.8314554), (-0.0000145121, 0.38270882, -0.923869), (0.18022189, 0.38270882, -0.9061203), (0.16219449, 0.55559146, -0.81548214), (0.16219449, 0.55559146, -0.81548214), (0.18022189, 0.38270882, -0.9061203), (0.3535326, 0.38270882, -0.8535506), (0.31816915, 0.55559146, -0.7681709), (0.31816915, 0.55559146, -0.7681709), (0.3535326, 0.38270882, -0.8535506), (0.5132575, 0.38270882, -0.7681801), (0.46191695, 0.55559146, -0.6913399), (0.46191695, 0.55559146, -0.6913399), (0.5132575, 0.38270882, -0.7681801), (0.6532586, 0.38270882, -0.65328944), (0.58791393, 0.55559146, -0.58794165), (0.58791393, 0.55559146, -0.58794165), (0.6532586, 0.38270882, -0.65328944), (0.76815593, 0.38270882, -0.51329374), (0.69131815, 0.55559146, -0.46194953), (0.69131815, 0.55559146, -0.46194953), (0.76815593, 0.38270882, -0.51329374), (0.8535339, 0.38270882, -0.35357282), (0.76815593, 0.55559146, -0.31820533), (0.76815593, 0.55559146, -0.31820533), (0.8535339, 0.38270882, -0.35357282), (0.90611184, 0.38270882, -0.18026459), (0.81547445, 0.55559146, -0.16223292), (0.81547445, 0.55559146, -0.16223292), (0.90611184, 0.38270882, -0.18026459), (0.923869, 0.38270882, -0.0000290242), (0.8314554, 0.55559146, -0.000026120942), (0.8314554, 0.55559146, -0.000026120942), (0.923869, 0.38270882, -0.0000290242), (0.90612316, 0.38270882, 0.18020765), (0.81548464, 0.55559146, 0.16218169), (0.81548464, 0.55559146, 0.16218169), (0.90612316, 0.38270882, 0.18020765), (0.85355616, 0.38270882, 0.3535192), (0.7681759, 0.55559146, 0.31815708), (0.7681759, 0.55559146, 0.31815708), (0.85355616, 0.38270882, 0.3535192), (0.7681882, 0.38270882, 0.51324546), (0.6913472, 0.55559146, 0.4619061), (0.6913472, 0.55559146, 0.4619061), (0.7681882, 0.38270882, 0.51324546), (0.6532997, 0.38270882, 0.65324837), (0.5879509, 0.55559146, 0.5879047), (0.5879509, 0.55559146, 0.5879047), (0.6532997, 0.38270882, 0.65324837), (0.5133058, 0.38270882, 0.7681478), (0.4619604, 0.55559146, 0.6913109), (0.4619604, 0.55559146, 0.6913109), (0.5133058, 0.38270882, 0.7681478), (0.35358623, 0.38270882, 0.8535284), (0.3182174, 0.55559146, 0.7681509), (0.3182174, 0.55559146, 0.7681509), (0.35358623, 0.38270882, 0.8535284), (0.18027882, 0.38270882, 0.906109), (0.16224574, 0.55559146, 0.81547195), (0.16224574, 0.55559146, 0.81547195), (0.18027882, 0.38270882, 0.906109), (0.0000435363, 0.38270882, 0.923869), (0.000039181414, 0.55559146, 0.8314554), (0.000039181414, 0.55559146, 0.8314554), (0.0000435363, 0.38270882, 0.923869), (-0.18019342, 0.38270882, 0.90612596), (-0.16216888, 0.55559146, 0.8154872), (-0.16216888, 0.55559146, 0.8154872), (-0.18019342, 0.38270882, 0.90612596), (-0.3535058, 0.38270882, 0.8535617), (-0.318145, 0.55559146, 0.7681809), (-0.318145, 0.55559146, 0.7681809), (-0.3535058, 0.38270882, 0.8535617), (-0.5132334, 0.38270882, 0.7681962), (-0.46189523, 0.55559146, 0.6913544), (-0.46189523, 0.55559146, 0.6913544), (-0.5132334, 0.38270882, 0.7681962), (-0.6532381, 0.38270882, 0.65330994), (-0.58789545, 0.55559146, 0.5879601), (-0.58789545, 0.55559146, 0.5879601), (-0.6532381, 0.38270882, 0.65330994), (-0.7681398, 0.38270882, 0.5133179), (-0.6913036, 0.55559146, 0.46197125), (-0.6913036, 0.55559146, 0.46197125), (-0.7681398, 0.38270882, 0.5133179), (-0.85352284, 0.38270882, 0.35359964), (-0.7681459, 0.55559146, 0.31822947), (-0.7681459, 0.55559146, 0.31822947), (-0.85352284, 0.38270882, 0.35359964), (-0.9061062, 0.38270882, 0.18029305), (-0.8154694, 0.55559146, 0.16225855), (-0.8154694, 0.55559146, 0.16225855), (-0.9061062, 0.38270882, 0.18029305), (-0.923869, 0.38270882, 2.2628265e-16), (-0.8314554, 0.55559146, 2.0364784e-16), (-0.8314554, 0.55559146, 2.0364784e-16), (-0.923869, 0.38270882, 2.2628265e-16), (-0.923869, 0.38270882, 0), (-0.8314554, 0.55559146, 0), (-0.923869, 0.38270882, 0), (-0.9807795, 0.1951192, 0), (-0.9619345, 0.1951192, -0.1913387), (-0.9061175, 0.38270882, -0.18023613), (-0.9061175, 0.38270882, -0.18023613), (-0.9619345, 0.1951192, -0.1913387), (-0.90612364, 0.1951192, -0.37532452), (-0.85354507, 0.38270882, -0.35354602), (-0.85354507, 0.38270882, -0.35354602), (-0.90612364, 0.1951192, -0.37532452), (-0.8154916, 0.1951192, -0.5448871), (-0.768172, 0.38270882, -0.5132696), (-0.768172, 0.38270882, -0.5132696), (-0.8154916, 0.1951192, -0.5448871), (-0.6935213, 0.1951192, -0.6935104), (-0.6532792, 0.38270882, -0.65326893), (-0.6532792, 0.38270882, -0.65326893), (-0.6935213, 0.1951192, -0.6935104), (-0.54489994, 0.1951192, -0.81548303), (-0.51328164, 0.38270882, -0.768164), (-0.51328164, 0.38270882, -0.768164), (-0.54489994, 0.1951192, -0.81548303), (-0.37533876, 0.1951192, -0.90611774), (-0.35355943, 0.38270882, -0.8535395), (-0.35355943, 0.38270882, -0.8535395), (-0.37533876, 0.1951192, -0.90611774), (-0.19135381, 0.1951192, -0.9619315), (-0.18025036, 0.38270882, -0.90611464), (-0.18025036, 0.38270882, -0.90611464), (-0.19135381, 0.1951192, -0.9619315), (-0.000015406049, 0.1951192, -0.9807795), (-0.0000145121, 0.38270882, -0.923869), (-0.0000145121, 0.38270882, -0.923869), (-0.000015406049, 0.1951192, -0.9807795), (0.1913236, 0.1951192, -0.9619375), (0.18022189, 0.38270882, -0.9061203), (0.18022189, 0.38270882, -0.9061203), (0.1913236, 0.1951192, -0.9619375), (0.37531027, 0.1951192, -0.9061295), (0.3535326, 0.38270882, -0.8535506), (0.3535326, 0.38270882, -0.8535506), (0.37531027, 0.1951192, -0.9061295), (0.5448743, 0.1951192, -0.81550014), (0.5132575, 0.38270882, -0.7681801), (0.5132575, 0.38270882, -0.7681801), (0.5448743, 0.1951192, -0.81550014), (0.6934995, 0.1951192, -0.6935322), (0.6532586, 0.38270882, -0.65328944), (0.6532586, 0.38270882, -0.65328944), (0.6934995, 0.1951192, -0.6935322), (0.81547445, 0.1951192, -0.54491276), (0.76815593, 0.38270882, -0.51329374), (0.76815593, 0.38270882, -0.51329374), (0.81547445, 0.1951192, -0.54491276), (0.90611184, 0.1951192, -0.37535298), (0.8535339, 0.38270882, -0.35357282), (0.8535339, 0.38270882, -0.35357282), (0.90611184, 0.1951192, -0.37535298), (0.9619285, 0.1951192, -0.19136892), (0.90611184, 0.38270882, -0.18026459), (0.90611184, 0.38270882, -0.18026459), (0.9619285, 0.1951192, -0.19136892), (0.9807795, 0.1951192, -0.000030812098), (0.923869, 0.38270882, -0.0000290242), (0.923869, 0.38270882, -0.0000290242), (0.9807795, 0.1951192, -0.000030812098), (0.9619405, 0.1951192, 0.19130848), (0.90612316, 0.38270882, 0.18020765), (0.90612316, 0.38270882, 0.18020765), (0.9619405, 0.1951192, 0.19130848), (0.9061354, 0.1951192, 0.37529606), (0.85355616, 0.38270882, 0.3535192), (0.85355616, 0.38270882, 0.3535192), (0.9061354, 0.1951192, 0.37529606), (0.8155087, 0.1951192, 0.5448615), (0.7681882, 0.38270882, 0.51324546), (0.7681882, 0.38270882, 0.51324546), (0.8155087, 0.1951192, 0.5448615), (0.6935431, 0.1951192, 0.6934886), (0.6532997, 0.38270882, 0.65324837), (0.6532997, 0.38270882, 0.65324837), (0.6935431, 0.1951192, 0.6934886), (0.5449255, 0.1951192, 0.8154659), (0.5133058, 0.38270882, 0.7681478), (0.5133058, 0.38270882, 0.7681478), (0.5449255, 0.1951192, 0.8154659), (0.37536722, 0.1951192, 0.90610594), (0.35358623, 0.38270882, 0.8535284), (0.35358623, 0.38270882, 0.8535284), (0.37536722, 0.1951192, 0.90610594), (0.19138403, 0.1951192, 0.9619255), (0.18027882, 0.38270882, 0.906109), (0.18027882, 0.38270882, 0.906109), (0.19138403, 0.1951192, 0.9619255), (0.000046218145, 0.1951192, 0.9807795), (0.0000435363, 0.38270882, 0.923869), (0.0000435363, 0.38270882, 0.923869), (0.000046218145, 0.1951192, 0.9807795), (-0.19129337, 0.1951192, 0.9619435), (-0.18019342, 0.38270882, 0.90612596), (-0.18019342, 0.38270882, 0.90612596), (-0.19129337, 0.1951192, 0.9619435), (-0.3752818, 0.1951192, 0.9061413), (-0.3535058, 0.38270882, 0.8535617), (-0.3535058, 0.38270882, 0.8535617), (-0.3752818, 0.1951192, 0.9061413), (-0.5448487, 0.1951192, 0.81551725), (-0.5132334, 0.38270882, 0.7681962), (-0.5132334, 0.38270882, 0.7681962), (-0.5448487, 0.1951192, 0.81551725), (-0.69347775, 0.1951192, 0.693554), (-0.6532381, 0.38270882, 0.65330994), (-0.6532381, 0.38270882, 0.65330994), (-0.69347775, 0.1951192, 0.693554), (-0.81545734, 0.1951192, 0.5449383), (-0.7681398, 0.38270882, 0.5133179), (-0.7681398, 0.38270882, 0.5133179), (-0.81545734, 0.1951192, 0.5449383), (-0.90610003, 0.1951192, 0.37538144), (-0.85352284, 0.38270882, 0.35359964), (-0.85352284, 0.38270882, 0.35359964), (-0.90610003, 0.1951192, 0.37538144), (-0.96192247, 0.1951192, 0.19139914), (-0.9061062, 0.38270882, 0.18029305), (-0.9061062, 0.38270882, 0.18029305), (-0.96192247, 0.1951192, 0.19139914), (-0.9807795, 0.1951192, 2.402217e-16), (-0.923869, 0.38270882, 2.2628265e-16), (-0.923869, 0.38270882, 2.2628265e-16), (-0.9807795, 0.1951192, 2.402217e-16), (-0.9807795, 0.1951192, 0), (-0.923869, 0.38270882, 0), (-0.9807795, 0.1951192, 0), (-1, 0.000031415926, 0), (-0.98078567, 0.000031415926, -0.1950884), (-0.9619345, 0.1951192, -0.1913387), (-0.9619345, 0.1951192, -0.1913387), (-0.98078567, 0.000031415926, -0.1950884), (-0.92388105, 0.000031415926, -0.3826798), (-0.90612364, 0.1951192, -0.37532452), (-0.90612364, 0.1951192, -0.37532452), (-0.92388105, 0.000031415926, -0.3826798), (-0.8314729, 0.000031415926, -0.55556536), (-0.8154916, 0.1951192, -0.5448871), (-0.8154916, 0.1951192, -0.5448871), (-0.8314729, 0.000031415926, -0.55556536), (-0.7071123, 0.000031415926, -0.7071012), (-0.6935213, 0.1951192, -0.6935104), (-0.6935213, 0.1951192, -0.6935104), (-0.7071123, 0.000031415926, -0.7071012), (-0.5555784, 0.000031415926, -0.8314642), (-0.54489994, 0.1951192, -0.81548303), (-0.54489994, 0.1951192, -0.81548303), (-0.5555784, 0.000031415926, -0.8314642), (-0.3826943, 0.000031415926, -0.92387503), (-0.37533876, 0.1951192, -0.90611774), (-0.37533876, 0.1951192, -0.90611774), (-0.3826943, 0.000031415926, -0.92387503), (-0.19510381, 0.000031415926, -0.9807826), (-0.19135381, 0.1951192, -0.9619315), (-0.19135381, 0.1951192, -0.9619315), (-0.19510381, 0.000031415926, -0.9807826), (-0.000015707963, 0.000031415926, -1), (-0.000015406049, 0.1951192, -0.9807795), (-0.000015406049, 0.1951192, -0.9807795), (-0.000015707963, 0.000031415926, -1), (0.195073, 0.000031415926, -0.9807887), (0.1913236, 0.1951192, -0.9619375), (0.1913236, 0.1951192, -0.9619375), (0.195073, 0.000031415926, -0.9807887), (0.3826653, 0.000031415926, -0.9238871), (0.37531027, 0.1951192, -0.9061295), (0.37531027, 0.1951192, -0.9061295), (0.3826653, 0.000031415926, -0.9238871), (0.5555523, 0.000031415926, -0.83148164), (0.5448743, 0.1951192, -0.81550014), (0.5448743, 0.1951192, -0.81550014), (0.5555523, 0.000031415926, -0.83148164), (0.70709014, 0.000031415926, -0.70712346), (0.6934995, 0.1951192, -0.6935322), (0.6934995, 0.1951192, -0.6935322), (0.70709014, 0.000031415926, -0.70712346), (0.8314554, 0.000031415926, -0.55559146), (0.81547445, 0.1951192, -0.54491276), (0.81547445, 0.1951192, -0.54491276), (0.8314554, 0.000031415926, -0.55559146), (0.923869, 0.000031415926, -0.38270882), (0.90611184, 0.1951192, -0.37535298), (0.90611184, 0.1951192, -0.37535298), (0.923869, 0.000031415926, -0.38270882), (0.9807795, 0.000031415926, -0.1951192), (0.9619285, 0.1951192, -0.19136892), (0.9619285, 0.1951192, -0.19136892), (0.9807795, 0.000031415926, -0.1951192), (1, 0.000031415926, -0.000031415926), (0.9807795, 0.1951192, -0.000030812098), (0.9807795, 0.1951192, -0.000030812098), (1, 0.000031415926, -0.000031415926), (0.9807918, 0.000031415926, 0.19505759), (0.9619405, 0.1951192, 0.19130848), (0.9619405, 0.1951192, 0.19130848), (0.9807918, 0.000031415926, 0.19505759), (0.92389303, 0.000031415926, 0.3826508), (0.9061354, 0.1951192, 0.37529606), (0.9061354, 0.1951192, 0.37529606), (0.92389303, 0.000031415926, 0.3826508), (0.83149034, 0.000031415926, 0.5555392), (0.8155087, 0.1951192, 0.5448615), (0.8155087, 0.1951192, 0.5448615), (0.83149034, 0.000031415926, 0.5555392), (0.70713454, 0.000031415926, 0.707079), (0.6935431, 0.1951192, 0.6934886), (0.6935431, 0.1951192, 0.6934886), (0.70713454, 0.000031415926, 0.707079), (0.5556045, 0.000031415926, 0.8314467), (0.5449255, 0.1951192, 0.8154659), (0.5449255, 0.1951192, 0.8154659), (0.5556045, 0.000031415926, 0.8314467), (0.38272333, 0.000031415926, 0.923863), (0.37536722, 0.1951192, 0.90610594), (0.37536722, 0.1951192, 0.90610594), (0.38272333, 0.000031415926, 0.923863), (0.19513461, 0.000031415926, 0.9807765), (0.19138403, 0.1951192, 0.9619255), (0.19138403, 0.1951192, 0.9619255), (0.19513461, 0.000031415926, 0.9807765), (0.00004712389, 0.000031415926, 1), (0.000046218145, 0.1951192, 0.9807795), (0.000046218145, 0.1951192, 0.9807795), (0.00004712389, 0.000031415926, 1), (-0.19504218, 0.000031415926, 0.98079485), (-0.19129337, 0.1951192, 0.9619435), (-0.19129337, 0.1951192, 0.9619435), (-0.19504218, 0.000031415926, 0.98079485), (-0.38263628, 0.000031415926, 0.92389905), (-0.3752818, 0.1951192, 0.9061413), (-0.3752818, 0.1951192, 0.9061413), (-0.38263628, 0.000031415926, 0.92389905), (-0.55552614, 0.000031415926, 0.83149904), (-0.5448487, 0.1951192, 0.81551725), (-0.5448487, 0.1951192, 0.81551725), (-0.55552614, 0.000031415926, 0.83149904), (-0.7070679, 0.000031415926, 0.70714563), (-0.69347775, 0.1951192, 0.693554), (-0.69347775, 0.1951192, 0.693554), (-0.7070679, 0.000031415926, 0.70714563), (-0.831438, 0.000031415926, 0.5556176), (-0.81545734, 0.1951192, 0.5449383), (-0.81545734, 0.1951192, 0.5449383), (-0.831438, 0.000031415926, 0.5556176), (-0.923857, 0.000031415926, 0.38273785), (-0.90610003, 0.1951192, 0.37538144), (-0.90610003, 0.1951192, 0.37538144), (-0.923857, 0.000031415926, 0.38273785), (-0.9807734, 0.000031415926, 0.19515002), (-0.96192247, 0.1951192, 0.19139914), (-0.96192247, 0.1951192, 0.19139914), (-0.9807734, 0.000031415926, 0.19515002), (-1, 0.000031415926, 2.4492937e-16), (-0.9807795, 0.1951192, 2.402217e-16), (-0.9807795, 0.1951192, 2.402217e-16), (-1, 0.000031415926, 2.4492937e-16), (-1, 0.000031415926, 0), (-0.9807795, 0.1951192, 0), (-1, 0.000031415926, 0), (-0.9807918, -0.19505759, 0), (-0.96194655, -0.19505759, -0.1913411), (-0.98078567, 0.000031415926, -0.1950884), (-0.98078567, 0.000031415926, -0.1950884), (-0.96194655, -0.19505759, -0.1913411), (-0.90613496, -0.19505759, -0.3753292), (-0.92388105, 0.000031415926, -0.3826798), (-0.92388105, 0.000031415926, -0.3826798), (-0.90613496, -0.19505759, -0.3753292), (-0.8155018, -0.19505759, -0.5448939), (-0.8314729, 0.000031415926, -0.55556536), (-0.8314729, 0.000031415926, -0.55556536), (-0.8155018, -0.19505759, -0.5448939), (-0.69352996, -0.19505759, -0.69351906), (-0.7071123, 0.000031415926, -0.7071012), (-0.7071123, 0.000031415926, -0.7071012), (-0.69352996, -0.19505759, -0.69351906), (-0.54490674, -0.19505759, -0.8154932), (-0.5555784, 0.000031415926, -0.8314642), (-0.5555784, 0.000031415926, -0.8314642), (-0.54490674, -0.19505759, -0.8154932), (-0.37534344, -0.19505759, -0.90612906), (-0.3826943, 0.000031415926, -0.92387503), (-0.3826943, 0.000031415926, -0.92387503), (-0.37534344, -0.19505759, -0.90612906), (-0.19135621, -0.19505759, -0.9619435), (-0.19510381, 0.000031415926, -0.9807826), (-0.19510381, 0.000031415926, -0.9807826), (-0.19135621, -0.19505759, -0.9619435), (-0.000015406242, -0.19505759, -0.9807918), (-0.000015707963, 0.000031415926, -1), (-0.000015707963, 0.000031415926, -1), (-0.000015406242, -0.19505759, -0.9807918), (0.19132599, -0.19505759, -0.9619495), (0.195073, 0.000031415926, -0.9807887), (0.195073, 0.000031415926, -0.9807887), (0.19132599, -0.19505759, -0.9619495), (0.37531498, -0.19505759, -0.9061408), (0.3826653, 0.000031415926, -0.9238871), (0.3826653, 0.000031415926, -0.9238871), (0.37531498, -0.19505759, -0.9061408), (0.5448811, -0.19505759, -0.81551033), (0.5555523, 0.000031415926, -0.83148164), (0.5555523, 0.000031415926, -0.83148164), (0.5448811, -0.19505759, -0.81551033), (0.6935082, -0.19505759, -0.6935409), (0.70709014, 0.000031415926, -0.70712346), (0.70709014, 0.000031415926, -0.70712346), (0.6935082, -0.19505759, -0.6935409), (0.81548464, -0.19505759, -0.54491955), (0.8314554, 0.000031415926, -0.55559146), (0.8314554, 0.000031415926, -0.55559146), (0.81548464, -0.19505759, -0.54491955), (0.90612316, -0.19505759, -0.3753577), (0.923869, 0.000031415926, -0.38270882), (0.923869, 0.000031415926, -0.38270882), (0.90612316, -0.19505759, -0.3753577), (0.9619405, -0.19505759, -0.19137132), (0.9807795, 0.000031415926, -0.1951192), (0.9807795, 0.000031415926, -0.1951192), (0.9619405, -0.19505759, -0.19137132), (0.9807918, -0.19505759, -0.000030812484), (1, 0.000031415926, -0.000031415926), (1, 0.000031415926, -0.000031415926), (0.9807918, -0.19505759, -0.000030812484), (0.96195257, -0.19505759, 0.19131088), (0.9807918, 0.000031415926, 0.19505759), (0.9807918, 0.000031415926, 0.19505759), (0.96195257, -0.19505759, 0.19131088), (0.9061467, -0.19505759, 0.37530074), (0.92389303, 0.000031415926, 0.3826508), (0.92389303, 0.000031415926, 0.3826508), (0.9061467, -0.19505759, 0.37530074), (0.8155189, -0.19505759, 0.5448683), (0.83149034, 0.000031415926, 0.5555392), (0.83149034, 0.000031415926, 0.5555392), (0.8155189, -0.19505759, 0.5448683), (0.6935518, -0.19505759, 0.6934973), (0.70713454, 0.000031415926, 0.707079), (0.70713454, 0.000031415926, 0.707079), (0.6935518, -0.19505759, 0.6934973), (0.54493237, -0.19505759, 0.8154761), (0.5556045, 0.000031415926, 0.8314467), (0.5556045, 0.000031415926, 0.8314467), (0.54493237, -0.19505759, 0.8154761), (0.3753719, -0.19505759, 0.90611726), (0.38272333, 0.000031415926, 0.923863), (0.38272333, 0.000031415926, 0.923863), (0.3753719, -0.19505759, 0.90611726), (0.19138643, -0.19505759, 0.9619375), (0.19513461, 0.000031415926, 0.9807765), (0.19513461, 0.000031415926, 0.9807765), (0.19138643, -0.19505759, 0.9619375), (0.000046218724, -0.19505759, 0.9807918), (0.00004712389, 0.000031415926, 1), (0.00004712389, 0.000031415926, 1), (0.000046218724, -0.19505759, 0.9807918), (-0.19129577, -0.19505759, 0.96195555), (-0.19504218, 0.000031415926, 0.98079485), (-0.19504218, 0.000031415926, 0.98079485), (-0.19129577, -0.19505759, 0.96195555), (-0.37528652, -0.19505759, 0.9061526), (-0.38263628, 0.000031415926, 0.92389905), (-0.38263628, 0.000031415926, 0.92389905), (-0.37528652, -0.19505759, 0.9061526), (-0.5448555, -0.19505759, 0.81552744), (-0.55552614, 0.000031415926, 0.83149904), (-0.55552614, 0.000031415926, 0.83149904), (-0.5448555, -0.19505759, 0.81552744), (-0.6934864, -0.19505759, 0.6935626), (-0.7070679, 0.000031415926, 0.70714563), (-0.7070679, 0.000031415926, 0.70714563), (-0.6934864, -0.19505759, 0.6935626), (-0.81546754, -0.19505759, 0.5449452), (-0.831438, 0.000031415926, 0.5556176), (-0.831438, 0.000031415926, 0.5556176), (-0.81546754, -0.19505759, 0.5449452), (-0.90611136, -0.19505759, 0.37538615), (-0.923857, 0.000031415926, 0.38273785), (-0.923857, 0.000031415926, 0.38273785), (-0.90611136, -0.19505759, 0.37538615), (-0.9619345, -0.19505759, 0.19140154), (-0.9807734, 0.000031415926, 0.19515002), (-0.9807734, 0.000031415926, 0.19515002), (-0.9619345, -0.19505759, 0.19140154), (-0.9807918, -0.19505759, 2.402247e-16), (-1, 0.000031415926, 2.4492937e-16), (-1, 0.000031415926, 2.4492937e-16), (-0.9807918, -0.19505759, 2.402247e-16), (-0.9807918, -0.19505759, 0), (-1, 0.000031415926, 0), (-0.9807918, -0.19505759, 0), (-0.92389303, -0.3826508, 0), (-0.90614104, -0.3826508, -0.18024081), (-0.96194655, -0.19505759, -0.1913411), (-0.96194655, -0.19505759, -0.1913411), (-0.90614104, -0.3826508, -0.18024081), (-0.8535673, -0.3826508, -0.3535552), (-0.90613496, -0.19505759, -0.3753292), (-0.90613496, -0.19505759, -0.3753292), (-0.8535673, -0.3826508, -0.3535552), (-0.76819205, -0.3826508, -0.51328295), (-0.8155018, -0.19505759, -0.5448939), (-0.8155018, -0.19505759, -0.5448939), (-0.76819205, -0.3826508, -0.51328295), (-0.6532962, -0.3826508, -0.6532859), (-0.69352996, -0.19505759, -0.69351906), (-0.69352996, -0.19505759, -0.69351906), (-0.6532962, -0.3826508, -0.6532859), (-0.513295, -0.3826508, -0.76818395), (-0.54490674, -0.19505759, -0.8154932), (-0.54490674, -0.19505759, -0.8154932), (-0.513295, -0.3826508, -0.76818395), (-0.3535686, -0.3826508, -0.8535617), (-0.37534344, -0.19505759, -0.90612906), (-0.37534344, -0.19505759, -0.90612906), (-0.3535686, -0.3826508, -0.8535617), (-0.18025506, -0.3826508, -0.90613824), (-0.19135621, -0.19505759, -0.9619435), (-0.19135621, -0.19505759, -0.9619435), (-0.18025506, -0.3826508, -0.90613824), (-0.000014512479, -0.3826508, -0.92389303), (-0.000015406242, -0.19505759, -0.9807918), (-0.000015406242, -0.19505759, -0.9807918), (-0.000014512479, -0.3826508, -0.92389303), (0.18022658, -0.3826508, -0.9061439), (0.19132599, -0.19505759, -0.9619495), (0.19132599, -0.19505759, -0.9619495), (0.18022658, -0.3826508, -0.9061439), (0.35354182, -0.3826508, -0.85357285), (0.37531498, -0.19505759, -0.9061408), (0.37531498, -0.19505759, -0.9061408), (0.35354182, -0.3826508, -0.85357285), (0.5132709, -0.3826508, -0.7682001), (0.5448811, -0.19505759, -0.81551033), (0.5448811, -0.19505759, -0.81551033), (0.5132709, -0.3826508, -0.7682001), (0.65327567, -0.3826508, -0.6533064), (0.6935082, -0.19505759, -0.6935409), (0.6935082, -0.19505759, -0.6935409), (0.65327567, -0.3826508, -0.6533064), (0.7681759, -0.3826508, -0.5133071), (0.81548464, -0.19505759, -0.54491955), (0.81548464, -0.19505759, -0.54491955), (0.7681759, -0.3826508, -0.5133071), (0.85355616, -0.3826508, -0.35358202), (0.90612316, -0.19505759, -0.3753577), (0.90612316, -0.19505759, -0.3753577), (0.85355616, -0.3826508, -0.35358202), (0.9061354, -0.3826508, -0.18026929), (0.9619405, -0.19505759, -0.19137132), (0.9619405, -0.19505759, -0.19137132), (0.9061354, -0.3826508, -0.18026929), (0.92389303, -0.3826508, -0.000029024957), (0.9807918, -0.19505759, -0.000030812484), (0.9807918, -0.19505759, -0.000030812484), (0.92389303, -0.3826508, -0.000029024957), (0.9061467, -0.3826508, 0.18021235), (0.96195257, -0.19505759, 0.19131088), (0.96195257, -0.19505759, 0.19131088), (0.9061467, -0.3826508, 0.18021235), (0.8535784, -0.3826508, 0.3535284), (0.9061467, -0.19505759, 0.37530074), (0.9061467, -0.19505759, 0.37530074), (0.8535784, -0.3826508, 0.3535284), (0.76820815, -0.3826508, 0.5132588), (0.8155189, -0.19505759, 0.5448683), (0.8155189, -0.19505759, 0.5448683), (0.76820815, -0.3826508, 0.5132588), (0.6533167, -0.3826508, 0.6532654), (0.6935518, -0.19505759, 0.6934973), (0.6935518, -0.19505759, 0.6934973), (0.6533167, -0.3826508, 0.6532654), (0.51331913, -0.3826508, 0.76816785), (0.54493237, -0.19505759, 0.8154761), (0.54493237, -0.19505759, 0.8154761), (0.51331913, -0.3826508, 0.76816785), (0.35359544, -0.3826508, 0.8535506), (0.3753719, -0.19505759, 0.90611726), (0.3753719, -0.19505759, 0.90611726), (0.35359544, -0.3826508, 0.8535506), (0.18028352, -0.3826508, 0.9061326), (0.19138643, -0.19505759, 0.9619375), (0.19138643, -0.19505759, 0.9619375), (0.18028352, -0.3826508, 0.9061326), (0.000043537435, -0.3826508, 0.92389303), (0.000046218724, -0.19505759, 0.9807918), (0.000046218724, -0.19505759, 0.9807918), (0.000043537435, -0.3826508, 0.92389303), (-0.18019812, -0.3826508, 0.90614957), (-0.19129577, -0.19505759, 0.96195555), (-0.19129577, -0.19505759, 0.96195555), (-0.18019812, -0.3826508, 0.90614957), (-0.353515, -0.3826508, 0.85358393), (-0.37528652, -0.19505759, 0.9061526), (-0.37528652, -0.19505759, 0.9061526), (-0.353515, -0.3826508, 0.85358393), (-0.5132468, -0.3826508, 0.7682162), (-0.5448555, -0.19505759, 0.81552744), (-0.5448555, -0.19505759, 0.81552744), (-0.5132468, -0.3826508, 0.7682162), (-0.6532551, -0.3826508, 0.653327), (-0.6934864, -0.19505759, 0.6935626), (-0.6934864, -0.19505759, 0.6935626), (-0.6532551, -0.3826508, 0.653327), (-0.76815975, -0.3826508, 0.51333123), (-0.81546754, -0.19505759, 0.5449452), (-0.81546754, -0.19505759, 0.5449452), (-0.76815975, -0.3826508, 0.51333123), (-0.85354507, -0.3826508, 0.35360885), (-0.90611136, -0.19505759, 0.37538615), (-0.90611136, -0.19505759, 0.37538615), (-0.85354507, -0.3826508, 0.35360885), (-0.9061297, -0.3826508, 0.18029775), (-0.9619345, -0.19505759, 0.19140154), (-0.9619345, -0.19505759, 0.19140154), (-0.9061297, -0.3826508, 0.18029775), (-0.92389303, -0.3826508, 2.2628853e-16), (-0.9807918, -0.19505759, 2.402247e-16), (-0.9807918, -0.19505759, 2.402247e-16), (-0.92389303, -0.3826508, 2.2628853e-16), (-0.92389303, -0.3826508, 0), (-0.9807918, -0.19505759, 0), (-0.92389303, -0.3826508, 0), (-0.83149034, -0.5555392, 0), (-0.8155138, -0.5555392, -0.16221412), (-0.90614104, -0.3826508, -0.18024081), (-0.90614104, -0.3826508, -0.18024081), (-0.8155138, -0.5555392, -0.16221412), (-0.76819813, -0.5555392, -0.31819457), (-0.8535673, -0.3826508, -0.3535552), (-0.8535673, -0.3826508, -0.3535552), (-0.76819813, -0.5555392, -0.31819457), (-0.69136167, -0.5555392, -0.4619472), (-0.76819205, -0.3826508, -0.51328295), (-0.76819205, -0.3826508, -0.51328295), (-0.69136167, -0.5555392, -0.4619472), (-0.5879571, -0.5555392, -0.58794785), (-0.6532962, -0.3826508, -0.6532859), (-0.6532962, -0.3826508, -0.6532859), (-0.5879571, -0.5555392, -0.58794785), (-0.46195808, -0.5555392, -0.6913544), (-0.513295, -0.3826508, -0.76818395), (-0.513295, -0.3826508, -0.76818395), (-0.46195808, -0.5555392, -0.6913544), (-0.31820664, -0.5555392, -0.7681932), (-0.3535686, -0.3826508, -0.8535617), (-0.3535686, -0.3826508, -0.8535617), (-0.31820664, -0.5555392, -0.7681932), (-0.16222693, -0.5555392, -0.8155112), (-0.18025506, -0.3826508, -0.90613824), (-0.18025506, -0.3826508, -0.90613824), (-0.16222693, -0.5555392, -0.8155112), (-0.00001306102, -0.5555392, -0.83149034), (-0.000014512479, -0.3826508, -0.92389303), (-0.000014512479, -0.3826508, -0.92389303), (-0.00001306102, -0.5555392, -0.83149034), (0.1622013, -0.5555392, -0.81551635), (0.18022658, -0.3826508, -0.9061439), (0.18022658, -0.3826508, -0.9061439), (0.1622013, -0.5555392, -0.81551635), (0.3181825, -0.5555392, -0.76820314), (0.35354182, -0.3826508, -0.85357285), (0.35354182, -0.3826508, -0.85357285), (0.3181825, -0.5555392, -0.76820314), (0.46193635, -0.5555392, -0.69136894), (0.5132709, -0.3826508, -0.7682001), (0.5132709, -0.3826508, -0.7682001), (0.46193635, -0.5555392, -0.69136894), (0.5879386, -0.5555392, -0.5879663), (0.65327567, -0.3826508, -0.6533064), (0.65327567, -0.3826508, -0.6533064), (0.5879386, -0.5555392, -0.5879663), (0.6913472, -0.5555392, -0.46196893), (0.7681759, -0.3826508, -0.5133071), (0.7681759, -0.3826508, -0.5133071), (0.6913472, -0.5555392, -0.46196893), (0.7681882, -0.5555392, -0.3182187), (0.85355616, -0.3826508, -0.35358202), (0.85355616, -0.3826508, -0.35358202), (0.7681882, -0.5555392, -0.3182187), (0.8155087, -0.5555392, -0.16223973), (0.9061354, -0.3826508, -0.18026929), (0.9061354, -0.3826508, -0.18026929), (0.8155087, -0.5555392, -0.16223973), (0.83149034, -0.5555392, -0.00002612204), (0.92389303, -0.3826508, -0.000029024957), (0.92389303, -0.3826508, -0.000029024957), (0.83149034, -0.5555392, -0.00002612204), (0.8155189, -0.5555392, 0.1621885), (0.9061467, -0.3826508, 0.18021235), (0.9061467, -0.3826508, 0.18021235), (0.8155189, -0.5555392, 0.1621885), (0.76820815, -0.5555392, 0.31817043), (0.8535784, -0.3826508, 0.3535284), (0.8535784, -0.3826508, 0.3535284), (0.76820815, -0.5555392, 0.31817043), (0.6913762, -0.5555392, 0.46192548), (0.76820815, -0.3826508, 0.5132588), (0.76820815, -0.3826508, 0.5132588), (0.6913762, -0.5555392, 0.46192548), (0.58797556, -0.5555392, 0.58792937), (0.6533167, -0.3826508, 0.6532654), (0.6533167, -0.3826508, 0.6532654), (0.58797556, -0.5555392, 0.58792937), (0.46197978, -0.5555392, 0.6913399), (0.51331913, -0.3826508, 0.76816785), (0.51331913, -0.3826508, 0.76816785), (0.46197978, -0.5555392, 0.6913399), (0.31823075, -0.5555392, 0.7681832), (0.35359544, -0.3826508, 0.8535506), (0.35359544, -0.3826508, 0.8535506), (0.31823075, -0.5555392, 0.7681832), (0.16225255, -0.5555392, 0.81550616), (0.18028352, -0.3826508, 0.9061326), (0.18028352, -0.3826508, 0.9061326), (0.16225255, -0.5555392, 0.81550616), (0.000039183058, -0.5555392, 0.83149034), (0.000043537435, -0.3826508, 0.92389303), (0.000043537435, -0.3826508, 0.92389303), (0.000039183058, -0.5555392, 0.83149034), (-0.16217569, -0.5555392, 0.8155214), (-0.18019812, -0.3826508, 0.90614957), (-0.18019812, -0.3826508, 0.90614957), (-0.16217569, -0.5555392, 0.8155214), (-0.31815836, -0.5555392, 0.76821315), (-0.353515, -0.3826508, 0.85358393), (-0.353515, -0.3826508, 0.85358393), (-0.31815836, -0.5555392, 0.76821315), (-0.46191463, -0.5555392, 0.6913834), (-0.5132468, -0.3826508, 0.7682162), (-0.5132468, -0.3826508, 0.7682162), (-0.46191463, -0.5555392, 0.6913834), (-0.5879201, -0.5555392, 0.5879848), (-0.6532551, -0.3826508, 0.653327), (-0.6532551, -0.3826508, 0.653327), (-0.5879201, -0.5555392, 0.5879848), (-0.69133264, -0.5555392, 0.46199065), (-0.76815975, -0.3826508, 0.51333123), (-0.76815975, -0.3826508, 0.51333123), (-0.69133264, -0.5555392, 0.46199065), (-0.76817816, -0.5555392, 0.31824282), (-0.85354507, -0.3826508, 0.35360885), (-0.85354507, -0.3826508, 0.35360885), (-0.76817816, -0.5555392, 0.31824282), (-0.8155036, -0.5555392, 0.16226536), (-0.9061297, -0.3826508, 0.18029775), (-0.9061297, -0.3826508, 0.18029775), (-0.8155036, -0.5555392, 0.16226536), (-0.83149034, -0.5555392, 2.0365639e-16), (-0.92389303, -0.3826508, 2.2628853e-16), (-0.92389303, -0.3826508, 2.2628853e-16), (-0.83149034, -0.5555392, 2.0365639e-16), (-0.83149034, -0.5555392, 0), (-0.92389303, -0.3826508, 0), (-0.83149034, -0.5555392, 0), (-0.70713454, -0.707079, 0), (-0.6935474, -0.707079, -0.13795374), (-0.8155138, -0.5555392, -0.16221412), (-0.8155138, -0.5555392, -0.16221412), (-0.6935474, -0.707079, -0.13795374), (-0.6533082, -0.707079, -0.2706061), (-0.76819813, -0.5555392, -0.31819457), (-0.76819813, -0.5555392, -0.31819457), (-0.6533082, -0.707079, -0.2706061), (-0.5879632, -0.707079, -0.39285943), (-0.69136167, -0.5555392, -0.4619472), (-0.69136167, -0.5555392, -0.4619472), (-0.5879632, -0.707079, -0.39285943), (-0.50002354, -0.707079, -0.50001574), (-0.5879571, -0.5555392, -0.58794785), (-0.5879571, -0.5555392, -0.58794785), (-0.50002354, -0.707079, -0.50001574), (-0.39286867, -0.707079, -0.587957), (-0.46195808, -0.5555392, -0.6913544), (-0.46195808, -0.5555392, -0.6913544), (-0.39286867, -0.707079, -0.587957), (-0.27061638, -0.707079, -0.6533039), (-0.31820664, -0.5555392, -0.7681932), (-0.31820664, -0.5555392, -0.7681932), (-0.27061638, -0.707079, -0.6533039), (-0.13796464, -0.707079, -0.6935453), (-0.16222693, -0.5555392, -0.8155112), (-0.16222693, -0.5555392, -0.8155112), (-0.13796464, -0.707079, -0.6935453), (-0.000011107643, -0.707079, -0.70713454), (-0.00001306102, -0.5555392, -0.83149034), (-0.00001306102, -0.5555392, -0.83149034), (-0.000011107643, -0.707079, -0.70713454), (0.13794285, -0.707079, -0.6935496), (0.1622013, -0.5555392, -0.81551635), (0.1622013, -0.5555392, -0.81551635), (0.13794285, -0.707079, -0.6935496), (0.27059585, -0.707079, -0.65331244), (0.3181825, -0.5555392, -0.76820314), (0.3181825, -0.5555392, -0.76820314), (0.27059585, -0.707079, -0.65331244), (0.39285022, -0.707079, -0.58796936), (0.46193635, -0.5555392, -0.69136894), (0.46193635, -0.5555392, -0.69136894), (0.39285022, -0.707079, -0.58796936), (0.50000787, -0.707079, -0.5000314), (0.5879386, -0.5555392, -0.5879663), (0.5879386, -0.5555392, -0.5879663), (0.50000787, -0.707079, -0.5000314), (0.5879509, -0.707079, -0.3928779), (0.6913472, -0.5555392, -0.46196893), (0.6913472, -0.5555392, -0.46196893), (0.5879509, -0.707079, -0.3928779), (0.6532997, -0.707079, -0.27062663), (0.7681882, -0.5555392, -0.3182187), (0.7681882, -0.5555392, -0.3182187), (0.6532997, -0.707079, -0.27062663), (0.6935431, -0.707079, -0.13797553), (0.8155087, -0.5555392, -0.16223973), (0.8155087, -0.5555392, -0.16223973), (0.6935431, -0.707079, -0.13797553), (0.70713454, -0.707079, -0.000022215287), (0.83149034, -0.5555392, -0.00002612204), (0.83149034, -0.5555392, -0.00002612204), (0.70713454, -0.707079, -0.000022215287), (0.6935518, -0.707079, 0.13793196), (0.8155189, -0.5555392, 0.1621885), (0.8155189, -0.5555392, 0.1621885), (0.6935518, -0.707079, 0.13793196), (0.6533167, -0.707079, 0.2705856), (0.76820815, -0.5555392, 0.31817043), (0.76820815, -0.5555392, 0.31817043), (0.6533167, -0.707079, 0.2705856), (0.58797556, -0.707079, 0.39284098), (0.6913762, -0.5555392, 0.46192548), (0.6913762, -0.5555392, 0.46192548), (0.58797556, -0.707079, 0.39284098), (0.5000393, -0.707079, 0.5), (0.58797556, -0.5555392, 0.58792937), (0.58797556, -0.5555392, 0.58792937), (0.5000393, -0.707079, 0.5), (0.39288715, -0.707079, 0.5879447), (0.46197978, -0.5555392, 0.6913399), (0.46197978, -0.5555392, 0.6913399), (0.39288715, -0.707079, 0.5879447), (0.2706369, -0.707079, 0.65329546), (0.31823075, -0.5555392, 0.7681832), (0.31823075, -0.5555392, 0.7681832), (0.2706369, -0.707079, 0.65329546), (0.13798642, -0.707079, 0.69354093), (0.16225255, -0.5555392, 0.81550616), (0.16225255, -0.5555392, 0.81550616), (0.13798642, -0.707079, 0.69354093), (0.00003332293, -0.707079, 0.70713454), (0.000039183058, -0.5555392, 0.83149034), (0.000039183058, -0.5555392, 0.83149034), (0.00003332293, -0.707079, 0.70713454), (-0.13792107, -0.707079, 0.6935539), (-0.16217569, -0.5555392, 0.8155214), (-0.16217569, -0.5555392, 0.8155214), (-0.13792107, -0.707079, 0.6935539), (-0.2705753, -0.707079, 0.65332097), (-0.31815836, -0.5555392, 0.76821315), (-0.31815836, -0.5555392, 0.76821315), (-0.2705753, -0.707079, 0.65332097), (-0.39283174, -0.707079, 0.5879817), (-0.46191463, -0.5555392, 0.6913834), (-0.46191463, -0.5555392, 0.6913834), (-0.39283174, -0.707079, 0.5879817), (-0.49999213, -0.707079, 0.50004715), (-0.5879201, -0.5555392, 0.5879848), (-0.5879201, -0.5555392, 0.5879848), (-0.49999213, -0.707079, 0.50004715), (-0.58793855, -0.707079, 0.39289638), (-0.69133264, -0.5555392, 0.46199065), (-0.69133264, -0.5555392, 0.46199065), (-0.58793855, -0.707079, 0.39289638), (-0.65329117, -0.707079, 0.27064717), (-0.76817816, -0.5555392, 0.31824282), (-0.76817816, -0.5555392, 0.31824282), (-0.65329117, -0.707079, 0.27064717), (-0.6935388, -0.707079, 0.13799731), (-0.8155036, -0.5555392, 0.16226536), (-0.8155036, -0.5555392, 0.16226536), (-0.6935388, -0.707079, 0.13799731), (-0.70713454, -0.707079, 1.7319801e-16), (-0.83149034, -0.5555392, 2.0365639e-16), (-0.83149034, -0.5555392, 2.0365639e-16), (-0.70713454, -0.707079, 1.7319801e-16), (-0.70713454, -0.707079, 0), (-0.83149034, -0.5555392, 0), (-0.70713454, -0.707079, 0), (-0.5556045, -0.8314467, 0), (-0.54492897, -0.8314467, -0.10839199), (-0.6935474, -0.707079, -0.13795374), (-0.6935474, -0.707079, -0.13795374), (-0.54492897, -0.8314467, -0.10839199), (-0.51331246, -0.8314467, -0.21261863), (-0.6533082, -0.707079, -0.2706061), (-0.6533082, -0.707079, -0.2706061), (-0.51331246, -0.8314467, -0.21261863), (-0.4619701, -0.8314467, -0.3086746), (-0.5879632, -0.707079, -0.39285943), (-0.5879632, -0.707079, -0.39285943), (-0.4619701, -0.8314467, -0.3086746), (-0.3928748, -0.8314467, -0.39286864), (-0.50002354, -0.707079, -0.50001574), (-0.50002354, -0.707079, -0.50001574), (-0.3928748, -0.8314467, -0.39286864), (-0.30868188, -0.8314467, -0.46196523), (-0.39286867, -0.707079, -0.587957), (-0.39286867, -0.707079, -0.587957), (-0.30868188, -0.8314467, -0.46196523), (-0.2126267, -0.8314467, -0.5133091), (-0.27061638, -0.707079, -0.6533039), (-0.27061638, -0.707079, -0.6533039), (-0.2126267, -0.8314467, -0.5133091), (-0.10840055, -0.8314467, -0.54492724), (-0.13796464, -0.707079, -0.6935453), (-0.13796464, -0.707079, -0.6935453), (-0.10840055, -0.8314467, -0.54492724), (-0.000008727416, -0.8314467, -0.5556045), (-0.000011107643, -0.707079, -0.70713454), (-0.000011107643, -0.707079, -0.70713454), (-0.000008727416, -0.8314467, -0.5556045), (0.10838343, -0.8314467, -0.54493064), (0.13794285, -0.707079, -0.6935496), (0.13794285, -0.707079, -0.6935496), (0.10838343, -0.8314467, -0.54493064), (0.21261056, -0.8314467, -0.5133158), (0.27059585, -0.707079, -0.65331244), (0.27059585, -0.707079, -0.65331244), (0.21261056, -0.8314467, -0.5133158), (0.30866736, -0.8314467, -0.46197495), (0.39285022, -0.707079, -0.58796936), (0.39285022, -0.707079, -0.58796936), (0.30866736, -0.8314467, -0.46197495), (0.39286247, -0.8314467, -0.39288098), (0.50000787, -0.707079, -0.5000314), (0.50000787, -0.707079, -0.5000314), (0.39286247, -0.8314467, -0.39288098), (0.4619604, -0.8314467, -0.30868912), (0.5879509, -0.707079, -0.3928779), (0.5879509, -0.707079, -0.3928779), (0.4619604, -0.8314467, -0.30868912), (0.5133058, -0.8314467, -0.21263476), (0.6532997, -0.707079, -0.27062663), (0.6532997, -0.707079, -0.27062663), (0.5133058, -0.8314467, -0.21263476), (0.5449255, -0.8314467, -0.108409114), (0.6935431, -0.707079, -0.13797553), (0.6935431, -0.707079, -0.13797553), (0.5449255, -0.8314467, -0.108409114), (0.5556045, -0.8314467, -0.000017454831), (0.70713454, -0.707079, -0.000022215287), (0.70713454, -0.707079, -0.000022215287), (0.5556045, -0.8314467, -0.000017454831), (0.54493237, -0.8314467, 0.10837487), (0.6935518, -0.707079, 0.13793196), (0.6935518, -0.707079, 0.13793196), (0.54493237, -0.8314467, 0.10837487), (0.51331913, -0.8314467, 0.2126025), (0.6533167, -0.707079, 0.2705856), (0.6533167, -0.707079, 0.2705856), (0.51331913, -0.8314467, 0.2126025), (0.46197978, -0.8314467, 0.3086601), (0.58797556, -0.707079, 0.39284098), (0.58797556, -0.707079, 0.39284098), (0.46197978, -0.8314467, 0.3086601), (0.39288715, -0.8314467, 0.3928563), (0.5000393, -0.707079, 0.5), (0.5000393, -0.707079, 0.5), (0.39288715, -0.8314467, 0.3928563), (0.3086964, -0.8314467, 0.46195555), (0.39288715, -0.707079, 0.5879447), (0.39288715, -0.707079, 0.5879447), (0.3086964, -0.8314467, 0.46195555), (0.21264282, -0.8314467, 0.51330245), (0.2706369, -0.707079, 0.65329546), (0.2706369, -0.707079, 0.65329546), (0.21264282, -0.8314467, 0.51330245), (0.108417675, -0.8314467, 0.54492384), (0.13798642, -0.707079, 0.69354093), (0.13798642, -0.707079, 0.69354093), (0.108417675, -0.8314467, 0.54492384), (0.000026182246, -0.8314467, 0.5556045), (0.00003332293, -0.707079, 0.70713454), (0.00003332293, -0.707079, 0.70713454), (0.000026182246, -0.8314467, 0.5556045), (-0.10836632, -0.8314467, 0.54493403), (-0.13792107, -0.707079, 0.6935539), (-0.13792107, -0.707079, 0.6935539), (-0.10836632, -0.8314467, 0.54493403), (-0.21259443, -0.8314467, 0.5133225), (-0.2705753, -0.707079, 0.65332097), (-0.2705753, -0.707079, 0.65332097), (-0.21259443, -0.8314467, 0.5133225), (-0.30865285, -0.8314467, 0.46198463), (-0.39283174, -0.707079, 0.5879817), (-0.39283174, -0.707079, 0.5879817), (-0.30865285, -0.8314467, 0.46198463), (-0.39285013, -0.8314467, 0.3928933), (-0.49999213, -0.707079, 0.50004715), (-0.49999213, -0.707079, 0.50004715), (-0.39285013, -0.8314467, 0.3928933), (-0.4619507, -0.8314467, 0.30870363), (-0.58793855, -0.707079, 0.39289638), (-0.58793855, -0.707079, 0.39289638), (-0.4619507, -0.8314467, 0.30870363), (-0.5132991, -0.8314467, 0.21265088), (-0.65329117, -0.707079, 0.27064717), (-0.65329117, -0.707079, 0.27064717), (-0.5132991, -0.8314467, 0.21265088), (-0.5449221, -0.8314467, 0.108426236), (-0.6935388, -0.707079, 0.13799731), (-0.6935388, -0.707079, 0.13799731), (-0.5449221, -0.8314467, 0.108426236), (-0.5556045, -0.8314467, 1.3608386e-16), (-0.70713454, -0.707079, 1.7319801e-16), (-0.70713454, -0.707079, 1.7319801e-16), (-0.5556045, -0.8314467, 1.3608386e-16), (-0.5556045, -0.8314467, 0), (-0.70713454, -0.707079, 0), (-0.5556045, -0.8314467, 0), (-0.38272333, -0.923863, 0), (-0.37536958, -0.923863, -0.07466488), (-0.54492897, -0.8314467, -0.10839199), (-0.54492897, -0.8314467, -0.10839199), (-0.37536958, -0.923863, -0.07466488), (-0.35359085, -0.923863, -0.14646049), (-0.51331246, -0.8314467, -0.21261863), (-0.51331246, -0.8314467, -0.21261863), (-0.35359085, -0.923863, -0.14646049), (-0.31822407, -0.923863, -0.21262783), (-0.4619701, -0.8314467, -0.3086746), (-0.4619701, -0.8314467, -0.3086746), (-0.31822407, -0.923863, -0.21262783), (-0.2706284, -0.923863, -0.27062413), (-0.3928748, -0.8314467, -0.39286864), (-0.3928748, -0.8314467, -0.39286864), (-0.2706284, -0.923863, -0.27062413), (-0.21263282, -0.923863, -0.31822073), (-0.30868188, -0.8314467, -0.46196523), (-0.30868188, -0.8314467, -0.46196523), (-0.21263282, -0.923863, -0.31822073), (-0.14646605, -0.923863, -0.35358852), (-0.2126267, -0.8314467, -0.5133091), (-0.2126267, -0.8314467, -0.5133091), (-0.14646605, -0.923863, -0.35358852), (-0.07467078, -0.923863, -0.3753684), (-0.10840055, -0.8314467, -0.54492724), (-0.10840055, -0.8314467, -0.54492724), (-0.07467078, -0.923863, -0.3753684), (-0.000006011804, -0.923863, -0.38272333), (-0.000008727416, -0.8314467, -0.5556045), (-0.000008727416, -0.8314467, -0.5556045), (-0.000006011804, -0.923863, -0.38272333), (0.07465899, -0.923863, -0.37537074), (0.10838343, -0.8314467, -0.54493064), (0.10838343, -0.8314467, -0.54493064), (0.07465899, -0.923863, -0.37537074), (0.14645495, -0.923863, -0.35359314), (0.21261056, -0.8314467, -0.5133158), (0.21261056, -0.8314467, -0.5133158), (0.14645495, -0.923863, -0.35359314), (0.21262282, -0.923863, -0.3182274), (0.30866736, -0.8314467, -0.46197495), (0.30866736, -0.8314467, -0.46197495), (0.21262282, -0.923863, -0.3182274), (0.2706199, -0.923863, -0.27063265), (0.39286247, -0.8314467, -0.39288098), (0.39286247, -0.8314467, -0.39288098), (0.2706199, -0.923863, -0.27063265), (0.3182174, -0.923863, -0.21263781), (0.4619604, -0.8314467, -0.30868912), (0.4619604, -0.8314467, -0.30868912), (0.3182174, -0.923863, -0.21263781), (0.35358623, -0.923863, -0.1464716), (0.5133058, -0.8314467, -0.21263476), (0.5133058, -0.8314467, -0.21263476), (0.35358623, -0.923863, -0.1464716), (0.37536722, -0.923863, -0.07467668), (0.5449255, -0.8314467, -0.108409114), (0.5449255, -0.8314467, -0.108409114), (0.37536722, -0.923863, -0.07467668), (0.38272333, -0.923863, -0.000012023608), (0.5556045, -0.8314467, -0.000017454831), (0.5556045, -0.8314467, -0.000017454831), (0.38272333, -0.923863, -0.000012023608), (0.3753719, -0.923863, 0.07465309), (0.54493237, -0.8314467, 0.10837487), (0.54493237, -0.8314467, 0.10837487), (0.3753719, -0.923863, 0.07465309), (0.35359544, -0.923863, 0.14644939), (0.51331913, -0.8314467, 0.2126025), (0.51331913, -0.8314467, 0.2126025), (0.35359544, -0.923863, 0.14644939), (0.31823075, -0.923863, 0.21261783), (0.46197978, -0.8314467, 0.3086601), (0.46197978, -0.8314467, 0.3086601), (0.31823075, -0.923863, 0.21261783), (0.2706369, -0.923863, 0.27061564), (0.39288715, -0.8314467, 0.3928563), (0.39288715, -0.8314467, 0.3928563), (0.2706369, -0.923863, 0.27061564), (0.21264282, -0.923863, 0.31821406), (0.3086964, -0.8314467, 0.46195555), (0.3086964, -0.8314467, 0.46195555), (0.21264282, -0.923863, 0.31821406), (0.14647716, -0.923863, 0.35358393), (0.21264282, -0.8314467, 0.51330245), (0.21264282, -0.8314467, 0.51330245), (0.14647716, -0.923863, 0.35358393), (0.07468257, -0.923863, 0.37536603), (0.108417675, -0.8314467, 0.54492384), (0.108417675, -0.8314467, 0.54492384), (0.07468257, -0.923863, 0.37536603), (0.000018035413, -0.923863, 0.38272333), (0.000026182246, -0.8314467, 0.5556045), (0.000026182246, -0.8314467, 0.5556045), (0.000018035413, -0.923863, 0.38272333), (-0.074647196, -0.923863, 0.3753731), (-0.10836632, -0.8314467, 0.54493403), (-0.10836632, -0.8314467, 0.54493403), (-0.074647196, -0.923863, 0.3753731), (-0.14644383, -0.923863, 0.35359773), (-0.21259443, -0.8314467, 0.5133225), (-0.21259443, -0.8314467, 0.5133225), (-0.14644383, -0.923863, 0.35359773), (-0.21261282, -0.923863, 0.3182341), (-0.30865285, -0.8314467, 0.46198463), (-0.30865285, -0.8314467, 0.46198463), (-0.21261282, -0.923863, 0.3182341), (-0.2706114, -0.923863, 0.27064115), (-0.39285013, -0.8314467, 0.3928933), (-0.39285013, -0.8314467, 0.3928933), (-0.2706114, -0.923863, 0.27064115), (-0.31821072, -0.923863, 0.21264781), (-0.4619507, -0.8314467, 0.30870363), (-0.4619507, -0.8314467, 0.30870363), (-0.31821072, -0.923863, 0.21264781), (-0.35358164, -0.923863, 0.1464827), (-0.5132991, -0.8314467, 0.21265088), (-0.5132991, -0.8314467, 0.21265088), (-0.35358164, -0.923863, 0.1464827), (-0.37536487, -0.923863, 0.074688464), (-0.5449221, -0.8314467, 0.108426236), (-0.5449221, -0.8314467, 0.108426236), (-0.37536487, -0.923863, 0.074688464), (-0.38272333, -0.923863, 9.3740183e-17), (-0.5556045, -0.8314467, 1.3608386e-16), (-0.5556045, -0.8314467, 1.3608386e-16), (-0.38272333, -0.923863, 9.3740183e-17), (-0.38272333, -0.923863, 0), (-0.5556045, -0.8314467, 0), (-0.38272333, -0.923863, 0), (-0.19513461, -0.9807765, 0), (-0.19138524, -0.9807765, -0.0380685), (-0.37536958, -0.923863, -0.07466488), (-0.37536958, -0.923863, -0.07466488), (-0.19138524, -0.9807765, -0.0380685), (-0.18028116, -0.9807765, -0.07467408), (-0.35359085, -0.923863, -0.14646049), (-0.35359085, -0.923863, -0.14646049), (-0.18028116, -0.9807765, -0.07467408), (-0.16224915, -0.9807765, -0.10841003), (-0.31822407, -0.923863, -0.21262783), (-0.31822407, -0.923863, -0.21262783), (-0.16224915, -0.9807765, -0.10841003), (-0.1379821, -0.9807765, -0.13797992), (-0.2706284, -0.923863, -0.27062413), (-0.2706284, -0.923863, -0.27062413), (-0.1379821, -0.9807765, -0.13797992), (-0.10841258, -0.9807765, -0.16224743), (-0.21263282, -0.923863, -0.31822073), (-0.21263282, -0.923863, -0.31822073), (-0.10841258, -0.9807765, -0.16224743), (-0.07467691, -0.9807765, -0.18028), (-0.14646605, -0.923863, -0.35358852), (-0.14646605, -0.923863, -0.35358852), (-0.07467691, -0.9807765, -0.18028), (-0.038071506, -0.9807765, -0.19138463), (-0.07467078, -0.923863, -0.3753684), (-0.07467078, -0.923863, -0.3753684), (-0.038071506, -0.9807765, -0.19138463), (-0.0000030651674, -0.9807765, -0.19513461), (-0.000006011804, -0.923863, -0.38272333), (-0.000006011804, -0.923863, -0.38272333), (-0.0000030651674, -0.9807765, -0.19513461), (0.038065493, -0.9807765, -0.19138584), (0.07465899, -0.923863, -0.37537074), (0.07465899, -0.923863, -0.37537074), (0.038065493, -0.9807765, -0.19138584), (0.074671246, -0.9807765, -0.18028234), (0.14645495, -0.923863, -0.35359314), (0.14645495, -0.923863, -0.35359314), (0.074671246, -0.9807765, -0.18028234), (0.10840748, -0.9807765, -0.16225085), (0.21262282, -0.923863, -0.3182274), (0.21262282, -0.923863, -0.3182274), (0.10840748, -0.9807765, -0.16225085), (0.13797776, -0.9807765, -0.13798426), (0.2706199, -0.923863, -0.27063265), (0.2706199, -0.923863, -0.27063265), (0.13797776, -0.9807765, -0.13798426), (0.16224574, -0.9807765, -0.10841513), (0.3182174, -0.923863, -0.21263781), (0.3182174, -0.923863, -0.21263781), (0.16224574, -0.9807765, -0.10841513), (0.18027882, -0.9807765, -0.07467974), (0.35358623, -0.923863, -0.1464716), (0.35358623, -0.923863, -0.1464716), (0.18027882, -0.9807765, -0.07467974), (0.19138403, -0.9807765, -0.038074512), (0.37536722, -0.923863, -0.07467668), (0.37536722, -0.923863, -0.07467668), (0.19138403, -0.9807765, -0.038074512), (0.19513461, -0.9807765, -0.000006130335), (0.38272333, -0.923863, -0.000012023608), (0.38272333, -0.923863, -0.000012023608), (0.19513461, -0.9807765, -0.000006130335), (0.19138643, -0.9807765, 0.038062487), (0.3753719, -0.923863, 0.07465309), (0.3753719, -0.923863, 0.07465309), (0.19138643, -0.9807765, 0.038062487), (0.18028352, -0.9807765, 0.074668415), (0.35359544, -0.923863, 0.14644939), (0.35359544, -0.923863, 0.14644939), (0.18028352, -0.9807765, 0.074668415), (0.16225255, -0.9807765, 0.10840493), (0.31823075, -0.923863, 0.21261783), (0.31823075, -0.923863, 0.21261783), (0.16225255, -0.9807765, 0.10840493), (0.13798642, -0.9807765, 0.13797559), (0.2706369, -0.923863, 0.27061564), (0.2706369, -0.923863, 0.27061564), (0.13798642, -0.9807765, 0.13797559), (0.108417675, -0.9807765, 0.16224404), (0.21264282, -0.923863, 0.31821406), (0.21264282, -0.923863, 0.31821406), (0.108417675, -0.9807765, 0.16224404), (0.07468257, -0.9807765, 0.18027765), (0.14647716, -0.923863, 0.35358393), (0.14647716, -0.923863, 0.35358393), (0.07468257, -0.9807765, 0.18027765), (0.03807752, -0.9807765, 0.19138344), (0.07468257, -0.923863, 0.37536603), (0.07468257, -0.923863, 0.37536603), (0.03807752, -0.9807765, 0.19138344), (0.000009195502, -0.9807765, 0.19513461), (0.000018035413, -0.923863, 0.38272333), (0.000018035413, -0.923863, 0.38272333), (0.000009195502, -0.9807765, 0.19513461), (-0.03805948, -0.9807765, 0.19138703), (-0.074647196, -0.923863, 0.3753731), (-0.074647196, -0.923863, 0.3753731), (-0.03805948, -0.9807765, 0.19138703), (-0.07466558, -0.9807765, 0.1802847), (-0.14644383, -0.923863, 0.35359773), (-0.14644383, -0.923863, 0.35359773), (-0.07466558, -0.9807765, 0.1802847), (-0.10840238, -0.9807765, 0.16225424), (-0.21261282, -0.923863, 0.3182341), (-0.21261282, -0.923863, 0.3182341), (-0.10840238, -0.9807765, 0.16225424), (-0.13797343, -0.9807765, 0.1379886), (-0.2706114, -0.923863, 0.27064115), (-0.2706114, -0.923863, 0.27064115), (-0.13797343, -0.9807765, 0.1379886), (-0.16224232, -0.9807765, 0.10842022), (-0.31821072, -0.923863, 0.21264781), (-0.31821072, -0.923863, 0.21264781), (-0.16224232, -0.9807765, 0.10842022), (-0.18027648, -0.9807765, 0.0746854), (-0.35358164, -0.923863, 0.1464827), (-0.35358164, -0.923863, 0.1464827), (-0.18027648, -0.9807765, 0.0746854), (-0.19138284, -0.9807765, 0.038080525), (-0.37536487, -0.923863, 0.074688464), (-0.37536487, -0.923863, 0.074688464), (-0.19138284, -0.9807765, 0.038080525), (-0.19513461, -0.9807765, 4.7794195e-17), (-0.38272333, -0.923863, 9.3740183e-17), (-0.38272333, -0.923863, 9.3740183e-17), (-0.19513461, -0.9807765, 4.7794195e-17), (-0.19513461, -0.9807765, 0), (-0.38272333, -0.923863, 0), (-0.19513461, -0.9807765, 0), (-0.00004712389, -1, 0), (-0.000046218436, -1, -0.000009193324), (-0.19138524, -0.9807765, -0.0380685), (-0.19138524, -0.9807765, -0.0380685), (-0.000046218436, -1, -0.000009193324), (-0.000043536867, -1, -0.00001803336), (-0.18028116, -0.9807765, -0.07467408), (-0.18028116, -0.9807765, -0.07467408), (-0.000043536867, -1, -0.00001803336), (-0.000039182236, -1, -0.0000261804), (-0.16224915, -0.9807765, -0.10841003), (-0.16224915, -0.9807765, -0.10841003), (-0.000039182236, -1, -0.0000261804), (-0.000033321885, -1, -0.00003332136), (-0.1379821, -0.9807765, -0.13797992), (-0.1379821, -0.9807765, -0.13797992), (-0.000033321885, -1, -0.00003332136), (-0.000026181015, -1, -0.000039181825), (-0.10841258, -0.9807765, -0.16224743), (-0.10841258, -0.9807765, -0.16224743), (-0.000026181015, -1, -0.000039181825), (-0.000018034045, -1, -0.000043536584), (-0.07467691, -0.9807765, -0.18028), (-0.07467691, -0.9807765, -0.18028), (-0.000018034045, -1, -0.000043536584), (-0.00000919405, -1, -0.00004621829), (-0.038071506, -0.9807765, -0.19138463), (-0.038071506, -0.9807765, -0.19138463), (-0.00000919405, -1, -0.00004621829), (-7.4022033e-10, -1, -0.00004712389), (-0.0000030651674, -0.9807765, -0.19513461), (-0.0000030651674, -0.9807765, -0.19513461), (-7.4022033e-10, -1, -0.00004712389), (0.000009192598, -1, -0.00004621858), (0.038065493, -0.9807765, -0.19138584), (0.038065493, -0.9807765, -0.19138584), (0.000009192598, -1, -0.00004621858), (0.000018032677, -1, -0.00004353715), (0.074671246, -0.9807765, -0.18028234), (0.074671246, -0.9807765, -0.18028234), (0.000018032677, -1, -0.00004353715), (0.000026179785, -1, -0.000039182647), (0.10840748, -0.9807765, -0.16225085), (0.10840748, -0.9807765, -0.16225085), (0.000026179785, -1, -0.000039182647), (0.000033320837, -1, -0.00003332241), (0.13797776, -0.9807765, -0.13798426), (0.13797776, -0.9807765, -0.13798426), (0.000033320837, -1, -0.00003332241), (0.000039181414, -1, -0.000026181631), (0.16224574, -0.9807765, -0.10841513), (0.16224574, -0.9807765, -0.10841513), (0.000039181414, -1, -0.000026181631), (0.0000435363, -1, -0.000018034729), (0.18027882, -0.9807765, -0.07467974), (0.18027882, -0.9807765, -0.07467974), (0.0000435363, -1, -0.000018034729), (0.000046218145, -1, -0.000009194776), (0.19138403, -0.9807765, -0.038074512), (0.19138403, -0.9807765, -0.038074512), (0.000046218145, -1, -0.000009194776), (0.00004712389, -1, -1.4804407e-9), (0.19513461, -0.9807765, -0.000006130335), (0.19513461, -0.9807765, -0.000006130335), (0.00004712389, -1, -1.4804407e-9), (0.000046218724, -1, 0.000009191872), (0.19138643, -0.9807765, 0.038062487), (0.19138643, -0.9807765, 0.038062487), (0.000046218724, -1, 0.000009191872), (0.000043537435, -1, 0.000018031993), (0.18028352, -0.9807765, 0.074668415), (0.18028352, -0.9807765, 0.074668415), (0.000043537435, -1, 0.000018031993), (0.000039183058, -1, 0.000026179168), (0.16225255, -0.9807765, 0.10840493), (0.16225255, -0.9807765, 0.10840493), (0.000039183058, -1, 0.000026179168), (0.00003332293, -1, 0.000033320313), (0.13798642, -0.9807765, 0.13797559), (0.13798642, -0.9807765, 0.13797559), (0.00003332293, -1, 0.000033320313), (0.000026182246, -1, 0.000039181003), (0.108417675, -0.9807765, 0.16224404), (0.108417675, -0.9807765, 0.16224404), (0.000026182246, -1, 0.000039181003), (0.000018035413, -1, 0.00004353602), (0.07468257, -0.9807765, 0.18027765), (0.07468257, -0.9807765, 0.18027765), (0.000018035413, -1, 0.00004353602), (0.000009195502, -1, 0.000046218003), (0.03807752, -0.9807765, 0.19138344), (0.03807752, -0.9807765, 0.19138344), (0.000009195502, -1, 0.000046218003), (2.220661e-9, -1, 0.00004712389), (0.000009195502, -0.9807765, 0.19513461), (0.000009195502, -0.9807765, 0.19513461), (2.220661e-9, -1, 0.00004712389), (-0.000009191146, -1, 0.00004621887), (-0.03805948, -0.9807765, 0.19138703), (-0.03805948, -0.9807765, 0.19138703), (-0.000009191146, -1, 0.00004621887), (-0.000018031309, -1, 0.00004353772), (-0.07466558, -0.9807765, 0.1802847), (-0.07466558, -0.9807765, 0.1802847), (-0.000018031309, -1, 0.00004353772), (-0.000026178554, -1, 0.00003918347), (-0.10840238, -0.9807765, 0.16225424), (-0.10840238, -0.9807765, 0.16225424), (-0.000026178554, -1, 0.00003918347), (-0.00003331979, -1, 0.000033323453), (-0.13797343, -0.9807765, 0.1379886), (-0.13797343, -0.9807765, 0.1379886), (-0.00003331979, -1, 0.000033323453), (-0.00003918059, -1, 0.00002618286), (-0.16224232, -0.9807765, 0.10842022), (-0.16224232, -0.9807765, 0.10842022), (-0.00003918059, -1, 0.00002618286), (-0.000043535736, -1, 0.000018036097), (-0.18027648, -0.9807765, 0.0746854), (-0.18027648, -0.9807765, 0.0746854), (-0.000043535736, -1, 0.000018036097), (-0.000046217858, -1, 0.000009196228), (-0.19138284, -0.9807765, 0.038080525), (-0.19138284, -0.9807765, 0.038080525), (-0.000046217858, -1, 0.000009196228), (-0.00004712389, -1, 1.1542024e-20), (-0.19513461, -0.9807765, 4.7794195e-17), (-0.19513461, -0.9807765, 4.7794195e-17), (-0.00004712389, -1, 1.1542024e-20), (-0.00004712389, -1, 0), (-0.19513461, -0.9807765, 0), (-0.00004712389, -1, 0), (0.19504218, -0.98079485, 0), (0.19129457, -0.98079485, 0.038050465), (-0.000046218436, -1, -0.000009193324), (-0.000046218436, -1, -0.000009193324), (0.19129457, -0.98079485, 0.038050465), (0.18019576, -0.98079485, 0.0746387), (-0.000043536867, -1, -0.00001803336), (-0.000043536867, -1, -0.00001803336), (0.18019576, -0.98079485, 0.0746387), (0.16217229, -0.98079485, 0.108358674), (-0.000039182236, -1, -0.0000261804), (-0.000039182236, -1, -0.0000261804), (0.16217229, -0.98079485, 0.108358674), (0.13791673, -0.98079485, 0.13791457), (-0.000033321885, -1, -0.00003332136), (-0.000033321885, -1, -0.00003332136), (0.13791673, -0.98079485, 0.13791457), (0.10836122, -0.98079485, 0.16217057), (-0.000026181015, -1, -0.000039181825), (-0.000026181015, -1, -0.000039181825), (0.10836122, -0.98079485, 0.16217057), (0.07464153, -0.98079485, 0.1801946), (-0.000018034045, -1, -0.000043536584), (-0.000018034045, -1, -0.000043536584), (0.07464153, -0.98079485, 0.1801946), (0.03805347, -0.98079485, 0.19129397), (-0.00000919405, -1, -0.00004621829), (-0.00000919405, -1, -0.00004621829), (0.03805347, -0.98079485, 0.19129397), (0.0000030637154, -0.98079485, 0.19504218), (-7.4022033e-10, -1, -0.00004712389), (-7.4022033e-10, -1, -0.00004712389), (0.0000030637154, -0.98079485, 0.19504218), (-0.03804746, -0.98079485, 0.19129516), (0.000009192598, -1, -0.00004621858), (0.000009192598, -1, -0.00004621858), (-0.03804746, -0.98079485, 0.19129516), (-0.07463587, -0.98079485, 0.18019694), (0.000018032677, -1, -0.00004353715), (0.000018032677, -1, -0.00004353715), (-0.07463587, -0.98079485, 0.18019694), (-0.108356126, -0.98079485, 0.16217399), (0.000026179785, -1, -0.000039182647), (0.000026179785, -1, -0.000039182647), (-0.108356126, -0.98079485, 0.16217399), (-0.1379124, -0.98079485, 0.13791889), (0.000033320837, -1, -0.00003332241), (0.000033320837, -1, -0.00003332241), (-0.1379124, -0.98079485, 0.13791889), (-0.16216888, -0.98079485, 0.10836377), (0.000039181414, -1, -0.000026181631), (0.000039181414, -1, -0.000026181631), (-0.16216888, -0.98079485, 0.10836377), (-0.18019342, -0.98079485, 0.074644364), (0.0000435363, -1, -0.000018034729), (0.0000435363, -1, -0.000018034729), (-0.18019342, -0.98079485, 0.074644364), (-0.19129337, -0.98079485, 0.038056474), (0.000046218145, -1, -0.000009194776), (0.000046218145, -1, -0.000009194776), (-0.19129337, -0.98079485, 0.038056474), (-0.19504218, -0.98079485, 0.000006127431), (0.00004712389, -1, -1.4804407e-9), (0.00004712389, -1, -1.4804407e-9), (-0.19504218, -0.98079485, 0.000006127431), (-0.19129577, -0.98079485, -0.038044456), (0.000046218724, -1, 0.000009191872), (0.000046218724, -1, 0.000009191872), (-0.19129577, -0.98079485, -0.038044456), (-0.18019812, -0.98079485, -0.07463304), (0.000043537435, -1, 0.000018031993), (0.000043537435, -1, 0.000018031993), (-0.18019812, -0.98079485, -0.07463304), (-0.16217569, -0.98079485, -0.10835358), (0.000039183058, -1, 0.000026179168), (0.000039183058, -1, 0.000026179168), (-0.16217569, -0.98079485, -0.10835358), (-0.13792107, -0.98079485, -0.13791023), (0.00003332293, -1, 0.000033320313), (0.00003332293, -1, 0.000033320313), (-0.13792107, -0.98079485, -0.13791023), (-0.10836632, -0.98079485, -0.16216718), (0.000026182246, -1, 0.000039181003), (0.000026182246, -1, 0.000039181003), (-0.10836632, -0.98079485, -0.16216718), (-0.074647196, -0.98079485, -0.18019225), (0.000018035413, -1, 0.00004353602), (0.000018035413, -1, 0.00004353602), (-0.074647196, -0.98079485, -0.18019225), (-0.03805948, -0.98079485, -0.19129278), (0.000009195502, -1, 0.000046218003), (0.000009195502, -1, 0.000046218003), (-0.03805948, -0.98079485, -0.19129278), (-0.000009191146, -0.98079485, -0.19504218), (2.220661e-9, -1, 0.00004712389), (2.220661e-9, -1, 0.00004712389), (-0.000009191146, -0.98079485, -0.19504218), (0.03804145, -0.98079485, -0.19129637), (-0.000009191146, -1, 0.00004621887), (-0.000009191146, -1, 0.00004621887), (0.03804145, -0.98079485, -0.19129637), (0.07463021, -0.98079485, -0.18019928), (-0.000018031309, -1, 0.00004353772), (-0.000018031309, -1, 0.00004353772), (0.07463021, -0.98079485, -0.18019928), (0.10835103, -0.98079485, -0.16217738), (-0.000026178554, -1, 0.00003918347), (-0.000026178554, -1, 0.00003918347), (0.10835103, -0.98079485, -0.16217738), (0.13790807, -0.98079485, -0.13792323), (-0.00003331979, -1, 0.000033323453), (-0.00003331979, -1, 0.000033323453), (0.13790807, -0.98079485, -0.13792323), (0.16216548, -0.98079485, -0.10836886), (-0.00003918059, -1, 0.00002618286), (-0.00003918059, -1, 0.00002618286), (0.16216548, -0.98079485, -0.10836886), (0.18019108, -0.98079485, -0.07465003), (-0.000043535736, -1, 0.000018036097), (-0.000043535736, -1, 0.000018036097), (0.18019108, -0.98079485, -0.07465003), (0.19129218, -0.98079485, -0.038062487), (-0.000046217858, -1, 0.000009196228), (-0.000046217858, -1, 0.000009196228), (0.19129218, -0.98079485, -0.038062487), (0.19504218, -0.98079485, -4.7771556e-17), (-0.00004712389, -1, 1.1542024e-20), (-0.00004712389, -1, 1.1542024e-20), (0.19504218, -0.98079485, -4.7771556e-17), (0.19504218, -0.98079485, 0), (-0.00004712389, -1, 0), (0.19504218, -0.98079485, 0), (0.38263628, -0.92389905, 0), (0.37528417, -0.92389905, 0.074647896), (0.19129457, -0.98079485, 0.038050465), (0.19129457, -0.98079485, 0.038050465), (0.37528417, -0.92389905, 0.074647896), (0.35351038, -0.92389905, 0.14642717), (0.18019576, -0.98079485, 0.0746387), (0.18019576, -0.98079485, 0.0746387), (0.35351038, -0.92389905, 0.14642717), (0.31815168, -0.92389905, 0.21257944), (0.16217229, -0.98079485, 0.108358674), (0.16217229, -0.98079485, 0.108358674), (0.31815168, -0.92389905, 0.21257944), (0.27056682, -0.92389905, 0.27056256), (0.13791673, -0.98079485, 0.13791457), (0.13791673, -0.98079485, 0.13791457), (0.27056682, -0.92389905, 0.27056256), (0.21258445, -0.92389905, 0.31814834), (0.10836122, -0.98079485, 0.16217057), (0.10836122, -0.98079485, 0.16217057), (0.21258445, -0.92389905, 0.31814834), (0.14643273, -0.92389905, 0.35350809), (0.07464153, -0.98079485, 0.1801946), (0.07464153, -0.98079485, 0.1801946), (0.14643273, -0.92389905, 0.35350809), (0.07465379, -0.92389905, 0.375283), (0.03805347, -0.98079485, 0.19129397), (0.03805347, -0.98079485, 0.19129397), (0.07465379, -0.92389905, 0.375283), (0.000006010436, -0.92389905, 0.38263628), (0.0000030637154, -0.98079485, 0.19504218), (0.0000030637154, -0.98079485, 0.19504218), (0.000006010436, -0.92389905, 0.38263628), (-0.074642, -0.92389905, 0.37528533), (-0.03804746, -0.98079485, 0.19129516), (-0.03804746, -0.98079485, 0.19129516), (-0.074642, -0.92389905, 0.37528533), (-0.14642163, -0.92389905, 0.3535127), (-0.07463587, -0.98079485, 0.18019694), (-0.07463587, -0.98079485, 0.18019694), (-0.14642163, -0.92389905, 0.3535127), (-0.21257445, -0.92389905, 0.31815502), (-0.108356126, -0.98079485, 0.16217399), (-0.108356126, -0.98079485, 0.16217399), (-0.21257445, -0.92389905, 0.31815502), (-0.27055833, -0.92389905, 0.27057108), (-0.1379124, -0.98079485, 0.13791889), (-0.1379124, -0.98079485, 0.13791889), (-0.27055833, -0.92389905, 0.27057108), (-0.318145, -0.92389905, 0.21258944), (-0.16216888, -0.98079485, 0.10836377), (-0.16216888, -0.98079485, 0.10836377), (-0.318145, -0.92389905, 0.21258944), (-0.3535058, -0.92389905, 0.14643827), (-0.18019342, -0.98079485, 0.074644364), (-0.18019342, -0.98079485, 0.074644364), (-0.3535058, -0.92389905, 0.14643827), (-0.3752818, -0.92389905, 0.07465968), (-0.19129337, -0.98079485, 0.038056474), (-0.19129337, -0.98079485, 0.038056474), (-0.3752818, -0.92389905, 0.07465968), (-0.38263628, -0.92389905, 0.000012020872), (-0.19504218, -0.98079485, 0.000006127431), (-0.19504218, -0.98079485, 0.000006127431), (-0.38263628, -0.92389905, 0.000012020872), (-0.37528652, -0.92389905, -0.07463611), (-0.19129577, -0.98079485, -0.038044456), (-0.19129577, -0.98079485, -0.038044456), (-0.37528652, -0.92389905, -0.07463611), (-0.353515, -0.92389905, -0.14641607), (-0.18019812, -0.98079485, -0.07463304), (-0.18019812, -0.98079485, -0.07463304), (-0.353515, -0.92389905, -0.14641607), (-0.31815836, -0.92389905, -0.21256945), (-0.16217569, -0.98079485, -0.10835358), (-0.16217569, -0.98079485, -0.10835358), (-0.31815836, -0.92389905, -0.21256945), (-0.2705753, -0.92389905, -0.27055407), (-0.13792107, -0.98079485, -0.13791023), (-0.13792107, -0.98079485, -0.13791023), (-0.2705753, -0.92389905, -0.27055407), (-0.21259443, -0.92389905, -0.31814167), (-0.10836632, -0.98079485, -0.16216718), (-0.10836632, -0.98079485, -0.16216718), (-0.21259443, -0.92389905, -0.31814167), (-0.14644383, -0.92389905, -0.3535035), (-0.074647196, -0.98079485, -0.18019225), (-0.074647196, -0.98079485, -0.18019225), (-0.14644383, -0.92389905, -0.3535035), (-0.07466558, -0.92389905, -0.37528065), (-0.03805948, -0.98079485, -0.19129278), (-0.03805948, -0.98079485, -0.19129278), (-0.07466558, -0.92389905, -0.37528065), (-0.000018031309, -0.92389905, -0.38263628), (-0.000009191146, -0.98079485, -0.19504218), (-0.000009191146, -0.98079485, -0.19504218), (-0.000018031309, -0.92389905, -0.38263628), (0.07463021, -0.92389905, -0.37528768), (0.03804145, -0.98079485, -0.19129637), (0.03804145, -0.98079485, -0.19129637), (0.07463021, -0.92389905, -0.37528768), (0.14641051, -0.92389905, -0.3535173), (0.07463021, -0.98079485, -0.18019928), (0.07463021, -0.98079485, -0.18019928), (0.14641051, -0.92389905, -0.3535173), (0.21256445, -0.92389905, -0.3181617), (0.10835103, -0.98079485, -0.16217738), (0.10835103, -0.98079485, -0.16217738), (0.21256445, -0.92389905, -0.3181617), (0.27054983, -0.92389905, -0.27057958), (0.13790807, -0.98079485, -0.13792323), (0.13790807, -0.98079485, -0.13792323), (0.27054983, -0.92389905, -0.27057958), (0.31813833, -0.92389905, -0.21259944), (0.16216548, -0.98079485, -0.10836886), (0.16216548, -0.98079485, -0.10836886), (0.31813833, -0.92389905, -0.21259944), (0.3535012, -0.92389905, -0.14644939), (0.18019108, -0.98079485, -0.07465003), (0.18019108, -0.98079485, -0.07465003), (0.3535012, -0.92389905, -0.14644939), (0.3752795, -0.92389905, -0.07467148), (0.19129218, -0.98079485, -0.038062487), (0.19129218, -0.98079485, -0.038062487), (0.3752795, -0.92389905, -0.07467148), (0.38263628, -0.92389905, -9.3718855e-17), (0.19504218, -0.98079485, -4.7771556e-17), (0.19504218, -0.98079485, -4.7771556e-17), (0.38263628, -0.92389905, -9.3718855e-17), (0.38263628, -0.92389905, 0), (0.19504218, -0.98079485, 0), (0.38263628, -0.92389905, 0), (0.55552614, -0.83149904, 0), (0.5448521, -0.83149904, 0.108376704), (0.37528417, -0.92389905, 0.074647896), (0.37528417, -0.92389905, 0.074647896), (0.5448521, -0.83149904, 0.108376704), (0.5132401, -0.83149904, 0.21258864), (0.35351038, -0.92389905, 0.14642717), (0.35351038, -0.92389905, 0.14642717), (0.5132401, -0.83149904, 0.21258864), (0.46190494, -0.83149904, 0.30863106), (0.31815168, -0.92389905, 0.21257944), (0.31815168, -0.92389905, 0.21257944), (0.46190494, -0.83149904, 0.30863106), (0.3928194, -0.83149904, 0.39281324), (0.27056682, -0.92389905, 0.27056256), (0.27056682, -0.92389905, 0.27056256), (0.3928194, -0.83149904, 0.39281324), (0.30863833, -0.83149904, 0.4619001), (0.21258445, -0.92389905, 0.31814834), (0.21258445, -0.92389905, 0.31814834), (0.30863833, -0.83149904, 0.4619001), (0.2125967, -0.83149904, 0.51323676), (0.14643273, -0.92389905, 0.35350809), (0.14643273, -0.92389905, 0.35350809), (0.2125967, -0.83149904, 0.51323676), (0.108385265, -0.83149904, 0.5448504), (0.07465379, -0.92389905, 0.375283), (0.07465379, -0.92389905, 0.375283), (0.108385265, -0.83149904, 0.5448504), (0.000008726184, -0.83149904, 0.55552614), (0.000006010436, -0.92389905, 0.38263628), (0.000006010436, -0.92389905, 0.38263628), (0.000008726184, -0.83149904, 0.55552614), (-0.10836815, -0.83149904, 0.5448538), (-0.074642, -0.92389905, 0.37528533), (-0.074642, -0.92389905, 0.37528533), (-0.10836815, -0.83149904, 0.5448538), (-0.21258058, -0.83149904, 0.51324344), (-0.14642163, -0.92389905, 0.3535127), (-0.14642163, -0.92389905, 0.3535127), (-0.21258058, -0.83149904, 0.51324344), (-0.30862382, -0.83149904, 0.46190977), (-0.21257445, -0.92389905, 0.31815502), (-0.21257445, -0.92389905, 0.31815502), (-0.30862382, -0.83149904, 0.46190977), (-0.39280707, -0.83149904, 0.39282557), (-0.27055833, -0.92389905, 0.27057108), (-0.27055833, -0.92389905, 0.27057108), (-0.39280707, -0.83149904, 0.39282557), (-0.46189523, -0.83149904, 0.30864558), (-0.318145, -0.92389905, 0.21258944), (-0.318145, -0.92389905, 0.21258944), (-0.46189523, -0.83149904, 0.30864558), (-0.5132334, -0.83149904, 0.21260476), (-0.3535058, -0.92389905, 0.14643827), (-0.3535058, -0.92389905, 0.14643827), (-0.5132334, -0.83149904, 0.21260476), (-0.5448487, -0.83149904, 0.108393826), (-0.3752818, -0.92389905, 0.07465968), (-0.3752818, -0.92389905, 0.07465968), (-0.5448487, -0.83149904, 0.108393826), (-0.55552614, -0.83149904, 0.000017452368), (-0.38263628, -0.92389905, 0.000012020872), (-0.38263628, -0.92389905, 0.000012020872), (-0.55552614, -0.83149904, 0.000017452368), (-0.5448555, -0.83149904, -0.10835959), (-0.37528652, -0.92389905, -0.07463611), (-0.37528652, -0.92389905, -0.07463611), (-0.5448555, -0.83149904, -0.10835959), (-0.5132468, -0.83149904, -0.21257252), (-0.353515, -0.92389905, -0.14641607), (-0.353515, -0.92389905, -0.14641607), (-0.5132468, -0.83149904, -0.21257252), (-0.46191463, -0.83149904, -0.30861655), (-0.31815836, -0.92389905, -0.21256945), (-0.31815836, -0.92389905, -0.21256945), (-0.46191463, -0.83149904, -0.30861655), (-0.39283174, -0.83149904, -0.3928009), (-0.2705753, -0.92389905, -0.27055407), (-0.2705753, -0.92389905, -0.27055407), (-0.39283174, -0.83149904, -0.3928009), (-0.30865285, -0.83149904, -0.4618904), (-0.21259443, -0.92389905, -0.31814167), (-0.21259443, -0.92389905, -0.31814167), (-0.30865285, -0.83149904, -0.4618904), (-0.21261282, -0.83149904, -0.5132301), (-0.14644383, -0.92389905, -0.3535035), (-0.14644383, -0.92389905, -0.3535035), (-0.21261282, -0.83149904, -0.5132301), (-0.10840238, -0.83149904, -0.54484695), (-0.07466558, -0.92389905, -0.37528065), (-0.07466558, -0.92389905, -0.37528065), (-0.10840238, -0.83149904, -0.54484695), (-0.000026178554, -0.83149904, -0.55552614), (-0.000018031309, -0.92389905, -0.38263628), (-0.000018031309, -0.92389905, -0.38263628), (-0.000026178554, -0.83149904, -0.55552614), (0.10835103, -0.83149904, -0.5448572), (0.07463021, -0.92389905, -0.37528768), (0.07463021, -0.92389905, -0.37528768), (0.10835103, -0.83149904, -0.5448572), (0.21256445, -0.83149904, -0.5132501), (0.14641051, -0.92389905, -0.3535173), (0.14641051, -0.92389905, -0.3535173), (0.21256445, -0.83149904, -0.5132501), (0.3086093, -0.83149904, -0.4619195), (0.21256445, -0.92389905, -0.3181617), (0.21256445, -0.92389905, -0.3181617), (0.3086093, -0.83149904, -0.4619195), (0.3927947, -0.83149904, -0.3928379), (0.27054983, -0.92389905, -0.27057958), (0.27054983, -0.92389905, -0.27057958), (0.3927947, -0.83149904, -0.3928379), (0.46188554, -0.83149904, -0.3086601), (0.31813833, -0.92389905, -0.21259944), (0.31813833, -0.92389905, -0.21259944), (0.46188554, -0.83149904, -0.3086601), (0.51322675, -0.83149904, -0.21262088), (0.3535012, -0.92389905, -0.14644939), (0.3535012, -0.92389905, -0.14644939), (0.51322675, -0.83149904, -0.21262088), (0.5448453, -0.83149904, -0.10841094), (0.3752795, -0.92389905, -0.07467148), (0.3752795, -0.92389905, -0.07467148), (0.5448453, -0.83149904, -0.10841094), (0.55552614, -0.83149904, -1.3606466e-16), (0.38263628, -0.92389905, -9.3718855e-17), (0.38263628, -0.92389905, -9.3718855e-17), (0.55552614, -0.83149904, -1.3606466e-16), (0.55552614, -0.83149904, 0), (0.38263628, -0.92389905, 0), (0.55552614, -0.83149904, 0), (0.7070679, -0.70714563, 0), (0.69348204, -0.70714563, 0.13794075), (0.5448521, -0.83149904, 0.108376704), (0.5448521, -0.83149904, 0.108376704), (0.69348204, -0.70714563, 0.13794075), (0.65324664, -0.70714563, 0.27058062), (0.5132401, -0.83149904, 0.21258864), (0.5132401, -0.83149904, 0.21258864), (0.65324664, -0.70714563, 0.27058062), (0.5879078, -0.70714563, 0.3928224), (0.46190494, -0.83149904, 0.30863106), (0.46190494, -0.83149904, 0.30863106), (0.5879078, -0.70714563, 0.3928224), (0.49997643, -0.70714563, 0.4999686), (0.3928194, -0.83149904, 0.39281324), (0.3928194, -0.83149904, 0.39281324), (0.49997643, -0.70714563, 0.4999686), (0.39283165, -0.70714563, 0.5879016), (0.30863833, -0.83149904, 0.4619001), (0.30863833, -0.83149904, 0.4619001), (0.39283165, -0.70714563, 0.5879016), (0.27059087, -0.70714563, 0.65324235), (0.2125967, -0.83149904, 0.51323676), (0.2125967, -0.83149904, 0.51323676), (0.27059087, -0.70714563, 0.65324235), (0.13795164, -0.70714563, 0.6934799), (0.108385265, -0.83149904, 0.5448504), (0.108385265, -0.83149904, 0.5448504), (0.13795164, -0.70714563, 0.6934799), (0.0000111065965, -0.70714563, 0.7070679), (0.000008726184, -0.83149904, 0.55552614), (0.000008726184, -0.83149904, 0.55552614), (0.0000111065965, -0.70714563, 0.7070679), (-0.13792986, -0.70714563, 0.69348425), (-0.10836815, -0.83149904, 0.5448538), (-0.10836815, -0.83149904, 0.5448538), (-0.13792986, -0.70714563, 0.69348425), (-0.27057034, -0.70714563, 0.6532509), (-0.21258058, -0.83149904, 0.51324344), (-0.21258058, -0.83149904, 0.51324344), (-0.27057034, -0.70714563, 0.6532509), (-0.39281318, -0.70714563, 0.587914), (-0.30862382, -0.83149904, 0.46190977), (-0.30862382, -0.83149904, 0.46190977), (-0.39281318, -0.70714563, 0.587914), (-0.49996072, -0.70714563, 0.4999843), (-0.39280707, -0.83149904, 0.39282557), (-0.39280707, -0.83149904, 0.39282557), (-0.49996072, -0.70714563, 0.4999843), (-0.58789545, -0.70714563, 0.3928409), (-0.46189523, -0.83149904, 0.30864558), (-0.46189523, -0.83149904, 0.30864558), (-0.58789545, -0.70714563, 0.3928409), (-0.6532381, -0.70714563, 0.27060112), (-0.5132334, -0.83149904, 0.21260476), (-0.5132334, -0.83149904, 0.21260476), (-0.6532381, -0.70714563, 0.27060112), (-0.69347775, -0.70714563, 0.13796254), (-0.5448487, -0.83149904, 0.108393826), (-0.5448487, -0.83149904, 0.108393826), (-0.69347775, -0.70714563, 0.13796254), (-0.7070679, -0.70714563, 0.000022213193), (-0.55552614, -0.83149904, 0.000017452368), (-0.55552614, -0.83149904, 0.000017452368), (-0.7070679, -0.70714563, 0.000022213193), (-0.6934864, -0.70714563, -0.13791896), (-0.5448555, -0.83149904, -0.10835959), (-0.5448555, -0.83149904, -0.10835959), (-0.6934864, -0.70714563, -0.13791896), (-0.6532551, -0.70714563, -0.2705601), (-0.5132468, -0.83149904, -0.21257252), (-0.5132468, -0.83149904, -0.21257252), (-0.6532551, -0.70714563, -0.2705601), (-0.5879201, -0.70714563, -0.39280394), (-0.46191463, -0.83149904, -0.30861655), (-0.46191463, -0.83149904, -0.30861655), (-0.5879201, -0.70714563, -0.39280394), (-0.49999213, -0.70714563, -0.49995288), (-0.39283174, -0.83149904, -0.3928009), (-0.39283174, -0.83149904, -0.3928009), (-0.49999213, -0.70714563, -0.49995288), (-0.39285013, -0.70714563, -0.58788925), (-0.30865285, -0.83149904, -0.4618904), (-0.30865285, -0.83149904, -0.4618904), (-0.39285013, -0.70714563, -0.58788925), (-0.2706114, -0.70714563, -0.6532339), (-0.21261282, -0.83149904, -0.5132301), (-0.21261282, -0.83149904, -0.5132301), (-0.2706114, -0.70714563, -0.6532339), (-0.13797343, -0.70714563, -0.69347554), (-0.10840238, -0.83149904, -0.54484695), (-0.10840238, -0.83149904, -0.54484695), (-0.13797343, -0.70714563, -0.69347554), (-0.00003331979, -0.70714563, -0.7070679), (-0.000026178554, -0.83149904, -0.55552614), (-0.000026178554, -0.83149904, -0.55552614), (-0.00003331979, -0.70714563, -0.7070679), (0.13790807, -0.70714563, -0.69348854), (0.10835103, -0.83149904, -0.5448572), (0.10835103, -0.83149904, -0.5448572), (0.13790807, -0.70714563, -0.69348854), (0.27054983, -0.70714563, -0.6532594), (0.21256445, -0.83149904, -0.5132501), (0.21256445, -0.83149904, -0.5132501), (0.27054983, -0.70714563, -0.6532594), (0.3927947, -0.70714563, -0.5879263), (0.3086093, -0.83149904, -0.4619195), (0.3086093, -0.83149904, -0.4619195), (0.3927947, -0.70714563, -0.5879263), (0.499945, -0.70714563, -0.5), (0.3927947, -0.83149904, -0.3928379), (0.3927947, -0.83149904, -0.3928379), (0.499945, -0.70714563, -0.5), (0.5878831, -0.70714563, -0.39285937), (0.46188554, -0.83149904, -0.3086601), (0.46188554, -0.83149904, -0.3086601), (0.5878831, -0.70714563, -0.39285937), (0.65322965, -0.70714563, -0.27062166), (0.51322675, -0.83149904, -0.21262088), (0.51322675, -0.83149904, -0.21262088), (0.65322965, -0.70714563, -0.27062166), (0.6934734, -0.70714563, -0.13798432), (0.5448453, -0.83149904, -0.10841094), (0.5448453, -0.83149904, -0.10841094), (0.6934734, -0.70714563, -0.13798432), (0.7070679, -0.70714563, -1.7318168e-16), (0.55552614, -0.83149904, -1.3606466e-16), (0.55552614, -0.83149904, -1.3606466e-16), (0.7070679, -0.70714563, -1.7318168e-16), (0.7070679, -0.70714563, 0), (0.55552614, -0.83149904, 0), (0.7070679, -0.70714563, 0), (0.831438, -0.5556176, 0), (0.81546247, -0.5556176, 0.16220391), (0.69348204, -0.70714563, 0.13794075), (0.69348204, -0.70714563, 0.13794075), (0.81546247, -0.5556176, 0.16220391), (0.7681498, -0.5556176, 0.3181745), (0.65324664, -0.70714563, 0.27058062), (0.65324664, -0.70714563, 0.27058062), (0.7681498, -0.5556176, 0.3181745), (0.69131815, -0.5556176, 0.46191812), (0.5879078, -0.70714563, 0.3928224), (0.5879078, -0.70714563, 0.3928224), (0.69131815, -0.5556176, 0.46191812), (0.58792007, -0.5556176, 0.58791083), (0.49997643, -0.70714563, 0.4999686), (0.49997643, -0.70714563, 0.4999686), (0.58792007, -0.5556176, 0.58791083), (0.46192896, -0.5556176, 0.6913109), (0.39283165, -0.70714563, 0.5879016), (0.39283165, -0.70714563, 0.5879016), (0.46192896, -0.5556176, 0.6913109), (0.31818658, -0.5556176, 0.7681448), (0.27059087, -0.70714563, 0.65324235), (0.27059087, -0.70714563, 0.65324235), (0.31818658, -0.5556176, 0.7681448), (0.16221671, -0.5556176, 0.8154599), (0.13795164, -0.70714563, 0.6934799), (0.13795164, -0.70714563, 0.6934799), (0.16221671, -0.5556176, 0.8154599), (0.0000130601975, -0.5556176, 0.831438), (0.0000111065965, -0.70714563, 0.7070679), (0.0000111065965, -0.70714563, 0.7070679), (0.0000130601975, -0.5556176, 0.831438), (-0.1621911, -0.5556176, 0.815465), (-0.13792986, -0.70714563, 0.69348425), (-0.13792986, -0.70714563, 0.69348425), (-0.1621911, -0.5556176, 0.815465), (-0.31816244, -0.5556176, 0.7681548), (-0.27057034, -0.70714563, 0.6532509), (-0.27057034, -0.70714563, 0.6532509), (-0.31816244, -0.5556176, 0.7681548), (-0.46190727, -0.5556176, 0.69132537), (-0.39281318, -0.70714563, 0.587914), (-0.39281318, -0.70714563, 0.587914), (-0.46190727, -0.5556176, 0.69132537), (-0.5879016, -0.5556176, 0.5879293), (-0.49996072, -0.70714563, 0.4999843), (-0.49996072, -0.70714563, 0.4999843), (-0.5879016, -0.5556176, 0.5879293), (-0.6913036, -0.5556176, 0.46193984), (-0.58789545, -0.70714563, 0.3928409), (-0.58789545, -0.70714563, 0.3928409), (-0.6913036, -0.5556176, 0.46193984), (-0.7681398, -0.5556176, 0.31819865), (-0.6532381, -0.70714563, 0.27060112), (-0.6532381, -0.70714563, 0.27060112), (-0.7681398, -0.5556176, 0.31819865), (-0.81545734, -0.5556176, 0.16222952), (-0.69347775, -0.70714563, 0.13796254), (-0.69347775, -0.70714563, 0.13796254), (-0.81545734, -0.5556176, 0.16222952), (-0.831438, -0.5556176, 0.000026120395), (-0.7070679, -0.70714563, 0.000022213193), (-0.7070679, -0.70714563, 0.000022213193), (-0.831438, -0.5556176, 0.000026120395), (-0.81546754, -0.5556176, -0.16217828), (-0.6934864, -0.70714563, -0.13791896), (-0.6934864, -0.70714563, -0.13791896), (-0.81546754, -0.5556176, -0.16217828), (-0.76815975, -0.5556176, -0.3181504), (-0.6532551, -0.70714563, -0.2705601), (-0.6532551, -0.70714563, -0.2705601), (-0.76815975, -0.5556176, -0.3181504), (-0.69133264, -0.5556176, -0.4618964), (-0.5879201, -0.70714563, -0.39280394), (-0.5879201, -0.70714563, -0.39280394), (-0.69133264, -0.5556176, -0.4618964), (-0.58793855, -0.5556176, -0.58789235), (-0.49999213, -0.70714563, -0.49995288), (-0.49999213, -0.70714563, -0.49995288), (-0.58793855, -0.5556176, -0.58789235), (-0.4619507, -0.5556176, -0.69129634), (-0.39285013, -0.70714563, -0.58788925), (-0.39285013, -0.70714563, -0.58788925), (-0.4619507, -0.5556176, -0.69129634), (-0.31821072, -0.5556176, -0.7681348), (-0.2706114, -0.70714563, -0.6532339), (-0.2706114, -0.70714563, -0.6532339), (-0.31821072, -0.5556176, -0.7681348), (-0.16224232, -0.5556176, -0.8154548), (-0.13797343, -0.70714563, -0.69347554), (-0.13797343, -0.70714563, -0.69347554), (-0.16224232, -0.5556176, -0.8154548), (-0.00003918059, -0.5556176, -0.83143795), (-0.00003331979, -0.70714563, -0.7070679), (-0.00003331979, -0.70714563, -0.7070679), (-0.00003918059, -0.5556176, -0.83143795), (0.16216548, -0.5556176, -0.8154701), (0.13790807, -0.70714563, -0.69348854), (0.13790807, -0.70714563, -0.69348854), (0.16216548, -0.5556176, -0.8154701), (0.31813833, -0.5556176, -0.76816475), (0.27054983, -0.70714563, -0.6532594), (0.27054983, -0.70714563, -0.6532594), (0.31813833, -0.5556176, -0.76816475), (0.46188554, -0.5556176, -0.6913399), (0.3927947, -0.70714563, -0.5879263), (0.3927947, -0.70714563, -0.5879263), (0.46188554, -0.5556176, -0.6913399), (0.5878831, -0.5556176, -0.5879477), (0.499945, -0.70714563, -0.5), (0.499945, -0.70714563, -0.5), (0.5878831, -0.5556176, -0.5879477), (0.6912891, -0.5556176, -0.46196157), (0.5878831, -0.70714563, -0.39285937), (0.5878831, -0.70714563, -0.39285937), (0.6912891, -0.5556176, -0.46196157), (0.76812977, -0.5556176, -0.3182228), (0.65322965, -0.70714563, -0.27062166), (0.65322965, -0.70714563, -0.27062166), (0.76812977, -0.5556176, -0.3182228), (0.8154523, -0.5556176, -0.16225514), (0.6934734, -0.70714563, -0.13798432), (0.6934734, -0.70714563, -0.13798432), (0.8154523, -0.5556176, -0.16225514), (0.831438, -0.5556176, -2.0364357e-16), (0.7070679, -0.70714563, -1.7318168e-16), (0.7070679, -0.70714563, -1.7318168e-16), (0.831438, -0.5556176, -2.0364357e-16), (0.831438, -0.5556176, 0), (0.7070679, -0.70714563, 0), (0.831438, -0.5556176, 0), (0.923857, -0.38273785, 0), (0.9061057, -0.38273785, 0.18023378), (0.81546247, -0.5556176, 0.16220391), (0.81546247, -0.5556176, 0.16220391), (0.9061057, -0.38273785, 0.18023378), (0.8535339, -0.38273785, 0.3535414), (0.7681498, -0.5556176, 0.3181745), (0.7681498, -0.5556176, 0.3181745), (0.8535339, -0.38273785, 0.3535414), (0.768162, -0.38273785, 0.5132629), (0.69131815, -0.5556176, 0.46191812), (0.69131815, -0.5556176, 0.46191812), (0.768162, -0.38273785, 0.5132629), (0.65327066, -0.38273785, 0.6532604), (0.58792007, -0.5556176, 0.58791083), (0.58792007, -0.5556176, 0.58791083), (0.65327066, -0.38273785, 0.6532604), (0.51327497, -0.38273785, 0.76815397), (0.46192896, -0.5556176, 0.6913109), (0.46192896, -0.5556176, 0.6913109), (0.51327497, -0.38273785, 0.76815397), (0.35355482, -0.38273785, 0.8535284), (0.31818658, -0.5556176, 0.7681448), (0.31818658, -0.5556176, 0.7681448), (0.35355482, -0.38273785, 0.8535284), (0.180248, -0.38273785, 0.90610284), (0.16221671, -0.5556176, 0.8154599), (0.16221671, -0.5556176, 0.8154599), (0.180248, -0.38273785, 0.90610284), (0.000014511912, -0.38273785, 0.923857), (0.0000130601975, -0.5556176, 0.831438), (0.0000130601975, -0.5556176, 0.831438), (0.000014511912, -0.38273785, 0.923857), (-0.18021955, -0.38273785, 0.9061085), (-0.1621911, -0.5556176, 0.815465), (-0.1621911, -0.5556176, 0.815465), (-0.18021955, -0.38273785, 0.9061085), (-0.353528, -0.38273785, 0.8535395), (-0.31816244, -0.5556176, 0.7681548), (-0.31816244, -0.5556176, 0.7681548), (-0.353528, -0.38273785, 0.8535395), (-0.5132508, -0.38273785, 0.7681701), (-0.46190727, -0.5556176, 0.69132537), (-0.46190727, -0.5556176, 0.69132537), (-0.5132508, -0.38273785, 0.7681701), (-0.65325016, -0.38273785, 0.6532809), (-0.5879016, -0.5556176, 0.5879293), (-0.5879016, -0.5556176, 0.5879293), (-0.65325016, -0.38273785, 0.6532809), (-0.7681459, -0.38273785, 0.51328707), (-0.6913036, -0.5556176, 0.46193984), (-0.6913036, -0.5556176, 0.46193984), (-0.7681459, -0.38273785, 0.51328707), (-0.85352284, -0.38273785, 0.35356823), (-0.7681398, -0.5556176, 0.31819865), (-0.7681398, -0.5556176, 0.31819865), (-0.85352284, -0.38273785, 0.35356823), (-0.90610003, -0.38273785, 0.18026224), (-0.81545734, -0.5556176, 0.16222952), (-0.81545734, -0.5556176, 0.16222952), (-0.90610003, -0.38273785, 0.18026224), (-0.923857, -0.38273785, 0.000029023824), (-0.831438, -0.5556176, 0.000026120395), (-0.831438, -0.5556176, 0.000026120395), (-0.923857, -0.38273785, 0.000029023824), (-0.90611136, -0.38273785, -0.18020532), (-0.81546754, -0.5556176, -0.16217828), (-0.81546754, -0.5556176, -0.16217828), (-0.90611136, -0.38273785, -0.18020532), (-0.85354507, -0.38273785, -0.3535146), (-0.76815975, -0.5556176, -0.3181504), (-0.76815975, -0.5556176, -0.3181504), (-0.85354507, -0.38273785, -0.3535146), (-0.76817816, -0.38273785, -0.5132388), (-0.69133264, -0.5556176, -0.4618964), (-0.69133264, -0.5556176, -0.4618964), (-0.76817816, -0.38273785, -0.5132388), (-0.65329117, -0.38273785, -0.6532399), (-0.58793855, -0.5556176, -0.58789235), (-0.58793855, -0.5556176, -0.58789235), (-0.65329117, -0.38273785, -0.6532399), (-0.5132991, -0.38273785, -0.7681379), (-0.4619507, -0.5556176, -0.69129634), (-0.4619507, -0.5556176, -0.69129634), (-0.5132991, -0.38273785, -0.7681379), (-0.35358164, -0.38273785, -0.8535173), (-0.31821072, -0.5556176, -0.7681348), (-0.31821072, -0.5556176, -0.7681348), (-0.35358164, -0.38273785, -0.8535173), (-0.18027648, -0.38273785, -0.9060972), (-0.16224232, -0.5556176, -0.8154548), (-0.16224232, -0.5556176, -0.8154548), (-0.18027648, -0.38273785, -0.9060972), (-0.000043535736, -0.38273785, -0.923857), (-0.00003918059, -0.5556176, -0.83143795), (-0.00003918059, -0.5556176, -0.83143795), (-0.000043535736, -0.38273785, -0.923857), (0.18019108, -0.38273785, -0.90611416), (0.16216548, -0.5556176, -0.8154701), (0.16216548, -0.5556176, -0.8154701), (0.18019108, -0.38273785, -0.90611416), (0.3535012, -0.38273785, -0.8535506), (0.31813833, -0.5556176, -0.76816475), (0.31813833, -0.5556176, -0.76816475), (0.3535012, -0.38273785, -0.8535506), (0.51322675, -0.38273785, -0.7681862), (0.46188554, -0.5556176, -0.6913399), (0.46188554, -0.5556176, -0.6913399), (0.51322675, -0.38273785, -0.7681862), (0.65322965, -0.38273785, -0.6533015), (0.5878831, -0.5556176, -0.5879477), (0.5878831, -0.5556176, -0.5879477), (0.65322965, -0.38273785, -0.6533015), (0.76812977, -0.38273785, -0.5133112), (0.6912891, -0.5556176, -0.46196157), (0.6912891, -0.5556176, -0.46196157), (0.76812977, -0.38273785, -0.5133112), (0.85351175, -0.38273785, -0.35359505), (0.76812977, -0.5556176, -0.3182228), (0.76812977, -0.5556176, -0.3182228), (0.85351175, -0.38273785, -0.35359505), (0.9060944, -0.38273785, -0.18029071), (0.8154523, -0.5556176, -0.16225514), (0.8154523, -0.5556176, -0.16225514), (0.9060944, -0.38273785, -0.18029071), (0.923857, -0.38273785, -2.262797e-16), (0.831438, -0.5556176, -2.0364357e-16), (0.831438, -0.5556176, -2.0364357e-16), (0.923857, -0.38273785, -2.262797e-16), (0.923857, -0.38273785, 0), (0.831438, -0.5556176, 0), (0.923857, -0.38273785, 0), (0.9807734, -0.19515002, 0), (0.9619285, -0.19515002, 0.19133751), (0.9061057, -0.38273785, 0.18023378), (0.9061057, -0.38273785, 0.18023378), (0.9619285, -0.19515002, 0.19133751), (0.906118, -0.19515002, 0.37532216), (0.8535339, -0.38273785, 0.3535414), (0.8535339, -0.38273785, 0.3535414), (0.906118, -0.19515002, 0.37532216), (0.8154865, -0.19515002, 0.5448837), (0.768162, -0.38273785, 0.5132629), (0.768162, -0.38273785, 0.5132629), (0.8154865, -0.19515002, 0.5448837), (0.69351697, -0.19515002, 0.69350606), (0.65327066, -0.38273785, 0.6532604), (0.65327066, -0.38273785, 0.6532604), (0.69351697, -0.19515002, 0.69350606), (0.54489654, -0.19515002, 0.8154779), (0.51327497, -0.38273785, 0.76815397), (0.51327497, -0.38273785, 0.76815397), (0.54489654, -0.19515002, 0.8154779), (0.3753364, -0.19515002, 0.9061121), (0.35355482, -0.38273785, 0.8535284), (0.35355482, -0.38273785, 0.8535284), (0.3753364, -0.19515002, 0.9061121), (0.19135262, -0.19515002, 0.9619255), (0.180248, -0.38273785, 0.90610284), (0.180248, -0.38273785, 0.90610284), (0.19135262, -0.19515002, 0.9619255), (0.000015405953, -0.19515002, 0.9807734), (0.000014511912, -0.38273785, 0.923857), (0.000014511912, -0.38273785, 0.923857), (0.000015405953, -0.19515002, 0.9807734), (-0.1913224, -0.19515002, 0.9619315), (-0.18021955, -0.38273785, 0.9061085), (-0.18021955, -0.38273785, 0.9061085), (-0.1913224, -0.19515002, 0.9619315), (-0.37530795, -0.19515002, 0.9061238), (-0.353528, -0.38273785, 0.8535395), (-0.353528, -0.38273785, 0.8535395), (-0.37530795, -0.19515002, 0.9061238), (-0.5448709, -0.19515002, 0.8154951), (-0.5132508, -0.38273785, 0.7681701), (-0.5132508, -0.38273785, 0.7681701), (-0.5448709, -0.19515002, 0.8154951), (-0.69349515, -0.19515002, 0.6935279), (-0.65325016, -0.38273785, 0.6532809), (-0.65325016, -0.38273785, 0.6532809), (-0.69349515, -0.19515002, 0.6935279), (-0.8154694, -0.19515002, 0.5449093), (-0.7681459, -0.38273785, 0.51328707), (-0.7681459, -0.38273785, 0.51328707), (-0.8154694, -0.19515002, 0.5449093), (-0.9061062, -0.19515002, 0.37535065), (-0.85352284, -0.38273785, 0.35356823), (-0.85352284, -0.38273785, 0.35356823), (-0.9061062, -0.19515002, 0.37535065), (-0.96192247, -0.19515002, 0.19136773), (-0.90610003, -0.38273785, 0.18026224), (-0.90610003, -0.38273785, 0.18026224), (-0.96192247, -0.19515002, 0.19136773), (-0.9807734, -0.19515002, 0.000030811905), (-0.923857, -0.38273785, 0.000029023824), (-0.923857, -0.38273785, 0.000029023824), (-0.9807734, -0.19515002, 0.000030811905), (-0.9619345, -0.19515002, -0.19130729), (-0.90611136, -0.38273785, -0.18020532), (-0.90611136, -0.38273785, -0.18020532), (-0.9619345, -0.19515002, -0.19130729), (-0.9061297, -0.19515002, -0.3752937), (-0.85354507, -0.38273785, -0.3535146), (-0.85354507, -0.38273785, -0.3535146), (-0.9061297, -0.19515002, -0.3752937), (-0.8155036, -0.19515002, -0.5448581), (-0.76817816, -0.38273785, -0.5132388), (-0.76817816, -0.38273785, -0.5132388), (-0.8155036, -0.19515002, -0.5448581), (-0.6935388, -0.19515002, -0.6934843), (-0.65329117, -0.38273785, -0.6532399), (-0.65329117, -0.38273785, -0.6532399), (-0.6935388, -0.19515002, -0.6934843), (-0.5449221, -0.19515002, -0.8154608), (-0.5132991, -0.38273785, -0.7681379), (-0.5132991, -0.38273785, -0.7681379), (-0.5449221, -0.19515002, -0.8154608), (-0.37536487, -0.19515002, -0.9061003), (-0.35358164, -0.38273785, -0.8535173), (-0.35358164, -0.38273785, -0.8535173), (-0.37536487, -0.19515002, -0.9061003), (-0.19138284, -0.19515002, -0.9619195), (-0.18027648, -0.38273785, -0.9060972), (-0.18027648, -0.38273785, -0.9060972), (-0.19138284, -0.19515002, -0.9619195), (-0.000046217858, -0.19515002, -0.9807734), (-0.000043535736, -0.38273785, -0.923857), (-0.000043535736, -0.38273785, -0.923857), (-0.000046217858, -0.19515002, -0.9807734), (0.19129218, -0.19515002, -0.9619375), (0.18019108, -0.38273785, -0.90611416), (0.18019108, -0.38273785, -0.90611416), (0.19129218, -0.19515002, -0.9619375), (0.3752795, -0.19515002, -0.9061356), (0.3535012, -0.38273785, -0.8535506), (0.3535012, -0.38273785, -0.8535506), (0.3752795, -0.19515002, -0.9061356), (0.5448453, -0.19515002, -0.8155122), (0.51322675, -0.38273785, -0.7681862), (0.51322675, -0.38273785, -0.7681862), (0.5448453, -0.19515002, -0.8155122), (0.6934734, -0.19515002, -0.69354963), (0.65322965, -0.38273785, -0.6533015), (0.65322965, -0.38273785, -0.6533015), (0.6934734, -0.19515002, -0.69354963), (0.8154523, -0.19515002, -0.5449349), (0.76812977, -0.38273785, -0.5133112), (0.76812977, -0.38273785, -0.5133112), (0.8154523, -0.19515002, -0.5449349), (0.9060944, -0.19515002, -0.37537912), (0.85351175, -0.38273785, -0.35359505), (0.85351175, -0.38273785, -0.35359505), (0.9060944, -0.19515002, -0.37537912), (0.96191645, -0.19515002, -0.19139795), (0.9060944, -0.38273785, -0.18029071), (0.9060944, -0.38273785, -0.18029071), (0.96191645, -0.19515002, -0.19139795), (0.9807734, -0.19515002, -2.402202e-16), (0.923857, -0.38273785, -2.262797e-16), (0.923857, -0.38273785, -2.262797e-16), (0.9807734, -0.19515002, -2.402202e-16), (0.9807734, -0.19515002, 0), (0.923857, -0.38273785, 0), (0.9807734, -0.19515002, 0), (1, -2.4492937e-16, 0), (0.98078567, -2.4492937e-16, 0.1950884), (0.9619285, -0.19515002, 0.19133751), (0.9619285, -0.19515002, 0.19133751), (0.98078567, -2.4492937e-16, 0.1950884), (0.92388105, -2.4492937e-16, 0.3826798), (0.906118, -0.19515002, 0.37532216), (0.906118, -0.19515002, 0.37532216), (0.92388105, -2.4492937e-16, 0.3826798), (0.8314729, -2.4492937e-16, 0.55556536), (0.8154865, -0.19515002, 0.5448837), (0.8154865, -0.19515002, 0.5448837), (0.8314729, -2.4492937e-16, 0.55556536), (0.7071123, -2.4492937e-16, 0.7071012), (0.69351697, -0.19515002, 0.69350606), (0.69351697, -0.19515002, 0.69350606), (0.7071123, -2.4492937e-16, 0.7071012), (0.5555784, -2.4492937e-16, 0.8314642), (0.54489654, -0.19515002, 0.8154779), (0.54489654, -0.19515002, 0.8154779), (0.5555784, -2.4492937e-16, 0.8314642), (0.3826943, -2.4492937e-16, 0.92387503), (0.3753364, -0.19515002, 0.9061121), (0.3753364, -0.19515002, 0.9061121), (0.3826943, -2.4492937e-16, 0.92387503), (0.19510381, -2.4492937e-16, 0.9807826), (0.19135262, -0.19515002, 0.9619255), (0.19135262, -0.19515002, 0.9619255), (0.19510381, -2.4492937e-16, 0.9807826), (0.000015707963, -2.4492937e-16, 1), (0.000015405953, -0.19515002, 0.9807734), (0.000015405953, -0.19515002, 0.9807734), (0.000015707963, -2.4492937e-16, 1), (-0.195073, -2.4492937e-16, 0.9807887), (-0.1913224, -0.19515002, 0.9619315), (-0.1913224, -0.19515002, 0.9619315), (-0.195073, -2.4492937e-16, 0.9807887), (-0.3826653, -2.4492937e-16, 0.9238871), (-0.37530795, -0.19515002, 0.9061238), (-0.37530795, -0.19515002, 0.9061238), (-0.3826653, -2.4492937e-16, 0.9238871), (-0.5555523, -2.4492937e-16, 0.83148164), (-0.5448709, -0.19515002, 0.8154951), (-0.5448709, -0.19515002, 0.8154951), (-0.5555523, -2.4492937e-16, 0.83148164), (-0.70709014, -2.4492937e-16, 0.70712346), (-0.69349515, -0.19515002, 0.6935279), (-0.69349515, -0.19515002, 0.6935279), (-0.70709014, -2.4492937e-16, 0.70712346), (-0.8314554, -2.4492937e-16, 0.55559146), (-0.8154694, -0.19515002, 0.5449093), (-0.8154694, -0.19515002, 0.5449093), (-0.8314554, -2.4492937e-16, 0.55559146), (-0.923869, -2.4492937e-16, 0.38270882), (-0.9061062, -0.19515002, 0.37535065), (-0.9061062, -0.19515002, 0.37535065), (-0.923869, -2.4492937e-16, 0.38270882), (-0.9807795, -2.4492937e-16, 0.1951192), (-0.96192247, -0.19515002, 0.19136773), (-0.96192247, -0.19515002, 0.19136773), (-0.9807795, -2.4492937e-16, 0.1951192), (-1, -2.4492937e-16, 0.000031415926), (-0.9807734, -0.19515002, 0.000030811905), (-0.9807734, -0.19515002, 0.000030811905), (-1, -2.4492937e-16, 0.000031415926), (-0.9807918, -2.4492937e-16, -0.19505759), (-0.9619345, -0.19515002, -0.19130729), (-0.9619345, -0.19515002, -0.19130729), (-0.9807918, -2.4492937e-16, -0.19505759), (-0.92389303, -2.4492937e-16, -0.3826508), (-0.9061297, -0.19515002, -0.3752937), (-0.9061297, -0.19515002, -0.3752937), (-0.92389303, -2.4492937e-16, -0.3826508), (-0.83149034, -2.4492937e-16, -0.5555392), (-0.8155036, -0.19515002, -0.5448581), (-0.8155036, -0.19515002, -0.5448581), (-0.83149034, -2.4492937e-16, -0.5555392), (-0.70713454, -2.4492937e-16, -0.707079), (-0.6935388, -0.19515002, -0.6934843), (-0.6935388, -0.19515002, -0.6934843), (-0.70713454, -2.4492937e-16, -0.707079), (-0.5556045, -2.4492937e-16, -0.8314467), (-0.5449221, -0.19515002, -0.8154608), (-0.5449221, -0.19515002, -0.8154608), (-0.5556045, -2.4492937e-16, -0.8314467), (-0.38272333, -2.4492937e-16, -0.923863), (-0.37536487, -0.19515002, -0.9061003), (-0.37536487, -0.19515002, -0.9061003), (-0.38272333, -2.4492937e-16, -0.923863), (-0.19513461, -2.4492937e-16, -0.9807765), (-0.19138284, -0.19515002, -0.9619195), (-0.19138284, -0.19515002, -0.9619195), (-0.19513461, -2.4492937e-16, -0.9807765), (-0.00004712389, -2.4492937e-16, -1), (-0.000046217858, -0.19515002, -0.9807734), (-0.000046217858, -0.19515002, -0.9807734), (-0.00004712389, -2.4492937e-16, -1), (0.19504218, -2.4492937e-16, -0.98079485), (0.19129218, -0.19515002, -0.9619375), (0.19129218, -0.19515002, -0.9619375), (0.19504218, -2.4492937e-16, -0.98079485), (0.38263628, -2.4492937e-16, -0.92389905), (0.3752795, -0.19515002, -0.9061356), (0.3752795, -0.19515002, -0.9061356), (0.38263628, -2.4492937e-16, -0.92389905), (0.55552614, -2.4492937e-16, -0.83149904), (0.5448453, -0.19515002, -0.8155122), (0.5448453, -0.19515002, -0.8155122), (0.55552614, -2.4492937e-16, -0.83149904), (0.7070679, -2.4492937e-16, -0.70714563), (0.6934734, -0.19515002, -0.69354963), (0.6934734, -0.19515002, -0.69354963), (0.7070679, -2.4492937e-16, -0.70714563), (0.831438, -2.4492937e-16, -0.5556176), (0.8154523, -0.19515002, -0.5449349), (0.8154523, -0.19515002, -0.5449349), (0.831438, -2.4492937e-16, -0.5556176), (0.923857, -2.4492937e-16, -0.38273785), (0.9060944, -0.19515002, -0.37537912), (0.9060944, -0.19515002, -0.37537912), (0.923857, -2.4492937e-16, -0.38273785), (0.9807734, -2.4492937e-16, -0.19515002), (0.96191645, -0.19515002, -0.19139795), (0.96191645, -0.19515002, -0.19139795), (0.9807734, -2.4492937e-16, -0.19515002), (1, -2.4492937e-16, -2.4492937e-16), (0.9807734, -0.19515002, -2.402202e-16), (0.9807734, -0.19515002, -2.402202e-16), (1, -2.4492937e-16, -2.4492937e-16), (1, -2.4492937e-16, 0), (0.9807734, -0.19515002, 0), (1, -2.4492937e-16, 0), (1, 0, 0), (0.98078567, 0, 0.1950884), (0.98078567, -2.4492937e-16, 0.1950884), (0.98078567, -2.4492937e-16, 0.1950884), (0.98078567, 0, 0.1950884), (0.92388105, 0, 0.3826798), (0.92388105, -2.4492937e-16, 0.3826798), (0.92388105, -2.4492937e-16, 0.3826798), (0.92388105, 0, 0.3826798), (0.8314729, 0, 0.55556536), (0.8314729, -2.4492937e-16, 0.55556536), (0.8314729, -2.4492937e-16, 0.55556536), (0.8314729, 0, 0.55556536), (0.7071123, 0, 0.7071012), (0.7071123, -2.4492937e-16, 0.7071012), (0.7071123, -2.4492937e-16, 0.7071012), (0.7071123, 0, 0.7071012), (0.5555784, 0, 0.8314642), (0.5555784, -2.4492937e-16, 0.8314642), (0.5555784, -2.4492937e-16, 0.8314642), (0.5555784, 0, 0.8314642), (0.3826943, 0, 0.92387503), (0.3826943, -2.4492937e-16, 0.92387503), (0.3826943, -2.4492937e-16, 0.92387503), (0.3826943, 0, 0.92387503), (0.19510381, 0, 0.9807826), (0.19510381, -2.4492937e-16, 0.9807826), (0.19510381, -2.4492937e-16, 0.9807826), (0.19510381, 0, 0.9807826), (0.000015707963, 0, 1), (0.000015707963, -2.4492937e-16, 1), (0.000015707963, -2.4492937e-16, 1), (0.000015707963, 0, 1), (-0.195073, 0, 0.9807887), (-0.195073, -2.4492937e-16, 0.9807887), (-0.195073, -2.4492937e-16, 0.9807887), (-0.195073, 0, 0.9807887), (-0.3826653, 0, 0.9238871), (-0.3826653, -2.4492937e-16, 0.9238871), (-0.3826653, -2.4492937e-16, 0.9238871), (-0.3826653, 0, 0.9238871), (-0.5555523, 0, 0.83148164), (-0.5555523, -2.4492937e-16, 0.83148164), (-0.5555523, -2.4492937e-16, 0.83148164), (-0.5555523, 0, 0.83148164), (-0.70709014, 0, 0.70712346), (-0.70709014, -2.4492937e-16, 0.70712346), (-0.70709014, -2.4492937e-16, 0.70712346), (-0.70709014, 0, 0.70712346), (-0.8314554, 0, 0.55559146), (-0.8314554, -2.4492937e-16, 0.55559146), (-0.8314554, -2.4492937e-16, 0.55559146), (-0.8314554, 0, 0.55559146), (-0.923869, 0, 0.38270882), (-0.923869, -2.4492937e-16, 0.38270882), (-0.923869, -2.4492937e-16, 0.38270882), (-0.923869, 0, 0.38270882), (-0.9807795, 0, 0.1951192), (-0.9807795, -2.4492937e-16, 0.1951192), (-0.9807795, -2.4492937e-16, 0.1951192), (-0.9807795, 0, 0.1951192), (-1, 0, 0.000031415926), (-1, -2.4492937e-16, 0.000031415926), (-1, -2.4492937e-16, 0.000031415926), (-1, 0, 0.000031415926), (-0.9807918, 0, -0.19505759), (-0.9807918, -2.4492937e-16, -0.19505759), (-0.9807918, -2.4492937e-16, -0.19505759), (-0.9807918, 0, -0.19505759), (-0.92389303, 0, -0.3826508), (-0.92389303, -2.4492937e-16, -0.3826508), (-0.92389303, -2.4492937e-16, -0.3826508), (-0.92389303, 0, -0.3826508), (-0.83149034, 0, -0.5555392), (-0.83149034, -2.4492937e-16, -0.5555392), (-0.83149034, -2.4492937e-16, -0.5555392), (-0.83149034, 0, -0.5555392), (-0.70713454, 0, -0.707079), (-0.70713454, -2.4492937e-16, -0.707079), (-0.70713454, -2.4492937e-16, -0.707079), (-0.70713454, 0, -0.707079), (-0.5556045, 0, -0.8314467), (-0.5556045, -2.4492937e-16, -0.8314467), (-0.5556045, -2.4492937e-16, -0.8314467), (-0.5556045, 0, -0.8314467), (-0.38272333, 0, -0.923863), (-0.38272333, -2.4492937e-16, -0.923863), (-0.38272333, -2.4492937e-16, -0.923863), (-0.38272333, 0, -0.923863), (-0.19513461, 0, -0.9807765), (-0.19513461, -2.4492937e-16, -0.9807765), (-0.19513461, -2.4492937e-16, -0.9807765), (-0.19513461, 0, -0.9807765), (-0.00004712389, 0, -1), (-0.00004712389, -2.4492937e-16, -1), (-0.00004712389, -2.4492937e-16, -1), (-0.00004712389, 0, -1), (0.19504218, 0, -0.98079485), (0.19504218, -2.4492937e-16, -0.98079485), (0.19504218, -2.4492937e-16, -0.98079485), (0.19504218, 0, -0.98079485), (0.38263628, 0, -0.92389905), (0.38263628, -2.4492937e-16, -0.92389905), (0.38263628, -2.4492937e-16, -0.92389905), (0.38263628, 0, -0.92389905), (0.55552614, 0, -0.83149904), (0.55552614, -2.4492937e-16, -0.83149904), (0.55552614, -2.4492937e-16, -0.83149904), (0.55552614, 0, -0.83149904), (0.7070679, 0, -0.70714563), (0.7070679, -2.4492937e-16, -0.70714563), (0.7070679, -2.4492937e-16, -0.70714563), (0.7070679, 0, -0.70714563), (0.831438, 0, -0.5556176), (0.831438, -2.4492937e-16, -0.5556176), (0.831438, -2.4492937e-16, -0.5556176), (0.831438, 0, -0.5556176), (0.923857, 0, -0.38273785), (0.923857, -2.4492937e-16, -0.38273785), (0.923857, -2.4492937e-16, -0.38273785), (0.923857, 0, -0.38273785), (0.9807734, 0, -0.19515002), (0.9807734, -2.4492937e-16, -0.19515002), (0.9807734, -2.4492937e-16, -0.19515002), (0.9807734, 0, -0.19515002), (1, 0, -2.4492937e-16), (1, -2.4492937e-16, -2.4492937e-16), (1, -2.4492937e-16, -2.4492937e-16), (1, 0, -2.4492937e-16), (1, 0, 0), (1, -2.4492937e-16, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(75, 0, 0), (73.55892, 0, 14.63163), (69.29108, 0, 28.700985), (62.360466, 0, 41.6674), (53.033424, 0, 53.032593), (41.66838, 0, 62.359814), (28.702074, 0, 69.29063), (14.632785, 0, 73.55869), (0.0011780972, 0, 75), (-14.630474, 0, 73.55916), (-28.699898, 0, 69.29153), (-41.66642, 0, 62.361122), (-53.031757, 0, 53.03426), (-62.359158, 0, 41.66936), (-69.29018, 0, 28.703161), (-73.558464, 0, 14.633941), (-75, 0, 0.0023561944), (-73.55939, 0, -14.629319), (-69.29198, 0, -28.698809), (-62.361774, 0, -41.66544), (-53.03509, 0, -53.030926), (-41.670338, 0, -62.3585), (-28.70425, 0, -69.28973), (-14.635097, 0, -73.558235), (-0.0035342916, 0, -75), (14.628163, 0, -73.559616), (28.69772, 0, -69.29243), (41.664463, 0, -62.36243), (53.030094, 0, -53.035923), (62.35785, 0, -41.671318), (69.289276, 0, -28.70534), (73.55801, 0, -14.636251), (75, 0, -1.8369702e-14), (74.51964, 4.87721, 0), (73.0878, 4.87721, 14.537917), (68.84728, 4.87721, 28.517162), (61.96106, 4.87721, 41.400528), (52.693756, 4.87721, 52.69293), (41.401505, 4.87721, 61.96041), (28.518244, 4.87721, 68.84683), (14.539065, 4.87721, 73.08757), (0.0011705518, 4.87721, 74.51964), (-14.536769, 4.87721, 73.08803), (-28.51608, 4.87721, 68.84773), (-41.399555, 4.87721, 61.96171), (-52.6921, 4.87721, 52.694584), (-61.959763, 4.87721, 41.402477), (-68.84639, 4.87721, 28.519325), (-73.08734, 4.87721, 14.540214), (-74.51964, 4.87721, 0.0023411035), (-73.08825, 4.87721, -14.535622), (-68.84818, 4.87721, -28.515), (-61.96236, 4.87721, -41.398582), (-52.69541, 4.87721, -52.691273), (-41.40345, 4.87721, -61.95911), (-28.520407, 4.87721, -68.84594), (-14.541362, 4.87721, -73.08711), (-0.0035116554, 4.87721, -74.51964), (14.534473, 4.87721, -73.08848), (28.513918, 4.87721, -68.848625), (41.39761, 4.87721, -61.963013), (52.690445, 4.87721, -52.69624), (61.95846, 4.87721, -41.404423), (68.84549, 4.87721, -28.521488), (73.08688, 4.87721, -14.54251), (74.51964, 4.87721, -1.8252049e-14), (73.09702, 9.566995, 0), (71.69251, 9.566995, 14.260382), (67.53296, 9.566995, 27.972755), (60.778194, 9.566995, 40.610172), (51.68781, 9.566995, 51.686996), (40.61113, 9.566995, 60.777557), (27.973816, 9.566995, 67.53252), (14.261508, 9.566995, 71.69229), (0.0011482054, 9.566995, 73.09702), (-14.259255, 9.566995, 71.69274), (-27.971695, 9.566995, 67.533394), (-40.60922, 9.566995, 60.77883), (-51.686184, 9.566995, 51.68862), (-60.77692, 9.566995, 40.612083), (-67.532074, 9.566995, 27.974876), (-71.69207, 9.566995, 14.262634), (-73.09702, 9.566995, 0.0022964107), (-71.69296, 9.566995, -14.258129), (-67.53384, 9.566995, -27.970634), (-60.779472, 9.566995, -40.608265), (-51.689434, 9.566995, -51.68537), (-40.613037, 9.566995, -60.77628), (-27.975939, 9.566995, -67.53164), (-14.26376, 9.566995, -71.69184), (-0.0034446162, 9.566995, -73.09702), (14.257003, 9.566995, -71.693184), (27.969574, 9.566995, -67.53427), (40.60731, 9.566995, -60.78011), (51.684563, 9.566995, -51.690243), (60.775642, 9.566995, -40.61399), (67.5312, 9.566995, -27.977), (71.69162, 9.566995, -14.264886), (73.09702, 9.566995, -1.7903608e-14), (70.78682, 13.889133, 0), (69.4267, 13.889133, 13.809688), (65.398605, 13.889133, 27.088688), (58.857323, 13.889133, 39.326706), (50.054234, 13.889133, 50.053448), (39.32763, 13.889133, 58.856705), (27.089714, 13.889133, 65.39818), (13.810779, 13.889133, 69.42648), (0.0011119168, 13.889133, 70.78682), (-13.808597, 13.889133, 69.42692), (-27.08766, 13.889133, 65.399025), (-39.32578, 13.889133, 58.85794), (-50.05266, 13.889133, 50.055023), (-58.856087, 13.889133, 39.328552), (-65.39775, 13.889133, 27.090742), (-69.42627, 13.889133, 13.811869), (-70.78682, 13.889133, 0.0022238337), (-69.42713, 13.889133, -13.807507), (-65.39945, 13.889133, -27.086632), (-58.85856, 13.889133, -39.324856), (-50.05581, 13.889133, -50.051876), (-39.32948, 13.889133, -58.85547), (-27.091768, 13.889133, -65.39732), (-13.81296, 13.889133, -69.42605), (-0.0033357504, 13.889133, -70.78682), (13.806416, 13.889133, -69.42735), (27.085606, 13.889133, -65.39988), (39.323933, 13.889133, -58.859177), (50.05109, 13.889133, -50.056595), (58.85485, 13.889133, -39.330402), (65.396904, 13.889133, -27.092796), (69.425835, 13.889133, -13.81405), (70.78682, 13.889133, -1.7337772e-14), (67.67781, 17.67753, 0), (66.377426, 17.67753, 13.2031555), (62.526245, 17.67753, 25.89893), (56.272263, 17.67753, 37.599445), (47.855812, 17.67753, 47.85506), (37.600327, 17.67753, 56.27167), (25.899912, 17.67753, 62.525837), (13.204198, 17.67753, 66.37722), (0.0010630805, 17.67753, 67.67781), (-13.202112, 17.67753, 66.37763), (-25.89795, 17.67753, 62.52665), (-37.59856, 17.67753, 56.272854), (-47.85431, 17.67753, 47.856564), (-56.27108, 17.67753, 37.60121), (-62.52543, 17.67753, 25.900894), (-66.37701, 17.67753, 13.20524), (-67.67781, 17.67753, 0.002126161), (-66.37784, 17.67753, -13.20107), (-62.527058, 17.67753, -25.896967), (-56.273445, 17.67753, -37.597675), (-47.857315, 17.67753, -47.853558), (-37.602097, 17.67753, -56.270493), (-25.901876, 17.67753, -62.525024), (-13.206283, 17.67753, -66.3768), (-0.0031892415, 17.67753, -67.67781), (13.200027, 17.67753, -66.378044), (25.895985, 17.67753, -62.527466), (37.596794, 17.67753, -56.274033), (47.852806, 17.67753, -47.858067), (56.2699, 17.67753, -37.60298), (62.524616, 17.67753, -25.902859), (66.376595, 17.67753, -13.207326), (67.67781, 17.67753, -1.6576282e-14), (63.88946, 20.786604, 0), (62.661865, 20.786604, 12.464092), (59.02626, 20.786604, 24.449205), (53.122353, 20.786604, 35.49477), (45.177025, 20.786604, 45.176315), (35.495605, 20.786604, 53.121796), (24.450132, 20.786604, 59.025875), (12.465076, 20.786604, 62.66167), (0.0010035733, 20.786604, 63.88946), (-12.463108, 20.786604, 62.662064), (-24.448278, 20.786604, 59.026646), (-35.493935, 20.786604, 53.12291), (-45.175606, 20.786604, 45.177734), (-53.12124, 20.786604, 35.496437), (-59.025494, 20.786604, 24.451061), (-62.661476, 20.786604, 12.466061), (-63.88946, 20.786604, 0.0020071466), (-62.66226, 20.786604, -12.462124), (-59.027027, 20.786604, -24.447351), (-53.12347, 20.786604, -35.4931), (-45.178444, 20.786604, -45.174896), (-35.497272, 20.786604, -53.12068), (-24.451988, 20.786604, -59.02511), (-12.467045, 20.786604, -62.661278), (-0.0030107198, 20.786604, -63.88946), (12.46114, 20.786604, -62.662453), (24.446424, 20.786604, -59.027412), (35.492268, 20.786604, -53.124027), (45.174187, 20.786604, -45.179153), (53.120125, 20.786604, -35.498108), (59.024723, 20.786604, -24.452915), (62.661083, 20.786604, -12.468029), (63.88946, 20.786604, -1.5648405e-14), (59.567356, 23.096876, 0), (58.42281, 23.096876, 11.6209), (55.033154, 23.096876, 22.795225), (49.528645, 23.096876, 33.09356), (42.120815, 23.096876, 42.12015), (33.094337, 23.096876, 49.528122), (22.79609, 23.096876, 55.032795), (11.621818, 23.096876, 58.422626), (0.00093568186, 23.096876, 59.567356), (-11.619983, 23.096876, 58.422993), (-22.794361, 23.096876, 55.033512), (-33.09278, 23.096876, 49.529163), (-42.11949, 23.096876, 42.121475), (-49.527603, 23.096876, 33.095116), (-55.032436, 23.096876, 22.796953), (-58.422447, 23.096876, 11.622736), (-59.567356, 23.096876, 0.0018713637), (-58.423176, 23.096876, -11.619065), (-55.033867, 23.096876, -22.793495), (-49.529682, 23.096876, -33.092003), (-42.122135, 23.096876, -42.118828), (-33.095894, 23.096876, -49.527084), (-22.79782, 23.096876, -55.032078), (-11.623653, 23.096876, -58.422264), (-0.0028070456, 23.096876, -59.567356), (11.618147, 23.096876, -58.42336), (22.792631, 23.096876, -55.034225), (33.091225, 23.096876, -49.5302), (42.118168, 23.096876, -42.1228), (49.52656, 23.096876, -33.096672), (55.03172, 23.096876, -22.798683), (58.42208, 23.096876, -11.624571), (59.567356, 23.096876, -1.4589795e-14), (54.877594, 24.519566, 0), (53.82316, 24.519566, 10.705982), (50.70037, 24.519566, 21.000547), (45.62923, 24.519566, 30.488089), (38.804623, 24.519566, 38.804016), (30.488806, 24.519566, 45.628754), (21.001345, 24.519566, 50.70004), (10.706827, 24.519566, 53.82299), (0.00086201524, 24.519566, 54.877594), (-10.705136, 24.519566, 53.823326), (-20.99975, 24.519566, 50.7007), (-30.487373, 24.519566, 45.62971), (-38.803406, 24.519566, 38.805233), (-45.628273, 24.519566, 30.489523), (-50.69971, 24.519566, 21.00214), (-53.822823, 24.519566, 10.707673), (-54.877594, 24.519566, 0.0017240305), (-53.823494, 24.519566, -10.704291), (-50.70103, 24.519566, -20.998955), (-45.63019, 24.519566, -30.486656), (-38.805843, 24.519566, -38.802795), (-30.49024, 24.519566, -45.627796), (-21.002937, 24.519566, -50.69938), (-10.708518, 24.519566, -53.822655), (-0.0025860458, 24.519566, -54.877594), (10.703445, 24.519566, -53.82366), (20.998158, 24.519566, -50.70136), (30.485939, 24.519566, -45.63067), (38.802185, 24.519566, -38.806454), (45.627316, 24.519566, -30.490957), (50.69905, 24.519566, -21.003733), (53.822487, 24.519566, -10.709364), (54.877594, 24.519566, -1.3441134e-14), (50.000393, 25, 0), (49.03967, 25, 9.754497), (46.194416, 25, 19.13414), (41.57397, 25, 27.778484), (35.355896, 25, 35.35534), (27.779139, 25, 41.573536), (19.134867, 25, 46.194115), (9.755267, 25, 49.039516), (0.00078540435, 25, 50.000393), (-9.753726, 25, 49.03982), (-19.133415, 25, 46.194714), (-27.777832, 25, 41.574406), (-35.354782, 25, 35.35645), (-41.573097, 25, 27.77979), (-46.193813, 25, 19.135592), (-49.03936, 25, 9.756037), (-50.000393, 25, 0.0015708087), (-49.039974, 25, -9.752955), (-46.195015, 25, -19.132689), (-41.574844, 25, -27.77718), (-35.357006, 25, -35.35423), (-27.780443, 25, -41.572662), (-19.136318, 25, -46.193512), (-9.756807, 25, -49.039207), (-0.002356213, 25, -50.000393), (9.752186, 25, -49.040127), (19.131964, 25, -46.195316), (27.776525, 25, -41.57528), (35.353672, 25, -35.35756), (41.572224, 25, -27.781097), (46.19321, 25, -19.137043), (49.039055, 25, -9.757578), (50.000393, 25, -1.2246564e-14), (45.123177, 24.519718, 0), (44.256165, 24.519718, 8.803008), (41.688446, 24.519718, 17.267729), (37.518696, 24.519718, 25.068872), (31.907154, 24.519718, 31.906652), (25.069462, 24.519718, 37.518303), (17.268383, 24.519718, 41.688175), (8.803703, 24.519718, 44.256023), (0.0007087932, 24.519718, 45.123177), (-8.802313, 24.519718, 44.2563), (-17.267073, 24.519718, 41.688717), (-25.068283, 24.519718, 37.51909), (-31.90615, 24.519718, 31.907656), (-37.51791, 24.519718, 25.070051), (-41.687904, 24.519718, 17.269037), (-44.255886, 24.519718, 8.804399), (-45.123177, 24.519718, 0.0014175863), (-44.25644, 24.519718, -8.801618), (-41.688988, 24.519718, -17.266418), (-37.519485, 24.519718, -25.067694), (-31.908155, 24.519718, -31.905651), (-25.07064, 24.519718, -37.517517), (-17.269691, 24.519718, -41.687634), (-8.805094, 24.519718, -44.25575), (-0.0021263796, 24.519718, -45.123177), (8.800922, 24.519718, -44.256577), (17.265764, 24.519718, -41.68926), (25.067104, 24.519718, -37.51988), (31.90515, 24.519718, -31.908657), (37.51712, 24.519718, -25.07123), (41.687363, 24.519718, -17.270348), (44.25561, 24.519718, -8.805789), (45.123177, 24.519718, -1.105199e-14), (40.43337, 23.097176, 0), (39.656467, 23.097176, 7.888081), (37.35562, 23.097176, 15.473033), (33.619247, 23.097176, 22.463377), (28.590933, 23.097176, 28.590485), (22.463905, 23.097176, 33.618896), (15.47362, 23.097176, 37.355377), (7.888704, 23.097176, 39.65634), (0.00063512585, 23.097176, 40.43337), (-7.887458, 23.097176, 39.65659), (-15.472446, 23.097176, 37.355865), (-22.462849, 23.097176, 33.619602), (-28.590034, 23.097176, 28.591383), (-33.61854, 23.097176, 22.464434), (-37.355137, 23.097176, 15.474207), (-39.65622, 23.097176, 7.8893266), (-40.43337, 23.097176, 0.0012702517), (-39.656715, 23.097176, -7.886835), (-37.356106, 23.097176, -15.47186), (-33.619953, 23.097176, -22.462322), (-28.591831, 23.097176, -28.589586), (-22.464962, 23.097176, -33.61819), (-15.474793, 23.097176, -37.354893), (-7.88995, 23.097176, -39.656097), (-0.0019053776, 23.097176, -40.43337), (7.886212, 23.097176, -39.656837), (15.471272, 23.097176, -37.35635), (22.461794, 23.097176, -33.620308), (28.589136, 23.097176, -28.59228), (33.617836, 23.097176, -22.46549), (37.35465, 23.097176, -15.47538), (39.65597, 23.097176, -7.8905725), (40.43337, 23.097176, -9.903319e-15), (36.111195, 20.78704, 0), (35.41734, 20.78704, 7.0448747), (33.362446, 20.78704, 13.819024), (30.025478, 20.78704, 20.062128), (25.53467, 20.78704, 25.53427), (20.0626, 20.78704, 30.025164), (13.819549, 20.78704, 33.36223), (7.045431, 20.78704, 35.41723), (0.0005672333, 20.78704, 36.111195), (-7.044318, 20.78704, 35.41745), (-13.8185005, 20.78704, 33.362663), (-20.061655, 20.78704, 30.025793), (-25.533869, 20.78704, 25.53507), (-30.024847, 20.78704, 20.06307), (-33.36201, 20.78704, 13.820072), (-35.417118, 20.78704, 7.0459876), (-36.111195, 20.78704, 0.0011344666), (-35.41756, 20.78704, -7.043762), (-33.36288, 20.78704, -13.817976), (-30.026108, 20.78704, -20.061184), (-25.535473, 20.78704, -25.533466), (-20.063541, 20.78704, -30.024532), (-13.820597, 20.78704, -33.361794), (-7.0465436, 20.78704, -35.417007), (-0.0017016999, 20.78704, -36.111195), (7.0432057, 20.78704, -35.41767), (13.817452, 20.78704, -33.3631), (20.060713, 20.78704, -30.026423), (25.533066, 20.78704, -25.535873), (30.024218, 20.78704, -20.064014), (33.36158, 20.78704, -13.82112), (35.416897, 20.78704, -7.0471), (36.111195, 20.78704, -8.844692e-15), (32.322746, 17.678085, 0), (31.701687, 17.678085, 6.305793), (29.862373, 17.678085, 12.369263), (26.875488, 17.678085, 17.957397), (22.855814, 17.678085, 22.855453), (17.957819, 17.678085, 26.875206), (12.369732, 17.678085, 29.862179), (6.3062906, 17.678085, 31.701588), (0.00050772453, 17.678085, 32.322746), (-6.305295, 17.678085, 31.701786), (-12.3687935, 17.678085, 29.862568), (-17.956976, 17.678085, 26.87577), (-22.855095, 17.678085, 22.856173), (-26.874924, 17.678085, 17.958242), (-29.861984, 17.678085, 12.370201), (-31.701488, 17.678085, 6.306789), (-32.322746, 17.678085, 0.0010154491), (-31.701885, 17.678085, -6.3047967), (-29.862762, 17.678085, -12.368324), (-26.87605, 17.678085, -17.956553), (-22.856531, 17.678085, -22.854736), (-17.958664, 17.678085, -26.874641), (-12.370669, 17.678085, -29.86179), (-6.3072867, 17.678085, -31.70139), (-0.0015231735, 17.678085, -32.322746), (6.304299, 17.678085, -31.701984), (12.367855, 17.678085, -29.862955), (17.956131, 17.678085, -26.876333), (22.854378, 17.678085, -22.85689), (26.87436, 17.678085, -17.959085), (29.861595, 17.678085, -12.371139), (31.70129, 17.678085, -6.3077846), (32.322746, 17.678085, -7.91679e-15), (29.213614, 13.889787, 0), (28.652294, 13.889787, 5.6992373), (26.989904, 13.889787, 11.179461), (24.290329, 13.889787, 16.230072), (20.657307, 13.889787, 20.656982), (16.230453, 13.889787, 24.290073), (11.179884, 13.889787, 26.989729), (5.699687, 13.889787, 28.652205), (0.00045888638, 13.889787, 29.213614), (-5.698787, 13.889787, 28.652384), (-11.179036, 13.889787, 26.99008), (-16.22969, 13.889787, 24.290583), (-20.656658, 13.889787, 20.65763), (-24.289818, 13.889787, 16.230835), (-26.989553, 13.889787, 11.180308), (-28.652115, 13.889787, 5.700137), (-29.213614, 13.889787, 0.00091777276), (-28.652473, 13.889787, -5.698337), (-26.990255, 13.889787, -11.178613), (-24.290838, 13.889787, -16.22931), (-20.657955, 13.889787, -20.656334), (-16.231216, 13.889787, -24.289564), (-11.180732, 13.889787, -26.989378), (-5.7005873, 13.889787, -28.652025), (-0.0013766591, 13.889787, -29.213614), (5.697887, 13.889787, -28.652563), (11.178188, 13.889787, -26.99043), (16.228928, 13.889787, -24.291094), (20.65601, 13.889787, -20.658281), (24.289309, 13.889787, -16.231598), (26.989202, 13.889787, -11.181156), (28.651936, 13.889787, -5.7010374), (29.213614, 13.889787, -7.155272e-15), (26.903275, 9.56772, 0), (26.386347, 9.56772, 5.2485166), (24.855425, 9.56772, 10.29534), (22.369343, 9.56772, 14.946527), (19.023638, 9.56772, 19.023338), (14.946878, 9.56772, 22.369108), (10.295731, 9.56772, 24.855263), (5.2489314, 9.56772, 26.386263), (0.00042259565, 9.56772, 26.903275), (-5.248102, 9.56772, 26.386429), (-10.29495, 9.56772, 24.855587), (-14.946176, 9.56772, 22.369577), (-19.023039, 9.56772, 19.023935), (-22.368874, 9.56772, 14.947229), (-24.855103, 9.56772, 10.296121), (-26.38618, 9.56772, 5.249346), (-26.903275, 9.56772, 0.0008451913), (-26.38651, 9.56772, -5.247688), (-24.85575, 9.56772, -10.2945595), (-22.369812, 9.56772, -14.945824), (-19.024235, 9.56772, -19.022741), (-14.947581, 9.56772, -22.368639), (-10.296511, 9.56772, -24.85494), (-5.24976, 9.56772, -26.386099), (-0.001267787, 9.56772, -26.903275), (5.2472734, 9.56772, -26.386593), (10.294168, 9.56772, -24.855911), (14.945473, 9.56772, -22.370049), (19.022442, 9.56772, -19.024534), (22.368404, 9.56772, -14.947932), (24.854778, 9.56772, -10.296902), (26.386017, 9.56772, -5.2501745), (26.903275, 9.56772, -6.5894018e-15), (25.48051, 4.87798, 0), (24.990921, 4.87798, 4.970952), (23.540962, 4.87798, 9.750877), (21.186354, 4.87798, 14.156089), (18.017584, 4.87798, 18.017302), (14.156422, 4.87798, 21.186132), (9.751247, 4.87798, 23.540808), (4.9713445, 4.87798, 24.990843), (0.00040024694, 4.87798, 25.48051), (-4.9705596, 4.87798, 24.991), (-9.750507, 4.87798, 23.541115), (-14.155756, 4.87798, 21.186577), (-18.017017, 4.87798, 18.017868), (-21.18591, 4.87798, 14.1567545), (-23.540655, 4.87798, 9.7516165), (-24.990765, 4.87798, 4.9717374), (-25.48051, 4.87798, 0.0008004939), (-24.991077, 4.87798, -4.970167), (-23.541267, 4.87798, -9.750137), (-21.1868, 4.87798, -14.155423), (-18.01815, 4.87798, -18.016735), (-14.157087, 4.87798, -21.185688), (-9.7519865, 4.87798, -23.540503), (-4.97213, 4.87798, -24.990686), (-0.0012007408, 4.87798, -25.48051), (4.9697742, 4.87798, -24.991156), (9.749768, 4.87798, -23.541422), (14.15509, 4.87798, -21.187021), (18.016453, 4.87798, -18.018433), (21.185465, 4.87798, -14.15742), (23.540348, 4.87798, -9.752357), (24.990608, 4.87798, -4.9725223), (25.48051, 4.87798, -6.240925e-15), (25, 0.0007853982, 0), (24.519642, 0.0007853982, 4.87721), (23.097027, 0.0007853982, 9.566995), (20.786821, 0.0007853982, 13.889133), (17.677809, 0.0007853982, 17.67753), (13.88946, 0.0007853982, 20.786604), (9.567358, 0.0007853982, 23.096876), (4.877595, 0.0007853982, 24.519566), (0.0003926991, 0.0007853982, 25), (-4.876825, 0.0007853982, 24.519718), (-9.566632, 0.0007853982, 23.097176), (-13.888807, 0.0007853982, 20.78704), (-17.677254, 0.0007853982, 17.678085), (-20.786386, 0.0007853982, 13.889787), (-23.096725, 0.0007853982, 9.56772), (-24.51949, 0.0007853982, 4.87798), (-25, 0.0007853982, 0.0007853982), (-24.519794, 0.0007853982, -4.8764396), (-23.097326, 0.0007853982, -9.56627), (-20.787258, 0.0007853982, -13.88848), (-17.678364, 0.0007853982, -17.676975), (-13.890113, 0.0007853982, -20.786167), (-9.568084, 0.0007853982, -23.096575), (-4.8783655, 0.0007853982, -24.519411), (-0.0011780972, 0.0007853982, -25), (4.8760543, 0.0007853982, -24.51987), (9.565907, 0.0007853982, -23.097477), (13.888154, 0.0007853982, -20.787477), (17.676697, 0.0007853982, -17.678642), (20.78595, 0.0007853982, -13.890439), (23.096424, 0.0007853982, -9.568446), (24.519335, 0.0007853982, -4.8787503), (25, 0.0007853982, -6.123234e-15), (25.480206, -4.8764396, 0), (24.99062, -4.8764396, 4.9708924), (23.540678, -4.8764396, 9.75076), (21.1861, -4.8764396, 14.155919), (18.017368, -4.8764396, 18.017084), (14.156252, -4.8764396, 21.185877), (9.75113, -4.8764396, 23.540525), (4.971285, -4.8764396, 24.990541), (0.00040024213, -4.8764396, 25.480206), (-4.9705, -4.8764396, 24.990698), (-9.75039, -4.8764396, 23.54083), (-14.155586, -4.8764396, 21.186321), (-18.016802, -4.8764396, 18.01765), (-21.185656, -4.8764396, 14.156585), (-23.540373, -4.8764396, 9.751499), (-24.990463, -4.8764396, 4.9716773), (-25.480206, -4.8764396, 0.00080048427), (-24.990776, -4.8764396, -4.970107), (-23.540985, -4.8764396, -9.75002), (-21.186544, -4.8764396, -14.155253), (-18.017933, -4.8764396, -18.016518), (-14.156918, -4.8764396, -21.185432), (-9.751869, -4.8764396, -23.540218), (-4.97207, -4.8764396, -24.990385), (-0.0012007264, -4.8764396, -25.480206), (4.9697146, -4.8764396, -24.990854), (9.749651, -4.8764396, -23.541138), (14.154921, -4.8764396, -21.186768), (18.016235, -4.8764396, -18.018217), (21.185211, -4.8764396, -14.157249), (23.540066, -4.8764396, -9.752239), (24.990307, -4.8764396, -4.9724627), (25.480206, -4.8764396, -6.2408502e-15), (26.902674, -9.56627, 0), (26.385757, -9.56627, 5.2483993), (24.85487, -9.56627, 10.29511), (22.368843, -9.56627, 14.946193), (19.023212, -9.56627, 19.022913), (14.946545, -9.56627, 22.368608), (10.2955, -9.56627, 24.854708), (5.248814, -9.56627, 26.385674), (0.00042258622, -9.56627, 26.902674), (-5.247985, -9.56627, 26.38584), (-10.29472, -9.56627, 24.855032), (-14.945842, -9.56627, 22.369078), (-19.022615, -9.56627, 19.023512), (-22.368374, -9.56627, 14.946896), (-24.854546, -9.56627, 10.295891), (-26.385592, -9.56627, 5.2492285), (-26.902674, -9.56627, 0.00084517244), (-26.385921, -9.56627, -5.2475705), (-24.855194, -9.56627, -10.294329), (-22.369312, -9.56627, -14.94549), (-19.02381, -9.56627, -19.022316), (-14.947247, -9.56627, -22.36814), (-10.296281, -9.56627, -24.854385), (-5.249643, -9.56627, -26.38551), (-0.0012677587, -9.56627, -26.902674), (5.247156, -9.56627, -26.386003), (10.293939, -9.56627, -24.855354), (14.945139, -9.56627, -22.369549), (19.022017, -9.56627, -19.024109), (22.367905, -9.56627, -14.947598), (24.854223, -9.56627, -10.296672), (26.385427, -9.56627, -5.250057), (26.902674, -9.56627, -6.589255e-15), (29.212742, -13.88848, 0), (28.651438, -13.88848, 5.699067), (26.989098, -13.88848, 11.179126), (24.289602, -13.88848, 16.229586), (20.65669, -13.88848, 20.656366), (16.229969, -13.88848, 24.289347), (11.17955, -13.88848, 26.988922), (5.699517, -13.88848, 28.651348), (0.00045887267, -13.88848, 29.212742), (-5.698617, -13.88848, 28.651527), (-11.178702, -13.88848, 26.989273), (-16.229204, -13.88848, 24.289858), (-20.65604, -13.88848, 20.657015), (-24.289093, -13.88848, 16.23035), (-26.988747, -13.88848, 11.179975), (-28.651258, -13.88848, 5.699967), (-29.212742, -13.88848, 0.00091774535), (-28.651617, -13.88848, -5.698167), (-26.989449, -13.88848, -11.178278), (-24.290112, -13.88848, -16.228823), (-20.65734, -13.88848, -20.655716), (-16.230732, -13.88848, -24.288837), (-11.180398, -13.88848, -26.988571), (-5.700417, -13.88848, -28.651169), (-0.001376618, -13.88848, -29.212742), (5.6977167, -13.88848, -28.651707), (11.177855, -13.88848, -26.989624), (16.228441, -13.88848, -24.290367), (20.655392, -13.88848, -20.657663), (24.288582, -13.88848, -16.231113), (26.988396, -13.88848, -11.180822), (28.65108, -13.88848, -5.700867), (29.212742, -13.88848, -7.155058e-15), (32.321636, -17.676975, 0), (31.700598, -17.676975, 6.3055763), (29.861347, -17.676975, 12.368837), (26.874563, -17.676975, 17.956781), (22.855028, -17.676975, 22.85467), (17.957203, -17.676975, 26.874283), (12.369307, -17.676975, 29.861153), (6.306074, -17.676975, 31.700499), (0.00050770707, -17.676975, 32.321636), (-6.305078, -17.676975, 31.700697), (-12.368368, -17.676975, 29.861542), (-17.956358, -17.676975, 26.874846), (-22.85431, -17.676975, 22.855387), (-26.874, -17.676975, 17.957624), (-29.860958, -17.676975, 12.369776), (-31.7004, -17.676975, 6.306572), (-32.321636, -17.676975, 0.0010154141), (-31.700796, -17.676975, -6.30458), (-29.861736, -17.676975, -12.367899), (-26.875128, -17.676975, -17.955936), (-22.855745, -17.676975, -22.85395), (-17.958048, -17.676975, -26.873718), (-12.370245, -17.676975, -29.860764), (-6.3070703, -17.676975, -31.7003), (-0.0015231213, -17.676975, -32.321636), (6.3040824, -17.676975, -31.700895), (12.367431, -17.676975, -29.861929), (17.955515, -17.676975, -26.87541), (22.853592, -17.676975, -22.856104), (26.873436, -17.676975, -17.95847), (29.860569, -17.676975, -12.370713), (31.700201, -17.676975, -6.307568), (32.321636, -17.676975, -7.916517e-15), (36.109886, -20.786167, 0), (35.41606, -20.786167, 7.04462), (33.36124, -20.786167, 13.818524), (30.024391, -20.786167, 20.061401), (25.533747, -20.786167, 25.533346), (20.061872, -20.786167, 30.024076), (13.819049, -20.786167, 33.361023), (7.0451765, -20.786167, 35.41595), (0.00056721276, -20.786167, 36.109886), (-7.0440636, -20.786167, 35.416172), (-13.818001, -20.786167, 33.361458), (-20.06093, -20.786167, 30.024708), (-25.532944, -20.786167, 25.534147), (-30.023762, -20.786167, 20.062346), (-33.360806, -20.786167, 13.819572), (-35.415836, -20.786167, 7.0457325), (-36.109886, -20.786167, 0.0011344255), (-35.416283, -20.786167, -7.043507), (-33.361675, -20.786167, -13.817476), (-30.025023, -20.786167, -20.06046), (-25.534548, -20.786167, -25.532543), (-20.062817, -20.786167, -30.023447), (-13.820097, -20.786167, -33.360588), (-7.046289, -20.786167, -35.415726), (-0.0017016383, -20.786167, -36.109886), (7.042951, -20.786167, -35.416393), (13.816953, -20.786167, -33.361893), (20.059986, -20.786167, -30.025337), (25.532143, -20.786167, -25.53495), (30.023132, -20.786167, -20.063288), (33.36037, -20.786167, -13.820621), (35.415615, -20.786167, -7.0468454), (36.109886, -20.786167, -8.844372e-15), (40.431915, -23.096575, 0), (39.655045, -23.096575, 7.887798), (37.354282, -23.096575, 15.472478), (33.618042, -23.096575, 22.462572), (28.589907, -23.096575, 28.589458), (22.463099, -23.096575, 33.61769), (15.473064, -23.096575, 37.35404), (7.8884206, -23.096575, 39.65492), (0.00063510303, -23.096575, 40.431915), (-7.8871746, -23.096575, 39.655167), (-15.471891, -23.096575, 37.354523), (-22.462044, -23.096575, 33.618397), (-28.589008, -23.096575, 28.590357), (-33.617336, -23.096575, 22.463627), (-37.353794, -23.096575, 15.473651), (-39.654797, -23.096575, 7.8890433), (-40.431915, -23.096575, 0.0012702061), (-39.655293, -23.096575, -7.886552), (-37.354767, -23.096575, -15.471304), (-33.618748, -23.096575, -22.461515), (-28.590805, -23.096575, -28.58856), (-22.464155, -23.096575, -33.616985), (-15.474238, -23.096575, -37.35355), (-7.8896666, -23.096575, -39.65467), (-0.0019053092, -23.096575, -40.431915), (7.885929, -23.096575, -39.655415), (15.470717, -23.096575, -37.35501), (22.460987, -23.096575, -33.619102), (28.58811, -23.096575, -28.591253), (33.61663, -23.096575, -22.464684), (37.35331, -23.096575, -15.474825), (39.65455, -23.096575, -7.8902893), (40.431915, -23.096575, -9.902964e-15), (45.121635, -24.519411, 0), (44.254654, -24.519411, 8.802708), (41.687023, -24.519411, 17.267138), (37.517414, -24.519411, 25.068016), (31.906065, -24.519411, 31.905563), (25.068605, -24.519411, 37.51702), (17.267794, -24.519411, 41.686752), (8.803403, -24.519411, 44.254513), (0.00070876896, -24.519411, 45.121635), (-8.802012, -24.519411, 44.25479), (-17.266483, -24.519411, 41.687294), (-25.067427, -24.519411, 37.51781), (-31.905062, -24.519411, 31.906565), (-37.51663, -24.519411, 25.069195), (-41.68648, -24.519411, 17.268448), (-44.254375, -24.519411, 8.804097), (-45.121635, -24.519411, 0.0014175379), (-44.25493, -24.519411, -8.801317), (-41.687565, -24.519411, -17.26583), (-37.518204, -24.519411, -25.066837), (-31.907066, -24.519411, -31.90456), (-25.069784, -24.519411, -37.516235), (-17.269102, -24.519411, -41.68621), (-8.804792, -24.519411, -44.25424), (-0.002126307, -24.519411, -45.121635), (8.800622, -24.519411, -44.255066), (17.265173, -24.519411, -41.687836), (25.066248, -24.519411, -37.518597), (31.90406, -24.519411, -31.907568), (37.515842, -24.519411, -25.070374), (41.685936, -24.519411, -17.269758), (44.2541, -24.519411, -8.805488), (45.121635, -24.519411, -1.1051613e-14), (49.99882, -25, 0), (49.038128, -25, 9.75419), (46.192963, -25, 19.13354), (41.572666, -25, 27.777613), (35.354782, -25, 35.35423), (27.778265, -25, 41.572227), (19.134266, -25, 46.19266), (9.75496, -25, 49.037975), (0.00078537967, -25, 49.99882), (-9.75342, -25, 49.03828), (-19.132814, -25, 46.193264), (-27.776958, -25, 41.5731), (-35.353672, -25, 35.35534), (-41.571793, -25, 27.77892), (-46.192364, -25, 19.13499), (-49.037823, -25, 9.755731), (-49.99882, -25, 0.0015707593), (-49.038433, -25, -9.752649), (-46.193565, -25, -19.132088), (-41.573536, -25, -27.776306), (-35.355896, -25, -35.35312), (-27.779572, -25, -41.571354), (-19.135715, -25, -46.192062), (-9.756501, -25, -49.037666), (-0.002356139, -25, -49.99882), (9.751879, -25, -49.038586), (19.131363, -25, -46.193867), (27.775654, -25, -41.573975), (35.352562, -25, -35.35645), (41.57092, -25, -27.780224), (46.19176, -25, -19.136442), (49.037514, -25, -9.757271), (49.99882, -25, -1.224618e-14), (54.876053, -24.51987, 0), (53.821648, -24.51987, 10.705682), (50.698944, -24.51987, 20.999958), (45.627953, -24.51987, 30.487234), (38.803535, -24.51987, 38.802925), (30.48795, -24.51987, 45.627472), (21.000753, -24.51987, 50.698616), (10.706527, -24.51987, 53.82148), (0.000861991, -24.51987, 54.876053), (-10.704836, -24.51987, 53.821815), (-20.99916, -24.51987, 50.699276), (-30.486517, -24.51987, 45.62843), (-38.802315, -24.51987, 38.804146), (-45.626995, -24.51987, 30.488667), (-50.698288, -24.51987, 21.00155), (-53.821312, -24.51987, 10.707373), (-54.876053, -24.51987, 0.001723982), (-53.821983, -24.51987, -10.703991), (-50.699604, -24.51987, -20.998365), (-45.62891, -24.51987, -30.4858), (-38.804752, -24.51987, -38.80171), (-30.489384, -24.51987, -45.626514), (-21.002346, -24.51987, -50.697956), (-10.708218, -24.51987, -53.821144), (-0.0025859731, -24.51987, -54.876053), (10.703145, -24.51987, -53.82215), (20.997568, -24.51987, -50.699936), (30.485083, -24.51987, -45.629387), (38.801098, -24.51987, -38.805363), (45.626034, -24.51987, -30.4901), (50.697628, -24.51987, -21.003143), (53.820976, -24.51987, -10.709064), (54.876053, -24.51987, -1.3440757e-14), (59.565907, -23.097477, 0), (58.421387, -23.097477, 11.620617), (55.03181, -23.097477, 22.79467), (49.527435, -23.097477, 33.092754), (42.11979, -23.097477, 42.119125), (33.093533, -23.097477, 49.526917), (22.795534, -23.097477, 55.031452), (11.621535, -23.097477, 58.421204), (0.00093565905, -23.097477, 59.565907), (-11.6196995, -23.097477, 58.42157), (-22.793804, -23.097477, 55.03217), (-33.091976, -23.097477, 49.527958), (-42.118465, -23.097477, 42.12045), (-49.526398, -23.097477, 33.094307), (-55.031094, -23.097477, 22.796398), (-58.42102, -23.097477, 11.622453), (-59.565907, -23.097477, 0.0018713181), (-58.421753, -23.097477, -11.618782), (-55.032528, -23.097477, -22.79294), (-49.528477, -23.097477, -33.091198), (-42.12111, -23.097477, -42.1178), (-33.095085, -23.097477, -49.525875), (-22.797262, -23.097477, -55.03074), (-11.62337, -23.097477, -58.42084), (-0.0028069771, -23.097477, -59.565907), (11.617865, -23.097477, -58.421936), (22.792076, -23.097477, -55.032887), (33.09042, -23.097477, -49.528996), (42.11714, -23.097477, -42.121773), (49.525356, -23.097477, -33.095863), (55.03038, -23.097477, -22.798128), (58.42066, -23.097477, -11.624288), (59.565907, -23.097477, -1.458944e-14), (63.888153, -20.787477, 0), (62.660583, -20.787477, 12.463838), (59.025055, -20.787477, 24.448706), (53.12127, -20.787477, 35.494045), (45.1761, -20.787477, 45.175392), (35.494877, -20.787477, 53.12071), (24.449633, -20.787477, 59.02467), (12.464822, -20.787477, 62.66039), (0.0010035528, -20.787477, 63.888153), (-12.462853, -20.787477, 62.66078), (-24.447779, -20.787477, 59.025436), (-35.49321, -20.787477, 53.121826), (-45.174683, -20.787477, 45.17681), (-53.12015, -20.787477, 35.495712), (-59.024284, -20.787477, 24.45056), (-62.660194, -20.787477, 12.465806), (-63.888153, -20.787477, 0.0020071056), (-62.660976, -20.787477, -12.461869), (-59.02582, -20.787477, -24.446852), (-53.122383, -20.787477, -35.492374), (-45.17752, -20.787477, -45.173973), (-35.496548, -20.787477, -53.119595), (-24.451488, -20.787477, -59.023903), (-12.46679, -20.787477, -62.659996), (-0.0030106583, -20.787477, -63.888153), (12.460885, -20.787477, -62.66117), (24.445925, -20.787477, -59.026207), (35.49154, -20.787477, -53.12294), (45.173264, -20.787477, -45.17823), (53.119038, -20.787477, -35.497383), (59.023518, -20.787477, -24.452415), (62.6598, -20.787477, -12.467774), (63.888153, -20.787477, -1.5648085e-14), (67.6767, -17.678642, 0), (66.376335, -17.678642, 13.202938), (62.52522, -17.678642, 25.898506), (56.27134, -17.678642, 37.598827), (47.855026, -17.678642, 47.854275), (37.599712, -17.678642, 56.27075), (25.899488, -17.678642, 62.52481), (13.203981, -17.678642, 66.37613), (0.001063063, -17.678642, 67.6767), (-13.201896, -17.678642, 66.37654), (-25.897524, -17.678642, 62.525623), (-37.597942, -17.678642, 56.27193), (-47.853523, -17.678642, 47.855778), (-56.270157, -17.678642, 37.600594), (-62.524403, -17.678642, 25.900469), (-66.37592, -17.678642, 13.205024), (-67.6767, -17.678642, 0.002126126), (-66.37675, -17.678642, -13.200853), (-62.52603, -17.678642, -25.896542), (-56.272522, -17.678642, -37.59706), (-47.85653, -17.678642, -47.85277), (-37.60148, -17.678642, -56.269566), (-25.901451, -17.678642, -62.524), (-13.206066, -17.678642, -66.37571), (-0.0031891891, -17.678642, -67.6767), (13.19981, -17.678642, -66.37695), (25.89556, -17.678642, -62.52644), (37.596176, -17.678642, -56.27311), (47.85202, -17.678642, -47.857285), (56.26898, -17.678642, -37.602364), (62.52359, -17.678642, -25.902433), (66.3755, -17.678642, -13.2071085), (67.6767, -17.678642, -1.657601e-14), (70.78595, -13.890439, 0), (69.42584, -13.890439, 13.809517), (65.3978, -13.890439, 27.088354), (58.856598, -13.890439, 39.32622), (50.05362, -13.890439, 50.052834), (39.327145, -13.890439, 58.85598), (27.08938, -13.890439, 65.39737), (13.810608, -13.890439, 69.42563), (0.0011119031, -13.890439, 70.78595), (-13.808427, -13.890439, 69.42606), (-27.087326, -13.890439, 65.398224), (-39.325294, -13.890439, 58.857216), (-50.052044, -13.890439, 50.054405), (-58.855362, -13.890439, 39.328068), (-65.39694, -13.890439, 27.090408), (-69.42541, -13.890439, 13.811698), (-70.78595, -13.890439, 0.0022238062), (-69.42628, -13.890439, -13.807336), (-65.39864, -13.890439, -27.086298), (-58.857834, -13.890439, -39.32437), (-50.05519, -13.890439, -50.051258), (-39.328995, -13.890439, -58.854744), (-27.091434, -13.890439, -65.39652), (-13.812789, -13.890439, -69.42519), (-0.0033357092, -13.890439, -70.78595), (13.806246, -13.890439, -69.4265), (27.085272, -13.890439, -65.39907), (39.323444, -13.890439, -58.85845), (50.050472, -13.890439, -50.055977), (58.854126, -13.890439, -39.329918), (65.396095, -13.890439, -27.092463), (69.42498, -13.890439, -13.813879), (70.78595, -13.890439, -1.7337557e-14), (73.09643, -9.568446, 0), (71.691925, -9.568446, 14.260264), (67.5324, -9.568446, 27.972525), (60.777695, -9.568446, 40.60984), (51.68738, -9.568446, 51.686573), (40.610794, -9.568446, 60.777058), (27.973587, -9.568446, 67.53196), (14.261391, -9.568446, 71.6917), (0.0011481959, -9.568446, 73.09643), (-14.259138, -9.568446, 71.69215), (-27.971464, -9.568446, 67.53284), (-40.608887, -9.568446, 60.77833), (-51.68576, -9.568446, 51.688194), (-60.77642, -9.568446, 40.611748), (-67.531525, -9.568446, 27.974648), (-71.691475, -9.568446, 14.262517), (-73.09643, -9.568446, 0.0022963919), (-71.692375, -9.568446, -14.258012), (-67.53328, -9.568446, -27.970404), (-60.778973, -9.568446, -40.60793), (-51.689007, -9.568446, -51.684948), (-40.612705, -9.568446, -60.77578), (-27.975708, -9.568446, -67.53108), (-14.263642, -9.568446, -71.69125), (-0.0034445878, -9.568446, -73.09643), (14.256886, -9.568446, -71.6926), (27.969343, -9.568446, -67.53372), (40.606976, -9.568446, -60.77961), (51.684135, -9.568446, -51.68982), (60.775143, -9.568446, -40.61366), (67.53064, -9.568446, -27.976768), (71.69103, -9.568446, -14.264769), (73.09643, -9.568446, -1.7903461e-14), (74.51933, -4.8787503, 0), (73.087494, -4.8787503, 14.537858), (68.847, -4.8787503, 28.517044), (61.960808, -4.8787503, 41.40036), (52.693542, -4.8787503, 52.692715), (41.401333, -4.8787503, 61.960155), (28.518126, -4.8787503, 68.84655), (14.539005, -4.8787503, 73.087265), (0.001170547, -4.8787503, 74.51933), (-14.53671, -4.8787503, 73.08772), (-28.515963, -4.8787503, 68.84745), (-41.399387, -4.8787503, 61.961456), (-52.691887, -4.8787503, 52.69437), (-61.959507, -4.8787503, 41.402306), (-68.84611, -4.8787503, 28.519207), (-73.087036, -4.8787503, 14.5401535), (-74.51933, -4.8787503, 0.002341094), (-73.08795, -4.8787503, -14.535562), (-68.84789, -4.8787503, -28.514881), (-61.96211, -4.8787503, -41.398415), (-52.695198, -4.8787503, -52.69106), (-41.40328, -4.8787503, -61.958855), (-28.520288, -4.8787503, -68.84566), (-14.541302, -4.8787503, -73.08681), (-0.003511641, -4.8787503, -74.51933), (14.534413, -4.8787503, -73.08818), (28.5138, -4.8787503, -68.84834), (41.397438, -4.8787503, -61.962757), (52.69023, -4.8787503, -52.696026), (61.958206, -4.8787503, -41.40425), (68.84521, -4.8787503, -28.52137), (73.08658, -4.8787503, -14.54245), (74.51933, -4.8787503, -1.8251973e-14), (75, -6.1232338e-15, 0), (73.55892, -6.1232338e-15, 14.63163), (69.29108, -6.1232338e-15, 28.700985), (62.360466, -6.1232338e-15, 41.6674), (53.033424, -6.1232338e-15, 53.032593), (41.66838, -6.1232338e-15, 62.359814), (28.702074, -6.1232338e-15, 69.29063), (14.632785, -6.1232338e-15, 73.55869), (0.0011780972, -6.1232338e-15, 75), (-14.630474, -6.1232338e-15, 73.55916), (-28.699898, -6.1232338e-15, 69.29153), (-41.66642, -6.1232338e-15, 62.361122), (-53.031757, -6.1232338e-15, 53.03426), (-62.359158, -6.1232338e-15, 41.66936), (-69.29018, -6.1232338e-15, 28.703161), (-73.558464, -6.1232338e-15, 14.633941), (-75, -6.1232338e-15, 0.0023561944), (-73.55939, -6.1232338e-15, -14.629319), (-69.29198, -6.1232338e-15, -28.698809), (-62.361774, -6.1232338e-15, -41.66544), (-53.03509, -6.1232338e-15, -53.030926), (-41.670338, -6.1232338e-15, -62.3585), (-28.70425, -6.1232338e-15, -69.28973), (-14.635097, -6.1232338e-15, -73.558235), (-0.0035342916, -6.1232338e-15, -75), (14.628163, -6.1232338e-15, -73.559616), (28.69772, -6.1232338e-15, -69.29243), (41.664463, -6.1232338e-15, -62.36243), (53.030094, -6.1232338e-15, -53.035923), (62.35785, -6.1232338e-15, -41.671318), (69.289276, -6.1232338e-15, -28.70534), (73.55801, -6.1232338e-15, -14.636251), (75, -6.1232338e-15, -1.8369702e-14)] float2[] primvars:st = [(1, 0), (1, 0.031249687), (0.9687503, 0.031249687), (0.9687503, 0), (0.9687503, 0), (0.9687503, 0.031249687), (0.9375006, 0.031249687), (0.9375006, 0), (0.9375006, 0), (0.9375006, 0.031249687), (0.90625095, 0.031249687), (0.90625095, 0), (0.90625095, 0), (0.90625095, 0.031249687), (0.87500125, 0.031249687), (0.87500125, 0), (0.87500125, 0), (0.87500125, 0.031249687), (0.84375155, 0.031249687), (0.84375155, 0), (0.84375155, 0), (0.84375155, 0.031249687), (0.81250185, 0.031249687), (0.81250185, 0), (0.81250185, 0), (0.81250185, 0.031249687), (0.7812522, 0.031249687), (0.7812522, 0), (0.7812522, 0), (0.7812522, 0.031249687), (0.7500025, 0.031249687), (0.7500025, 0), (0.7500025, 0), (0.7500025, 0.031249687), (0.7187528, 0.031249687), (0.7187528, 0), (0.7187528, 0), (0.7187528, 0.031249687), (0.6875031, 0.031249687), (0.6875031, 0), (0.6875031, 0), (0.6875031, 0.031249687), (0.65625346, 0.031249687), (0.65625346, 0), (0.65625346, 0), (0.65625346, 0.031249687), (0.62500376, 0.031249687), (0.62500376, 0), (0.62500376, 0), (0.62500376, 0.031249687), (0.59375405, 0.031249687), (0.59375405, 0), (0.59375405, 0), (0.59375405, 0.031249687), (0.56250435, 0.031249687), (0.56250435, 0), (0.56250435, 0), (0.56250435, 0.031249687), (0.5312547, 0.031249687), (0.5312547, 0), (0.5312547, 0), (0.5312547, 0.031249687), (0.500005, 0.031249687), (0.500005, 0), (0.500005, 0), (0.500005, 0.031249687), (0.4687553, 0.031249687), (0.4687553, 0), (0.4687553, 0), (0.4687553, 0.031249687), (0.43750563, 0.031249687), (0.43750563, 0), (0.43750563, 0), (0.43750563, 0.031249687), (0.40625593, 0.031249687), (0.40625593, 0), (0.40625593, 0), (0.40625593, 0.031249687), (0.37500626, 0.031249687), (0.37500626, 0), (0.37500626, 0), (0.37500626, 0.031249687), (0.34375656, 0.031249687), (0.34375656, 0), (0.34375656, 0), (0.34375656, 0.031249687), (0.31250688, 0.031249687), (0.31250688, 0), (0.31250688, 0), (0.31250688, 0.031249687), (0.28125718, 0.031249687), (0.28125718, 0), (0.28125718, 0), (0.28125718, 0.031249687), (0.2500075, 0.031249687), (0.2500075, 0), (0.2500075, 0), (0.2500075, 0.031249687), (0.21875781, 0.031249687), (0.21875781, 0), (0.21875781, 0), (0.21875781, 0.031249687), (0.18750812, 0.031249687), (0.18750812, 0), (0.18750812, 0), (0.18750812, 0.031249687), (0.15625843, 0.031249687), (0.15625843, 0), (0.15625843, 0), (0.15625843, 0.031249687), (0.12500875, 0.031249687), (0.12500875, 0), (0.12500875, 0), (0.12500875, 0.031249687), (0.09375906, 0.031249687), (0.09375906, 0), (0.09375906, 0), (0.09375906, 0.031249687), (0.06250937, 0.031249687), (0.06250937, 0), (0.06250937, 0), (0.06250937, 0.031249687), (0.031259686, 0.031249687), (0.031259686, 0), (0.031259686, 0), (0.031259686, 0.031249687), (0.00001, 0.031249687), (0.00001, 0), (0.00001, 0), (0.00001, 0.031249687), (1, 0.031249687), (1, 0), (1, 0.031249687), (1, 0.062499374), (0.9687503, 0.062499374), (0.9687503, 0.031249687), (0.9687503, 0.031249687), (0.9687503, 0.062499374), (0.9375006, 0.062499374), (0.9375006, 0.031249687), (0.9375006, 0.031249687), (0.9375006, 0.062499374), (0.90625095, 0.062499374), (0.90625095, 0.031249687), (0.90625095, 0.031249687), (0.90625095, 0.062499374), (0.87500125, 0.062499374), (0.87500125, 0.031249687), (0.87500125, 0.031249687), (0.87500125, 0.062499374), (0.84375155, 0.062499374), (0.84375155, 0.031249687), (0.84375155, 0.031249687), (0.84375155, 0.062499374), (0.81250185, 0.062499374), (0.81250185, 0.031249687), (0.81250185, 0.031249687), (0.81250185, 0.062499374), (0.7812522, 0.062499374), (0.7812522, 0.031249687), (0.7812522, 0.031249687), (0.7812522, 0.062499374), (0.7500025, 0.062499374), (0.7500025, 0.031249687), (0.7500025, 0.031249687), (0.7500025, 0.062499374), (0.7187528, 0.062499374), (0.7187528, 0.031249687), (0.7187528, 0.031249687), (0.7187528, 0.062499374), (0.6875031, 0.062499374), (0.6875031, 0.031249687), (0.6875031, 0.031249687), (0.6875031, 0.062499374), (0.65625346, 0.062499374), (0.65625346, 0.031249687), (0.65625346, 0.031249687), (0.65625346, 0.062499374), (0.62500376, 0.062499374), (0.62500376, 0.031249687), (0.62500376, 0.031249687), (0.62500376, 0.062499374), (0.59375405, 0.062499374), (0.59375405, 0.031249687), (0.59375405, 0.031249687), (0.59375405, 0.062499374), (0.56250435, 0.062499374), (0.56250435, 0.031249687), (0.56250435, 0.031249687), (0.56250435, 0.062499374), (0.5312547, 0.062499374), (0.5312547, 0.031249687), (0.5312547, 0.031249687), (0.5312547, 0.062499374), (0.500005, 0.062499374), (0.500005, 0.031249687), (0.500005, 0.031249687), (0.500005, 0.062499374), (0.4687553, 0.062499374), (0.4687553, 0.031249687), (0.4687553, 0.031249687), (0.4687553, 0.062499374), (0.43750563, 0.062499374), (0.43750563, 0.031249687), (0.43750563, 0.031249687), (0.43750563, 0.062499374), (0.40625593, 0.062499374), (0.40625593, 0.031249687), (0.40625593, 0.031249687), (0.40625593, 0.062499374), (0.37500626, 0.062499374), (0.37500626, 0.031249687), (0.37500626, 0.031249687), (0.37500626, 0.062499374), (0.34375656, 0.062499374), (0.34375656, 0.031249687), (0.34375656, 0.031249687), (0.34375656, 0.062499374), (0.31250688, 0.062499374), (0.31250688, 0.031249687), (0.31250688, 0.031249687), (0.31250688, 0.062499374), (0.28125718, 0.062499374), (0.28125718, 0.031249687), (0.28125718, 0.031249687), (0.28125718, 0.062499374), (0.2500075, 0.062499374), (0.2500075, 0.031249687), (0.2500075, 0.031249687), (0.2500075, 0.062499374), (0.21875781, 0.062499374), (0.21875781, 0.031249687), (0.21875781, 0.031249687), (0.21875781, 0.062499374), (0.18750812, 0.062499374), (0.18750812, 0.031249687), (0.18750812, 0.031249687), (0.18750812, 0.062499374), (0.15625843, 0.062499374), (0.15625843, 0.031249687), (0.15625843, 0.031249687), (0.15625843, 0.062499374), (0.12500875, 0.062499374), (0.12500875, 0.031249687), (0.12500875, 0.031249687), (0.12500875, 0.062499374), (0.09375906, 0.062499374), (0.09375906, 0.031249687), (0.09375906, 0.031249687), (0.09375906, 0.062499374), (0.06250937, 0.062499374), (0.06250937, 0.031249687), (0.06250937, 0.031249687), (0.06250937, 0.062499374), (0.031259686, 0.062499374), (0.031259686, 0.031249687), (0.031259686, 0.031249687), (0.031259686, 0.062499374), (0.00001, 0.062499374), (0.00001, 0.031249687), (0.00001, 0.031249687), (0.00001, 0.062499374), (1, 0.062499374), (1, 0.031249687), (1, 0.062499374), (1, 0.09374906), (0.9687503, 0.09374906), (0.9687503, 0.062499374), (0.9687503, 0.062499374), (0.9687503, 0.09374906), (0.9375006, 0.09374906), (0.9375006, 0.062499374), (0.9375006, 0.062499374), (0.9375006, 0.09374906), (0.90625095, 0.09374906), (0.90625095, 0.062499374), (0.90625095, 0.062499374), (0.90625095, 0.09374906), (0.87500125, 0.09374906), (0.87500125, 0.062499374), (0.87500125, 0.062499374), (0.87500125, 0.09374906), (0.84375155, 0.09374906), (0.84375155, 0.062499374), (0.84375155, 0.062499374), (0.84375155, 0.09374906), (0.81250185, 0.09374906), (0.81250185, 0.062499374), (0.81250185, 0.062499374), (0.81250185, 0.09374906), (0.7812522, 0.09374906), (0.7812522, 0.062499374), (0.7812522, 0.062499374), (0.7812522, 0.09374906), (0.7500025, 0.09374906), (0.7500025, 0.062499374), (0.7500025, 0.062499374), (0.7500025, 0.09374906), (0.7187528, 0.09374906), (0.7187528, 0.062499374), (0.7187528, 0.062499374), (0.7187528, 0.09374906), (0.6875031, 0.09374906), (0.6875031, 0.062499374), (0.6875031, 0.062499374), (0.6875031, 0.09374906), (0.65625346, 0.09374906), (0.65625346, 0.062499374), (0.65625346, 0.062499374), (0.65625346, 0.09374906), (0.62500376, 0.09374906), (0.62500376, 0.062499374), (0.62500376, 0.062499374), (0.62500376, 0.09374906), (0.59375405, 0.09374906), (0.59375405, 0.062499374), (0.59375405, 0.062499374), (0.59375405, 0.09374906), (0.56250435, 0.09374906), (0.56250435, 0.062499374), (0.56250435, 0.062499374), (0.56250435, 0.09374906), (0.5312547, 0.09374906), (0.5312547, 0.062499374), (0.5312547, 0.062499374), (0.5312547, 0.09374906), (0.500005, 0.09374906), (0.500005, 0.062499374), (0.500005, 0.062499374), (0.500005, 0.09374906), (0.4687553, 0.09374906), (0.4687553, 0.062499374), (0.4687553, 0.062499374), (0.4687553, 0.09374906), (0.43750563, 0.09374906), (0.43750563, 0.062499374), (0.43750563, 0.062499374), (0.43750563, 0.09374906), (0.40625593, 0.09374906), (0.40625593, 0.062499374), (0.40625593, 0.062499374), (0.40625593, 0.09374906), (0.37500626, 0.09374906), (0.37500626, 0.062499374), (0.37500626, 0.062499374), (0.37500626, 0.09374906), (0.34375656, 0.09374906), (0.34375656, 0.062499374), (0.34375656, 0.062499374), (0.34375656, 0.09374906), (0.31250688, 0.09374906), (0.31250688, 0.062499374), (0.31250688, 0.062499374), (0.31250688, 0.09374906), (0.28125718, 0.09374906), (0.28125718, 0.062499374), (0.28125718, 0.062499374), (0.28125718, 0.09374906), (0.2500075, 0.09374906), (0.2500075, 0.062499374), (0.2500075, 0.062499374), (0.2500075, 0.09374906), (0.21875781, 0.09374906), (0.21875781, 0.062499374), (0.21875781, 0.062499374), (0.21875781, 0.09374906), (0.18750812, 0.09374906), (0.18750812, 0.062499374), (0.18750812, 0.062499374), (0.18750812, 0.09374906), (0.15625843, 0.09374906), (0.15625843, 0.062499374), (0.15625843, 0.062499374), (0.15625843, 0.09374906), (0.12500875, 0.09374906), (0.12500875, 0.062499374), (0.12500875, 0.062499374), (0.12500875, 0.09374906), (0.09375906, 0.09374906), (0.09375906, 0.062499374), (0.09375906, 0.062499374), (0.09375906, 0.09374906), (0.06250937, 0.09374906), (0.06250937, 0.062499374), (0.06250937, 0.062499374), (0.06250937, 0.09374906), (0.031259686, 0.09374906), (0.031259686, 0.062499374), (0.031259686, 0.062499374), (0.031259686, 0.09374906), (0.00001, 0.09374906), (0.00001, 0.062499374), (0.00001, 0.062499374), (0.00001, 0.09374906), (1, 0.09374906), (1, 0.062499374), (1, 0.09374906), (1, 0.12499875), (0.9687503, 0.12499875), (0.9687503, 0.09374906), (0.9687503, 0.09374906), (0.9687503, 0.12499875), (0.9375006, 0.12499875), (0.9375006, 0.09374906), (0.9375006, 0.09374906), (0.9375006, 0.12499875), (0.90625095, 0.12499875), (0.90625095, 0.09374906), (0.90625095, 0.09374906), (0.90625095, 0.12499875), (0.87500125, 0.12499875), (0.87500125, 0.09374906), (0.87500125, 0.09374906), (0.87500125, 0.12499875), (0.84375155, 0.12499875), (0.84375155, 0.09374906), (0.84375155, 0.09374906), (0.84375155, 0.12499875), (0.81250185, 0.12499875), (0.81250185, 0.09374906), (0.81250185, 0.09374906), (0.81250185, 0.12499875), (0.7812522, 0.12499875), (0.7812522, 0.09374906), (0.7812522, 0.09374906), (0.7812522, 0.12499875), (0.7500025, 0.12499875), (0.7500025, 0.09374906), (0.7500025, 0.09374906), (0.7500025, 0.12499875), (0.7187528, 0.12499875), (0.7187528, 0.09374906), (0.7187528, 0.09374906), (0.7187528, 0.12499875), (0.6875031, 0.12499875), (0.6875031, 0.09374906), (0.6875031, 0.09374906), (0.6875031, 0.12499875), (0.65625346, 0.12499875), (0.65625346, 0.09374906), (0.65625346, 0.09374906), (0.65625346, 0.12499875), (0.62500376, 0.12499875), (0.62500376, 0.09374906), (0.62500376, 0.09374906), (0.62500376, 0.12499875), (0.59375405, 0.12499875), (0.59375405, 0.09374906), (0.59375405, 0.09374906), (0.59375405, 0.12499875), (0.56250435, 0.12499875), (0.56250435, 0.09374906), (0.56250435, 0.09374906), (0.56250435, 0.12499875), (0.5312547, 0.12499875), (0.5312547, 0.09374906), (0.5312547, 0.09374906), (0.5312547, 0.12499875), (0.500005, 0.12499875), (0.500005, 0.09374906), (0.500005, 0.09374906), (0.500005, 0.12499875), (0.4687553, 0.12499875), (0.4687553, 0.09374906), (0.4687553, 0.09374906), (0.4687553, 0.12499875), (0.43750563, 0.12499875), (0.43750563, 0.09374906), (0.43750563, 0.09374906), (0.43750563, 0.12499875), (0.40625593, 0.12499875), (0.40625593, 0.09374906), (0.40625593, 0.09374906), (0.40625593, 0.12499875), (0.37500626, 0.12499875), (0.37500626, 0.09374906), (0.37500626, 0.09374906), (0.37500626, 0.12499875), (0.34375656, 0.12499875), (0.34375656, 0.09374906), (0.34375656, 0.09374906), (0.34375656, 0.12499875), (0.31250688, 0.12499875), (0.31250688, 0.09374906), (0.31250688, 0.09374906), (0.31250688, 0.12499875), (0.28125718, 0.12499875), (0.28125718, 0.09374906), (0.28125718, 0.09374906), (0.28125718, 0.12499875), (0.2500075, 0.12499875), (0.2500075, 0.09374906), (0.2500075, 0.09374906), (0.2500075, 0.12499875), (0.21875781, 0.12499875), (0.21875781, 0.09374906), (0.21875781, 0.09374906), (0.21875781, 0.12499875), (0.18750812, 0.12499875), (0.18750812, 0.09374906), (0.18750812, 0.09374906), (0.18750812, 0.12499875), (0.15625843, 0.12499875), (0.15625843, 0.09374906), (0.15625843, 0.09374906), (0.15625843, 0.12499875), (0.12500875, 0.12499875), (0.12500875, 0.09374906), (0.12500875, 0.09374906), (0.12500875, 0.12499875), (0.09375906, 0.12499875), (0.09375906, 0.09374906), (0.09375906, 0.09374906), (0.09375906, 0.12499875), (0.06250937, 0.12499875), (0.06250937, 0.09374906), (0.06250937, 0.09374906), (0.06250937, 0.12499875), (0.031259686, 0.12499875), (0.031259686, 0.09374906), (0.031259686, 0.09374906), (0.031259686, 0.12499875), (0.00001, 0.12499875), (0.00001, 0.09374906), (0.00001, 0.09374906), (0.00001, 0.12499875), (1, 0.12499875), (1, 0.09374906), (1, 0.12499875), (1, 0.15624844), (0.9687503, 0.15624844), (0.9687503, 0.12499875), (0.9687503, 0.12499875), (0.9687503, 0.15624844), (0.9375006, 0.15624844), (0.9375006, 0.12499875), (0.9375006, 0.12499875), (0.9375006, 0.15624844), (0.90625095, 0.15624844), (0.90625095, 0.12499875), (0.90625095, 0.12499875), (0.90625095, 0.15624844), (0.87500125, 0.15624844), (0.87500125, 0.12499875), (0.87500125, 0.12499875), (0.87500125, 0.15624844), (0.84375155, 0.15624844), (0.84375155, 0.12499875), (0.84375155, 0.12499875), (0.84375155, 0.15624844), (0.81250185, 0.15624844), (0.81250185, 0.12499875), (0.81250185, 0.12499875), (0.81250185, 0.15624844), (0.7812522, 0.15624844), (0.7812522, 0.12499875), (0.7812522, 0.12499875), (0.7812522, 0.15624844), (0.7500025, 0.15624844), (0.7500025, 0.12499875), (0.7500025, 0.12499875), (0.7500025, 0.15624844), (0.7187528, 0.15624844), (0.7187528, 0.12499875), (0.7187528, 0.12499875), (0.7187528, 0.15624844), (0.6875031, 0.15624844), (0.6875031, 0.12499875), (0.6875031, 0.12499875), (0.6875031, 0.15624844), (0.65625346, 0.15624844), (0.65625346, 0.12499875), (0.65625346, 0.12499875), (0.65625346, 0.15624844), (0.62500376, 0.15624844), (0.62500376, 0.12499875), (0.62500376, 0.12499875), (0.62500376, 0.15624844), (0.59375405, 0.15624844), (0.59375405, 0.12499875), (0.59375405, 0.12499875), (0.59375405, 0.15624844), (0.56250435, 0.15624844), (0.56250435, 0.12499875), (0.56250435, 0.12499875), (0.56250435, 0.15624844), (0.5312547, 0.15624844), (0.5312547, 0.12499875), (0.5312547, 0.12499875), (0.5312547, 0.15624844), (0.500005, 0.15624844), (0.500005, 0.12499875), (0.500005, 0.12499875), (0.500005, 0.15624844), (0.4687553, 0.15624844), (0.4687553, 0.12499875), (0.4687553, 0.12499875), (0.4687553, 0.15624844), (0.43750563, 0.15624844), (0.43750563, 0.12499875), (0.43750563, 0.12499875), (0.43750563, 0.15624844), (0.40625593, 0.15624844), (0.40625593, 0.12499875), (0.40625593, 0.12499875), (0.40625593, 0.15624844), (0.37500626, 0.15624844), (0.37500626, 0.12499875), (0.37500626, 0.12499875), (0.37500626, 0.15624844), (0.34375656, 0.15624844), (0.34375656, 0.12499875), (0.34375656, 0.12499875), (0.34375656, 0.15624844), (0.31250688, 0.15624844), (0.31250688, 0.12499875), (0.31250688, 0.12499875), (0.31250688, 0.15624844), (0.28125718, 0.15624844), (0.28125718, 0.12499875), (0.28125718, 0.12499875), (0.28125718, 0.15624844), (0.2500075, 0.15624844), (0.2500075, 0.12499875), (0.2500075, 0.12499875), (0.2500075, 0.15624844), (0.21875781, 0.15624844), (0.21875781, 0.12499875), (0.21875781, 0.12499875), (0.21875781, 0.15624844), (0.18750812, 0.15624844), (0.18750812, 0.12499875), (0.18750812, 0.12499875), (0.18750812, 0.15624844), (0.15625843, 0.15624844), (0.15625843, 0.12499875), (0.15625843, 0.12499875), (0.15625843, 0.15624844), (0.12500875, 0.15624844), (0.12500875, 0.12499875), (0.12500875, 0.12499875), (0.12500875, 0.15624844), (0.09375906, 0.15624844), (0.09375906, 0.12499875), (0.09375906, 0.12499875), (0.09375906, 0.15624844), (0.06250937, 0.15624844), (0.06250937, 0.12499875), (0.06250937, 0.12499875), (0.06250937, 0.15624844), (0.031259686, 0.15624844), (0.031259686, 0.12499875), (0.031259686, 0.12499875), (0.031259686, 0.15624844), (0.00001, 0.15624844), (0.00001, 0.12499875), (0.00001, 0.12499875), (0.00001, 0.15624844), (1, 0.15624844), (1, 0.12499875), (1, 0.15624844), (1, 0.18749812), (0.9687503, 0.18749812), (0.9687503, 0.15624844), (0.9687503, 0.15624844), (0.9687503, 0.18749812), (0.9375006, 0.18749812), (0.9375006, 0.15624844), (0.9375006, 0.15624844), (0.9375006, 0.18749812), (0.90625095, 0.18749812), (0.90625095, 0.15624844), (0.90625095, 0.15624844), (0.90625095, 0.18749812), (0.87500125, 0.18749812), (0.87500125, 0.15624844), (0.87500125, 0.15624844), (0.87500125, 0.18749812), (0.84375155, 0.18749812), (0.84375155, 0.15624844), (0.84375155, 0.15624844), (0.84375155, 0.18749812), (0.81250185, 0.18749812), (0.81250185, 0.15624844), (0.81250185, 0.15624844), (0.81250185, 0.18749812), (0.7812522, 0.18749812), (0.7812522, 0.15624844), (0.7812522, 0.15624844), (0.7812522, 0.18749812), (0.7500025, 0.18749812), (0.7500025, 0.15624844), (0.7500025, 0.15624844), (0.7500025, 0.18749812), (0.7187528, 0.18749812), (0.7187528, 0.15624844), (0.7187528, 0.15624844), (0.7187528, 0.18749812), (0.6875031, 0.18749812), (0.6875031, 0.15624844), (0.6875031, 0.15624844), (0.6875031, 0.18749812), (0.65625346, 0.18749812), (0.65625346, 0.15624844), (0.65625346, 0.15624844), (0.65625346, 0.18749812), (0.62500376, 0.18749812), (0.62500376, 0.15624844), (0.62500376, 0.15624844), (0.62500376, 0.18749812), (0.59375405, 0.18749812), (0.59375405, 0.15624844), (0.59375405, 0.15624844), (0.59375405, 0.18749812), (0.56250435, 0.18749812), (0.56250435, 0.15624844), (0.56250435, 0.15624844), (0.56250435, 0.18749812), (0.5312547, 0.18749812), (0.5312547, 0.15624844), (0.5312547, 0.15624844), (0.5312547, 0.18749812), (0.500005, 0.18749812), (0.500005, 0.15624844), (0.500005, 0.15624844), (0.500005, 0.18749812), (0.4687553, 0.18749812), (0.4687553, 0.15624844), (0.4687553, 0.15624844), (0.4687553, 0.18749812), (0.43750563, 0.18749812), (0.43750563, 0.15624844), (0.43750563, 0.15624844), (0.43750563, 0.18749812), (0.40625593, 0.18749812), (0.40625593, 0.15624844), (0.40625593, 0.15624844), (0.40625593, 0.18749812), (0.37500626, 0.18749812), (0.37500626, 0.15624844), (0.37500626, 0.15624844), (0.37500626, 0.18749812), (0.34375656, 0.18749812), (0.34375656, 0.15624844), (0.34375656, 0.15624844), (0.34375656, 0.18749812), (0.31250688, 0.18749812), (0.31250688, 0.15624844), (0.31250688, 0.15624844), (0.31250688, 0.18749812), (0.28125718, 0.18749812), (0.28125718, 0.15624844), (0.28125718, 0.15624844), (0.28125718, 0.18749812), (0.2500075, 0.18749812), (0.2500075, 0.15624844), (0.2500075, 0.15624844), (0.2500075, 0.18749812), (0.21875781, 0.18749812), (0.21875781, 0.15624844), (0.21875781, 0.15624844), (0.21875781, 0.18749812), (0.18750812, 0.18749812), (0.18750812, 0.15624844), (0.18750812, 0.15624844), (0.18750812, 0.18749812), (0.15625843, 0.18749812), (0.15625843, 0.15624844), (0.15625843, 0.15624844), (0.15625843, 0.18749812), (0.12500875, 0.18749812), (0.12500875, 0.15624844), (0.12500875, 0.15624844), (0.12500875, 0.18749812), (0.09375906, 0.18749812), (0.09375906, 0.15624844), (0.09375906, 0.15624844), (0.09375906, 0.18749812), (0.06250937, 0.18749812), (0.06250937, 0.15624844), (0.06250937, 0.15624844), (0.06250937, 0.18749812), (0.031259686, 0.18749812), (0.031259686, 0.15624844), (0.031259686, 0.15624844), (0.031259686, 0.18749812), (0.00001, 0.18749812), (0.00001, 0.15624844), (0.00001, 0.15624844), (0.00001, 0.18749812), (1, 0.18749812), (1, 0.15624844), (1, 0.18749812), (1, 0.21874781), (0.9687503, 0.21874781), (0.9687503, 0.18749812), (0.9687503, 0.18749812), (0.9687503, 0.21874781), (0.9375006, 0.21874781), (0.9375006, 0.18749812), (0.9375006, 0.18749812), (0.9375006, 0.21874781), (0.90625095, 0.21874781), (0.90625095, 0.18749812), (0.90625095, 0.18749812), (0.90625095, 0.21874781), (0.87500125, 0.21874781), (0.87500125, 0.18749812), (0.87500125, 0.18749812), (0.87500125, 0.21874781), (0.84375155, 0.21874781), (0.84375155, 0.18749812), (0.84375155, 0.18749812), (0.84375155, 0.21874781), (0.81250185, 0.21874781), (0.81250185, 0.18749812), (0.81250185, 0.18749812), (0.81250185, 0.21874781), (0.7812522, 0.21874781), (0.7812522, 0.18749812), (0.7812522, 0.18749812), (0.7812522, 0.21874781), (0.7500025, 0.21874781), (0.7500025, 0.18749812), (0.7500025, 0.18749812), (0.7500025, 0.21874781), (0.7187528, 0.21874781), (0.7187528, 0.18749812), (0.7187528, 0.18749812), (0.7187528, 0.21874781), (0.6875031, 0.21874781), (0.6875031, 0.18749812), (0.6875031, 0.18749812), (0.6875031, 0.21874781), (0.65625346, 0.21874781), (0.65625346, 0.18749812), (0.65625346, 0.18749812), (0.65625346, 0.21874781), (0.62500376, 0.21874781), (0.62500376, 0.18749812), (0.62500376, 0.18749812), (0.62500376, 0.21874781), (0.59375405, 0.21874781), (0.59375405, 0.18749812), (0.59375405, 0.18749812), (0.59375405, 0.21874781), (0.56250435, 0.21874781), (0.56250435, 0.18749812), (0.56250435, 0.18749812), (0.56250435, 0.21874781), (0.5312547, 0.21874781), (0.5312547, 0.18749812), (0.5312547, 0.18749812), (0.5312547, 0.21874781), (0.500005, 0.21874781), (0.500005, 0.18749812), (0.500005, 0.18749812), (0.500005, 0.21874781), (0.4687553, 0.21874781), (0.4687553, 0.18749812), (0.4687553, 0.18749812), (0.4687553, 0.21874781), (0.43750563, 0.21874781), (0.43750563, 0.18749812), (0.43750563, 0.18749812), (0.43750563, 0.21874781), (0.40625593, 0.21874781), (0.40625593, 0.18749812), (0.40625593, 0.18749812), (0.40625593, 0.21874781), (0.37500626, 0.21874781), (0.37500626, 0.18749812), (0.37500626, 0.18749812), (0.37500626, 0.21874781), (0.34375656, 0.21874781), (0.34375656, 0.18749812), (0.34375656, 0.18749812), (0.34375656, 0.21874781), (0.31250688, 0.21874781), (0.31250688, 0.18749812), (0.31250688, 0.18749812), (0.31250688, 0.21874781), (0.28125718, 0.21874781), (0.28125718, 0.18749812), (0.28125718, 0.18749812), (0.28125718, 0.21874781), (0.2500075, 0.21874781), (0.2500075, 0.18749812), (0.2500075, 0.18749812), (0.2500075, 0.21874781), (0.21875781, 0.21874781), (0.21875781, 0.18749812), (0.21875781, 0.18749812), (0.21875781, 0.21874781), (0.18750812, 0.21874781), (0.18750812, 0.18749812), (0.18750812, 0.18749812), (0.18750812, 0.21874781), (0.15625843, 0.21874781), (0.15625843, 0.18749812), (0.15625843, 0.18749812), (0.15625843, 0.21874781), (0.12500875, 0.21874781), (0.12500875, 0.18749812), (0.12500875, 0.18749812), (0.12500875, 0.21874781), (0.09375906, 0.21874781), (0.09375906, 0.18749812), (0.09375906, 0.18749812), (0.09375906, 0.21874781), (0.06250937, 0.21874781), (0.06250937, 0.18749812), (0.06250937, 0.18749812), (0.06250937, 0.21874781), (0.031259686, 0.21874781), (0.031259686, 0.18749812), (0.031259686, 0.18749812), (0.031259686, 0.21874781), (0.00001, 0.21874781), (0.00001, 0.18749812), (0.00001, 0.18749812), (0.00001, 0.21874781), (1, 0.21874781), (1, 0.18749812), (1, 0.21874781), (1, 0.2499975), (0.9687503, 0.2499975), (0.9687503, 0.21874781), (0.9687503, 0.21874781), (0.9687503, 0.2499975), (0.9375006, 0.2499975), (0.9375006, 0.21874781), (0.9375006, 0.21874781), (0.9375006, 0.2499975), (0.90625095, 0.2499975), (0.90625095, 0.21874781), (0.90625095, 0.21874781), (0.90625095, 0.2499975), (0.87500125, 0.2499975), (0.87500125, 0.21874781), (0.87500125, 0.21874781), (0.87500125, 0.2499975), (0.84375155, 0.2499975), (0.84375155, 0.21874781), (0.84375155, 0.21874781), (0.84375155, 0.2499975), (0.81250185, 0.2499975), (0.81250185, 0.21874781), (0.81250185, 0.21874781), (0.81250185, 0.2499975), (0.7812522, 0.2499975), (0.7812522, 0.21874781), (0.7812522, 0.21874781), (0.7812522, 0.2499975), (0.7500025, 0.2499975), (0.7500025, 0.21874781), (0.7500025, 0.21874781), (0.7500025, 0.2499975), (0.7187528, 0.2499975), (0.7187528, 0.21874781), (0.7187528, 0.21874781), (0.7187528, 0.2499975), (0.6875031, 0.2499975), (0.6875031, 0.21874781), (0.6875031, 0.21874781), (0.6875031, 0.2499975), (0.65625346, 0.2499975), (0.65625346, 0.21874781), (0.65625346, 0.21874781), (0.65625346, 0.2499975), (0.62500376, 0.2499975), (0.62500376, 0.21874781), (0.62500376, 0.21874781), (0.62500376, 0.2499975), (0.59375405, 0.2499975), (0.59375405, 0.21874781), (0.59375405, 0.21874781), (0.59375405, 0.2499975), (0.56250435, 0.2499975), (0.56250435, 0.21874781), (0.56250435, 0.21874781), (0.56250435, 0.2499975), (0.5312547, 0.2499975), (0.5312547, 0.21874781), (0.5312547, 0.21874781), (0.5312547, 0.2499975), (0.500005, 0.2499975), (0.500005, 0.21874781), (0.500005, 0.21874781), (0.500005, 0.2499975), (0.4687553, 0.2499975), (0.4687553, 0.21874781), (0.4687553, 0.21874781), (0.4687553, 0.2499975), (0.43750563, 0.2499975), (0.43750563, 0.21874781), (0.43750563, 0.21874781), (0.43750563, 0.2499975), (0.40625593, 0.2499975), (0.40625593, 0.21874781), (0.40625593, 0.21874781), (0.40625593, 0.2499975), (0.37500626, 0.2499975), (0.37500626, 0.21874781), (0.37500626, 0.21874781), (0.37500626, 0.2499975), (0.34375656, 0.2499975), (0.34375656, 0.21874781), (0.34375656, 0.21874781), (0.34375656, 0.2499975), (0.31250688, 0.2499975), (0.31250688, 0.21874781), (0.31250688, 0.21874781), (0.31250688, 0.2499975), (0.28125718, 0.2499975), (0.28125718, 0.21874781), (0.28125718, 0.21874781), (0.28125718, 0.2499975), (0.2500075, 0.2499975), (0.2500075, 0.21874781), (0.2500075, 0.21874781), (0.2500075, 0.2499975), (0.21875781, 0.2499975), (0.21875781, 0.21874781), (0.21875781, 0.21874781), (0.21875781, 0.2499975), (0.18750812, 0.2499975), (0.18750812, 0.21874781), (0.18750812, 0.21874781), (0.18750812, 0.2499975), (0.15625843, 0.2499975), (0.15625843, 0.21874781), (0.15625843, 0.21874781), (0.15625843, 0.2499975), (0.12500875, 0.2499975), (0.12500875, 0.21874781), (0.12500875, 0.21874781), (0.12500875, 0.2499975), (0.09375906, 0.2499975), (0.09375906, 0.21874781), (0.09375906, 0.21874781), (0.09375906, 0.2499975), (0.06250937, 0.2499975), (0.06250937, 0.21874781), (0.06250937, 0.21874781), (0.06250937, 0.2499975), (0.031259686, 0.2499975), (0.031259686, 0.21874781), (0.031259686, 0.21874781), (0.031259686, 0.2499975), (0.00001, 0.2499975), (0.00001, 0.21874781), (0.00001, 0.21874781), (0.00001, 0.2499975), (1, 0.2499975), (1, 0.21874781), (1, 0.2499975), (1, 0.2812472), (0.9687503, 0.2812472), (0.9687503, 0.2499975), (0.9687503, 0.2499975), (0.9687503, 0.2812472), (0.9375006, 0.2812472), (0.9375006, 0.2499975), (0.9375006, 0.2499975), (0.9375006, 0.2812472), (0.90625095, 0.2812472), (0.90625095, 0.2499975), (0.90625095, 0.2499975), (0.90625095, 0.2812472), (0.87500125, 0.2812472), (0.87500125, 0.2499975), (0.87500125, 0.2499975), (0.87500125, 0.2812472), (0.84375155, 0.2812472), (0.84375155, 0.2499975), (0.84375155, 0.2499975), (0.84375155, 0.2812472), (0.81250185, 0.2812472), (0.81250185, 0.2499975), (0.81250185, 0.2499975), (0.81250185, 0.2812472), (0.7812522, 0.2812472), (0.7812522, 0.2499975), (0.7812522, 0.2499975), (0.7812522, 0.2812472), (0.7500025, 0.2812472), (0.7500025, 0.2499975), (0.7500025, 0.2499975), (0.7500025, 0.2812472), (0.7187528, 0.2812472), (0.7187528, 0.2499975), (0.7187528, 0.2499975), (0.7187528, 0.2812472), (0.6875031, 0.2812472), (0.6875031, 0.2499975), (0.6875031, 0.2499975), (0.6875031, 0.2812472), (0.65625346, 0.2812472), (0.65625346, 0.2499975), (0.65625346, 0.2499975), (0.65625346, 0.2812472), (0.62500376, 0.2812472), (0.62500376, 0.2499975), (0.62500376, 0.2499975), (0.62500376, 0.2812472), (0.59375405, 0.2812472), (0.59375405, 0.2499975), (0.59375405, 0.2499975), (0.59375405, 0.2812472), (0.56250435, 0.2812472), (0.56250435, 0.2499975), (0.56250435, 0.2499975), (0.56250435, 0.2812472), (0.5312547, 0.2812472), (0.5312547, 0.2499975), (0.5312547, 0.2499975), (0.5312547, 0.2812472), (0.500005, 0.2812472), (0.500005, 0.2499975), (0.500005, 0.2499975), (0.500005, 0.2812472), (0.4687553, 0.2812472), (0.4687553, 0.2499975), (0.4687553, 0.2499975), (0.4687553, 0.2812472), (0.43750563, 0.2812472), (0.43750563, 0.2499975), (0.43750563, 0.2499975), (0.43750563, 0.2812472), (0.40625593, 0.2812472), (0.40625593, 0.2499975), (0.40625593, 0.2499975), (0.40625593, 0.2812472), (0.37500626, 0.2812472), (0.37500626, 0.2499975), (0.37500626, 0.2499975), (0.37500626, 0.2812472), (0.34375656, 0.2812472), (0.34375656, 0.2499975), (0.34375656, 0.2499975), (0.34375656, 0.2812472), (0.31250688, 0.2812472), (0.31250688, 0.2499975), (0.31250688, 0.2499975), (0.31250688, 0.2812472), (0.28125718, 0.2812472), (0.28125718, 0.2499975), (0.28125718, 0.2499975), (0.28125718, 0.2812472), (0.2500075, 0.2812472), (0.2500075, 0.2499975), (0.2500075, 0.2499975), (0.2500075, 0.2812472), (0.21875781, 0.2812472), (0.21875781, 0.2499975), (0.21875781, 0.2499975), (0.21875781, 0.2812472), (0.18750812, 0.2812472), (0.18750812, 0.2499975), (0.18750812, 0.2499975), (0.18750812, 0.2812472), (0.15625843, 0.2812472), (0.15625843, 0.2499975), (0.15625843, 0.2499975), (0.15625843, 0.2812472), (0.12500875, 0.2812472), (0.12500875, 0.2499975), (0.12500875, 0.2499975), (0.12500875, 0.2812472), (0.09375906, 0.2812472), (0.09375906, 0.2499975), (0.09375906, 0.2499975), (0.09375906, 0.2812472), (0.06250937, 0.2812472), (0.06250937, 0.2499975), (0.06250937, 0.2499975), (0.06250937, 0.2812472), (0.031259686, 0.2812472), (0.031259686, 0.2499975), (0.031259686, 0.2499975), (0.031259686, 0.2812472), (0.00001, 0.2812472), (0.00001, 0.2499975), (0.00001, 0.2499975), (0.00001, 0.2812472), (1, 0.2812472), (1, 0.2499975), (1, 0.2812472), (1, 0.31249687), (0.9687503, 0.31249687), (0.9687503, 0.2812472), (0.9687503, 0.2812472), (0.9687503, 0.31249687), (0.9375006, 0.31249687), (0.9375006, 0.2812472), (0.9375006, 0.2812472), (0.9375006, 0.31249687), (0.90625095, 0.31249687), (0.90625095, 0.2812472), (0.90625095, 0.2812472), (0.90625095, 0.31249687), (0.87500125, 0.31249687), (0.87500125, 0.2812472), (0.87500125, 0.2812472), (0.87500125, 0.31249687), (0.84375155, 0.31249687), (0.84375155, 0.2812472), (0.84375155, 0.2812472), (0.84375155, 0.31249687), (0.81250185, 0.31249687), (0.81250185, 0.2812472), (0.81250185, 0.2812472), (0.81250185, 0.31249687), (0.7812522, 0.31249687), (0.7812522, 0.2812472), (0.7812522, 0.2812472), (0.7812522, 0.31249687), (0.7500025, 0.31249687), (0.7500025, 0.2812472), (0.7500025, 0.2812472), (0.7500025, 0.31249687), (0.7187528, 0.31249687), (0.7187528, 0.2812472), (0.7187528, 0.2812472), (0.7187528, 0.31249687), (0.6875031, 0.31249687), (0.6875031, 0.2812472), (0.6875031, 0.2812472), (0.6875031, 0.31249687), (0.65625346, 0.31249687), (0.65625346, 0.2812472), (0.65625346, 0.2812472), (0.65625346, 0.31249687), (0.62500376, 0.31249687), (0.62500376, 0.2812472), (0.62500376, 0.2812472), (0.62500376, 0.31249687), (0.59375405, 0.31249687), (0.59375405, 0.2812472), (0.59375405, 0.2812472), (0.59375405, 0.31249687), (0.56250435, 0.31249687), (0.56250435, 0.2812472), (0.56250435, 0.2812472), (0.56250435, 0.31249687), (0.5312547, 0.31249687), (0.5312547, 0.2812472), (0.5312547, 0.2812472), (0.5312547, 0.31249687), (0.500005, 0.31249687), (0.500005, 0.2812472), (0.500005, 0.2812472), (0.500005, 0.31249687), (0.4687553, 0.31249687), (0.4687553, 0.2812472), (0.4687553, 0.2812472), (0.4687553, 0.31249687), (0.43750563, 0.31249687), (0.43750563, 0.2812472), (0.43750563, 0.2812472), (0.43750563, 0.31249687), (0.40625593, 0.31249687), (0.40625593, 0.2812472), (0.40625593, 0.2812472), (0.40625593, 0.31249687), (0.37500626, 0.31249687), (0.37500626, 0.2812472), (0.37500626, 0.2812472), (0.37500626, 0.31249687), (0.34375656, 0.31249687), (0.34375656, 0.2812472), (0.34375656, 0.2812472), (0.34375656, 0.31249687), (0.31250688, 0.31249687), (0.31250688, 0.2812472), (0.31250688, 0.2812472), (0.31250688, 0.31249687), (0.28125718, 0.31249687), (0.28125718, 0.2812472), (0.28125718, 0.2812472), (0.28125718, 0.31249687), (0.2500075, 0.31249687), (0.2500075, 0.2812472), (0.2500075, 0.2812472), (0.2500075, 0.31249687), (0.21875781, 0.31249687), (0.21875781, 0.2812472), (0.21875781, 0.2812472), (0.21875781, 0.31249687), (0.18750812, 0.31249687), (0.18750812, 0.2812472), (0.18750812, 0.2812472), (0.18750812, 0.31249687), (0.15625843, 0.31249687), (0.15625843, 0.2812472), (0.15625843, 0.2812472), (0.15625843, 0.31249687), (0.12500875, 0.31249687), (0.12500875, 0.2812472), (0.12500875, 0.2812472), (0.12500875, 0.31249687), (0.09375906, 0.31249687), (0.09375906, 0.2812472), (0.09375906, 0.2812472), (0.09375906, 0.31249687), (0.06250937, 0.31249687), (0.06250937, 0.2812472), (0.06250937, 0.2812472), (0.06250937, 0.31249687), (0.031259686, 0.31249687), (0.031259686, 0.2812472), (0.031259686, 0.2812472), (0.031259686, 0.31249687), (0.00001, 0.31249687), (0.00001, 0.2812472), (0.00001, 0.2812472), (0.00001, 0.31249687), (1, 0.31249687), (1, 0.2812472), (1, 0.31249687), (1, 0.34374657), (0.9687503, 0.34374657), (0.9687503, 0.31249687), (0.9687503, 0.31249687), (0.9687503, 0.34374657), (0.9375006, 0.34374657), (0.9375006, 0.31249687), (0.9375006, 0.31249687), (0.9375006, 0.34374657), (0.90625095, 0.34374657), (0.90625095, 0.31249687), (0.90625095, 0.31249687), (0.90625095, 0.34374657), (0.87500125, 0.34374657), (0.87500125, 0.31249687), (0.87500125, 0.31249687), (0.87500125, 0.34374657), (0.84375155, 0.34374657), (0.84375155, 0.31249687), (0.84375155, 0.31249687), (0.84375155, 0.34374657), (0.81250185, 0.34374657), (0.81250185, 0.31249687), (0.81250185, 0.31249687), (0.81250185, 0.34374657), (0.7812522, 0.34374657), (0.7812522, 0.31249687), (0.7812522, 0.31249687), (0.7812522, 0.34374657), (0.7500025, 0.34374657), (0.7500025, 0.31249687), (0.7500025, 0.31249687), (0.7500025, 0.34374657), (0.7187528, 0.34374657), (0.7187528, 0.31249687), (0.7187528, 0.31249687), (0.7187528, 0.34374657), (0.6875031, 0.34374657), (0.6875031, 0.31249687), (0.6875031, 0.31249687), (0.6875031, 0.34374657), (0.65625346, 0.34374657), (0.65625346, 0.31249687), (0.65625346, 0.31249687), (0.65625346, 0.34374657), (0.62500376, 0.34374657), (0.62500376, 0.31249687), (0.62500376, 0.31249687), (0.62500376, 0.34374657), (0.59375405, 0.34374657), (0.59375405, 0.31249687), (0.59375405, 0.31249687), (0.59375405, 0.34374657), (0.56250435, 0.34374657), (0.56250435, 0.31249687), (0.56250435, 0.31249687), (0.56250435, 0.34374657), (0.5312547, 0.34374657), (0.5312547, 0.31249687), (0.5312547, 0.31249687), (0.5312547, 0.34374657), (0.500005, 0.34374657), (0.500005, 0.31249687), (0.500005, 0.31249687), (0.500005, 0.34374657), (0.4687553, 0.34374657), (0.4687553, 0.31249687), (0.4687553, 0.31249687), (0.4687553, 0.34374657), (0.43750563, 0.34374657), (0.43750563, 0.31249687), (0.43750563, 0.31249687), (0.43750563, 0.34374657), (0.40625593, 0.34374657), (0.40625593, 0.31249687), (0.40625593, 0.31249687), (0.40625593, 0.34374657), (0.37500626, 0.34374657), (0.37500626, 0.31249687), (0.37500626, 0.31249687), (0.37500626, 0.34374657), (0.34375656, 0.34374657), (0.34375656, 0.31249687), (0.34375656, 0.31249687), (0.34375656, 0.34374657), (0.31250688, 0.34374657), (0.31250688, 0.31249687), (0.31250688, 0.31249687), (0.31250688, 0.34374657), (0.28125718, 0.34374657), (0.28125718, 0.31249687), (0.28125718, 0.31249687), (0.28125718, 0.34374657), (0.2500075, 0.34374657), (0.2500075, 0.31249687), (0.2500075, 0.31249687), (0.2500075, 0.34374657), (0.21875781, 0.34374657), (0.21875781, 0.31249687), (0.21875781, 0.31249687), (0.21875781, 0.34374657), (0.18750812, 0.34374657), (0.18750812, 0.31249687), (0.18750812, 0.31249687), (0.18750812, 0.34374657), (0.15625843, 0.34374657), (0.15625843, 0.31249687), (0.15625843, 0.31249687), (0.15625843, 0.34374657), (0.12500875, 0.34374657), (0.12500875, 0.31249687), (0.12500875, 0.31249687), (0.12500875, 0.34374657), (0.09375906, 0.34374657), (0.09375906, 0.31249687), (0.09375906, 0.31249687), (0.09375906, 0.34374657), (0.06250937, 0.34374657), (0.06250937, 0.31249687), (0.06250937, 0.31249687), (0.06250937, 0.34374657), (0.031259686, 0.34374657), (0.031259686, 0.31249687), (0.031259686, 0.31249687), (0.031259686, 0.34374657), (0.00001, 0.34374657), (0.00001, 0.31249687), (0.00001, 0.31249687), (0.00001, 0.34374657), (1, 0.34374657), (1, 0.31249687), (1, 0.34374657), (1, 0.37499624), (0.9687503, 0.37499624), (0.9687503, 0.34374657), (0.9687503, 0.34374657), (0.9687503, 0.37499624), (0.9375006, 0.37499624), (0.9375006, 0.34374657), (0.9375006, 0.34374657), (0.9375006, 0.37499624), (0.90625095, 0.37499624), (0.90625095, 0.34374657), (0.90625095, 0.34374657), (0.90625095, 0.37499624), (0.87500125, 0.37499624), (0.87500125, 0.34374657), (0.87500125, 0.34374657), (0.87500125, 0.37499624), (0.84375155, 0.37499624), (0.84375155, 0.34374657), (0.84375155, 0.34374657), (0.84375155, 0.37499624), (0.81250185, 0.37499624), (0.81250185, 0.34374657), (0.81250185, 0.34374657), (0.81250185, 0.37499624), (0.7812522, 0.37499624), (0.7812522, 0.34374657), (0.7812522, 0.34374657), (0.7812522, 0.37499624), (0.7500025, 0.37499624), (0.7500025, 0.34374657), (0.7500025, 0.34374657), (0.7500025, 0.37499624), (0.7187528, 0.37499624), (0.7187528, 0.34374657), (0.7187528, 0.34374657), (0.7187528, 0.37499624), (0.6875031, 0.37499624), (0.6875031, 0.34374657), (0.6875031, 0.34374657), (0.6875031, 0.37499624), (0.65625346, 0.37499624), (0.65625346, 0.34374657), (0.65625346, 0.34374657), (0.65625346, 0.37499624), (0.62500376, 0.37499624), (0.62500376, 0.34374657), (0.62500376, 0.34374657), (0.62500376, 0.37499624), (0.59375405, 0.37499624), (0.59375405, 0.34374657), (0.59375405, 0.34374657), (0.59375405, 0.37499624), (0.56250435, 0.37499624), (0.56250435, 0.34374657), (0.56250435, 0.34374657), (0.56250435, 0.37499624), (0.5312547, 0.37499624), (0.5312547, 0.34374657), (0.5312547, 0.34374657), (0.5312547, 0.37499624), (0.500005, 0.37499624), (0.500005, 0.34374657), (0.500005, 0.34374657), (0.500005, 0.37499624), (0.4687553, 0.37499624), (0.4687553, 0.34374657), (0.4687553, 0.34374657), (0.4687553, 0.37499624), (0.43750563, 0.37499624), (0.43750563, 0.34374657), (0.43750563, 0.34374657), (0.43750563, 0.37499624), (0.40625593, 0.37499624), (0.40625593, 0.34374657), (0.40625593, 0.34374657), (0.40625593, 0.37499624), (0.37500626, 0.37499624), (0.37500626, 0.34374657), (0.37500626, 0.34374657), (0.37500626, 0.37499624), (0.34375656, 0.37499624), (0.34375656, 0.34374657), (0.34375656, 0.34374657), (0.34375656, 0.37499624), (0.31250688, 0.37499624), (0.31250688, 0.34374657), (0.31250688, 0.34374657), (0.31250688, 0.37499624), (0.28125718, 0.37499624), (0.28125718, 0.34374657), (0.28125718, 0.34374657), (0.28125718, 0.37499624), (0.2500075, 0.37499624), (0.2500075, 0.34374657), (0.2500075, 0.34374657), (0.2500075, 0.37499624), (0.21875781, 0.37499624), (0.21875781, 0.34374657), (0.21875781, 0.34374657), (0.21875781, 0.37499624), (0.18750812, 0.37499624), (0.18750812, 0.34374657), (0.18750812, 0.34374657), (0.18750812, 0.37499624), (0.15625843, 0.37499624), (0.15625843, 0.34374657), (0.15625843, 0.34374657), (0.15625843, 0.37499624), (0.12500875, 0.37499624), (0.12500875, 0.34374657), (0.12500875, 0.34374657), (0.12500875, 0.37499624), (0.09375906, 0.37499624), (0.09375906, 0.34374657), (0.09375906, 0.34374657), (0.09375906, 0.37499624), (0.06250937, 0.37499624), (0.06250937, 0.34374657), (0.06250937, 0.34374657), (0.06250937, 0.37499624), (0.031259686, 0.37499624), (0.031259686, 0.34374657), (0.031259686, 0.34374657), (0.031259686, 0.37499624), (0.00001, 0.37499624), (0.00001, 0.34374657), (0.00001, 0.34374657), (0.00001, 0.37499624), (1, 0.37499624), (1, 0.34374657), (1, 0.37499624), (1, 0.40624595), (0.9687503, 0.40624595), (0.9687503, 0.37499624), (0.9687503, 0.37499624), (0.9687503, 0.40624595), (0.9375006, 0.40624595), (0.9375006, 0.37499624), (0.9375006, 0.37499624), (0.9375006, 0.40624595), (0.90625095, 0.40624595), (0.90625095, 0.37499624), (0.90625095, 0.37499624), (0.90625095, 0.40624595), (0.87500125, 0.40624595), (0.87500125, 0.37499624), (0.87500125, 0.37499624), (0.87500125, 0.40624595), (0.84375155, 0.40624595), (0.84375155, 0.37499624), (0.84375155, 0.37499624), (0.84375155, 0.40624595), (0.81250185, 0.40624595), (0.81250185, 0.37499624), (0.81250185, 0.37499624), (0.81250185, 0.40624595), (0.7812522, 0.40624595), (0.7812522, 0.37499624), (0.7812522, 0.37499624), (0.7812522, 0.40624595), (0.7500025, 0.40624595), (0.7500025, 0.37499624), (0.7500025, 0.37499624), (0.7500025, 0.40624595), (0.7187528, 0.40624595), (0.7187528, 0.37499624), (0.7187528, 0.37499624), (0.7187528, 0.40624595), (0.6875031, 0.40624595), (0.6875031, 0.37499624), (0.6875031, 0.37499624), (0.6875031, 0.40624595), (0.65625346, 0.40624595), (0.65625346, 0.37499624), (0.65625346, 0.37499624), (0.65625346, 0.40624595), (0.62500376, 0.40624595), (0.62500376, 0.37499624), (0.62500376, 0.37499624), (0.62500376, 0.40624595), (0.59375405, 0.40624595), (0.59375405, 0.37499624), (0.59375405, 0.37499624), (0.59375405, 0.40624595), (0.56250435, 0.40624595), (0.56250435, 0.37499624), (0.56250435, 0.37499624), (0.56250435, 0.40624595), (0.5312547, 0.40624595), (0.5312547, 0.37499624), (0.5312547, 0.37499624), (0.5312547, 0.40624595), (0.500005, 0.40624595), (0.500005, 0.37499624), (0.500005, 0.37499624), (0.500005, 0.40624595), (0.4687553, 0.40624595), (0.4687553, 0.37499624), (0.4687553, 0.37499624), (0.4687553, 0.40624595), (0.43750563, 0.40624595), (0.43750563, 0.37499624), (0.43750563, 0.37499624), (0.43750563, 0.40624595), (0.40625593, 0.40624595), (0.40625593, 0.37499624), (0.40625593, 0.37499624), (0.40625593, 0.40624595), (0.37500626, 0.40624595), (0.37500626, 0.37499624), (0.37500626, 0.37499624), (0.37500626, 0.40624595), (0.34375656, 0.40624595), (0.34375656, 0.37499624), (0.34375656, 0.37499624), (0.34375656, 0.40624595), (0.31250688, 0.40624595), (0.31250688, 0.37499624), (0.31250688, 0.37499624), (0.31250688, 0.40624595), (0.28125718, 0.40624595), (0.28125718, 0.37499624), (0.28125718, 0.37499624), (0.28125718, 0.40624595), (0.2500075, 0.40624595), (0.2500075, 0.37499624), (0.2500075, 0.37499624), (0.2500075, 0.40624595), (0.21875781, 0.40624595), (0.21875781, 0.37499624), (0.21875781, 0.37499624), (0.21875781, 0.40624595), (0.18750812, 0.40624595), (0.18750812, 0.37499624), (0.18750812, 0.37499624), (0.18750812, 0.40624595), (0.15625843, 0.40624595), (0.15625843, 0.37499624), (0.15625843, 0.37499624), (0.15625843, 0.40624595), (0.12500875, 0.40624595), (0.12500875, 0.37499624), (0.12500875, 0.37499624), (0.12500875, 0.40624595), (0.09375906, 0.40624595), (0.09375906, 0.37499624), (0.09375906, 0.37499624), (0.09375906, 0.40624595), (0.06250937, 0.40624595), (0.06250937, 0.37499624), (0.06250937, 0.37499624), (0.06250937, 0.40624595), (0.031259686, 0.40624595), (0.031259686, 0.37499624), (0.031259686, 0.37499624), (0.031259686, 0.40624595), (0.00001, 0.40624595), (0.00001, 0.37499624), (0.00001, 0.37499624), (0.00001, 0.40624595), (1, 0.40624595), (1, 0.37499624), (1, 0.40624595), (1, 0.43749562), (0.9687503, 0.43749562), (0.9687503, 0.40624595), (0.9687503, 0.40624595), (0.9687503, 0.43749562), (0.9375006, 0.43749562), (0.9375006, 0.40624595), (0.9375006, 0.40624595), (0.9375006, 0.43749562), (0.90625095, 0.43749562), (0.90625095, 0.40624595), (0.90625095, 0.40624595), (0.90625095, 0.43749562), (0.87500125, 0.43749562), (0.87500125, 0.40624595), (0.87500125, 0.40624595), (0.87500125, 0.43749562), (0.84375155, 0.43749562), (0.84375155, 0.40624595), (0.84375155, 0.40624595), (0.84375155, 0.43749562), (0.81250185, 0.43749562), (0.81250185, 0.40624595), (0.81250185, 0.40624595), (0.81250185, 0.43749562), (0.7812522, 0.43749562), (0.7812522, 0.40624595), (0.7812522, 0.40624595), (0.7812522, 0.43749562), (0.7500025, 0.43749562), (0.7500025, 0.40624595), (0.7500025, 0.40624595), (0.7500025, 0.43749562), (0.7187528, 0.43749562), (0.7187528, 0.40624595), (0.7187528, 0.40624595), (0.7187528, 0.43749562), (0.6875031, 0.43749562), (0.6875031, 0.40624595), (0.6875031, 0.40624595), (0.6875031, 0.43749562), (0.65625346, 0.43749562), (0.65625346, 0.40624595), (0.65625346, 0.40624595), (0.65625346, 0.43749562), (0.62500376, 0.43749562), (0.62500376, 0.40624595), (0.62500376, 0.40624595), (0.62500376, 0.43749562), (0.59375405, 0.43749562), (0.59375405, 0.40624595), (0.59375405, 0.40624595), (0.59375405, 0.43749562), (0.56250435, 0.43749562), (0.56250435, 0.40624595), (0.56250435, 0.40624595), (0.56250435, 0.43749562), (0.5312547, 0.43749562), (0.5312547, 0.40624595), (0.5312547, 0.40624595), (0.5312547, 0.43749562), (0.500005, 0.43749562), (0.500005, 0.40624595), (0.500005, 0.40624595), (0.500005, 0.43749562), (0.4687553, 0.43749562), (0.4687553, 0.40624595), (0.4687553, 0.40624595), (0.4687553, 0.43749562), (0.43750563, 0.43749562), (0.43750563, 0.40624595), (0.43750563, 0.40624595), (0.43750563, 0.43749562), (0.40625593, 0.43749562), (0.40625593, 0.40624595), (0.40625593, 0.40624595), (0.40625593, 0.43749562), (0.37500626, 0.43749562), (0.37500626, 0.40624595), (0.37500626, 0.40624595), (0.37500626, 0.43749562), (0.34375656, 0.43749562), (0.34375656, 0.40624595), (0.34375656, 0.40624595), (0.34375656, 0.43749562), (0.31250688, 0.43749562), (0.31250688, 0.40624595), (0.31250688, 0.40624595), (0.31250688, 0.43749562), (0.28125718, 0.43749562), (0.28125718, 0.40624595), (0.28125718, 0.40624595), (0.28125718, 0.43749562), (0.2500075, 0.43749562), (0.2500075, 0.40624595), (0.2500075, 0.40624595), (0.2500075, 0.43749562), (0.21875781, 0.43749562), (0.21875781, 0.40624595), (0.21875781, 0.40624595), (0.21875781, 0.43749562), (0.18750812, 0.43749562), (0.18750812, 0.40624595), (0.18750812, 0.40624595), (0.18750812, 0.43749562), (0.15625843, 0.43749562), (0.15625843, 0.40624595), (0.15625843, 0.40624595), (0.15625843, 0.43749562), (0.12500875, 0.43749562), (0.12500875, 0.40624595), (0.12500875, 0.40624595), (0.12500875, 0.43749562), (0.09375906, 0.43749562), (0.09375906, 0.40624595), (0.09375906, 0.40624595), (0.09375906, 0.43749562), (0.06250937, 0.43749562), (0.06250937, 0.40624595), (0.06250937, 0.40624595), (0.06250937, 0.43749562), (0.031259686, 0.43749562), (0.031259686, 0.40624595), (0.031259686, 0.40624595), (0.031259686, 0.43749562), (0.00001, 0.43749562), (0.00001, 0.40624595), (0.00001, 0.40624595), (0.00001, 0.43749562), (1, 0.43749562), (1, 0.40624595), (1, 0.43749562), (1, 0.46874532), (0.9687503, 0.46874532), (0.9687503, 0.43749562), (0.9687503, 0.43749562), (0.9687503, 0.46874532), (0.9375006, 0.46874532), (0.9375006, 0.43749562), (0.9375006, 0.43749562), (0.9375006, 0.46874532), (0.90625095, 0.46874532), (0.90625095, 0.43749562), (0.90625095, 0.43749562), (0.90625095, 0.46874532), (0.87500125, 0.46874532), (0.87500125, 0.43749562), (0.87500125, 0.43749562), (0.87500125, 0.46874532), (0.84375155, 0.46874532), (0.84375155, 0.43749562), (0.84375155, 0.43749562), (0.84375155, 0.46874532), (0.81250185, 0.46874532), (0.81250185, 0.43749562), (0.81250185, 0.43749562), (0.81250185, 0.46874532), (0.7812522, 0.46874532), (0.7812522, 0.43749562), (0.7812522, 0.43749562), (0.7812522, 0.46874532), (0.7500025, 0.46874532), (0.7500025, 0.43749562), (0.7500025, 0.43749562), (0.7500025, 0.46874532), (0.7187528, 0.46874532), (0.7187528, 0.43749562), (0.7187528, 0.43749562), (0.7187528, 0.46874532), (0.6875031, 0.46874532), (0.6875031, 0.43749562), (0.6875031, 0.43749562), (0.6875031, 0.46874532), (0.65625346, 0.46874532), (0.65625346, 0.43749562), (0.65625346, 0.43749562), (0.65625346, 0.46874532), (0.62500376, 0.46874532), (0.62500376, 0.43749562), (0.62500376, 0.43749562), (0.62500376, 0.46874532), (0.59375405, 0.46874532), (0.59375405, 0.43749562), (0.59375405, 0.43749562), (0.59375405, 0.46874532), (0.56250435, 0.46874532), (0.56250435, 0.43749562), (0.56250435, 0.43749562), (0.56250435, 0.46874532), (0.5312547, 0.46874532), (0.5312547, 0.43749562), (0.5312547, 0.43749562), (0.5312547, 0.46874532), (0.500005, 0.46874532), (0.500005, 0.43749562), (0.500005, 0.43749562), (0.500005, 0.46874532), (0.4687553, 0.46874532), (0.4687553, 0.43749562), (0.4687553, 0.43749562), (0.4687553, 0.46874532), (0.43750563, 0.46874532), (0.43750563, 0.43749562), (0.43750563, 0.43749562), (0.43750563, 0.46874532), (0.40625593, 0.46874532), (0.40625593, 0.43749562), (0.40625593, 0.43749562), (0.40625593, 0.46874532), (0.37500626, 0.46874532), (0.37500626, 0.43749562), (0.37500626, 0.43749562), (0.37500626, 0.46874532), (0.34375656, 0.46874532), (0.34375656, 0.43749562), (0.34375656, 0.43749562), (0.34375656, 0.46874532), (0.31250688, 0.46874532), (0.31250688, 0.43749562), (0.31250688, 0.43749562), (0.31250688, 0.46874532), (0.28125718, 0.46874532), (0.28125718, 0.43749562), (0.28125718, 0.43749562), (0.28125718, 0.46874532), (0.2500075, 0.46874532), (0.2500075, 0.43749562), (0.2500075, 0.43749562), (0.2500075, 0.46874532), (0.21875781, 0.46874532), (0.21875781, 0.43749562), (0.21875781, 0.43749562), (0.21875781, 0.46874532), (0.18750812, 0.46874532), (0.18750812, 0.43749562), (0.18750812, 0.43749562), (0.18750812, 0.46874532), (0.15625843, 0.46874532), (0.15625843, 0.43749562), (0.15625843, 0.43749562), (0.15625843, 0.46874532), (0.12500875, 0.46874532), (0.12500875, 0.43749562), (0.12500875, 0.43749562), (0.12500875, 0.46874532), (0.09375906, 0.46874532), (0.09375906, 0.43749562), (0.09375906, 0.43749562), (0.09375906, 0.46874532), (0.06250937, 0.46874532), (0.06250937, 0.43749562), (0.06250937, 0.43749562), (0.06250937, 0.46874532), (0.031259686, 0.46874532), (0.031259686, 0.43749562), (0.031259686, 0.43749562), (0.031259686, 0.46874532), (0.00001, 0.46874532), (0.00001, 0.43749562), (0.00001, 0.43749562), (0.00001, 0.46874532), (1, 0.46874532), (1, 0.43749562), (1, 0.46874532), (1, 0.499995), (0.9687503, 0.499995), (0.9687503, 0.46874532), (0.9687503, 0.46874532), (0.9687503, 0.499995), (0.9375006, 0.499995), (0.9375006, 0.46874532), (0.9375006, 0.46874532), (0.9375006, 0.499995), (0.90625095, 0.499995), (0.90625095, 0.46874532), (0.90625095, 0.46874532), (0.90625095, 0.499995), (0.87500125, 0.499995), (0.87500125, 0.46874532), (0.87500125, 0.46874532), (0.87500125, 0.499995), (0.84375155, 0.499995), (0.84375155, 0.46874532), (0.84375155, 0.46874532), (0.84375155, 0.499995), (0.81250185, 0.499995), (0.81250185, 0.46874532), (0.81250185, 0.46874532), (0.81250185, 0.499995), (0.7812522, 0.499995), (0.7812522, 0.46874532), (0.7812522, 0.46874532), (0.7812522, 0.499995), (0.7500025, 0.499995), (0.7500025, 0.46874532), (0.7500025, 0.46874532), (0.7500025, 0.499995), (0.7187528, 0.499995), (0.7187528, 0.46874532), (0.7187528, 0.46874532), (0.7187528, 0.499995), (0.6875031, 0.499995), (0.6875031, 0.46874532), (0.6875031, 0.46874532), (0.6875031, 0.499995), (0.65625346, 0.499995), (0.65625346, 0.46874532), (0.65625346, 0.46874532), (0.65625346, 0.499995), (0.62500376, 0.499995), (0.62500376, 0.46874532), (0.62500376, 0.46874532), (0.62500376, 0.499995), (0.59375405, 0.499995), (0.59375405, 0.46874532), (0.59375405, 0.46874532), (0.59375405, 0.499995), (0.56250435, 0.499995), (0.56250435, 0.46874532), (0.56250435, 0.46874532), (0.56250435, 0.499995), (0.5312547, 0.499995), (0.5312547, 0.46874532), (0.5312547, 0.46874532), (0.5312547, 0.499995), (0.500005, 0.499995), (0.500005, 0.46874532), (0.500005, 0.46874532), (0.500005, 0.499995), (0.4687553, 0.499995), (0.4687553, 0.46874532), (0.4687553, 0.46874532), (0.4687553, 0.499995), (0.43750563, 0.499995), (0.43750563, 0.46874532), (0.43750563, 0.46874532), (0.43750563, 0.499995), (0.40625593, 0.499995), (0.40625593, 0.46874532), (0.40625593, 0.46874532), (0.40625593, 0.499995), (0.37500626, 0.499995), (0.37500626, 0.46874532), (0.37500626, 0.46874532), (0.37500626, 0.499995), (0.34375656, 0.499995), (0.34375656, 0.46874532), (0.34375656, 0.46874532), (0.34375656, 0.499995), (0.31250688, 0.499995), (0.31250688, 0.46874532), (0.31250688, 0.46874532), (0.31250688, 0.499995), (0.28125718, 0.499995), (0.28125718, 0.46874532), (0.28125718, 0.46874532), (0.28125718, 0.499995), (0.2500075, 0.499995), (0.2500075, 0.46874532), (0.2500075, 0.46874532), (0.2500075, 0.499995), (0.21875781, 0.499995), (0.21875781, 0.46874532), (0.21875781, 0.46874532), (0.21875781, 0.499995), (0.18750812, 0.499995), (0.18750812, 0.46874532), (0.18750812, 0.46874532), (0.18750812, 0.499995), (0.15625843, 0.499995), (0.15625843, 0.46874532), (0.15625843, 0.46874532), (0.15625843, 0.499995), (0.12500875, 0.499995), (0.12500875, 0.46874532), (0.12500875, 0.46874532), (0.12500875, 0.499995), (0.09375906, 0.499995), (0.09375906, 0.46874532), (0.09375906, 0.46874532), (0.09375906, 0.499995), (0.06250937, 0.499995), (0.06250937, 0.46874532), (0.06250937, 0.46874532), (0.06250937, 0.499995), (0.031259686, 0.499995), (0.031259686, 0.46874532), (0.031259686, 0.46874532), (0.031259686, 0.499995), (0.00001, 0.499995), (0.00001, 0.46874532), (0.00001, 0.46874532), (0.00001, 0.499995), (1, 0.499995), (1, 0.46874532), (1, 0.499995), (1, 0.5312447), (0.9687503, 0.5312447), (0.9687503, 0.499995), (0.9687503, 0.499995), (0.9687503, 0.5312447), (0.9375006, 0.5312447), (0.9375006, 0.499995), (0.9375006, 0.499995), (0.9375006, 0.5312447), (0.90625095, 0.5312447), (0.90625095, 0.499995), (0.90625095, 0.499995), (0.90625095, 0.5312447), (0.87500125, 0.5312447), (0.87500125, 0.499995), (0.87500125, 0.499995), (0.87500125, 0.5312447), (0.84375155, 0.5312447), (0.84375155, 0.499995), (0.84375155, 0.499995), (0.84375155, 0.5312447), (0.81250185, 0.5312447), (0.81250185, 0.499995), (0.81250185, 0.499995), (0.81250185, 0.5312447), (0.7812522, 0.5312447), (0.7812522, 0.499995), (0.7812522, 0.499995), (0.7812522, 0.5312447), (0.7500025, 0.5312447), (0.7500025, 0.499995), (0.7500025, 0.499995), (0.7500025, 0.5312447), (0.7187528, 0.5312447), (0.7187528, 0.499995), (0.7187528, 0.499995), (0.7187528, 0.5312447), (0.6875031, 0.5312447), (0.6875031, 0.499995), (0.6875031, 0.499995), (0.6875031, 0.5312447), (0.65625346, 0.5312447), (0.65625346, 0.499995), (0.65625346, 0.499995), (0.65625346, 0.5312447), (0.62500376, 0.5312447), (0.62500376, 0.499995), (0.62500376, 0.499995), (0.62500376, 0.5312447), (0.59375405, 0.5312447), (0.59375405, 0.499995), (0.59375405, 0.499995), (0.59375405, 0.5312447), (0.56250435, 0.5312447), (0.56250435, 0.499995), (0.56250435, 0.499995), (0.56250435, 0.5312447), (0.5312547, 0.5312447), (0.5312547, 0.499995), (0.5312547, 0.499995), (0.5312547, 0.5312447), (0.500005, 0.5312447), (0.500005, 0.499995), (0.500005, 0.499995), (0.500005, 0.5312447), (0.4687553, 0.5312447), (0.4687553, 0.499995), (0.4687553, 0.499995), (0.4687553, 0.5312447), (0.43750563, 0.5312447), (0.43750563, 0.499995), (0.43750563, 0.499995), (0.43750563, 0.5312447), (0.40625593, 0.5312447), (0.40625593, 0.499995), (0.40625593, 0.499995), (0.40625593, 0.5312447), (0.37500626, 0.5312447), (0.37500626, 0.499995), (0.37500626, 0.499995), (0.37500626, 0.5312447), (0.34375656, 0.5312447), (0.34375656, 0.499995), (0.34375656, 0.499995), (0.34375656, 0.5312447), (0.31250688, 0.5312447), (0.31250688, 0.499995), (0.31250688, 0.499995), (0.31250688, 0.5312447), (0.28125718, 0.5312447), (0.28125718, 0.499995), (0.28125718, 0.499995), (0.28125718, 0.5312447), (0.2500075, 0.5312447), (0.2500075, 0.499995), (0.2500075, 0.499995), (0.2500075, 0.5312447), (0.21875781, 0.5312447), (0.21875781, 0.499995), (0.21875781, 0.499995), (0.21875781, 0.5312447), (0.18750812, 0.5312447), (0.18750812, 0.499995), (0.18750812, 0.499995), (0.18750812, 0.5312447), (0.15625843, 0.5312447), (0.15625843, 0.499995), (0.15625843, 0.499995), (0.15625843, 0.5312447), (0.12500875, 0.5312447), (0.12500875, 0.499995), (0.12500875, 0.499995), (0.12500875, 0.5312447), (0.09375906, 0.5312447), (0.09375906, 0.499995), (0.09375906, 0.499995), (0.09375906, 0.5312447), (0.06250937, 0.5312447), (0.06250937, 0.499995), (0.06250937, 0.499995), (0.06250937, 0.5312447), (0.031259686, 0.5312447), (0.031259686, 0.499995), (0.031259686, 0.499995), (0.031259686, 0.5312447), (0.00001, 0.5312447), (0.00001, 0.499995), (0.00001, 0.499995), (0.00001, 0.5312447), (1, 0.5312447), (1, 0.499995), (1, 0.5312447), (1, 0.5624944), (0.9687503, 0.5624944), (0.9687503, 0.5312447), (0.9687503, 0.5312447), (0.9687503, 0.5624944), (0.9375006, 0.5624944), (0.9375006, 0.5312447), (0.9375006, 0.5312447), (0.9375006, 0.5624944), (0.90625095, 0.5624944), (0.90625095, 0.5312447), (0.90625095, 0.5312447), (0.90625095, 0.5624944), (0.87500125, 0.5624944), (0.87500125, 0.5312447), (0.87500125, 0.5312447), (0.87500125, 0.5624944), (0.84375155, 0.5624944), (0.84375155, 0.5312447), (0.84375155, 0.5312447), (0.84375155, 0.5624944), (0.81250185, 0.5624944), (0.81250185, 0.5312447), (0.81250185, 0.5312447), (0.81250185, 0.5624944), (0.7812522, 0.5624944), (0.7812522, 0.5312447), (0.7812522, 0.5312447), (0.7812522, 0.5624944), (0.7500025, 0.5624944), (0.7500025, 0.5312447), (0.7500025, 0.5312447), (0.7500025, 0.5624944), (0.7187528, 0.5624944), (0.7187528, 0.5312447), (0.7187528, 0.5312447), (0.7187528, 0.5624944), (0.6875031, 0.5624944), (0.6875031, 0.5312447), (0.6875031, 0.5312447), (0.6875031, 0.5624944), (0.65625346, 0.5624944), (0.65625346, 0.5312447), (0.65625346, 0.5312447), (0.65625346, 0.5624944), (0.62500376, 0.5624944), (0.62500376, 0.5312447), (0.62500376, 0.5312447), (0.62500376, 0.5624944), (0.59375405, 0.5624944), (0.59375405, 0.5312447), (0.59375405, 0.5312447), (0.59375405, 0.5624944), (0.56250435, 0.5624944), (0.56250435, 0.5312447), (0.56250435, 0.5312447), (0.56250435, 0.5624944), (0.5312547, 0.5624944), (0.5312547, 0.5312447), (0.5312547, 0.5312447), (0.5312547, 0.5624944), (0.500005, 0.5624944), (0.500005, 0.5312447), (0.500005, 0.5312447), (0.500005, 0.5624944), (0.4687553, 0.5624944), (0.4687553, 0.5312447), (0.4687553, 0.5312447), (0.4687553, 0.5624944), (0.43750563, 0.5624944), (0.43750563, 0.5312447), (0.43750563, 0.5312447), (0.43750563, 0.5624944), (0.40625593, 0.5624944), (0.40625593, 0.5312447), (0.40625593, 0.5312447), (0.40625593, 0.5624944), (0.37500626, 0.5624944), (0.37500626, 0.5312447), (0.37500626, 0.5312447), (0.37500626, 0.5624944), (0.34375656, 0.5624944), (0.34375656, 0.5312447), (0.34375656, 0.5312447), (0.34375656, 0.5624944), (0.31250688, 0.5624944), (0.31250688, 0.5312447), (0.31250688, 0.5312447), (0.31250688, 0.5624944), (0.28125718, 0.5624944), (0.28125718, 0.5312447), (0.28125718, 0.5312447), (0.28125718, 0.5624944), (0.2500075, 0.5624944), (0.2500075, 0.5312447), (0.2500075, 0.5312447), (0.2500075, 0.5624944), (0.21875781, 0.5624944), (0.21875781, 0.5312447), (0.21875781, 0.5312447), (0.21875781, 0.5624944), (0.18750812, 0.5624944), (0.18750812, 0.5312447), (0.18750812, 0.5312447), (0.18750812, 0.5624944), (0.15625843, 0.5624944), (0.15625843, 0.5312447), (0.15625843, 0.5312447), (0.15625843, 0.5624944), (0.12500875, 0.5624944), (0.12500875, 0.5312447), (0.12500875, 0.5312447), (0.12500875, 0.5624944), (0.09375906, 0.5624944), (0.09375906, 0.5312447), (0.09375906, 0.5312447), (0.09375906, 0.5624944), (0.06250937, 0.5624944), (0.06250937, 0.5312447), (0.06250937, 0.5312447), (0.06250937, 0.5624944), (0.031259686, 0.5624944), (0.031259686, 0.5312447), (0.031259686, 0.5312447), (0.031259686, 0.5624944), (0.00001, 0.5624944), (0.00001, 0.5312447), (0.00001, 0.5312447), (0.00001, 0.5624944), (1, 0.5624944), (1, 0.5312447), (1, 0.5624944), (1, 0.59374404), (0.9687503, 0.59374404), (0.9687503, 0.5624944), (0.9687503, 0.5624944), (0.9687503, 0.59374404), (0.9375006, 0.59374404), (0.9375006, 0.5624944), (0.9375006, 0.5624944), (0.9375006, 0.59374404), (0.90625095, 0.59374404), (0.90625095, 0.5624944), (0.90625095, 0.5624944), (0.90625095, 0.59374404), (0.87500125, 0.59374404), (0.87500125, 0.5624944), (0.87500125, 0.5624944), (0.87500125, 0.59374404), (0.84375155, 0.59374404), (0.84375155, 0.5624944), (0.84375155, 0.5624944), (0.84375155, 0.59374404), (0.81250185, 0.59374404), (0.81250185, 0.5624944), (0.81250185, 0.5624944), (0.81250185, 0.59374404), (0.7812522, 0.59374404), (0.7812522, 0.5624944), (0.7812522, 0.5624944), (0.7812522, 0.59374404), (0.7500025, 0.59374404), (0.7500025, 0.5624944), (0.7500025, 0.5624944), (0.7500025, 0.59374404), (0.7187528, 0.59374404), (0.7187528, 0.5624944), (0.7187528, 0.5624944), (0.7187528, 0.59374404), (0.6875031, 0.59374404), (0.6875031, 0.5624944), (0.6875031, 0.5624944), (0.6875031, 0.59374404), (0.65625346, 0.59374404), (0.65625346, 0.5624944), (0.65625346, 0.5624944), (0.65625346, 0.59374404), (0.62500376, 0.59374404), (0.62500376, 0.5624944), (0.62500376, 0.5624944), (0.62500376, 0.59374404), (0.59375405, 0.59374404), (0.59375405, 0.5624944), (0.59375405, 0.5624944), (0.59375405, 0.59374404), (0.56250435, 0.59374404), (0.56250435, 0.5624944), (0.56250435, 0.5624944), (0.56250435, 0.59374404), (0.5312547, 0.59374404), (0.5312547, 0.5624944), (0.5312547, 0.5624944), (0.5312547, 0.59374404), (0.500005, 0.59374404), (0.500005, 0.5624944), (0.500005, 0.5624944), (0.500005, 0.59374404), (0.4687553, 0.59374404), (0.4687553, 0.5624944), (0.4687553, 0.5624944), (0.4687553, 0.59374404), (0.43750563, 0.59374404), (0.43750563, 0.5624944), (0.43750563, 0.5624944), (0.43750563, 0.59374404), (0.40625593, 0.59374404), (0.40625593, 0.5624944), (0.40625593, 0.5624944), (0.40625593, 0.59374404), (0.37500626, 0.59374404), (0.37500626, 0.5624944), (0.37500626, 0.5624944), (0.37500626, 0.59374404), (0.34375656, 0.59374404), (0.34375656, 0.5624944), (0.34375656, 0.5624944), (0.34375656, 0.59374404), (0.31250688, 0.59374404), (0.31250688, 0.5624944), (0.31250688, 0.5624944), (0.31250688, 0.59374404), (0.28125718, 0.59374404), (0.28125718, 0.5624944), (0.28125718, 0.5624944), (0.28125718, 0.59374404), (0.2500075, 0.59374404), (0.2500075, 0.5624944), (0.2500075, 0.5624944), (0.2500075, 0.59374404), (0.21875781, 0.59374404), (0.21875781, 0.5624944), (0.21875781, 0.5624944), (0.21875781, 0.59374404), (0.18750812, 0.59374404), (0.18750812, 0.5624944), (0.18750812, 0.5624944), (0.18750812, 0.59374404), (0.15625843, 0.59374404), (0.15625843, 0.5624944), (0.15625843, 0.5624944), (0.15625843, 0.59374404), (0.12500875, 0.59374404), (0.12500875, 0.5624944), (0.12500875, 0.5624944), (0.12500875, 0.59374404), (0.09375906, 0.59374404), (0.09375906, 0.5624944), (0.09375906, 0.5624944), (0.09375906, 0.59374404), (0.06250937, 0.59374404), (0.06250937, 0.5624944), (0.06250937, 0.5624944), (0.06250937, 0.59374404), (0.031259686, 0.59374404), (0.031259686, 0.5624944), (0.031259686, 0.5624944), (0.031259686, 0.59374404), (0.00001, 0.59374404), (0.00001, 0.5624944), (0.00001, 0.5624944), (0.00001, 0.59374404), (1, 0.59374404), (1, 0.5624944), (1, 0.59374404), (1, 0.62499374), (0.9687503, 0.62499374), (0.9687503, 0.59374404), (0.9687503, 0.59374404), (0.9687503, 0.62499374), (0.9375006, 0.62499374), (0.9375006, 0.59374404), (0.9375006, 0.59374404), (0.9375006, 0.62499374), (0.90625095, 0.62499374), (0.90625095, 0.59374404), (0.90625095, 0.59374404), (0.90625095, 0.62499374), (0.87500125, 0.62499374), (0.87500125, 0.59374404), (0.87500125, 0.59374404), (0.87500125, 0.62499374), (0.84375155, 0.62499374), (0.84375155, 0.59374404), (0.84375155, 0.59374404), (0.84375155, 0.62499374), (0.81250185, 0.62499374), (0.81250185, 0.59374404), (0.81250185, 0.59374404), (0.81250185, 0.62499374), (0.7812522, 0.62499374), (0.7812522, 0.59374404), (0.7812522, 0.59374404), (0.7812522, 0.62499374), (0.7500025, 0.62499374), (0.7500025, 0.59374404), (0.7500025, 0.59374404), (0.7500025, 0.62499374), (0.7187528, 0.62499374), (0.7187528, 0.59374404), (0.7187528, 0.59374404), (0.7187528, 0.62499374), (0.6875031, 0.62499374), (0.6875031, 0.59374404), (0.6875031, 0.59374404), (0.6875031, 0.62499374), (0.65625346, 0.62499374), (0.65625346, 0.59374404), (0.65625346, 0.59374404), (0.65625346, 0.62499374), (0.62500376, 0.62499374), (0.62500376, 0.59374404), (0.62500376, 0.59374404), (0.62500376, 0.62499374), (0.59375405, 0.62499374), (0.59375405, 0.59374404), (0.59375405, 0.59374404), (0.59375405, 0.62499374), (0.56250435, 0.62499374), (0.56250435, 0.59374404), (0.56250435, 0.59374404), (0.56250435, 0.62499374), (0.5312547, 0.62499374), (0.5312547, 0.59374404), (0.5312547, 0.59374404), (0.5312547, 0.62499374), (0.500005, 0.62499374), (0.500005, 0.59374404), (0.500005, 0.59374404), (0.500005, 0.62499374), (0.4687553, 0.62499374), (0.4687553, 0.59374404), (0.4687553, 0.59374404), (0.4687553, 0.62499374), (0.43750563, 0.62499374), (0.43750563, 0.59374404), (0.43750563, 0.59374404), (0.43750563, 0.62499374), (0.40625593, 0.62499374), (0.40625593, 0.59374404), (0.40625593, 0.59374404), (0.40625593, 0.62499374), (0.37500626, 0.62499374), (0.37500626, 0.59374404), (0.37500626, 0.59374404), (0.37500626, 0.62499374), (0.34375656, 0.62499374), (0.34375656, 0.59374404), (0.34375656, 0.59374404), (0.34375656, 0.62499374), (0.31250688, 0.62499374), (0.31250688, 0.59374404), (0.31250688, 0.59374404), (0.31250688, 0.62499374), (0.28125718, 0.62499374), (0.28125718, 0.59374404), (0.28125718, 0.59374404), (0.28125718, 0.62499374), (0.2500075, 0.62499374), (0.2500075, 0.59374404), (0.2500075, 0.59374404), (0.2500075, 0.62499374), (0.21875781, 0.62499374), (0.21875781, 0.59374404), (0.21875781, 0.59374404), (0.21875781, 0.62499374), (0.18750812, 0.62499374), (0.18750812, 0.59374404), (0.18750812, 0.59374404), (0.18750812, 0.62499374), (0.15625843, 0.62499374), (0.15625843, 0.59374404), (0.15625843, 0.59374404), (0.15625843, 0.62499374), (0.12500875, 0.62499374), (0.12500875, 0.59374404), (0.12500875, 0.59374404), (0.12500875, 0.62499374), (0.09375906, 0.62499374), (0.09375906, 0.59374404), (0.09375906, 0.59374404), (0.09375906, 0.62499374), (0.06250937, 0.62499374), (0.06250937, 0.59374404), (0.06250937, 0.59374404), (0.06250937, 0.62499374), (0.031259686, 0.62499374), (0.031259686, 0.59374404), (0.031259686, 0.59374404), (0.031259686, 0.62499374), (0.00001, 0.62499374), (0.00001, 0.59374404), (0.00001, 0.59374404), (0.00001, 0.62499374), (1, 0.62499374), (1, 0.59374404), (1, 0.62499374), (1, 0.65624344), (0.9687503, 0.65624344), (0.9687503, 0.62499374), (0.9687503, 0.62499374), (0.9687503, 0.65624344), (0.9375006, 0.65624344), (0.9375006, 0.62499374), (0.9375006, 0.62499374), (0.9375006, 0.65624344), (0.90625095, 0.65624344), (0.90625095, 0.62499374), (0.90625095, 0.62499374), (0.90625095, 0.65624344), (0.87500125, 0.65624344), (0.87500125, 0.62499374), (0.87500125, 0.62499374), (0.87500125, 0.65624344), (0.84375155, 0.65624344), (0.84375155, 0.62499374), (0.84375155, 0.62499374), (0.84375155, 0.65624344), (0.81250185, 0.65624344), (0.81250185, 0.62499374), (0.81250185, 0.62499374), (0.81250185, 0.65624344), (0.7812522, 0.65624344), (0.7812522, 0.62499374), (0.7812522, 0.62499374), (0.7812522, 0.65624344), (0.7500025, 0.65624344), (0.7500025, 0.62499374), (0.7500025, 0.62499374), (0.7500025, 0.65624344), (0.7187528, 0.65624344), (0.7187528, 0.62499374), (0.7187528, 0.62499374), (0.7187528, 0.65624344), (0.6875031, 0.65624344), (0.6875031, 0.62499374), (0.6875031, 0.62499374), (0.6875031, 0.65624344), (0.65625346, 0.65624344), (0.65625346, 0.62499374), (0.65625346, 0.62499374), (0.65625346, 0.65624344), (0.62500376, 0.65624344), (0.62500376, 0.62499374), (0.62500376, 0.62499374), (0.62500376, 0.65624344), (0.59375405, 0.65624344), (0.59375405, 0.62499374), (0.59375405, 0.62499374), (0.59375405, 0.65624344), (0.56250435, 0.65624344), (0.56250435, 0.62499374), (0.56250435, 0.62499374), (0.56250435, 0.65624344), (0.5312547, 0.65624344), (0.5312547, 0.62499374), (0.5312547, 0.62499374), (0.5312547, 0.65624344), (0.500005, 0.65624344), (0.500005, 0.62499374), (0.500005, 0.62499374), (0.500005, 0.65624344), (0.4687553, 0.65624344), (0.4687553, 0.62499374), (0.4687553, 0.62499374), (0.4687553, 0.65624344), (0.43750563, 0.65624344), (0.43750563, 0.62499374), (0.43750563, 0.62499374), (0.43750563, 0.65624344), (0.40625593, 0.65624344), (0.40625593, 0.62499374), (0.40625593, 0.62499374), (0.40625593, 0.65624344), (0.37500626, 0.65624344), (0.37500626, 0.62499374), (0.37500626, 0.62499374), (0.37500626, 0.65624344), (0.34375656, 0.65624344), (0.34375656, 0.62499374), (0.34375656, 0.62499374), (0.34375656, 0.65624344), (0.31250688, 0.65624344), (0.31250688, 0.62499374), (0.31250688, 0.62499374), (0.31250688, 0.65624344), (0.28125718, 0.65624344), (0.28125718, 0.62499374), (0.28125718, 0.62499374), (0.28125718, 0.65624344), (0.2500075, 0.65624344), (0.2500075, 0.62499374), (0.2500075, 0.62499374), (0.2500075, 0.65624344), (0.21875781, 0.65624344), (0.21875781, 0.62499374), (0.21875781, 0.62499374), (0.21875781, 0.65624344), (0.18750812, 0.65624344), (0.18750812, 0.62499374), (0.18750812, 0.62499374), (0.18750812, 0.65624344), (0.15625843, 0.65624344), (0.15625843, 0.62499374), (0.15625843, 0.62499374), (0.15625843, 0.65624344), (0.12500875, 0.65624344), (0.12500875, 0.62499374), (0.12500875, 0.62499374), (0.12500875, 0.65624344), (0.09375906, 0.65624344), (0.09375906, 0.62499374), (0.09375906, 0.62499374), (0.09375906, 0.65624344), (0.06250937, 0.65624344), (0.06250937, 0.62499374), (0.06250937, 0.62499374), (0.06250937, 0.65624344), (0.031259686, 0.65624344), (0.031259686, 0.62499374), (0.031259686, 0.62499374), (0.031259686, 0.65624344), (0.00001, 0.65624344), (0.00001, 0.62499374), (0.00001, 0.62499374), (0.00001, 0.65624344), (1, 0.65624344), (1, 0.62499374), (1, 0.65624344), (1, 0.68749315), (0.9687503, 0.68749315), (0.9687503, 0.65624344), (0.9687503, 0.65624344), (0.9687503, 0.68749315), (0.9375006, 0.68749315), (0.9375006, 0.65624344), (0.9375006, 0.65624344), (0.9375006, 0.68749315), (0.90625095, 0.68749315), (0.90625095, 0.65624344), (0.90625095, 0.65624344), (0.90625095, 0.68749315), (0.87500125, 0.68749315), (0.87500125, 0.65624344), (0.87500125, 0.65624344), (0.87500125, 0.68749315), (0.84375155, 0.68749315), (0.84375155, 0.65624344), (0.84375155, 0.65624344), (0.84375155, 0.68749315), (0.81250185, 0.68749315), (0.81250185, 0.65624344), (0.81250185, 0.65624344), (0.81250185, 0.68749315), (0.7812522, 0.68749315), (0.7812522, 0.65624344), (0.7812522, 0.65624344), (0.7812522, 0.68749315), (0.7500025, 0.68749315), (0.7500025, 0.65624344), (0.7500025, 0.65624344), (0.7500025, 0.68749315), (0.7187528, 0.68749315), (0.7187528, 0.65624344), (0.7187528, 0.65624344), (0.7187528, 0.68749315), (0.6875031, 0.68749315), (0.6875031, 0.65624344), (0.6875031, 0.65624344), (0.6875031, 0.68749315), (0.65625346, 0.68749315), (0.65625346, 0.65624344), (0.65625346, 0.65624344), (0.65625346, 0.68749315), (0.62500376, 0.68749315), (0.62500376, 0.65624344), (0.62500376, 0.65624344), (0.62500376, 0.68749315), (0.59375405, 0.68749315), (0.59375405, 0.65624344), (0.59375405, 0.65624344), (0.59375405, 0.68749315), (0.56250435, 0.68749315), (0.56250435, 0.65624344), (0.56250435, 0.65624344), (0.56250435, 0.68749315), (0.5312547, 0.68749315), (0.5312547, 0.65624344), (0.5312547, 0.65624344), (0.5312547, 0.68749315), (0.500005, 0.68749315), (0.500005, 0.65624344), (0.500005, 0.65624344), (0.500005, 0.68749315), (0.4687553, 0.68749315), (0.4687553, 0.65624344), (0.4687553, 0.65624344), (0.4687553, 0.68749315), (0.43750563, 0.68749315), (0.43750563, 0.65624344), (0.43750563, 0.65624344), (0.43750563, 0.68749315), (0.40625593, 0.68749315), (0.40625593, 0.65624344), (0.40625593, 0.65624344), (0.40625593, 0.68749315), (0.37500626, 0.68749315), (0.37500626, 0.65624344), (0.37500626, 0.65624344), (0.37500626, 0.68749315), (0.34375656, 0.68749315), (0.34375656, 0.65624344), (0.34375656, 0.65624344), (0.34375656, 0.68749315), (0.31250688, 0.68749315), (0.31250688, 0.65624344), (0.31250688, 0.65624344), (0.31250688, 0.68749315), (0.28125718, 0.68749315), (0.28125718, 0.65624344), (0.28125718, 0.65624344), (0.28125718, 0.68749315), (0.2500075, 0.68749315), (0.2500075, 0.65624344), (0.2500075, 0.65624344), (0.2500075, 0.68749315), (0.21875781, 0.68749315), (0.21875781, 0.65624344), (0.21875781, 0.65624344), (0.21875781, 0.68749315), (0.18750812, 0.68749315), (0.18750812, 0.65624344), (0.18750812, 0.65624344), (0.18750812, 0.68749315), (0.15625843, 0.68749315), (0.15625843, 0.65624344), (0.15625843, 0.65624344), (0.15625843, 0.68749315), (0.12500875, 0.68749315), (0.12500875, 0.65624344), (0.12500875, 0.65624344), (0.12500875, 0.68749315), (0.09375906, 0.68749315), (0.09375906, 0.65624344), (0.09375906, 0.65624344), (0.09375906, 0.68749315), (0.06250937, 0.68749315), (0.06250937, 0.65624344), (0.06250937, 0.65624344), (0.06250937, 0.68749315), (0.031259686, 0.68749315), (0.031259686, 0.65624344), (0.031259686, 0.65624344), (0.031259686, 0.68749315), (0.00001, 0.68749315), (0.00001, 0.65624344), (0.00001, 0.65624344), (0.00001, 0.68749315), (1, 0.68749315), (1, 0.65624344), (1, 0.68749315), (1, 0.7187428), (0.9687503, 0.7187428), (0.9687503, 0.68749315), (0.9687503, 0.68749315), (0.9687503, 0.7187428), (0.9375006, 0.7187428), (0.9375006, 0.68749315), (0.9375006, 0.68749315), (0.9375006, 0.7187428), (0.90625095, 0.7187428), (0.90625095, 0.68749315), (0.90625095, 0.68749315), (0.90625095, 0.7187428), (0.87500125, 0.7187428), (0.87500125, 0.68749315), (0.87500125, 0.68749315), (0.87500125, 0.7187428), (0.84375155, 0.7187428), (0.84375155, 0.68749315), (0.84375155, 0.68749315), (0.84375155, 0.7187428), (0.81250185, 0.7187428), (0.81250185, 0.68749315), (0.81250185, 0.68749315), (0.81250185, 0.7187428), (0.7812522, 0.7187428), (0.7812522, 0.68749315), (0.7812522, 0.68749315), (0.7812522, 0.7187428), (0.7500025, 0.7187428), (0.7500025, 0.68749315), (0.7500025, 0.68749315), (0.7500025, 0.7187428), (0.7187528, 0.7187428), (0.7187528, 0.68749315), (0.7187528, 0.68749315), (0.7187528, 0.7187428), (0.6875031, 0.7187428), (0.6875031, 0.68749315), (0.6875031, 0.68749315), (0.6875031, 0.7187428), (0.65625346, 0.7187428), (0.65625346, 0.68749315), (0.65625346, 0.68749315), (0.65625346, 0.7187428), (0.62500376, 0.7187428), (0.62500376, 0.68749315), (0.62500376, 0.68749315), (0.62500376, 0.7187428), (0.59375405, 0.7187428), (0.59375405, 0.68749315), (0.59375405, 0.68749315), (0.59375405, 0.7187428), (0.56250435, 0.7187428), (0.56250435, 0.68749315), (0.56250435, 0.68749315), (0.56250435, 0.7187428), (0.5312547, 0.7187428), (0.5312547, 0.68749315), (0.5312547, 0.68749315), (0.5312547, 0.7187428), (0.500005, 0.7187428), (0.500005, 0.68749315), (0.500005, 0.68749315), (0.500005, 0.7187428), (0.4687553, 0.7187428), (0.4687553, 0.68749315), (0.4687553, 0.68749315), (0.4687553, 0.7187428), (0.43750563, 0.7187428), (0.43750563, 0.68749315), (0.43750563, 0.68749315), (0.43750563, 0.7187428), (0.40625593, 0.7187428), (0.40625593, 0.68749315), (0.40625593, 0.68749315), (0.40625593, 0.7187428), (0.37500626, 0.7187428), (0.37500626, 0.68749315), (0.37500626, 0.68749315), (0.37500626, 0.7187428), (0.34375656, 0.7187428), (0.34375656, 0.68749315), (0.34375656, 0.68749315), (0.34375656, 0.7187428), (0.31250688, 0.7187428), (0.31250688, 0.68749315), (0.31250688, 0.68749315), (0.31250688, 0.7187428), (0.28125718, 0.7187428), (0.28125718, 0.68749315), (0.28125718, 0.68749315), (0.28125718, 0.7187428), (0.2500075, 0.7187428), (0.2500075, 0.68749315), (0.2500075, 0.68749315), (0.2500075, 0.7187428), (0.21875781, 0.7187428), (0.21875781, 0.68749315), (0.21875781, 0.68749315), (0.21875781, 0.7187428), (0.18750812, 0.7187428), (0.18750812, 0.68749315), (0.18750812, 0.68749315), (0.18750812, 0.7187428), (0.15625843, 0.7187428), (0.15625843, 0.68749315), (0.15625843, 0.68749315), (0.15625843, 0.7187428), (0.12500875, 0.7187428), (0.12500875, 0.68749315), (0.12500875, 0.68749315), (0.12500875, 0.7187428), (0.09375906, 0.7187428), (0.09375906, 0.68749315), (0.09375906, 0.68749315), (0.09375906, 0.7187428), (0.06250937, 0.7187428), (0.06250937, 0.68749315), (0.06250937, 0.68749315), (0.06250937, 0.7187428), (0.031259686, 0.7187428), (0.031259686, 0.68749315), (0.031259686, 0.68749315), (0.031259686, 0.7187428), (0.00001, 0.7187428), (0.00001, 0.68749315), (0.00001, 0.68749315), (0.00001, 0.7187428), (1, 0.7187428), (1, 0.68749315), (1, 0.7187428), (1, 0.7499925), (0.9687503, 0.7499925), (0.9687503, 0.7187428), (0.9687503, 0.7187428), (0.9687503, 0.7499925), (0.9375006, 0.7499925), (0.9375006, 0.7187428), (0.9375006, 0.7187428), (0.9375006, 0.7499925), (0.90625095, 0.7499925), (0.90625095, 0.7187428), (0.90625095, 0.7187428), (0.90625095, 0.7499925), (0.87500125, 0.7499925), (0.87500125, 0.7187428), (0.87500125, 0.7187428), (0.87500125, 0.7499925), (0.84375155, 0.7499925), (0.84375155, 0.7187428), (0.84375155, 0.7187428), (0.84375155, 0.7499925), (0.81250185, 0.7499925), (0.81250185, 0.7187428), (0.81250185, 0.7187428), (0.81250185, 0.7499925), (0.7812522, 0.7499925), (0.7812522, 0.7187428), (0.7812522, 0.7187428), (0.7812522, 0.7499925), (0.7500025, 0.7499925), (0.7500025, 0.7187428), (0.7500025, 0.7187428), (0.7500025, 0.7499925), (0.7187528, 0.7499925), (0.7187528, 0.7187428), (0.7187528, 0.7187428), (0.7187528, 0.7499925), (0.6875031, 0.7499925), (0.6875031, 0.7187428), (0.6875031, 0.7187428), (0.6875031, 0.7499925), (0.65625346, 0.7499925), (0.65625346, 0.7187428), (0.65625346, 0.7187428), (0.65625346, 0.7499925), (0.62500376, 0.7499925), (0.62500376, 0.7187428), (0.62500376, 0.7187428), (0.62500376, 0.7499925), (0.59375405, 0.7499925), (0.59375405, 0.7187428), (0.59375405, 0.7187428), (0.59375405, 0.7499925), (0.56250435, 0.7499925), (0.56250435, 0.7187428), (0.56250435, 0.7187428), (0.56250435, 0.7499925), (0.5312547, 0.7499925), (0.5312547, 0.7187428), (0.5312547, 0.7187428), (0.5312547, 0.7499925), (0.500005, 0.7499925), (0.500005, 0.7187428), (0.500005, 0.7187428), (0.500005, 0.7499925), (0.4687553, 0.7499925), (0.4687553, 0.7187428), (0.4687553, 0.7187428), (0.4687553, 0.7499925), (0.43750563, 0.7499925), (0.43750563, 0.7187428), (0.43750563, 0.7187428), (0.43750563, 0.7499925), (0.40625593, 0.7499925), (0.40625593, 0.7187428), (0.40625593, 0.7187428), (0.40625593, 0.7499925), (0.37500626, 0.7499925), (0.37500626, 0.7187428), (0.37500626, 0.7187428), (0.37500626, 0.7499925), (0.34375656, 0.7499925), (0.34375656, 0.7187428), (0.34375656, 0.7187428), (0.34375656, 0.7499925), (0.31250688, 0.7499925), (0.31250688, 0.7187428), (0.31250688, 0.7187428), (0.31250688, 0.7499925), (0.28125718, 0.7499925), (0.28125718, 0.7187428), (0.28125718, 0.7187428), (0.28125718, 0.7499925), (0.2500075, 0.7499925), (0.2500075, 0.7187428), (0.2500075, 0.7187428), (0.2500075, 0.7499925), (0.21875781, 0.7499925), (0.21875781, 0.7187428), (0.21875781, 0.7187428), (0.21875781, 0.7499925), (0.18750812, 0.7499925), (0.18750812, 0.7187428), (0.18750812, 0.7187428), (0.18750812, 0.7499925), (0.15625843, 0.7499925), (0.15625843, 0.7187428), (0.15625843, 0.7187428), (0.15625843, 0.7499925), (0.12500875, 0.7499925), (0.12500875, 0.7187428), (0.12500875, 0.7187428), (0.12500875, 0.7499925), (0.09375906, 0.7499925), (0.09375906, 0.7187428), (0.09375906, 0.7187428), (0.09375906, 0.7499925), (0.06250937, 0.7499925), (0.06250937, 0.7187428), (0.06250937, 0.7187428), (0.06250937, 0.7499925), (0.031259686, 0.7499925), (0.031259686, 0.7187428), (0.031259686, 0.7187428), (0.031259686, 0.7499925), (0.00001, 0.7499925), (0.00001, 0.7187428), (0.00001, 0.7187428), (0.00001, 0.7499925), (1, 0.7499925), (1, 0.7187428), (1, 0.7499925), (1, 0.7812422), (0.9687503, 0.7812422), (0.9687503, 0.7499925), (0.9687503, 0.7499925), (0.9687503, 0.7812422), (0.9375006, 0.7812422), (0.9375006, 0.7499925), (0.9375006, 0.7499925), (0.9375006, 0.7812422), (0.90625095, 0.7812422), (0.90625095, 0.7499925), (0.90625095, 0.7499925), (0.90625095, 0.7812422), (0.87500125, 0.7812422), (0.87500125, 0.7499925), (0.87500125, 0.7499925), (0.87500125, 0.7812422), (0.84375155, 0.7812422), (0.84375155, 0.7499925), (0.84375155, 0.7499925), (0.84375155, 0.7812422), (0.81250185, 0.7812422), (0.81250185, 0.7499925), (0.81250185, 0.7499925), (0.81250185, 0.7812422), (0.7812522, 0.7812422), (0.7812522, 0.7499925), (0.7812522, 0.7499925), (0.7812522, 0.7812422), (0.7500025, 0.7812422), (0.7500025, 0.7499925), (0.7500025, 0.7499925), (0.7500025, 0.7812422), (0.7187528, 0.7812422), (0.7187528, 0.7499925), (0.7187528, 0.7499925), (0.7187528, 0.7812422), (0.6875031, 0.7812422), (0.6875031, 0.7499925), (0.6875031, 0.7499925), (0.6875031, 0.7812422), (0.65625346, 0.7812422), (0.65625346, 0.7499925), (0.65625346, 0.7499925), (0.65625346, 0.7812422), (0.62500376, 0.7812422), (0.62500376, 0.7499925), (0.62500376, 0.7499925), (0.62500376, 0.7812422), (0.59375405, 0.7812422), (0.59375405, 0.7499925), (0.59375405, 0.7499925), (0.59375405, 0.7812422), (0.56250435, 0.7812422), (0.56250435, 0.7499925), (0.56250435, 0.7499925), (0.56250435, 0.7812422), (0.5312547, 0.7812422), (0.5312547, 0.7499925), (0.5312547, 0.7499925), (0.5312547, 0.7812422), (0.500005, 0.7812422), (0.500005, 0.7499925), (0.500005, 0.7499925), (0.500005, 0.7812422), (0.4687553, 0.7812422), (0.4687553, 0.7499925), (0.4687553, 0.7499925), (0.4687553, 0.7812422), (0.43750563, 0.7812422), (0.43750563, 0.7499925), (0.43750563, 0.7499925), (0.43750563, 0.7812422), (0.40625593, 0.7812422), (0.40625593, 0.7499925), (0.40625593, 0.7499925), (0.40625593, 0.7812422), (0.37500626, 0.7812422), (0.37500626, 0.7499925), (0.37500626, 0.7499925), (0.37500626, 0.7812422), (0.34375656, 0.7812422), (0.34375656, 0.7499925), (0.34375656, 0.7499925), (0.34375656, 0.7812422), (0.31250688, 0.7812422), (0.31250688, 0.7499925), (0.31250688, 0.7499925), (0.31250688, 0.7812422), (0.28125718, 0.7812422), (0.28125718, 0.7499925), (0.28125718, 0.7499925), (0.28125718, 0.7812422), (0.2500075, 0.7812422), (0.2500075, 0.7499925), (0.2500075, 0.7499925), (0.2500075, 0.7812422), (0.21875781, 0.7812422), (0.21875781, 0.7499925), (0.21875781, 0.7499925), (0.21875781, 0.7812422), (0.18750812, 0.7812422), (0.18750812, 0.7499925), (0.18750812, 0.7499925), (0.18750812, 0.7812422), (0.15625843, 0.7812422), (0.15625843, 0.7499925), (0.15625843, 0.7499925), (0.15625843, 0.7812422), (0.12500875, 0.7812422), (0.12500875, 0.7499925), (0.12500875, 0.7499925), (0.12500875, 0.7812422), (0.09375906, 0.7812422), (0.09375906, 0.7499925), (0.09375906, 0.7499925), (0.09375906, 0.7812422), (0.06250937, 0.7812422), (0.06250937, 0.7499925), (0.06250937, 0.7499925), (0.06250937, 0.7812422), (0.031259686, 0.7812422), (0.031259686, 0.7499925), (0.031259686, 0.7499925), (0.031259686, 0.7812422), (0.00001, 0.7812422), (0.00001, 0.7499925), (0.00001, 0.7499925), (0.00001, 0.7812422), (1, 0.7812422), (1, 0.7499925), (1, 0.7812422), (1, 0.8124919), (0.9687503, 0.8124919), (0.9687503, 0.7812422), (0.9687503, 0.7812422), (0.9687503, 0.8124919), (0.9375006, 0.8124919), (0.9375006, 0.7812422), (0.9375006, 0.7812422), (0.9375006, 0.8124919), (0.90625095, 0.8124919), (0.90625095, 0.7812422), (0.90625095, 0.7812422), (0.90625095, 0.8124919), (0.87500125, 0.8124919), (0.87500125, 0.7812422), (0.87500125, 0.7812422), (0.87500125, 0.8124919), (0.84375155, 0.8124919), (0.84375155, 0.7812422), (0.84375155, 0.7812422), (0.84375155, 0.8124919), (0.81250185, 0.8124919), (0.81250185, 0.7812422), (0.81250185, 0.7812422), (0.81250185, 0.8124919), (0.7812522, 0.8124919), (0.7812522, 0.7812422), (0.7812522, 0.7812422), (0.7812522, 0.8124919), (0.7500025, 0.8124919), (0.7500025, 0.7812422), (0.7500025, 0.7812422), (0.7500025, 0.8124919), (0.7187528, 0.8124919), (0.7187528, 0.7812422), (0.7187528, 0.7812422), (0.7187528, 0.8124919), (0.6875031, 0.8124919), (0.6875031, 0.7812422), (0.6875031, 0.7812422), (0.6875031, 0.8124919), (0.65625346, 0.8124919), (0.65625346, 0.7812422), (0.65625346, 0.7812422), (0.65625346, 0.8124919), (0.62500376, 0.8124919), (0.62500376, 0.7812422), (0.62500376, 0.7812422), (0.62500376, 0.8124919), (0.59375405, 0.8124919), (0.59375405, 0.7812422), (0.59375405, 0.7812422), (0.59375405, 0.8124919), (0.56250435, 0.8124919), (0.56250435, 0.7812422), (0.56250435, 0.7812422), (0.56250435, 0.8124919), (0.5312547, 0.8124919), (0.5312547, 0.7812422), (0.5312547, 0.7812422), (0.5312547, 0.8124919), (0.500005, 0.8124919), (0.500005, 0.7812422), (0.500005, 0.7812422), (0.500005, 0.8124919), (0.4687553, 0.8124919), (0.4687553, 0.7812422), (0.4687553, 0.7812422), (0.4687553, 0.8124919), (0.43750563, 0.8124919), (0.43750563, 0.7812422), (0.43750563, 0.7812422), (0.43750563, 0.8124919), (0.40625593, 0.8124919), (0.40625593, 0.7812422), (0.40625593, 0.7812422), (0.40625593, 0.8124919), (0.37500626, 0.8124919), (0.37500626, 0.7812422), (0.37500626, 0.7812422), (0.37500626, 0.8124919), (0.34375656, 0.8124919), (0.34375656, 0.7812422), (0.34375656, 0.7812422), (0.34375656, 0.8124919), (0.31250688, 0.8124919), (0.31250688, 0.7812422), (0.31250688, 0.7812422), (0.31250688, 0.8124919), (0.28125718, 0.8124919), (0.28125718, 0.7812422), (0.28125718, 0.7812422), (0.28125718, 0.8124919), (0.2500075, 0.8124919), (0.2500075, 0.7812422), (0.2500075, 0.7812422), (0.2500075, 0.8124919), (0.21875781, 0.8124919), (0.21875781, 0.7812422), (0.21875781, 0.7812422), (0.21875781, 0.8124919), (0.18750812, 0.8124919), (0.18750812, 0.7812422), (0.18750812, 0.7812422), (0.18750812, 0.8124919), (0.15625843, 0.8124919), (0.15625843, 0.7812422), (0.15625843, 0.7812422), (0.15625843, 0.8124919), (0.12500875, 0.8124919), (0.12500875, 0.7812422), (0.12500875, 0.7812422), (0.12500875, 0.8124919), (0.09375906, 0.8124919), (0.09375906, 0.7812422), (0.09375906, 0.7812422), (0.09375906, 0.8124919), (0.06250937, 0.8124919), (0.06250937, 0.7812422), (0.06250937, 0.7812422), (0.06250937, 0.8124919), (0.031259686, 0.8124919), (0.031259686, 0.7812422), (0.031259686, 0.7812422), (0.031259686, 0.8124919), (0.00001, 0.8124919), (0.00001, 0.7812422), (0.00001, 0.7812422), (0.00001, 0.8124919), (1, 0.8124919), (1, 0.7812422), (1, 0.8124919), (1, 0.84374154), (0.9687503, 0.84374154), (0.9687503, 0.8124919), (0.9687503, 0.8124919), (0.9687503, 0.84374154), (0.9375006, 0.84374154), (0.9375006, 0.8124919), (0.9375006, 0.8124919), (0.9375006, 0.84374154), (0.90625095, 0.84374154), (0.90625095, 0.8124919), (0.90625095, 0.8124919), (0.90625095, 0.84374154), (0.87500125, 0.84374154), (0.87500125, 0.8124919), (0.87500125, 0.8124919), (0.87500125, 0.84374154), (0.84375155, 0.84374154), (0.84375155, 0.8124919), (0.84375155, 0.8124919), (0.84375155, 0.84374154), (0.81250185, 0.84374154), (0.81250185, 0.8124919), (0.81250185, 0.8124919), (0.81250185, 0.84374154), (0.7812522, 0.84374154), (0.7812522, 0.8124919), (0.7812522, 0.8124919), (0.7812522, 0.84374154), (0.7500025, 0.84374154), (0.7500025, 0.8124919), (0.7500025, 0.8124919), (0.7500025, 0.84374154), (0.7187528, 0.84374154), (0.7187528, 0.8124919), (0.7187528, 0.8124919), (0.7187528, 0.84374154), (0.6875031, 0.84374154), (0.6875031, 0.8124919), (0.6875031, 0.8124919), (0.6875031, 0.84374154), (0.65625346, 0.84374154), (0.65625346, 0.8124919), (0.65625346, 0.8124919), (0.65625346, 0.84374154), (0.62500376, 0.84374154), (0.62500376, 0.8124919), (0.62500376, 0.8124919), (0.62500376, 0.84374154), (0.59375405, 0.84374154), (0.59375405, 0.8124919), (0.59375405, 0.8124919), (0.59375405, 0.84374154), (0.56250435, 0.84374154), (0.56250435, 0.8124919), (0.56250435, 0.8124919), (0.56250435, 0.84374154), (0.5312547, 0.84374154), (0.5312547, 0.8124919), (0.5312547, 0.8124919), (0.5312547, 0.84374154), (0.500005, 0.84374154), (0.500005, 0.8124919), (0.500005, 0.8124919), (0.500005, 0.84374154), (0.4687553, 0.84374154), (0.4687553, 0.8124919), (0.4687553, 0.8124919), (0.4687553, 0.84374154), (0.43750563, 0.84374154), (0.43750563, 0.8124919), (0.43750563, 0.8124919), (0.43750563, 0.84374154), (0.40625593, 0.84374154), (0.40625593, 0.8124919), (0.40625593, 0.8124919), (0.40625593, 0.84374154), (0.37500626, 0.84374154), (0.37500626, 0.8124919), (0.37500626, 0.8124919), (0.37500626, 0.84374154), (0.34375656, 0.84374154), (0.34375656, 0.8124919), (0.34375656, 0.8124919), (0.34375656, 0.84374154), (0.31250688, 0.84374154), (0.31250688, 0.8124919), (0.31250688, 0.8124919), (0.31250688, 0.84374154), (0.28125718, 0.84374154), (0.28125718, 0.8124919), (0.28125718, 0.8124919), (0.28125718, 0.84374154), (0.2500075, 0.84374154), (0.2500075, 0.8124919), (0.2500075, 0.8124919), (0.2500075, 0.84374154), (0.21875781, 0.84374154), (0.21875781, 0.8124919), (0.21875781, 0.8124919), (0.21875781, 0.84374154), (0.18750812, 0.84374154), (0.18750812, 0.8124919), (0.18750812, 0.8124919), (0.18750812, 0.84374154), (0.15625843, 0.84374154), (0.15625843, 0.8124919), (0.15625843, 0.8124919), (0.15625843, 0.84374154), (0.12500875, 0.84374154), (0.12500875, 0.8124919), (0.12500875, 0.8124919), (0.12500875, 0.84374154), (0.09375906, 0.84374154), (0.09375906, 0.8124919), (0.09375906, 0.8124919), (0.09375906, 0.84374154), (0.06250937, 0.84374154), (0.06250937, 0.8124919), (0.06250937, 0.8124919), (0.06250937, 0.84374154), (0.031259686, 0.84374154), (0.031259686, 0.8124919), (0.031259686, 0.8124919), (0.031259686, 0.84374154), (0.00001, 0.84374154), (0.00001, 0.8124919), (0.00001, 0.8124919), (0.00001, 0.84374154), (1, 0.84374154), (1, 0.8124919), (1, 0.84374154), (1, 0.87499124), (0.9687503, 0.87499124), (0.9687503, 0.84374154), (0.9687503, 0.84374154), (0.9687503, 0.87499124), (0.9375006, 0.87499124), (0.9375006, 0.84374154), (0.9375006, 0.84374154), (0.9375006, 0.87499124), (0.90625095, 0.87499124), (0.90625095, 0.84374154), (0.90625095, 0.84374154), (0.90625095, 0.87499124), (0.87500125, 0.87499124), (0.87500125, 0.84374154), (0.87500125, 0.84374154), (0.87500125, 0.87499124), (0.84375155, 0.87499124), (0.84375155, 0.84374154), (0.84375155, 0.84374154), (0.84375155, 0.87499124), (0.81250185, 0.87499124), (0.81250185, 0.84374154), (0.81250185, 0.84374154), (0.81250185, 0.87499124), (0.7812522, 0.87499124), (0.7812522, 0.84374154), (0.7812522, 0.84374154), (0.7812522, 0.87499124), (0.7500025, 0.87499124), (0.7500025, 0.84374154), (0.7500025, 0.84374154), (0.7500025, 0.87499124), (0.7187528, 0.87499124), (0.7187528, 0.84374154), (0.7187528, 0.84374154), (0.7187528, 0.87499124), (0.6875031, 0.87499124), (0.6875031, 0.84374154), (0.6875031, 0.84374154), (0.6875031, 0.87499124), (0.65625346, 0.87499124), (0.65625346, 0.84374154), (0.65625346, 0.84374154), (0.65625346, 0.87499124), (0.62500376, 0.87499124), (0.62500376, 0.84374154), (0.62500376, 0.84374154), (0.62500376, 0.87499124), (0.59375405, 0.87499124), (0.59375405, 0.84374154), (0.59375405, 0.84374154), (0.59375405, 0.87499124), (0.56250435, 0.87499124), (0.56250435, 0.84374154), (0.56250435, 0.84374154), (0.56250435, 0.87499124), (0.5312547, 0.87499124), (0.5312547, 0.84374154), (0.5312547, 0.84374154), (0.5312547, 0.87499124), (0.500005, 0.87499124), (0.500005, 0.84374154), (0.500005, 0.84374154), (0.500005, 0.87499124), (0.4687553, 0.87499124), (0.4687553, 0.84374154), (0.4687553, 0.84374154), (0.4687553, 0.87499124), (0.43750563, 0.87499124), (0.43750563, 0.84374154), (0.43750563, 0.84374154), (0.43750563, 0.87499124), (0.40625593, 0.87499124), (0.40625593, 0.84374154), (0.40625593, 0.84374154), (0.40625593, 0.87499124), (0.37500626, 0.87499124), (0.37500626, 0.84374154), (0.37500626, 0.84374154), (0.37500626, 0.87499124), (0.34375656, 0.87499124), (0.34375656, 0.84374154), (0.34375656, 0.84374154), (0.34375656, 0.87499124), (0.31250688, 0.87499124), (0.31250688, 0.84374154), (0.31250688, 0.84374154), (0.31250688, 0.87499124), (0.28125718, 0.87499124), (0.28125718, 0.84374154), (0.28125718, 0.84374154), (0.28125718, 0.87499124), (0.2500075, 0.87499124), (0.2500075, 0.84374154), (0.2500075, 0.84374154), (0.2500075, 0.87499124), (0.21875781, 0.87499124), (0.21875781, 0.84374154), (0.21875781, 0.84374154), (0.21875781, 0.87499124), (0.18750812, 0.87499124), (0.18750812, 0.84374154), (0.18750812, 0.84374154), (0.18750812, 0.87499124), (0.15625843, 0.87499124), (0.15625843, 0.84374154), (0.15625843, 0.84374154), (0.15625843, 0.87499124), (0.12500875, 0.87499124), (0.12500875, 0.84374154), (0.12500875, 0.84374154), (0.12500875, 0.87499124), (0.09375906, 0.87499124), (0.09375906, 0.84374154), (0.09375906, 0.84374154), (0.09375906, 0.87499124), (0.06250937, 0.87499124), (0.06250937, 0.84374154), (0.06250937, 0.84374154), (0.06250937, 0.87499124), (0.031259686, 0.87499124), (0.031259686, 0.84374154), (0.031259686, 0.84374154), (0.031259686, 0.87499124), (0.00001, 0.87499124), (0.00001, 0.84374154), (0.00001, 0.84374154), (0.00001, 0.87499124), (1, 0.87499124), (1, 0.84374154), (1, 0.87499124), (1, 0.90624094), (0.9687503, 0.90624094), (0.9687503, 0.87499124), (0.9687503, 0.87499124), (0.9687503, 0.90624094), (0.9375006, 0.90624094), (0.9375006, 0.87499124), (0.9375006, 0.87499124), (0.9375006, 0.90624094), (0.90625095, 0.90624094), (0.90625095, 0.87499124), (0.90625095, 0.87499124), (0.90625095, 0.90624094), (0.87500125, 0.90624094), (0.87500125, 0.87499124), (0.87500125, 0.87499124), (0.87500125, 0.90624094), (0.84375155, 0.90624094), (0.84375155, 0.87499124), (0.84375155, 0.87499124), (0.84375155, 0.90624094), (0.81250185, 0.90624094), (0.81250185, 0.87499124), (0.81250185, 0.87499124), (0.81250185, 0.90624094), (0.7812522, 0.90624094), (0.7812522, 0.87499124), (0.7812522, 0.87499124), (0.7812522, 0.90624094), (0.7500025, 0.90624094), (0.7500025, 0.87499124), (0.7500025, 0.87499124), (0.7500025, 0.90624094), (0.7187528, 0.90624094), (0.7187528, 0.87499124), (0.7187528, 0.87499124), (0.7187528, 0.90624094), (0.6875031, 0.90624094), (0.6875031, 0.87499124), (0.6875031, 0.87499124), (0.6875031, 0.90624094), (0.65625346, 0.90624094), (0.65625346, 0.87499124), (0.65625346, 0.87499124), (0.65625346, 0.90624094), (0.62500376, 0.90624094), (0.62500376, 0.87499124), (0.62500376, 0.87499124), (0.62500376, 0.90624094), (0.59375405, 0.90624094), (0.59375405, 0.87499124), (0.59375405, 0.87499124), (0.59375405, 0.90624094), (0.56250435, 0.90624094), (0.56250435, 0.87499124), (0.56250435, 0.87499124), (0.56250435, 0.90624094), (0.5312547, 0.90624094), (0.5312547, 0.87499124), (0.5312547, 0.87499124), (0.5312547, 0.90624094), (0.500005, 0.90624094), (0.500005, 0.87499124), (0.500005, 0.87499124), (0.500005, 0.90624094), (0.4687553, 0.90624094), (0.4687553, 0.87499124), (0.4687553, 0.87499124), (0.4687553, 0.90624094), (0.43750563, 0.90624094), (0.43750563, 0.87499124), (0.43750563, 0.87499124), (0.43750563, 0.90624094), (0.40625593, 0.90624094), (0.40625593, 0.87499124), (0.40625593, 0.87499124), (0.40625593, 0.90624094), (0.37500626, 0.90624094), (0.37500626, 0.87499124), (0.37500626, 0.87499124), (0.37500626, 0.90624094), (0.34375656, 0.90624094), (0.34375656, 0.87499124), (0.34375656, 0.87499124), (0.34375656, 0.90624094), (0.31250688, 0.90624094), (0.31250688, 0.87499124), (0.31250688, 0.87499124), (0.31250688, 0.90624094), (0.28125718, 0.90624094), (0.28125718, 0.87499124), (0.28125718, 0.87499124), (0.28125718, 0.90624094), (0.2500075, 0.90624094), (0.2500075, 0.87499124), (0.2500075, 0.87499124), (0.2500075, 0.90624094), (0.21875781, 0.90624094), (0.21875781, 0.87499124), (0.21875781, 0.87499124), (0.21875781, 0.90624094), (0.18750812, 0.90624094), (0.18750812, 0.87499124), (0.18750812, 0.87499124), (0.18750812, 0.90624094), (0.15625843, 0.90624094), (0.15625843, 0.87499124), (0.15625843, 0.87499124), (0.15625843, 0.90624094), (0.12500875, 0.90624094), (0.12500875, 0.87499124), (0.12500875, 0.87499124), (0.12500875, 0.90624094), (0.09375906, 0.90624094), (0.09375906, 0.87499124), (0.09375906, 0.87499124), (0.09375906, 0.90624094), (0.06250937, 0.90624094), (0.06250937, 0.87499124), (0.06250937, 0.87499124), (0.06250937, 0.90624094), (0.031259686, 0.90624094), (0.031259686, 0.87499124), (0.031259686, 0.87499124), (0.031259686, 0.90624094), (0.00001, 0.90624094), (0.00001, 0.87499124), (0.00001, 0.87499124), (0.00001, 0.90624094), (1, 0.90624094), (1, 0.87499124), (1, 0.90624094), (1, 0.93749064), (0.9687503, 0.93749064), (0.9687503, 0.90624094), (0.9687503, 0.90624094), (0.9687503, 0.93749064), (0.9375006, 0.93749064), (0.9375006, 0.90624094), (0.9375006, 0.90624094), (0.9375006, 0.93749064), (0.90625095, 0.93749064), (0.90625095, 0.90624094), (0.90625095, 0.90624094), (0.90625095, 0.93749064), (0.87500125, 0.93749064), (0.87500125, 0.90624094), (0.87500125, 0.90624094), (0.87500125, 0.93749064), (0.84375155, 0.93749064), (0.84375155, 0.90624094), (0.84375155, 0.90624094), (0.84375155, 0.93749064), (0.81250185, 0.93749064), (0.81250185, 0.90624094), (0.81250185, 0.90624094), (0.81250185, 0.93749064), (0.7812522, 0.93749064), (0.7812522, 0.90624094), (0.7812522, 0.90624094), (0.7812522, 0.93749064), (0.7500025, 0.93749064), (0.7500025, 0.90624094), (0.7500025, 0.90624094), (0.7500025, 0.93749064), (0.7187528, 0.93749064), (0.7187528, 0.90624094), (0.7187528, 0.90624094), (0.7187528, 0.93749064), (0.6875031, 0.93749064), (0.6875031, 0.90624094), (0.6875031, 0.90624094), (0.6875031, 0.93749064), (0.65625346, 0.93749064), (0.65625346, 0.90624094), (0.65625346, 0.90624094), (0.65625346, 0.93749064), (0.62500376, 0.93749064), (0.62500376, 0.90624094), (0.62500376, 0.90624094), (0.62500376, 0.93749064), (0.59375405, 0.93749064), (0.59375405, 0.90624094), (0.59375405, 0.90624094), (0.59375405, 0.93749064), (0.56250435, 0.93749064), (0.56250435, 0.90624094), (0.56250435, 0.90624094), (0.56250435, 0.93749064), (0.5312547, 0.93749064), (0.5312547, 0.90624094), (0.5312547, 0.90624094), (0.5312547, 0.93749064), (0.500005, 0.93749064), (0.500005, 0.90624094), (0.500005, 0.90624094), (0.500005, 0.93749064), (0.4687553, 0.93749064), (0.4687553, 0.90624094), (0.4687553, 0.90624094), (0.4687553, 0.93749064), (0.43750563, 0.93749064), (0.43750563, 0.90624094), (0.43750563, 0.90624094), (0.43750563, 0.93749064), (0.40625593, 0.93749064), (0.40625593, 0.90624094), (0.40625593, 0.90624094), (0.40625593, 0.93749064), (0.37500626, 0.93749064), (0.37500626, 0.90624094), (0.37500626, 0.90624094), (0.37500626, 0.93749064), (0.34375656, 0.93749064), (0.34375656, 0.90624094), (0.34375656, 0.90624094), (0.34375656, 0.93749064), (0.31250688, 0.93749064), (0.31250688, 0.90624094), (0.31250688, 0.90624094), (0.31250688, 0.93749064), (0.28125718, 0.93749064), (0.28125718, 0.90624094), (0.28125718, 0.90624094), (0.28125718, 0.93749064), (0.2500075, 0.93749064), (0.2500075, 0.90624094), (0.2500075, 0.90624094), (0.2500075, 0.93749064), (0.21875781, 0.93749064), (0.21875781, 0.90624094), (0.21875781, 0.90624094), (0.21875781, 0.93749064), (0.18750812, 0.93749064), (0.18750812, 0.90624094), (0.18750812, 0.90624094), (0.18750812, 0.93749064), (0.15625843, 0.93749064), (0.15625843, 0.90624094), (0.15625843, 0.90624094), (0.15625843, 0.93749064), (0.12500875, 0.93749064), (0.12500875, 0.90624094), (0.12500875, 0.90624094), (0.12500875, 0.93749064), (0.09375906, 0.93749064), (0.09375906, 0.90624094), (0.09375906, 0.90624094), (0.09375906, 0.93749064), (0.06250937, 0.93749064), (0.06250937, 0.90624094), (0.06250937, 0.90624094), (0.06250937, 0.93749064), (0.031259686, 0.93749064), (0.031259686, 0.90624094), (0.031259686, 0.90624094), (0.031259686, 0.93749064), (0.00001, 0.93749064), (0.00001, 0.90624094), (0.00001, 0.90624094), (0.00001, 0.93749064), (1, 0.93749064), (1, 0.90624094), (1, 0.93749064), (1, 0.9687403), (0.9687503, 0.9687403), (0.9687503, 0.93749064), (0.9687503, 0.93749064), (0.9687503, 0.9687403), (0.9375006, 0.9687403), (0.9375006, 0.93749064), (0.9375006, 0.93749064), (0.9375006, 0.9687403), (0.90625095, 0.9687403), (0.90625095, 0.93749064), (0.90625095, 0.93749064), (0.90625095, 0.9687403), (0.87500125, 0.9687403), (0.87500125, 0.93749064), (0.87500125, 0.93749064), (0.87500125, 0.9687403), (0.84375155, 0.9687403), (0.84375155, 0.93749064), (0.84375155, 0.93749064), (0.84375155, 0.9687403), (0.81250185, 0.9687403), (0.81250185, 0.93749064), (0.81250185, 0.93749064), (0.81250185, 0.9687403), (0.7812522, 0.9687403), (0.7812522, 0.93749064), (0.7812522, 0.93749064), (0.7812522, 0.9687403), (0.7500025, 0.9687403), (0.7500025, 0.93749064), (0.7500025, 0.93749064), (0.7500025, 0.9687403), (0.7187528, 0.9687403), (0.7187528, 0.93749064), (0.7187528, 0.93749064), (0.7187528, 0.9687403), (0.6875031, 0.9687403), (0.6875031, 0.93749064), (0.6875031, 0.93749064), (0.6875031, 0.9687403), (0.65625346, 0.9687403), (0.65625346, 0.93749064), (0.65625346, 0.93749064), (0.65625346, 0.9687403), (0.62500376, 0.9687403), (0.62500376, 0.93749064), (0.62500376, 0.93749064), (0.62500376, 0.9687403), (0.59375405, 0.9687403), (0.59375405, 0.93749064), (0.59375405, 0.93749064), (0.59375405, 0.9687403), (0.56250435, 0.9687403), (0.56250435, 0.93749064), (0.56250435, 0.93749064), (0.56250435, 0.9687403), (0.5312547, 0.9687403), (0.5312547, 0.93749064), (0.5312547, 0.93749064), (0.5312547, 0.9687403), (0.500005, 0.9687403), (0.500005, 0.93749064), (0.500005, 0.93749064), (0.500005, 0.9687403), (0.4687553, 0.9687403), (0.4687553, 0.93749064), (0.4687553, 0.93749064), (0.4687553, 0.9687403), (0.43750563, 0.9687403), (0.43750563, 0.93749064), (0.43750563, 0.93749064), (0.43750563, 0.9687403), (0.40625593, 0.9687403), (0.40625593, 0.93749064), (0.40625593, 0.93749064), (0.40625593, 0.9687403), (0.37500626, 0.9687403), (0.37500626, 0.93749064), (0.37500626, 0.93749064), (0.37500626, 0.9687403), (0.34375656, 0.9687403), (0.34375656, 0.93749064), (0.34375656, 0.93749064), (0.34375656, 0.9687403), (0.31250688, 0.9687403), (0.31250688, 0.93749064), (0.31250688, 0.93749064), (0.31250688, 0.9687403), (0.28125718, 0.9687403), (0.28125718, 0.93749064), (0.28125718, 0.93749064), (0.28125718, 0.9687403), (0.2500075, 0.9687403), (0.2500075, 0.93749064), (0.2500075, 0.93749064), (0.2500075, 0.9687403), (0.21875781, 0.9687403), (0.21875781, 0.93749064), (0.21875781, 0.93749064), (0.21875781, 0.9687403), (0.18750812, 0.9687403), (0.18750812, 0.93749064), (0.18750812, 0.93749064), (0.18750812, 0.9687403), (0.15625843, 0.9687403), (0.15625843, 0.93749064), (0.15625843, 0.93749064), (0.15625843, 0.9687403), (0.12500875, 0.9687403), (0.12500875, 0.93749064), (0.12500875, 0.93749064), (0.12500875, 0.9687403), (0.09375906, 0.9687403), (0.09375906, 0.93749064), (0.09375906, 0.93749064), (0.09375906, 0.9687403), (0.06250937, 0.9687403), (0.06250937, 0.93749064), (0.06250937, 0.93749064), (0.06250937, 0.9687403), (0.031259686, 0.9687403), (0.031259686, 0.93749064), (0.031259686, 0.93749064), (0.031259686, 0.9687403), (0.00001, 0.9687403), (0.00001, 0.93749064), (0.00001, 0.93749064), (0.00001, 0.9687403), (1, 0.9687403), (1, 0.93749064), (1, 0.9687403), (1, 0.99999), (0.9687503, 0.99999), (0.9687503, 0.9687403), (0.9687503, 0.9687403), (0.9687503, 0.99999), (0.9375006, 0.99999), (0.9375006, 0.9687403), (0.9375006, 0.9687403), (0.9375006, 0.99999), (0.90625095, 0.99999), (0.90625095, 0.9687403), (0.90625095, 0.9687403), (0.90625095, 0.99999), (0.87500125, 0.99999), (0.87500125, 0.9687403), (0.87500125, 0.9687403), (0.87500125, 0.99999), (0.84375155, 0.99999), (0.84375155, 0.9687403), (0.84375155, 0.9687403), (0.84375155, 0.99999), (0.81250185, 0.99999), (0.81250185, 0.9687403), (0.81250185, 0.9687403), (0.81250185, 0.99999), (0.7812522, 0.99999), (0.7812522, 0.9687403), (0.7812522, 0.9687403), (0.7812522, 0.99999), (0.7500025, 0.99999), (0.7500025, 0.9687403), (0.7500025, 0.9687403), (0.7500025, 0.99999), (0.7187528, 0.99999), (0.7187528, 0.9687403), (0.7187528, 0.9687403), (0.7187528, 0.99999), (0.6875031, 0.99999), (0.6875031, 0.9687403), (0.6875031, 0.9687403), (0.6875031, 0.99999), (0.65625346, 0.99999), (0.65625346, 0.9687403), (0.65625346, 0.9687403), (0.65625346, 0.99999), (0.62500376, 0.99999), (0.62500376, 0.9687403), (0.62500376, 0.9687403), (0.62500376, 0.99999), (0.59375405, 0.99999), (0.59375405, 0.9687403), (0.59375405, 0.9687403), (0.59375405, 0.99999), (0.56250435, 0.99999), (0.56250435, 0.9687403), (0.56250435, 0.9687403), (0.56250435, 0.99999), (0.5312547, 0.99999), (0.5312547, 0.9687403), (0.5312547, 0.9687403), (0.5312547, 0.99999), (0.500005, 0.99999), (0.500005, 0.9687403), (0.500005, 0.9687403), (0.500005, 0.99999), (0.4687553, 0.99999), (0.4687553, 0.9687403), (0.4687553, 0.9687403), (0.4687553, 0.99999), (0.43750563, 0.99999), (0.43750563, 0.9687403), (0.43750563, 0.9687403), (0.43750563, 0.99999), (0.40625593, 0.99999), (0.40625593, 0.9687403), (0.40625593, 0.9687403), (0.40625593, 0.99999), (0.37500626, 0.99999), (0.37500626, 0.9687403), (0.37500626, 0.9687403), (0.37500626, 0.99999), (0.34375656, 0.99999), (0.34375656, 0.9687403), (0.34375656, 0.9687403), (0.34375656, 0.99999), (0.31250688, 0.99999), (0.31250688, 0.9687403), (0.31250688, 0.9687403), (0.31250688, 0.99999), (0.28125718, 0.99999), (0.28125718, 0.9687403), (0.28125718, 0.9687403), (0.28125718, 0.99999), (0.2500075, 0.99999), (0.2500075, 0.9687403), (0.2500075, 0.9687403), (0.2500075, 0.99999), (0.21875781, 0.99999), (0.21875781, 0.9687403), (0.21875781, 0.9687403), (0.21875781, 0.99999), (0.18750812, 0.99999), (0.18750812, 0.9687403), (0.18750812, 0.9687403), (0.18750812, 0.99999), (0.15625843, 0.99999), (0.15625843, 0.9687403), (0.15625843, 0.9687403), (0.15625843, 0.99999), (0.12500875, 0.99999), (0.12500875, 0.9687403), (0.12500875, 0.9687403), (0.12500875, 0.99999), (0.09375906, 0.99999), (0.09375906, 0.9687403), (0.09375906, 0.9687403), (0.09375906, 0.99999), (0.06250937, 0.99999), (0.06250937, 0.9687403), (0.06250937, 0.9687403), (0.06250937, 0.99999), (0.031259686, 0.99999), (0.031259686, 0.9687403), (0.031259686, 0.9687403), (0.031259686, 0.99999), (0.00001, 0.99999), (0.00001, 0.9687403), (0.00001, 0.9687403), (0.00001, 0.99999), (1, 0.99999), (1, 0.9687403), (1, 0.99999), (1, 1), (0.9687503, 1), (0.9687503, 0.99999), (0.9687503, 0.99999), (0.9687503, 1), (0.9375006, 1), (0.9375006, 0.99999), (0.9375006, 0.99999), (0.9375006, 1), (0.90625095, 1), (0.90625095, 0.99999), (0.90625095, 0.99999), (0.90625095, 1), (0.87500125, 1), (0.87500125, 0.99999), (0.87500125, 0.99999), (0.87500125, 1), (0.84375155, 1), (0.84375155, 0.99999), (0.84375155, 0.99999), (0.84375155, 1), (0.81250185, 1), (0.81250185, 0.99999), (0.81250185, 0.99999), (0.81250185, 1), (0.7812522, 1), (0.7812522, 0.99999), (0.7812522, 0.99999), (0.7812522, 1), (0.7500025, 1), (0.7500025, 0.99999), (0.7500025, 0.99999), (0.7500025, 1), (0.7187528, 1), (0.7187528, 0.99999), (0.7187528, 0.99999), (0.7187528, 1), (0.6875031, 1), (0.6875031, 0.99999), (0.6875031, 0.99999), (0.6875031, 1), (0.65625346, 1), (0.65625346, 0.99999), (0.65625346, 0.99999), (0.65625346, 1), (0.62500376, 1), (0.62500376, 0.99999), (0.62500376, 0.99999), (0.62500376, 1), (0.59375405, 1), (0.59375405, 0.99999), (0.59375405, 0.99999), (0.59375405, 1), (0.56250435, 1), (0.56250435, 0.99999), (0.56250435, 0.99999), (0.56250435, 1), (0.5312547, 1), (0.5312547, 0.99999), (0.5312547, 0.99999), (0.5312547, 1), (0.500005, 1), (0.500005, 0.99999), (0.500005, 0.99999), (0.500005, 1), (0.4687553, 1), (0.4687553, 0.99999), (0.4687553, 0.99999), (0.4687553, 1), (0.43750563, 1), (0.43750563, 0.99999), (0.43750563, 0.99999), (0.43750563, 1), (0.40625593, 1), (0.40625593, 0.99999), (0.40625593, 0.99999), (0.40625593, 1), (0.37500626, 1), (0.37500626, 0.99999), (0.37500626, 0.99999), (0.37500626, 1), (0.34375656, 1), (0.34375656, 0.99999), (0.34375656, 0.99999), (0.34375656, 1), (0.31250688, 1), (0.31250688, 0.99999), (0.31250688, 0.99999), (0.31250688, 1), (0.28125718, 1), (0.28125718, 0.99999), (0.28125718, 0.99999), (0.28125718, 1), (0.2500075, 1), (0.2500075, 0.99999), (0.2500075, 0.99999), (0.2500075, 1), (0.21875781, 1), (0.21875781, 0.99999), (0.21875781, 0.99999), (0.21875781, 1), (0.18750812, 1), (0.18750812, 0.99999), (0.18750812, 0.99999), (0.18750812, 1), (0.15625843, 1), (0.15625843, 0.99999), (0.15625843, 0.99999), (0.15625843, 1), (0.12500875, 1), (0.12500875, 0.99999), (0.12500875, 0.99999), (0.12500875, 1), (0.09375906, 1), (0.09375906, 0.99999), (0.09375906, 0.99999), (0.09375906, 1), (0.06250937, 1), (0.06250937, 0.99999), (0.06250937, 0.99999), (0.06250937, 1), (0.031259686, 1), (0.031259686, 0.99999), (0.031259686, 0.99999), (0.031259686, 1), (0.00001, 1), (0.00001, 0.99999), (0.00001, 0.99999), (0.00001, 1), (1, 1), (1, 0.99999)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Mesh "Sphere" { int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 2, 0, 2, 3, 0, 3, 4, 0, 4, 5, 0, 5, 6, 0, 6, 7, 0, 7, 8, 0, 8, 9, 0, 9, 10, 0, 10, 11, 0, 11, 12, 0, 12, 13, 0, 13, 14, 0, 14, 15, 0, 15, 16, 0, 16, 17, 0, 17, 18, 0, 18, 19, 0, 19, 20, 0, 20, 21, 0, 21, 22, 0, 22, 23, 0, 23, 24, 0, 24, 25, 0, 25, 26, 0, 26, 27, 0, 27, 28, 0, 28, 29, 0, 29, 30, 0, 30, 31, 0, 31, 32, 0, 32, 1, 1, 33, 34, 2, 2, 34, 35, 3, 3, 35, 36, 4, 4, 36, 37, 5, 5, 37, 38, 6, 6, 38, 39, 7, 7, 39, 40, 8, 8, 40, 41, 9, 9, 41, 42, 10, 10, 42, 43, 11, 11, 43, 44, 12, 12, 44, 45, 13, 13, 45, 46, 14, 14, 46, 47, 15, 15, 47, 48, 16, 16, 48, 49, 17, 17, 49, 50, 18, 18, 50, 51, 19, 19, 51, 52, 20, 20, 52, 53, 21, 21, 53, 54, 22, 22, 54, 55, 23, 23, 55, 56, 24, 24, 56, 57, 25, 25, 57, 58, 26, 26, 58, 59, 27, 27, 59, 60, 28, 28, 60, 61, 29, 29, 61, 62, 30, 30, 62, 63, 31, 31, 63, 64, 32, 32, 64, 33, 1, 33, 65, 66, 34, 34, 66, 67, 35, 35, 67, 68, 36, 36, 68, 69, 37, 37, 69, 70, 38, 38, 70, 71, 39, 39, 71, 72, 40, 40, 72, 73, 41, 41, 73, 74, 42, 42, 74, 75, 43, 43, 75, 76, 44, 44, 76, 77, 45, 45, 77, 78, 46, 46, 78, 79, 47, 47, 79, 80, 48, 48, 80, 81, 49, 49, 81, 82, 50, 50, 82, 83, 51, 51, 83, 84, 52, 52, 84, 85, 53, 53, 85, 86, 54, 54, 86, 87, 55, 55, 87, 88, 56, 56, 88, 89, 57, 57, 89, 90, 58, 58, 90, 91, 59, 59, 91, 92, 60, 60, 92, 93, 61, 61, 93, 94, 62, 62, 94, 95, 63, 63, 95, 96, 64, 64, 96, 65, 33, 65, 97, 98, 66, 66, 98, 99, 67, 67, 99, 100, 68, 68, 100, 101, 69, 69, 101, 102, 70, 70, 102, 103, 71, 71, 103, 104, 72, 72, 104, 105, 73, 73, 105, 106, 74, 74, 106, 107, 75, 75, 107, 108, 76, 76, 108, 109, 77, 77, 109, 110, 78, 78, 110, 111, 79, 79, 111, 112, 80, 80, 112, 113, 81, 81, 113, 114, 82, 82, 114, 115, 83, 83, 115, 116, 84, 84, 116, 117, 85, 85, 117, 118, 86, 86, 118, 119, 87, 87, 119, 120, 88, 88, 120, 121, 89, 89, 121, 122, 90, 90, 122, 123, 91, 91, 123, 124, 92, 92, 124, 125, 93, 93, 125, 126, 94, 94, 126, 127, 95, 95, 127, 128, 96, 96, 128, 97, 65, 97, 129, 130, 98, 98, 130, 131, 99, 99, 131, 132, 100, 100, 132, 133, 101, 101, 133, 134, 102, 102, 134, 135, 103, 103, 135, 136, 104, 104, 136, 137, 105, 105, 137, 138, 106, 106, 138, 139, 107, 107, 139, 140, 108, 108, 140, 141, 109, 109, 141, 142, 110, 110, 142, 143, 111, 111, 143, 144, 112, 112, 144, 145, 113, 113, 145, 146, 114, 114, 146, 147, 115, 115, 147, 148, 116, 116, 148, 149, 117, 117, 149, 150, 118, 118, 150, 151, 119, 119, 151, 152, 120, 120, 152, 153, 121, 121, 153, 154, 122, 122, 154, 155, 123, 123, 155, 156, 124, 124, 156, 157, 125, 125, 157, 158, 126, 126, 158, 159, 127, 127, 159, 160, 128, 128, 160, 129, 97, 129, 161, 162, 130, 130, 162, 163, 131, 131, 163, 164, 132, 132, 164, 165, 133, 133, 165, 166, 134, 134, 166, 167, 135, 135, 167, 168, 136, 136, 168, 169, 137, 137, 169, 170, 138, 138, 170, 171, 139, 139, 171, 172, 140, 140, 172, 173, 141, 141, 173, 174, 142, 142, 174, 175, 143, 143, 175, 176, 144, 144, 176, 177, 145, 145, 177, 178, 146, 146, 178, 179, 147, 147, 179, 180, 148, 148, 180, 181, 149, 149, 181, 182, 150, 150, 182, 183, 151, 151, 183, 184, 152, 152, 184, 185, 153, 153, 185, 186, 154, 154, 186, 187, 155, 155, 187, 188, 156, 156, 188, 189, 157, 157, 189, 190, 158, 158, 190, 191, 159, 159, 191, 192, 160, 160, 192, 161, 129, 161, 193, 194, 162, 162, 194, 195, 163, 163, 195, 196, 164, 164, 196, 197, 165, 165, 197, 198, 166, 166, 198, 199, 167, 167, 199, 200, 168, 168, 200, 201, 169, 169, 201, 202, 170, 170, 202, 203, 171, 171, 203, 204, 172, 172, 204, 205, 173, 173, 205, 206, 174, 174, 206, 207, 175, 175, 207, 208, 176, 176, 208, 209, 177, 177, 209, 210, 178, 178, 210, 211, 179, 179, 211, 212, 180, 180, 212, 213, 181, 181, 213, 214, 182, 182, 214, 215, 183, 183, 215, 216, 184, 184, 216, 217, 185, 185, 217, 218, 186, 186, 218, 219, 187, 187, 219, 220, 188, 188, 220, 221, 189, 189, 221, 222, 190, 190, 222, 223, 191, 191, 223, 224, 192, 192, 224, 193, 161, 193, 225, 226, 194, 194, 226, 227, 195, 195, 227, 228, 196, 196, 228, 229, 197, 197, 229, 230, 198, 198, 230, 231, 199, 199, 231, 232, 200, 200, 232, 233, 201, 201, 233, 234, 202, 202, 234, 235, 203, 203, 235, 236, 204, 204, 236, 237, 205, 205, 237, 238, 206, 206, 238, 239, 207, 207, 239, 240, 208, 208, 240, 241, 209, 209, 241, 242, 210, 210, 242, 243, 211, 211, 243, 244, 212, 212, 244, 245, 213, 213, 245, 246, 214, 214, 246, 247, 215, 215, 247, 248, 216, 216, 248, 249, 217, 217, 249, 250, 218, 218, 250, 251, 219, 219, 251, 252, 220, 220, 252, 253, 221, 221, 253, 254, 222, 222, 254, 255, 223, 223, 255, 256, 224, 224, 256, 225, 193, 225, 257, 258, 226, 226, 258, 259, 227, 227, 259, 260, 228, 228, 260, 261, 229, 229, 261, 262, 230, 230, 262, 263, 231, 231, 263, 264, 232, 232, 264, 265, 233, 233, 265, 266, 234, 234, 266, 267, 235, 235, 267, 268, 236, 236, 268, 269, 237, 237, 269, 270, 238, 238, 270, 271, 239, 239, 271, 272, 240, 240, 272, 273, 241, 241, 273, 274, 242, 242, 274, 275, 243, 243, 275, 276, 244, 244, 276, 277, 245, 245, 277, 278, 246, 246, 278, 279, 247, 247, 279, 280, 248, 248, 280, 281, 249, 249, 281, 282, 250, 250, 282, 283, 251, 251, 283, 284, 252, 252, 284, 285, 253, 253, 285, 286, 254, 254, 286, 287, 255, 255, 287, 288, 256, 256, 288, 257, 225, 257, 289, 290, 258, 258, 290, 291, 259, 259, 291, 292, 260, 260, 292, 293, 261, 261, 293, 294, 262, 262, 294, 295, 263, 263, 295, 296, 264, 264, 296, 297, 265, 265, 297, 298, 266, 266, 298, 299, 267, 267, 299, 300, 268, 268, 300, 301, 269, 269, 301, 302, 270, 270, 302, 303, 271, 271, 303, 304, 272, 272, 304, 305, 273, 273, 305, 306, 274, 274, 306, 307, 275, 275, 307, 308, 276, 276, 308, 309, 277, 277, 309, 310, 278, 278, 310, 311, 279, 279, 311, 312, 280, 280, 312, 313, 281, 281, 313, 314, 282, 282, 314, 315, 283, 283, 315, 316, 284, 284, 316, 317, 285, 285, 317, 318, 286, 286, 318, 319, 287, 287, 319, 320, 288, 288, 320, 289, 257, 289, 321, 322, 290, 290, 322, 323, 291, 291, 323, 324, 292, 292, 324, 325, 293, 293, 325, 326, 294, 294, 326, 327, 295, 295, 327, 328, 296, 296, 328, 329, 297, 297, 329, 330, 298, 298, 330, 331, 299, 299, 331, 332, 300, 300, 332, 333, 301, 301, 333, 334, 302, 302, 334, 335, 303, 303, 335, 336, 304, 304, 336, 337, 305, 305, 337, 338, 306, 306, 338, 339, 307, 307, 339, 340, 308, 308, 340, 341, 309, 309, 341, 342, 310, 310, 342, 343, 311, 311, 343, 344, 312, 312, 344, 345, 313, 313, 345, 346, 314, 314, 346, 347, 315, 315, 347, 348, 316, 316, 348, 349, 317, 317, 349, 350, 318, 318, 350, 351, 319, 319, 351, 352, 320, 320, 352, 321, 289, 321, 353, 354, 322, 322, 354, 355, 323, 323, 355, 356, 324, 324, 356, 357, 325, 325, 357, 358, 326, 326, 358, 359, 327, 327, 359, 360, 328, 328, 360, 361, 329, 329, 361, 362, 330, 330, 362, 363, 331, 331, 363, 364, 332, 332, 364, 365, 333, 333, 365, 366, 334, 334, 366, 367, 335, 335, 367, 368, 336, 336, 368, 369, 337, 337, 369, 370, 338, 338, 370, 371, 339, 339, 371, 372, 340, 340, 372, 373, 341, 341, 373, 374, 342, 342, 374, 375, 343, 343, 375, 376, 344, 344, 376, 377, 345, 345, 377, 378, 346, 346, 378, 379, 347, 347, 379, 380, 348, 348, 380, 381, 349, 349, 381, 382, 350, 350, 382, 383, 351, 351, 383, 384, 352, 352, 384, 353, 321, 353, 385, 386, 354, 354, 386, 387, 355, 355, 387, 388, 356, 356, 388, 389, 357, 357, 389, 390, 358, 358, 390, 391, 359, 359, 391, 392, 360, 360, 392, 393, 361, 361, 393, 394, 362, 362, 394, 395, 363, 363, 395, 396, 364, 364, 396, 397, 365, 365, 397, 398, 366, 366, 398, 399, 367, 367, 399, 400, 368, 368, 400, 401, 369, 369, 401, 402, 370, 370, 402, 403, 371, 371, 403, 404, 372, 372, 404, 405, 373, 373, 405, 406, 374, 374, 406, 407, 375, 375, 407, 408, 376, 376, 408, 409, 377, 377, 409, 410, 378, 378, 410, 411, 379, 379, 411, 412, 380, 380, 412, 413, 381, 381, 413, 414, 382, 382, 414, 415, 383, 383, 415, 416, 384, 384, 416, 385, 353, 385, 417, 418, 386, 386, 418, 419, 387, 387, 419, 420, 388, 388, 420, 421, 389, 389, 421, 422, 390, 390, 422, 423, 391, 391, 423, 424, 392, 392, 424, 425, 393, 393, 425, 426, 394, 394, 426, 427, 395, 395, 427, 428, 396, 396, 428, 429, 397, 397, 429, 430, 398, 398, 430, 431, 399, 399, 431, 432, 400, 400, 432, 433, 401, 401, 433, 434, 402, 402, 434, 435, 403, 403, 435, 436, 404, 404, 436, 437, 405, 405, 437, 438, 406, 406, 438, 439, 407, 407, 439, 440, 408, 408, 440, 441, 409, 409, 441, 442, 410, 410, 442, 443, 411, 411, 443, 444, 412, 412, 444, 445, 413, 413, 445, 446, 414, 414, 446, 447, 415, 415, 447, 448, 416, 416, 448, 417, 385, 417, 449, 450, 418, 418, 450, 451, 419, 419, 451, 452, 420, 420, 452, 453, 421, 421, 453, 454, 422, 422, 454, 455, 423, 423, 455, 456, 424, 424, 456, 457, 425, 425, 457, 458, 426, 426, 458, 459, 427, 427, 459, 460, 428, 428, 460, 461, 429, 429, 461, 462, 430, 430, 462, 463, 431, 431, 463, 464, 432, 432, 464, 465, 433, 433, 465, 466, 434, 434, 466, 467, 435, 435, 467, 468, 436, 436, 468, 469, 437, 437, 469, 470, 438, 438, 470, 471, 439, 439, 471, 472, 440, 440, 472, 473, 441, 441, 473, 474, 442, 442, 474, 475, 443, 443, 475, 476, 444, 444, 476, 477, 445, 445, 477, 478, 446, 446, 478, 479, 447, 447, 479, 480, 448, 448, 480, 449, 417, 481, 450, 449, 481, 451, 450, 481, 452, 451, 481, 453, 452, 481, 454, 453, 481, 455, 454, 481, 456, 455, 481, 457, 456, 481, 458, 457, 481, 459, 458, 481, 460, 459, 481, 461, 460, 481, 462, 461, 481, 463, 462, 481, 464, 463, 481, 465, 464, 481, 466, 465, 481, 467, 466, 481, 468, 467, 481, 469, 468, 481, 470, 469, 481, 471, 470, 481, 472, 471, 481, 473, 472, 481, 474, 473, 481, 475, 474, 481, 476, 475, 481, 477, 476, 481, 478, 477, 481, 479, 478, 481, 480, 479, 481, 449, 480] rel material:binding = None ( bindMaterialAs = "weakerThanDescendants" ) normal3f[] normals = [(0, -50, 0), (9.754516, -49.039265, 0), (9.567086, -49.039265, 1.9030117), (0, -50, 0), (9.567086, -49.039265, 1.9030117), (9.011998, -49.039265, 3.7328918), (0, -50, 0), (9.011998, -49.039265, 3.7328918), (8.110583, -49.039265, 5.4193187), (0, -50, 0), (8.110583, -49.039265, 5.4193187), (6.8974843, -49.039265, 6.8974843), (0, -50, 0), (6.8974843, -49.039265, 6.8974843), (5.4193187, -49.039265, 8.110583), (0, -50, 0), (5.4193187, -49.039265, 8.110583), (3.7328918, -49.039265, 9.011998), (0, -50, 0), (3.7328918, -49.039265, 9.011998), (1.9030117, -49.039265, 9.567086), (0, -50, 0), (1.9030117, -49.039265, 9.567086), (5.9729185e-16, -49.039265, 9.754516), (0, -50, 0), (5.9729185e-16, -49.039265, 9.754516), (-1.9030117, -49.039265, 9.567086), (0, -50, 0), (-1.9030117, -49.039265, 9.567086), (-3.7328918, -49.039265, 9.011998), (0, -50, 0), (-3.7328918, -49.039265, 9.011998), (-5.4193187, -49.039265, 8.110583), (0, -50, 0), (-5.4193187, -49.039265, 8.110583), (-6.8974843, -49.039265, 6.8974843), (0, -50, 0), (-6.8974843, -49.039265, 6.8974843), (-8.110583, -49.039265, 5.4193187), (0, -50, 0), (-8.110583, -49.039265, 5.4193187), (-9.011998, -49.039265, 3.7328918), (0, -50, 0), (-9.011998, -49.039265, 3.7328918), (-9.567086, -49.039265, 1.9030117), (0, -50, 0), (-9.567086, -49.039265, 1.9030117), (-9.754516, -49.039265, 1.1945837e-15), (0, -50, 0), (-9.754516, -49.039265, 1.1945837e-15), (-9.567086, -49.039265, -1.9030117), (0, -50, 0), (-9.567086, -49.039265, -1.9030117), (-9.011998, -49.039265, -3.7328918), (0, -50, 0), (-9.011998, -49.039265, -3.7328918), (-8.110583, -49.039265, -5.4193187), (0, -50, 0), (-8.110583, -49.039265, -5.4193187), (-6.8974843, -49.039265, -6.8974843), (0, -50, 0), (-6.8974843, -49.039265, -6.8974843), (-5.4193187, -49.039265, -8.110583), (0, -50, 0), (-5.4193187, -49.039265, -8.110583), (-3.7328918, -49.039265, -9.011998), (0, -50, 0), (-3.7328918, -49.039265, -9.011998), (-1.9030117, -49.039265, -9.567086), (0, -50, 0), (-1.9030117, -49.039265, -9.567086), (-1.7918755e-15, -49.039265, -9.754516), (0, -50, 0), (-1.7918755e-15, -49.039265, -9.754516), (1.9030117, -49.039265, -9.567086), (0, -50, 0), (1.9030117, -49.039265, -9.567086), (3.7328918, -49.039265, -9.011998), (0, -50, 0), (3.7328918, -49.039265, -9.011998), (5.4193187, -49.039265, -8.110583), (0, -50, 0), (5.4193187, -49.039265, -8.110583), (6.8974843, -49.039265, -6.8974843), (0, -50, 0), (6.8974843, -49.039265, -6.8974843), (8.110583, -49.039265, -5.4193187), (0, -50, 0), (8.110583, -49.039265, -5.4193187), (9.011998, -49.039265, -3.7328918), (0, -50, 0), (9.011998, -49.039265, -3.7328918), (9.567086, -49.039265, -1.9030117), (0, -50, 0), (9.567086, -49.039265, -1.9030117), (9.754516, -49.039265, 0), (9.754516, -49.039265, 0), (19.134172, -46.193977, 0), (18.766514, -46.193977, 3.7328918), (9.567086, -49.039265, 1.9030117), (9.567086, -49.039265, 1.9030117), (18.766514, -46.193977, 3.7328918), (17.67767, -46.193977, 7.3223305), (9.011998, -49.039265, 3.7328918), (9.011998, -49.039265, 3.7328918), (17.67767, -46.193977, 7.3223305), (15.909482, -46.193977, 10.630376), (8.110583, -49.039265, 5.4193187), (8.110583, -49.039265, 5.4193187), (15.909482, -46.193977, 10.630376), (13.529902, -46.193977, 13.529902), (6.8974843, -49.039265, 6.8974843), (6.8974843, -49.039265, 6.8974843), (13.529902, -46.193977, 13.529902), (10.630376, -46.193977, 15.909482), (5.4193187, -49.039265, 8.110583), (5.4193187, -49.039265, 8.110583), (10.630376, -46.193977, 15.909482), (7.3223305, -46.193977, 17.67767), (3.7328918, -49.039265, 9.011998), (3.7328918, -49.039265, 9.011998), (7.3223305, -46.193977, 17.67767), (3.7328918, -46.193977, 18.766514), (1.9030117, -49.039265, 9.567086), (1.9030117, -49.039265, 9.567086), (3.7328918, -46.193977, 18.766514), (1.1716301e-15, -46.193977, 19.134172), (5.9729185e-16, -49.039265, 9.754516), (5.9729185e-16, -49.039265, 9.754516), (1.1716301e-15, -46.193977, 19.134172), (-3.7328918, -46.193977, 18.766514), (-1.9030117, -49.039265, 9.567086), (-1.9030117, -49.039265, 9.567086), (-3.7328918, -46.193977, 18.766514), (-7.3223305, -46.193977, 17.67767), (-3.7328918, -49.039265, 9.011998), (-3.7328918, -49.039265, 9.011998), (-7.3223305, -46.193977, 17.67767), (-10.630376, -46.193977, 15.909482), (-5.4193187, -49.039265, 8.110583), (-5.4193187, -49.039265, 8.110583), (-10.630376, -46.193977, 15.909482), (-13.529902, -46.193977, 13.529902), (-6.8974843, -49.039265, 6.8974843), (-6.8974843, -49.039265, 6.8974843), (-13.529902, -46.193977, 13.529902), (-15.909482, -46.193977, 10.630376), (-8.110583, -49.039265, 5.4193187), (-8.110583, -49.039265, 5.4193187), (-15.909482, -46.193977, 10.630376), (-17.67767, -46.193977, 7.3223305), (-9.011998, -49.039265, 3.7328918), (-9.011998, -49.039265, 3.7328918), (-17.67767, -46.193977, 7.3223305), (-18.766514, -46.193977, 3.7328918), (-9.567086, -49.039265, 1.9030117), (-9.567086, -49.039265, 1.9030117), (-18.766514, -46.193977, 3.7328918), (-19.134172, -46.193977, 2.3432601e-15), (-9.754516, -49.039265, 1.1945837e-15), (-9.754516, -49.039265, 1.1945837e-15), (-19.134172, -46.193977, 2.3432601e-15), (-18.766514, -46.193977, -3.7328918), (-9.567086, -49.039265, -1.9030117), (-9.567086, -49.039265, -1.9030117), (-18.766514, -46.193977, -3.7328918), (-17.67767, -46.193977, -7.3223305), (-9.011998, -49.039265, -3.7328918), (-9.011998, -49.039265, -3.7328918), (-17.67767, -46.193977, -7.3223305), (-15.909482, -46.193977, -10.630376), (-8.110583, -49.039265, -5.4193187), (-8.110583, -49.039265, -5.4193187), (-15.909482, -46.193977, -10.630376), (-13.529902, -46.193977, -13.529902), (-6.8974843, -49.039265, -6.8974843), (-6.8974843, -49.039265, -6.8974843), (-13.529902, -46.193977, -13.529902), (-10.630376, -46.193977, -15.909482), (-5.4193187, -49.039265, -8.110583), (-5.4193187, -49.039265, -8.110583), (-10.630376, -46.193977, -15.909482), (-7.3223305, -46.193977, -17.67767), (-3.7328918, -49.039265, -9.011998), (-3.7328918, -49.039265, -9.011998), (-7.3223305, -46.193977, -17.67767), (-3.7328918, -46.193977, -18.766514), (-1.9030117, -49.039265, -9.567086), (-1.9030117, -49.039265, -9.567086), (-3.7328918, -46.193977, -18.766514), (-3.5148903e-15, -46.193977, -19.134172), (-1.7918755e-15, -49.039265, -9.754516), (-1.7918755e-15, -49.039265, -9.754516), (-3.5148903e-15, -46.193977, -19.134172), (3.7328918, -46.193977, -18.766514), (1.9030117, -49.039265, -9.567086), (1.9030117, -49.039265, -9.567086), (3.7328918, -46.193977, -18.766514), (7.3223305, -46.193977, -17.67767), (3.7328918, -49.039265, -9.011998), (3.7328918, -49.039265, -9.011998), (7.3223305, -46.193977, -17.67767), (10.630376, -46.193977, -15.909482), (5.4193187, -49.039265, -8.110583), (5.4193187, -49.039265, -8.110583), (10.630376, -46.193977, -15.909482), (13.529902, -46.193977, -13.529902), (6.8974843, -49.039265, -6.8974843), (6.8974843, -49.039265, -6.8974843), (13.529902, -46.193977, -13.529902), (15.909482, -46.193977, -10.630376), (8.110583, -49.039265, -5.4193187), (8.110583, -49.039265, -5.4193187), (15.909482, -46.193977, -10.630376), (17.67767, -46.193977, -7.3223305), (9.011998, -49.039265, -3.7328918), (9.011998, -49.039265, -3.7328918), (17.67767, -46.193977, -7.3223305), (18.766514, -46.193977, -3.7328918), (9.567086, -49.039265, -1.9030117), (9.567086, -49.039265, -1.9030117), (18.766514, -46.193977, -3.7328918), (19.134172, -46.193977, 0), (9.754516, -49.039265, 0), (19.134172, -46.193977, 0), (27.778511, -41.573483, 0), (27.244755, -41.573483, 5.4193187), (18.766514, -46.193977, 3.7328918), (18.766514, -46.193977, 3.7328918), (27.244755, -41.573483, 5.4193187), (25.663998, -41.573483, 10.630376), (17.67767, -46.193977, 7.3223305), (17.67767, -46.193977, 7.3223305), (25.663998, -41.573483, 10.630376), (23.096989, -41.573483, 15.432914), (15.909482, -46.193977, 10.630376), (15.909482, -46.193977, 10.630376), (23.096989, -41.573483, 15.432914), (19.642374, -41.573483, 19.642374), (13.529902, -46.193977, 13.529902), (13.529902, -46.193977, 13.529902), (19.642374, -41.573483, 19.642374), (15.432914, -41.573483, 23.096989), (10.630376, -46.193977, 15.909482), (10.630376, -46.193977, 15.909482), (15.432914, -41.573483, 23.096989), (10.630376, -41.573483, 25.663998), (7.3223305, -46.193977, 17.67767), (7.3223305, -46.193977, 17.67767), (10.630376, -41.573483, 25.663998), (5.4193187, -41.573483, 27.244755), (3.7328918, -46.193977, 18.766514), (3.7328918, -46.193977, 18.766514), (5.4193187, -41.573483, 27.244755), (1.7009433e-15, -41.573483, 27.778511), (1.1716301e-15, -46.193977, 19.134172), (1.1716301e-15, -46.193977, 19.134172), (1.7009433e-15, -41.573483, 27.778511), (-5.4193187, -41.573483, 27.244755), (-3.7328918, -46.193977, 18.766514), (-3.7328918, -46.193977, 18.766514), (-5.4193187, -41.573483, 27.244755), (-10.630376, -41.573483, 25.663998), (-7.3223305, -46.193977, 17.67767), (-7.3223305, -46.193977, 17.67767), (-10.630376, -41.573483, 25.663998), (-15.432914, -41.573483, 23.096989), (-10.630376, -46.193977, 15.909482), (-10.630376, -46.193977, 15.909482), (-15.432914, -41.573483, 23.096989), (-19.642374, -41.573483, 19.642374), (-13.529902, -46.193977, 13.529902), (-13.529902, -46.193977, 13.529902), (-19.642374, -41.573483, 19.642374), (-23.096989, -41.573483, 15.432914), (-15.909482, -46.193977, 10.630376), (-15.909482, -46.193977, 10.630376), (-23.096989, -41.573483, 15.432914), (-25.663998, -41.573483, 10.630376), (-17.67767, -46.193977, 7.3223305), (-17.67767, -46.193977, 7.3223305), (-25.663998, -41.573483, 10.630376), (-27.244755, -41.573483, 5.4193187), (-18.766514, -46.193977, 3.7328918), (-18.766514, -46.193977, 3.7328918), (-27.244755, -41.573483, 5.4193187), (-27.778511, -41.573483, 3.4018865e-15), (-19.134172, -46.193977, 2.3432601e-15), (-19.134172, -46.193977, 2.3432601e-15), (-27.778511, -41.573483, 3.4018865e-15), (-27.244755, -41.573483, -5.4193187), (-18.766514, -46.193977, -3.7328918), (-18.766514, -46.193977, -3.7328918), (-27.244755, -41.573483, -5.4193187), (-25.663998, -41.573483, -10.630376), (-17.67767, -46.193977, -7.3223305), (-17.67767, -46.193977, -7.3223305), (-25.663998, -41.573483, -10.630376), (-23.096989, -41.573483, -15.432914), (-15.909482, -46.193977, -10.630376), (-15.909482, -46.193977, -10.630376), (-23.096989, -41.573483, -15.432914), (-19.642374, -41.573483, -19.642374), (-13.529902, -46.193977, -13.529902), (-13.529902, -46.193977, -13.529902), (-19.642374, -41.573483, -19.642374), (-15.432914, -41.573483, -23.096989), (-10.630376, -46.193977, -15.909482), (-10.630376, -46.193977, -15.909482), (-15.432914, -41.573483, -23.096989), (-10.630376, -41.573483, -25.663998), (-7.3223305, -46.193977, -17.67767), (-7.3223305, -46.193977, -17.67767), (-10.630376, -41.573483, -25.663998), (-5.4193187, -41.573483, -27.244755), (-3.7328918, -46.193977, -18.766514), (-3.7328918, -46.193977, -18.766514), (-5.4193187, -41.573483, -27.244755), (-5.1028297e-15, -41.573483, -27.778511), (-3.5148903e-15, -46.193977, -19.134172), (-3.5148903e-15, -46.193977, -19.134172), (-5.1028297e-15, -41.573483, -27.778511), (5.4193187, -41.573483, -27.244755), (3.7328918, -46.193977, -18.766514), (3.7328918, -46.193977, -18.766514), (5.4193187, -41.573483, -27.244755), (10.630376, -41.573483, -25.663998), (7.3223305, -46.193977, -17.67767), (7.3223305, -46.193977, -17.67767), (10.630376, -41.573483, -25.663998), (15.432914, -41.573483, -23.096989), (10.630376, -46.193977, -15.909482), (10.630376, -46.193977, -15.909482), (15.432914, -41.573483, -23.096989), (19.642374, -41.573483, -19.642374), (13.529902, -46.193977, -13.529902), (13.529902, -46.193977, -13.529902), (19.642374, -41.573483, -19.642374), (23.096989, -41.573483, -15.432914), (15.909482, -46.193977, -10.630376), (15.909482, -46.193977, -10.630376), (23.096989, -41.573483, -15.432914), (25.663998, -41.573483, -10.630376), (17.67767, -46.193977, -7.3223305), (17.67767, -46.193977, -7.3223305), (25.663998, -41.573483, -10.630376), (27.244755, -41.573483, -5.4193187), (18.766514, -46.193977, -3.7328918), (18.766514, -46.193977, -3.7328918), (27.244755, -41.573483, -5.4193187), (27.778511, -41.573483, 0), (19.134172, -46.193977, 0), (27.778511, -41.573483, 0), (35.35534, -35.35534, 0), (34.675995, -35.35534, 6.8974843), (27.244755, -41.573483, 5.4193187), (27.244755, -41.573483, 5.4193187), (34.675995, -35.35534, 6.8974843), (32.664074, -35.35534, 13.529902), (25.663998, -41.573483, 10.630376), (25.663998, -41.573483, 10.630376), (32.664074, -35.35534, 13.529902), (29.39689, -35.35534, 19.642374), (23.096989, -41.573483, 15.432914), (23.096989, -41.573483, 15.432914), (29.39689, -35.35534, 19.642374), (25, -35.35534, 25), (19.642374, -41.573483, 19.642374), (19.642374, -41.573483, 19.642374), (25, -35.35534, 25), (19.642374, -35.35534, 29.39689), (15.432914, -41.573483, 23.096989), (15.432914, -41.573483, 23.096989), (19.642374, -35.35534, 29.39689), (13.529902, -35.35534, 32.664074), (10.630376, -41.573483, 25.663998), (10.630376, -41.573483, 25.663998), (13.529902, -35.35534, 32.664074), (6.8974843, -35.35534, 34.675995), (5.4193187, -41.573483, 27.244755), (5.4193187, -41.573483, 27.244755), (6.8974843, -35.35534, 34.675995), (2.1648902e-15, -35.35534, 35.35534), (1.7009433e-15, -41.573483, 27.778511), (1.7009433e-15, -41.573483, 27.778511), (2.1648902e-15, -35.35534, 35.35534), (-6.8974843, -35.35534, 34.675995), (-5.4193187, -41.573483, 27.244755), (-5.4193187, -41.573483, 27.244755), (-6.8974843, -35.35534, 34.675995), (-13.529902, -35.35534, 32.664074), (-10.630376, -41.573483, 25.663998), (-10.630376, -41.573483, 25.663998), (-13.529902, -35.35534, 32.664074), (-19.642374, -35.35534, 29.39689), (-15.432914, -41.573483, 23.096989), (-15.432914, -41.573483, 23.096989), (-19.642374, -35.35534, 29.39689), (-25, -35.35534, 25), (-19.642374, -41.573483, 19.642374), (-19.642374, -41.573483, 19.642374), (-25, -35.35534, 25), (-29.39689, -35.35534, 19.642374), (-23.096989, -41.573483, 15.432914), (-23.096989, -41.573483, 15.432914), (-29.39689, -35.35534, 19.642374), (-32.664074, -35.35534, 13.529902), (-25.663998, -41.573483, 10.630376), (-25.663998, -41.573483, 10.630376), (-32.664074, -35.35534, 13.529902), (-34.675995, -35.35534, 6.8974843), (-27.244755, -41.573483, 5.4193187), (-27.244755, -41.573483, 5.4193187), (-34.675995, -35.35534, 6.8974843), (-35.35534, -35.35534, 4.3297804e-15), (-27.778511, -41.573483, 3.4018865e-15), (-27.778511, -41.573483, 3.4018865e-15), (-35.35534, -35.35534, 4.3297804e-15), (-34.675995, -35.35534, -6.8974843), (-27.244755, -41.573483, -5.4193187), (-27.244755, -41.573483, -5.4193187), (-34.675995, -35.35534, -6.8974843), (-32.664074, -35.35534, -13.529902), (-25.663998, -41.573483, -10.630376), (-25.663998, -41.573483, -10.630376), (-32.664074, -35.35534, -13.529902), (-29.39689, -35.35534, -19.642374), (-23.096989, -41.573483, -15.432914), (-23.096989, -41.573483, -15.432914), (-29.39689, -35.35534, -19.642374), (-25, -35.35534, -25), (-19.642374, -41.573483, -19.642374), (-19.642374, -41.573483, -19.642374), (-25, -35.35534, -25), (-19.642374, -35.35534, -29.39689), (-15.432914, -41.573483, -23.096989), (-15.432914, -41.573483, -23.096989), (-19.642374, -35.35534, -29.39689), (-13.529902, -35.35534, -32.664074), (-10.630376, -41.573483, -25.663998), (-10.630376, -41.573483, -25.663998), (-13.529902, -35.35534, -32.664074), (-6.8974843, -35.35534, -34.675995), (-5.4193187, -41.573483, -27.244755), (-5.4193187, -41.573483, -27.244755), (-6.8974843, -35.35534, -34.675995), (-6.4946704e-15, -35.35534, -35.35534), (-5.1028297e-15, -41.573483, -27.778511), (-5.1028297e-15, -41.573483, -27.778511), (-6.4946704e-15, -35.35534, -35.35534), (6.8974843, -35.35534, -34.675995), (5.4193187, -41.573483, -27.244755), (5.4193187, -41.573483, -27.244755), (6.8974843, -35.35534, -34.675995), (13.529902, -35.35534, -32.664074), (10.630376, -41.573483, -25.663998), (10.630376, -41.573483, -25.663998), (13.529902, -35.35534, -32.664074), (19.642374, -35.35534, -29.39689), (15.432914, -41.573483, -23.096989), (15.432914, -41.573483, -23.096989), (19.642374, -35.35534, -29.39689), (25, -35.35534, -25), (19.642374, -41.573483, -19.642374), (19.642374, -41.573483, -19.642374), (25, -35.35534, -25), (29.39689, -35.35534, -19.642374), (23.096989, -41.573483, -15.432914), (23.096989, -41.573483, -15.432914), (29.39689, -35.35534, -19.642374), (32.664074, -35.35534, -13.529902), (25.663998, -41.573483, -10.630376), (25.663998, -41.573483, -10.630376), (32.664074, -35.35534, -13.529902), (34.675995, -35.35534, -6.8974843), (27.244755, -41.573483, -5.4193187), (27.244755, -41.573483, -5.4193187), (34.675995, -35.35534, -6.8974843), (35.35534, -35.35534, 0), (27.778511, -41.573483, 0), (35.35534, -35.35534, 0), (41.573483, -27.778511, 0), (40.77466, -27.778511, 8.110583), (34.675995, -35.35534, 6.8974843), (34.675995, -35.35534, 6.8974843), (40.77466, -27.778511, 8.110583), (38.408886, -27.778511, 15.909482), (32.664074, -35.35534, 13.529902), (32.664074, -35.35534, 13.529902), (38.408886, -27.778511, 15.909482), (34.567085, -27.778511, 23.096989), (29.39689, -35.35534, 19.642374), (29.39689, -35.35534, 19.642374), (34.567085, -27.778511, 23.096989), (29.39689, -27.778511, 29.39689), (25, -35.35534, 25), (25, -35.35534, 25), (29.39689, -27.778511, 29.39689), (23.096989, -27.778511, 34.567085), (19.642374, -35.35534, 29.39689), (19.642374, -35.35534, 29.39689), (23.096989, -27.778511, 34.567085), (15.909482, -27.778511, 38.408886), (13.529902, -35.35534, 32.664074), (13.529902, -35.35534, 32.664074), (15.909482, -27.778511, 38.408886), (8.110583, -27.778511, 40.77466), (6.8974843, -35.35534, 34.675995), (6.8974843, -35.35534, 34.675995), (8.110583, -27.778511, 40.77466), (2.5456415e-15, -27.778511, 41.573483), (2.1648902e-15, -35.35534, 35.35534), (2.1648902e-15, -35.35534, 35.35534), (2.5456415e-15, -27.778511, 41.573483), (-8.110583, -27.778511, 40.77466), (-6.8974843, -35.35534, 34.675995), (-6.8974843, -35.35534, 34.675995), (-8.110583, -27.778511, 40.77466), (-15.909482, -27.778511, 38.408886), (-13.529902, -35.35534, 32.664074), (-13.529902, -35.35534, 32.664074), (-15.909482, -27.778511, 38.408886), (-23.096989, -27.778511, 34.567085), (-19.642374, -35.35534, 29.39689), (-19.642374, -35.35534, 29.39689), (-23.096989, -27.778511, 34.567085), (-29.39689, -27.778511, 29.39689), (-25, -35.35534, 25), (-25, -35.35534, 25), (-29.39689, -27.778511, 29.39689), (-34.567085, -27.778511, 23.096989), (-29.39689, -35.35534, 19.642374), (-29.39689, -35.35534, 19.642374), (-34.567085, -27.778511, 23.096989), (-38.408886, -27.778511, 15.909482), (-32.664074, -35.35534, 13.529902), (-32.664074, -35.35534, 13.529902), (-38.408886, -27.778511, 15.909482), (-40.77466, -27.778511, 8.110583), (-34.675995, -35.35534, 6.8974843), (-34.675995, -35.35534, 6.8974843), (-40.77466, -27.778511, 8.110583), (-41.573483, -27.778511, 5.091283e-15), (-35.35534, -35.35534, 4.3297804e-15), (-35.35534, -35.35534, 4.3297804e-15), (-41.573483, -27.778511, 5.091283e-15), (-40.77466, -27.778511, -8.110583), (-34.675995, -35.35534, -6.8974843), (-34.675995, -35.35534, -6.8974843), (-40.77466, -27.778511, -8.110583), (-38.408886, -27.778511, -15.909482), (-32.664074, -35.35534, -13.529902), (-32.664074, -35.35534, -13.529902), (-38.408886, -27.778511, -15.909482), (-34.567085, -27.778511, -23.096989), (-29.39689, -35.35534, -19.642374), (-29.39689, -35.35534, -19.642374), (-34.567085, -27.778511, -23.096989), (-29.39689, -27.778511, -29.39689), (-25, -35.35534, -25), (-25, -35.35534, -25), (-29.39689, -27.778511, -29.39689), (-23.096989, -27.778511, -34.567085), (-19.642374, -35.35534, -29.39689), (-19.642374, -35.35534, -29.39689), (-23.096989, -27.778511, -34.567085), (-15.909482, -27.778511, -38.408886), (-13.529902, -35.35534, -32.664074), (-13.529902, -35.35534, -32.664074), (-15.909482, -27.778511, -38.408886), (-8.110583, -27.778511, -40.77466), (-6.8974843, -35.35534, -34.675995), (-6.8974843, -35.35534, -34.675995), (-8.110583, -27.778511, -40.77466), (-7.6369244e-15, -27.778511, -41.573483), (-6.4946704e-15, -35.35534, -35.35534), (-6.4946704e-15, -35.35534, -35.35534), (-7.6369244e-15, -27.778511, -41.573483), (8.110583, -27.778511, -40.77466), (6.8974843, -35.35534, -34.675995), (6.8974843, -35.35534, -34.675995), (8.110583, -27.778511, -40.77466), (15.909482, -27.778511, -38.408886), (13.529902, -35.35534, -32.664074), (13.529902, -35.35534, -32.664074), (15.909482, -27.778511, -38.408886), (23.096989, -27.778511, -34.567085), (19.642374, -35.35534, -29.39689), (19.642374, -35.35534, -29.39689), (23.096989, -27.778511, -34.567085), (29.39689, -27.778511, -29.39689), (25, -35.35534, -25), (25, -35.35534, -25), (29.39689, -27.778511, -29.39689), (34.567085, -27.778511, -23.096989), (29.39689, -35.35534, -19.642374), (29.39689, -35.35534, -19.642374), (34.567085, -27.778511, -23.096989), (38.408886, -27.778511, -15.909482), (32.664074, -35.35534, -13.529902), (32.664074, -35.35534, -13.529902), (38.408886, -27.778511, -15.909482), (40.77466, -27.778511, -8.110583), (34.675995, -35.35534, -6.8974843), (34.675995, -35.35534, -6.8974843), (40.77466, -27.778511, -8.110583), (41.573483, -27.778511, 0), (35.35534, -35.35534, 0), (41.573483, -27.778511, 0), (46.193977, -19.134172, 0), (45.306374, -19.134172, 9.011998), (40.77466, -27.778511, 8.110583), (40.77466, -27.778511, 8.110583), (45.306374, -19.134172, 9.011998), (42.67767, -19.134172, 17.67767), (38.408886, -27.778511, 15.909482), (38.408886, -27.778511, 15.909482), (42.67767, -19.134172, 17.67767), (38.408886, -19.134172, 25.663998), (34.567085, -27.778511, 23.096989), (34.567085, -27.778511, 23.096989), (38.408886, -19.134172, 25.663998), (32.664074, -19.134172, 32.664074), (29.39689, -27.778511, 29.39689), (29.39689, -27.778511, 29.39689), (32.664074, -19.134172, 32.664074), (25.663998, -19.134172, 38.408886), (23.096989, -27.778511, 34.567085), (23.096989, -27.778511, 34.567085), (25.663998, -19.134172, 38.408886), (17.67767, -19.134172, 42.67767), (15.909482, -27.778511, 38.408886), (15.909482, -27.778511, 38.408886), (17.67767, -19.134172, 42.67767), (9.011998, -19.134172, 45.306374), (8.110583, -27.778511, 40.77466), (8.110583, -27.778511, 40.77466), (9.011998, -19.134172, 45.306374), (2.8285653e-15, -19.134172, 46.193977), (2.5456415e-15, -27.778511, 41.573483), (2.5456415e-15, -27.778511, 41.573483), (2.8285653e-15, -19.134172, 46.193977), (-9.011998, -19.134172, 45.306374), (-8.110583, -27.778511, 40.77466), (-8.110583, -27.778511, 40.77466), (-9.011998, -19.134172, 45.306374), (-17.67767, -19.134172, 42.67767), (-15.909482, -27.778511, 38.408886), (-15.909482, -27.778511, 38.408886), (-17.67767, -19.134172, 42.67767), (-25.663998, -19.134172, 38.408886), (-23.096989, -27.778511, 34.567085), (-23.096989, -27.778511, 34.567085), (-25.663998, -19.134172, 38.408886), (-32.664074, -19.134172, 32.664074), (-29.39689, -27.778511, 29.39689), (-29.39689, -27.778511, 29.39689), (-32.664074, -19.134172, 32.664074), (-38.408886, -19.134172, 25.663998), (-34.567085, -27.778511, 23.096989), (-34.567085, -27.778511, 23.096989), (-38.408886, -19.134172, 25.663998), (-42.67767, -19.134172, 17.67767), (-38.408886, -27.778511, 15.909482), (-38.408886, -27.778511, 15.909482), (-42.67767, -19.134172, 17.67767), (-45.306374, -19.134172, 9.011998), (-40.77466, -27.778511, 8.110583), (-40.77466, -27.778511, 8.110583), (-45.306374, -19.134172, 9.011998), (-46.193977, -19.134172, 5.6571306e-15), (-41.573483, -27.778511, 5.091283e-15), (-41.573483, -27.778511, 5.091283e-15), (-46.193977, -19.134172, 5.6571306e-15), (-45.306374, -19.134172, -9.011998), (-40.77466, -27.778511, -8.110583), (-40.77466, -27.778511, -8.110583), (-45.306374, -19.134172, -9.011998), (-42.67767, -19.134172, -17.67767), (-38.408886, -27.778511, -15.909482), (-38.408886, -27.778511, -15.909482), (-42.67767, -19.134172, -17.67767), (-38.408886, -19.134172, -25.663998), (-34.567085, -27.778511, -23.096989), (-34.567085, -27.778511, -23.096989), (-38.408886, -19.134172, -25.663998), (-32.664074, -19.134172, -32.664074), (-29.39689, -27.778511, -29.39689), (-29.39689, -27.778511, -29.39689), (-32.664074, -19.134172, -32.664074), (-25.663998, -19.134172, -38.408886), (-23.096989, -27.778511, -34.567085), (-23.096989, -27.778511, -34.567085), (-25.663998, -19.134172, -38.408886), (-17.67767, -19.134172, -42.67767), (-15.909482, -27.778511, -38.408886), (-15.909482, -27.778511, -38.408886), (-17.67767, -19.134172, -42.67767), (-9.011998, -19.134172, -45.306374), (-8.110583, -27.778511, -40.77466), (-8.110583, -27.778511, -40.77466), (-9.011998, -19.134172, -45.306374), (-8.4856955e-15, -19.134172, -46.193977), (-7.6369244e-15, -27.778511, -41.573483), (-7.6369244e-15, -27.778511, -41.573483), (-8.4856955e-15, -19.134172, -46.193977), (9.011998, -19.134172, -45.306374), (8.110583, -27.778511, -40.77466), (8.110583, -27.778511, -40.77466), (9.011998, -19.134172, -45.306374), (17.67767, -19.134172, -42.67767), (15.909482, -27.778511, -38.408886), (15.909482, -27.778511, -38.408886), (17.67767, -19.134172, -42.67767), (25.663998, -19.134172, -38.408886), (23.096989, -27.778511, -34.567085), (23.096989, -27.778511, -34.567085), (25.663998, -19.134172, -38.408886), (32.664074, -19.134172, -32.664074), (29.39689, -27.778511, -29.39689), (29.39689, -27.778511, -29.39689), (32.664074, -19.134172, -32.664074), (38.408886, -19.134172, -25.663998), (34.567085, -27.778511, -23.096989), (34.567085, -27.778511, -23.096989), (38.408886, -19.134172, -25.663998), (42.67767, -19.134172, -17.67767), (38.408886, -27.778511, -15.909482), (38.408886, -27.778511, -15.909482), (42.67767, -19.134172, -17.67767), (45.306374, -19.134172, -9.011998), (40.77466, -27.778511, -8.110583), (40.77466, -27.778511, -8.110583), (45.306374, -19.134172, -9.011998), (46.193977, -19.134172, 0), (41.573483, -27.778511, 0), (46.193977, -19.134172, 0), (49.039265, -9.754516, 0), (48.09699, -9.754516, 9.567086), (45.306374, -19.134172, 9.011998), (45.306374, -19.134172, 9.011998), (48.09699, -9.754516, 9.567086), (45.306374, -9.754516, 18.766514), (42.67767, -19.134172, 17.67767), (42.67767, -19.134172, 17.67767), (45.306374, -9.754516, 18.766514), (40.77466, -9.754516, 27.244755), (38.408886, -19.134172, 25.663998), (38.408886, -19.134172, 25.663998), (40.77466, -9.754516, 27.244755), (34.675995, -9.754516, 34.675995), (32.664074, -19.134172, 32.664074), (32.664074, -19.134172, 32.664074), (34.675995, -9.754516, 34.675995), (27.244755, -9.754516, 40.77466), (25.663998, -19.134172, 38.408886), (25.663998, -19.134172, 38.408886), (27.244755, -9.754516, 40.77466), (18.766514, -9.754516, 45.306374), (17.67767, -19.134172, 42.67767), (17.67767, -19.134172, 42.67767), (18.766514, -9.754516, 45.306374), (9.567086, -9.754516, 48.09699), (9.011998, -19.134172, 45.306374), (9.011998, -19.134172, 45.306374), (9.567086, -9.754516, 48.09699), (3.002789e-15, -9.754516, 49.039265), (2.8285653e-15, -19.134172, 46.193977), (2.8285653e-15, -19.134172, 46.193977), (3.002789e-15, -9.754516, 49.039265), (-9.567086, -9.754516, 48.09699), (-9.011998, -19.134172, 45.306374), (-9.011998, -19.134172, 45.306374), (-9.567086, -9.754516, 48.09699), (-18.766514, -9.754516, 45.306374), (-17.67767, -19.134172, 42.67767), (-17.67767, -19.134172, 42.67767), (-18.766514, -9.754516, 45.306374), (-27.244755, -9.754516, 40.77466), (-25.663998, -19.134172, 38.408886), (-25.663998, -19.134172, 38.408886), (-27.244755, -9.754516, 40.77466), (-34.675995, -9.754516, 34.675995), (-32.664074, -19.134172, 32.664074), (-32.664074, -19.134172, 32.664074), (-34.675995, -9.754516, 34.675995), (-40.77466, -9.754516, 27.244755), (-38.408886, -19.134172, 25.663998), (-38.408886, -19.134172, 25.663998), (-40.77466, -9.754516, 27.244755), (-45.306374, -9.754516, 18.766514), (-42.67767, -19.134172, 17.67767), (-42.67767, -19.134172, 17.67767), (-45.306374, -9.754516, 18.766514), (-48.09699, -9.754516, 9.567086), (-45.306374, -19.134172, 9.011998), (-45.306374, -19.134172, 9.011998), (-48.09699, -9.754516, 9.567086), (-49.039265, -9.754516, 6.005578e-15), (-46.193977, -19.134172, 5.6571306e-15), (-46.193977, -19.134172, 5.6571306e-15), (-49.039265, -9.754516, 6.005578e-15), (-48.09699, -9.754516, -9.567086), (-45.306374, -19.134172, -9.011998), (-45.306374, -19.134172, -9.011998), (-48.09699, -9.754516, -9.567086), (-45.306374, -9.754516, -18.766514), (-42.67767, -19.134172, -17.67767), (-42.67767, -19.134172, -17.67767), (-45.306374, -9.754516, -18.766514), (-40.77466, -9.754516, -27.244755), (-38.408886, -19.134172, -25.663998), (-38.408886, -19.134172, -25.663998), (-40.77466, -9.754516, -27.244755), (-34.675995, -9.754516, -34.675995), (-32.664074, -19.134172, -32.664074), (-32.664074, -19.134172, -32.664074), (-34.675995, -9.754516, -34.675995), (-27.244755, -9.754516, -40.77466), (-25.663998, -19.134172, -38.408886), (-25.663998, -19.134172, -38.408886), (-27.244755, -9.754516, -40.77466), (-18.766514, -9.754516, -45.306374), (-17.67767, -19.134172, -42.67767), (-17.67767, -19.134172, -42.67767), (-18.766514, -9.754516, -45.306374), (-9.567086, -9.754516, -48.09699), (-9.011998, -19.134172, -45.306374), (-9.011998, -19.134172, -45.306374), (-9.567086, -9.754516, -48.09699), (-9.0083665e-15, -9.754516, -49.039265), (-8.4856955e-15, -19.134172, -46.193977), (-8.4856955e-15, -19.134172, -46.193977), (-9.0083665e-15, -9.754516, -49.039265), (9.567086, -9.754516, -48.09699), (9.011998, -19.134172, -45.306374), (9.011998, -19.134172, -45.306374), (9.567086, -9.754516, -48.09699), (18.766514, -9.754516, -45.306374), (17.67767, -19.134172, -42.67767), (17.67767, -19.134172, -42.67767), (18.766514, -9.754516, -45.306374), (27.244755, -9.754516, -40.77466), (25.663998, -19.134172, -38.408886), (25.663998, -19.134172, -38.408886), (27.244755, -9.754516, -40.77466), (34.675995, -9.754516, -34.675995), (32.664074, -19.134172, -32.664074), (32.664074, -19.134172, -32.664074), (34.675995, -9.754516, -34.675995), (40.77466, -9.754516, -27.244755), (38.408886, -19.134172, -25.663998), (38.408886, -19.134172, -25.663998), (40.77466, -9.754516, -27.244755), (45.306374, -9.754516, -18.766514), (42.67767, -19.134172, -17.67767), (42.67767, -19.134172, -17.67767), (45.306374, -9.754516, -18.766514), (48.09699, -9.754516, -9.567086), (45.306374, -19.134172, -9.011998), (45.306374, -19.134172, -9.011998), (48.09699, -9.754516, -9.567086), (49.039265, -9.754516, 0), (46.193977, -19.134172, 0), (49.039265, -9.754516, 0), (50, 0, 0), (49.039265, 0, 9.754516), (48.09699, -9.754516, 9.567086), (48.09699, -9.754516, 9.567086), (49.039265, 0, 9.754516), (46.193977, 0, 19.134172), (45.306374, -9.754516, 18.766514), (45.306374, -9.754516, 18.766514), (46.193977, 0, 19.134172), (41.573483, 0, 27.778511), (40.77466, -9.754516, 27.244755), (40.77466, -9.754516, 27.244755), (41.573483, 0, 27.778511), (35.35534, 0, 35.35534), (34.675995, -9.754516, 34.675995), (34.675995, -9.754516, 34.675995), (35.35534, 0, 35.35534), (27.778511, 0, 41.573483), (27.244755, -9.754516, 40.77466), (27.244755, -9.754516, 40.77466), (27.778511, 0, 41.573483), (19.134172, 0, 46.193977), (18.766514, -9.754516, 45.306374), (18.766514, -9.754516, 45.306374), (19.134172, 0, 46.193977), (9.754516, 0, 49.039265), (9.567086, -9.754516, 48.09699), (9.567086, -9.754516, 48.09699), (9.754516, 0, 49.039265), (3.0616169e-15, 0, 50), (3.002789e-15, -9.754516, 49.039265), (3.002789e-15, -9.754516, 49.039265), (3.0616169e-15, 0, 50), (-9.754516, 0, 49.039265), (-9.567086, -9.754516, 48.09699), (-9.567086, -9.754516, 48.09699), (-9.754516, 0, 49.039265), (-19.134172, 0, 46.193977), (-18.766514, -9.754516, 45.306374), (-18.766514, -9.754516, 45.306374), (-19.134172, 0, 46.193977), (-27.778511, 0, 41.573483), (-27.244755, -9.754516, 40.77466), (-27.244755, -9.754516, 40.77466), (-27.778511, 0, 41.573483), (-35.35534, 0, 35.35534), (-34.675995, -9.754516, 34.675995), (-34.675995, -9.754516, 34.675995), (-35.35534, 0, 35.35534), (-41.573483, 0, 27.778511), (-40.77466, -9.754516, 27.244755), (-40.77466, -9.754516, 27.244755), (-41.573483, 0, 27.778511), (-46.193977, 0, 19.134172), (-45.306374, -9.754516, 18.766514), (-45.306374, -9.754516, 18.766514), (-46.193977, 0, 19.134172), (-49.039265, 0, 9.754516), (-48.09699, -9.754516, 9.567086), (-48.09699, -9.754516, 9.567086), (-49.039265, 0, 9.754516), (-50, 0, 6.1232338e-15), (-49.039265, -9.754516, 6.005578e-15), (-49.039265, -9.754516, 6.005578e-15), (-50, 0, 6.1232338e-15), (-49.039265, 0, -9.754516), (-48.09699, -9.754516, -9.567086), (-48.09699, -9.754516, -9.567086), (-49.039265, 0, -9.754516), (-46.193977, 0, -19.134172), (-45.306374, -9.754516, -18.766514), (-45.306374, -9.754516, -18.766514), (-46.193977, 0, -19.134172), (-41.573483, 0, -27.778511), (-40.77466, -9.754516, -27.244755), (-40.77466, -9.754516, -27.244755), (-41.573483, 0, -27.778511), (-35.35534, 0, -35.35534), (-34.675995, -9.754516, -34.675995), (-34.675995, -9.754516, -34.675995), (-35.35534, 0, -35.35534), (-27.778511, 0, -41.573483), (-27.244755, -9.754516, -40.77466), (-27.244755, -9.754516, -40.77466), (-27.778511, 0, -41.573483), (-19.134172, 0, -46.193977), (-18.766514, -9.754516, -45.306374), (-18.766514, -9.754516, -45.306374), (-19.134172, 0, -46.193977), (-9.754516, 0, -49.039265), (-9.567086, -9.754516, -48.09699), (-9.567086, -9.754516, -48.09699), (-9.754516, 0, -49.039265), (-9.184851e-15, 0, -50), (-9.0083665e-15, -9.754516, -49.039265), (-9.0083665e-15, -9.754516, -49.039265), (-9.184851e-15, 0, -50), (9.754516, 0, -49.039265), (9.567086, -9.754516, -48.09699), (9.567086, -9.754516, -48.09699), (9.754516, 0, -49.039265), (19.134172, 0, -46.193977), (18.766514, -9.754516, -45.306374), (18.766514, -9.754516, -45.306374), (19.134172, 0, -46.193977), (27.778511, 0, -41.573483), (27.244755, -9.754516, -40.77466), (27.244755, -9.754516, -40.77466), (27.778511, 0, -41.573483), (35.35534, 0, -35.35534), (34.675995, -9.754516, -34.675995), (34.675995, -9.754516, -34.675995), (35.35534, 0, -35.35534), (41.573483, 0, -27.778511), (40.77466, -9.754516, -27.244755), (40.77466, -9.754516, -27.244755), (41.573483, 0, -27.778511), (46.193977, 0, -19.134172), (45.306374, -9.754516, -18.766514), (45.306374, -9.754516, -18.766514), (46.193977, 0, -19.134172), (49.039265, 0, -9.754516), (48.09699, -9.754516, -9.567086), (48.09699, -9.754516, -9.567086), (49.039265, 0, -9.754516), (50, 0, 0), (49.039265, -9.754516, 0), (50, 0, 0), (49.039265, 9.754516, 0), (48.09699, 9.754516, 9.567086), (49.039265, 0, 9.754516), (49.039265, 0, 9.754516), (48.09699, 9.754516, 9.567086), (45.306374, 9.754516, 18.766514), (46.193977, 0, 19.134172), (46.193977, 0, 19.134172), (45.306374, 9.754516, 18.766514), (40.77466, 9.754516, 27.244755), (41.573483, 0, 27.778511), (41.573483, 0, 27.778511), (40.77466, 9.754516, 27.244755), (34.675995, 9.754516, 34.675995), (35.35534, 0, 35.35534), (35.35534, 0, 35.35534), (34.675995, 9.754516, 34.675995), (27.244755, 9.754516, 40.77466), (27.778511, 0, 41.573483), (27.778511, 0, 41.573483), (27.244755, 9.754516, 40.77466), (18.766514, 9.754516, 45.306374), (19.134172, 0, 46.193977), (19.134172, 0, 46.193977), (18.766514, 9.754516, 45.306374), (9.567086, 9.754516, 48.09699), (9.754516, 0, 49.039265), (9.754516, 0, 49.039265), (9.567086, 9.754516, 48.09699), (3.002789e-15, 9.754516, 49.039265), (3.0616169e-15, 0, 50), (3.0616169e-15, 0, 50), (3.002789e-15, 9.754516, 49.039265), (-9.567086, 9.754516, 48.09699), (-9.754516, 0, 49.039265), (-9.754516, 0, 49.039265), (-9.567086, 9.754516, 48.09699), (-18.766514, 9.754516, 45.306374), (-19.134172, 0, 46.193977), (-19.134172, 0, 46.193977), (-18.766514, 9.754516, 45.306374), (-27.244755, 9.754516, 40.77466), (-27.778511, 0, 41.573483), (-27.778511, 0, 41.573483), (-27.244755, 9.754516, 40.77466), (-34.675995, 9.754516, 34.675995), (-35.35534, 0, 35.35534), (-35.35534, 0, 35.35534), (-34.675995, 9.754516, 34.675995), (-40.77466, 9.754516, 27.244755), (-41.573483, 0, 27.778511), (-41.573483, 0, 27.778511), (-40.77466, 9.754516, 27.244755), (-45.306374, 9.754516, 18.766514), (-46.193977, 0, 19.134172), (-46.193977, 0, 19.134172), (-45.306374, 9.754516, 18.766514), (-48.09699, 9.754516, 9.567086), (-49.039265, 0, 9.754516), (-49.039265, 0, 9.754516), (-48.09699, 9.754516, 9.567086), (-49.039265, 9.754516, 6.005578e-15), (-50, 0, 6.1232338e-15), (-50, 0, 6.1232338e-15), (-49.039265, 9.754516, 6.005578e-15), (-48.09699, 9.754516, -9.567086), (-49.039265, 0, -9.754516), (-49.039265, 0, -9.754516), (-48.09699, 9.754516, -9.567086), (-45.306374, 9.754516, -18.766514), (-46.193977, 0, -19.134172), (-46.193977, 0, -19.134172), (-45.306374, 9.754516, -18.766514), (-40.77466, 9.754516, -27.244755), (-41.573483, 0, -27.778511), (-41.573483, 0, -27.778511), (-40.77466, 9.754516, -27.244755), (-34.675995, 9.754516, -34.675995), (-35.35534, 0, -35.35534), (-35.35534, 0, -35.35534), (-34.675995, 9.754516, -34.675995), (-27.244755, 9.754516, -40.77466), (-27.778511, 0, -41.573483), (-27.778511, 0, -41.573483), (-27.244755, 9.754516, -40.77466), (-18.766514, 9.754516, -45.306374), (-19.134172, 0, -46.193977), (-19.134172, 0, -46.193977), (-18.766514, 9.754516, -45.306374), (-9.567086, 9.754516, -48.09699), (-9.754516, 0, -49.039265), (-9.754516, 0, -49.039265), (-9.567086, 9.754516, -48.09699), (-9.0083665e-15, 9.754516, -49.039265), (-9.184851e-15, 0, -50), (-9.184851e-15, 0, -50), (-9.0083665e-15, 9.754516, -49.039265), (9.567086, 9.754516, -48.09699), (9.754516, 0, -49.039265), (9.754516, 0, -49.039265), (9.567086, 9.754516, -48.09699), (18.766514, 9.754516, -45.306374), (19.134172, 0, -46.193977), (19.134172, 0, -46.193977), (18.766514, 9.754516, -45.306374), (27.244755, 9.754516, -40.77466), (27.778511, 0, -41.573483), (27.778511, 0, -41.573483), (27.244755, 9.754516, -40.77466), (34.675995, 9.754516, -34.675995), (35.35534, 0, -35.35534), (35.35534, 0, -35.35534), (34.675995, 9.754516, -34.675995), (40.77466, 9.754516, -27.244755), (41.573483, 0, -27.778511), (41.573483, 0, -27.778511), (40.77466, 9.754516, -27.244755), (45.306374, 9.754516, -18.766514), (46.193977, 0, -19.134172), (46.193977, 0, -19.134172), (45.306374, 9.754516, -18.766514), (48.09699, 9.754516, -9.567086), (49.039265, 0, -9.754516), (49.039265, 0, -9.754516), (48.09699, 9.754516, -9.567086), (49.039265, 9.754516, 0), (50, 0, 0), (49.039265, 9.754516, 0), (46.193977, 19.134172, 0), (45.306374, 19.134172, 9.011998), (48.09699, 9.754516, 9.567086), (48.09699, 9.754516, 9.567086), (45.306374, 19.134172, 9.011998), (42.67767, 19.134172, 17.67767), (45.306374, 9.754516, 18.766514), (45.306374, 9.754516, 18.766514), (42.67767, 19.134172, 17.67767), (38.408886, 19.134172, 25.663998), (40.77466, 9.754516, 27.244755), (40.77466, 9.754516, 27.244755), (38.408886, 19.134172, 25.663998), (32.664074, 19.134172, 32.664074), (34.675995, 9.754516, 34.675995), (34.675995, 9.754516, 34.675995), (32.664074, 19.134172, 32.664074), (25.663998, 19.134172, 38.408886), (27.244755, 9.754516, 40.77466), (27.244755, 9.754516, 40.77466), (25.663998, 19.134172, 38.408886), (17.67767, 19.134172, 42.67767), (18.766514, 9.754516, 45.306374), (18.766514, 9.754516, 45.306374), (17.67767, 19.134172, 42.67767), (9.011998, 19.134172, 45.306374), (9.567086, 9.754516, 48.09699), (9.567086, 9.754516, 48.09699), (9.011998, 19.134172, 45.306374), (2.8285653e-15, 19.134172, 46.193977), (3.002789e-15, 9.754516, 49.039265), (3.002789e-15, 9.754516, 49.039265), (2.8285653e-15, 19.134172, 46.193977), (-9.011998, 19.134172, 45.306374), (-9.567086, 9.754516, 48.09699), (-9.567086, 9.754516, 48.09699), (-9.011998, 19.134172, 45.306374), (-17.67767, 19.134172, 42.67767), (-18.766514, 9.754516, 45.306374), (-18.766514, 9.754516, 45.306374), (-17.67767, 19.134172, 42.67767), (-25.663998, 19.134172, 38.408886), (-27.244755, 9.754516, 40.77466), (-27.244755, 9.754516, 40.77466), (-25.663998, 19.134172, 38.408886), (-32.664074, 19.134172, 32.664074), (-34.675995, 9.754516, 34.675995), (-34.675995, 9.754516, 34.675995), (-32.664074, 19.134172, 32.664074), (-38.408886, 19.134172, 25.663998), (-40.77466, 9.754516, 27.244755), (-40.77466, 9.754516, 27.244755), (-38.408886, 19.134172, 25.663998), (-42.67767, 19.134172, 17.67767), (-45.306374, 9.754516, 18.766514), (-45.306374, 9.754516, 18.766514), (-42.67767, 19.134172, 17.67767), (-45.306374, 19.134172, 9.011998), (-48.09699, 9.754516, 9.567086), (-48.09699, 9.754516, 9.567086), (-45.306374, 19.134172, 9.011998), (-46.193977, 19.134172, 5.6571306e-15), (-49.039265, 9.754516, 6.005578e-15), (-49.039265, 9.754516, 6.005578e-15), (-46.193977, 19.134172, 5.6571306e-15), (-45.306374, 19.134172, -9.011998), (-48.09699, 9.754516, -9.567086), (-48.09699, 9.754516, -9.567086), (-45.306374, 19.134172, -9.011998), (-42.67767, 19.134172, -17.67767), (-45.306374, 9.754516, -18.766514), (-45.306374, 9.754516, -18.766514), (-42.67767, 19.134172, -17.67767), (-38.408886, 19.134172, -25.663998), (-40.77466, 9.754516, -27.244755), (-40.77466, 9.754516, -27.244755), (-38.408886, 19.134172, -25.663998), (-32.664074, 19.134172, -32.664074), (-34.675995, 9.754516, -34.675995), (-34.675995, 9.754516, -34.675995), (-32.664074, 19.134172, -32.664074), (-25.663998, 19.134172, -38.408886), (-27.244755, 9.754516, -40.77466), (-27.244755, 9.754516, -40.77466), (-25.663998, 19.134172, -38.408886), (-17.67767, 19.134172, -42.67767), (-18.766514, 9.754516, -45.306374), (-18.766514, 9.754516, -45.306374), (-17.67767, 19.134172, -42.67767), (-9.011998, 19.134172, -45.306374), (-9.567086, 9.754516, -48.09699), (-9.567086, 9.754516, -48.09699), (-9.011998, 19.134172, -45.306374), (-8.4856955e-15, 19.134172, -46.193977), (-9.0083665e-15, 9.754516, -49.039265), (-9.0083665e-15, 9.754516, -49.039265), (-8.4856955e-15, 19.134172, -46.193977), (9.011998, 19.134172, -45.306374), (9.567086, 9.754516, -48.09699), (9.567086, 9.754516, -48.09699), (9.011998, 19.134172, -45.306374), (17.67767, 19.134172, -42.67767), (18.766514, 9.754516, -45.306374), (18.766514, 9.754516, -45.306374), (17.67767, 19.134172, -42.67767), (25.663998, 19.134172, -38.408886), (27.244755, 9.754516, -40.77466), (27.244755, 9.754516, -40.77466), (25.663998, 19.134172, -38.408886), (32.664074, 19.134172, -32.664074), (34.675995, 9.754516, -34.675995), (34.675995, 9.754516, -34.675995), (32.664074, 19.134172, -32.664074), (38.408886, 19.134172, -25.663998), (40.77466, 9.754516, -27.244755), (40.77466, 9.754516, -27.244755), (38.408886, 19.134172, -25.663998), (42.67767, 19.134172, -17.67767), (45.306374, 9.754516, -18.766514), (45.306374, 9.754516, -18.766514), (42.67767, 19.134172, -17.67767), (45.306374, 19.134172, -9.011998), (48.09699, 9.754516, -9.567086), (48.09699, 9.754516, -9.567086), (45.306374, 19.134172, -9.011998), (46.193977, 19.134172, 0), (49.039265, 9.754516, 0), (46.193977, 19.134172, 0), (41.573483, 27.778511, 0), (40.77466, 27.778511, 8.110583), (45.306374, 19.134172, 9.011998), (45.306374, 19.134172, 9.011998), (40.77466, 27.778511, 8.110583), (38.408886, 27.778511, 15.909482), (42.67767, 19.134172, 17.67767), (42.67767, 19.134172, 17.67767), (38.408886, 27.778511, 15.909482), (34.567085, 27.778511, 23.096989), (38.408886, 19.134172, 25.663998), (38.408886, 19.134172, 25.663998), (34.567085, 27.778511, 23.096989), (29.39689, 27.778511, 29.39689), (32.664074, 19.134172, 32.664074), (32.664074, 19.134172, 32.664074), (29.39689, 27.778511, 29.39689), (23.096989, 27.778511, 34.567085), (25.663998, 19.134172, 38.408886), (25.663998, 19.134172, 38.408886), (23.096989, 27.778511, 34.567085), (15.909482, 27.778511, 38.408886), (17.67767, 19.134172, 42.67767), (17.67767, 19.134172, 42.67767), (15.909482, 27.778511, 38.408886), (8.110583, 27.778511, 40.77466), (9.011998, 19.134172, 45.306374), (9.011998, 19.134172, 45.306374), (8.110583, 27.778511, 40.77466), (2.5456415e-15, 27.778511, 41.573483), (2.8285653e-15, 19.134172, 46.193977), (2.8285653e-15, 19.134172, 46.193977), (2.5456415e-15, 27.778511, 41.573483), (-8.110583, 27.778511, 40.77466), (-9.011998, 19.134172, 45.306374), (-9.011998, 19.134172, 45.306374), (-8.110583, 27.778511, 40.77466), (-15.909482, 27.778511, 38.408886), (-17.67767, 19.134172, 42.67767), (-17.67767, 19.134172, 42.67767), (-15.909482, 27.778511, 38.408886), (-23.096989, 27.778511, 34.567085), (-25.663998, 19.134172, 38.408886), (-25.663998, 19.134172, 38.408886), (-23.096989, 27.778511, 34.567085), (-29.39689, 27.778511, 29.39689), (-32.664074, 19.134172, 32.664074), (-32.664074, 19.134172, 32.664074), (-29.39689, 27.778511, 29.39689), (-34.567085, 27.778511, 23.096989), (-38.408886, 19.134172, 25.663998), (-38.408886, 19.134172, 25.663998), (-34.567085, 27.778511, 23.096989), (-38.408886, 27.778511, 15.909482), (-42.67767, 19.134172, 17.67767), (-42.67767, 19.134172, 17.67767), (-38.408886, 27.778511, 15.909482), (-40.77466, 27.778511, 8.110583), (-45.306374, 19.134172, 9.011998), (-45.306374, 19.134172, 9.011998), (-40.77466, 27.778511, 8.110583), (-41.573483, 27.778511, 5.091283e-15), (-46.193977, 19.134172, 5.6571306e-15), (-46.193977, 19.134172, 5.6571306e-15), (-41.573483, 27.778511, 5.091283e-15), (-40.77466, 27.778511, -8.110583), (-45.306374, 19.134172, -9.011998), (-45.306374, 19.134172, -9.011998), (-40.77466, 27.778511, -8.110583), (-38.408886, 27.778511, -15.909482), (-42.67767, 19.134172, -17.67767), (-42.67767, 19.134172, -17.67767), (-38.408886, 27.778511, -15.909482), (-34.567085, 27.778511, -23.096989), (-38.408886, 19.134172, -25.663998), (-38.408886, 19.134172, -25.663998), (-34.567085, 27.778511, -23.096989), (-29.39689, 27.778511, -29.39689), (-32.664074, 19.134172, -32.664074), (-32.664074, 19.134172, -32.664074), (-29.39689, 27.778511, -29.39689), (-23.096989, 27.778511, -34.567085), (-25.663998, 19.134172, -38.408886), (-25.663998, 19.134172, -38.408886), (-23.096989, 27.778511, -34.567085), (-15.909482, 27.778511, -38.408886), (-17.67767, 19.134172, -42.67767), (-17.67767, 19.134172, -42.67767), (-15.909482, 27.778511, -38.408886), (-8.110583, 27.778511, -40.77466), (-9.011998, 19.134172, -45.306374), (-9.011998, 19.134172, -45.306374), (-8.110583, 27.778511, -40.77466), (-7.6369244e-15, 27.778511, -41.573483), (-8.4856955e-15, 19.134172, -46.193977), (-8.4856955e-15, 19.134172, -46.193977), (-7.6369244e-15, 27.778511, -41.573483), (8.110583, 27.778511, -40.77466), (9.011998, 19.134172, -45.306374), (9.011998, 19.134172, -45.306374), (8.110583, 27.778511, -40.77466), (15.909482, 27.778511, -38.408886), (17.67767, 19.134172, -42.67767), (17.67767, 19.134172, -42.67767), (15.909482, 27.778511, -38.408886), (23.096989, 27.778511, -34.567085), (25.663998, 19.134172, -38.408886), (25.663998, 19.134172, -38.408886), (23.096989, 27.778511, -34.567085), (29.39689, 27.778511, -29.39689), (32.664074, 19.134172, -32.664074), (32.664074, 19.134172, -32.664074), (29.39689, 27.778511, -29.39689), (34.567085, 27.778511, -23.096989), (38.408886, 19.134172, -25.663998), (38.408886, 19.134172, -25.663998), (34.567085, 27.778511, -23.096989), (38.408886, 27.778511, -15.909482), (42.67767, 19.134172, -17.67767), (42.67767, 19.134172, -17.67767), (38.408886, 27.778511, -15.909482), (40.77466, 27.778511, -8.110583), (45.306374, 19.134172, -9.011998), (45.306374, 19.134172, -9.011998), (40.77466, 27.778511, -8.110583), (41.573483, 27.778511, 0), (46.193977, 19.134172, 0), (41.573483, 27.778511, 0), (35.35534, 35.35534, 0), (34.675995, 35.35534, 6.8974843), (40.77466, 27.778511, 8.110583), (40.77466, 27.778511, 8.110583), (34.675995, 35.35534, 6.8974843), (32.664074, 35.35534, 13.529902), (38.408886, 27.778511, 15.909482), (38.408886, 27.778511, 15.909482), (32.664074, 35.35534, 13.529902), (29.39689, 35.35534, 19.642374), (34.567085, 27.778511, 23.096989), (34.567085, 27.778511, 23.096989), (29.39689, 35.35534, 19.642374), (25, 35.35534, 25), (29.39689, 27.778511, 29.39689), (29.39689, 27.778511, 29.39689), (25, 35.35534, 25), (19.642374, 35.35534, 29.39689), (23.096989, 27.778511, 34.567085), (23.096989, 27.778511, 34.567085), (19.642374, 35.35534, 29.39689), (13.529902, 35.35534, 32.664074), (15.909482, 27.778511, 38.408886), (15.909482, 27.778511, 38.408886), (13.529902, 35.35534, 32.664074), (6.8974843, 35.35534, 34.675995), (8.110583, 27.778511, 40.77466), (8.110583, 27.778511, 40.77466), (6.8974843, 35.35534, 34.675995), (2.1648902e-15, 35.35534, 35.35534), (2.5456415e-15, 27.778511, 41.573483), (2.5456415e-15, 27.778511, 41.573483), (2.1648902e-15, 35.35534, 35.35534), (-6.8974843, 35.35534, 34.675995), (-8.110583, 27.778511, 40.77466), (-8.110583, 27.778511, 40.77466), (-6.8974843, 35.35534, 34.675995), (-13.529902, 35.35534, 32.664074), (-15.909482, 27.778511, 38.408886), (-15.909482, 27.778511, 38.408886), (-13.529902, 35.35534, 32.664074), (-19.642374, 35.35534, 29.39689), (-23.096989, 27.778511, 34.567085), (-23.096989, 27.778511, 34.567085), (-19.642374, 35.35534, 29.39689), (-25, 35.35534, 25), (-29.39689, 27.778511, 29.39689), (-29.39689, 27.778511, 29.39689), (-25, 35.35534, 25), (-29.39689, 35.35534, 19.642374), (-34.567085, 27.778511, 23.096989), (-34.567085, 27.778511, 23.096989), (-29.39689, 35.35534, 19.642374), (-32.664074, 35.35534, 13.529902), (-38.408886, 27.778511, 15.909482), (-38.408886, 27.778511, 15.909482), (-32.664074, 35.35534, 13.529902), (-34.675995, 35.35534, 6.8974843), (-40.77466, 27.778511, 8.110583), (-40.77466, 27.778511, 8.110583), (-34.675995, 35.35534, 6.8974843), (-35.35534, 35.35534, 4.3297804e-15), (-41.573483, 27.778511, 5.091283e-15), (-41.573483, 27.778511, 5.091283e-15), (-35.35534, 35.35534, 4.3297804e-15), (-34.675995, 35.35534, -6.8974843), (-40.77466, 27.778511, -8.110583), (-40.77466, 27.778511, -8.110583), (-34.675995, 35.35534, -6.8974843), (-32.664074, 35.35534, -13.529902), (-38.408886, 27.778511, -15.909482), (-38.408886, 27.778511, -15.909482), (-32.664074, 35.35534, -13.529902), (-29.39689, 35.35534, -19.642374), (-34.567085, 27.778511, -23.096989), (-34.567085, 27.778511, -23.096989), (-29.39689, 35.35534, -19.642374), (-25, 35.35534, -25), (-29.39689, 27.778511, -29.39689), (-29.39689, 27.778511, -29.39689), (-25, 35.35534, -25), (-19.642374, 35.35534, -29.39689), (-23.096989, 27.778511, -34.567085), (-23.096989, 27.778511, -34.567085), (-19.642374, 35.35534, -29.39689), (-13.529902, 35.35534, -32.664074), (-15.909482, 27.778511, -38.408886), (-15.909482, 27.778511, -38.408886), (-13.529902, 35.35534, -32.664074), (-6.8974843, 35.35534, -34.675995), (-8.110583, 27.778511, -40.77466), (-8.110583, 27.778511, -40.77466), (-6.8974843, 35.35534, -34.675995), (-6.4946704e-15, 35.35534, -35.35534), (-7.6369244e-15, 27.778511, -41.573483), (-7.6369244e-15, 27.778511, -41.573483), (-6.4946704e-15, 35.35534, -35.35534), (6.8974843, 35.35534, -34.675995), (8.110583, 27.778511, -40.77466), (8.110583, 27.778511, -40.77466), (6.8974843, 35.35534, -34.675995), (13.529902, 35.35534, -32.664074), (15.909482, 27.778511, -38.408886), (15.909482, 27.778511, -38.408886), (13.529902, 35.35534, -32.664074), (19.642374, 35.35534, -29.39689), (23.096989, 27.778511, -34.567085), (23.096989, 27.778511, -34.567085), (19.642374, 35.35534, -29.39689), (25, 35.35534, -25), (29.39689, 27.778511, -29.39689), (29.39689, 27.778511, -29.39689), (25, 35.35534, -25), (29.39689, 35.35534, -19.642374), (34.567085, 27.778511, -23.096989), (34.567085, 27.778511, -23.096989), (29.39689, 35.35534, -19.642374), (32.664074, 35.35534, -13.529902), (38.408886, 27.778511, -15.909482), (38.408886, 27.778511, -15.909482), (32.664074, 35.35534, -13.529902), (34.675995, 35.35534, -6.8974843), (40.77466, 27.778511, -8.110583), (40.77466, 27.778511, -8.110583), (34.675995, 35.35534, -6.8974843), (35.35534, 35.35534, 0), (41.573483, 27.778511, 0), (35.35534, 35.35534, 0), (27.778511, 41.573483, 0), (27.244755, 41.573483, 5.4193187), (34.675995, 35.35534, 6.8974843), (34.675995, 35.35534, 6.8974843), (27.244755, 41.573483, 5.4193187), (25.663998, 41.573483, 10.630376), (32.664074, 35.35534, 13.529902), (32.664074, 35.35534, 13.529902), (25.663998, 41.573483, 10.630376), (23.096989, 41.573483, 15.432914), (29.39689, 35.35534, 19.642374), (29.39689, 35.35534, 19.642374), (23.096989, 41.573483, 15.432914), (19.642374, 41.573483, 19.642374), (25, 35.35534, 25), (25, 35.35534, 25), (19.642374, 41.573483, 19.642374), (15.432914, 41.573483, 23.096989), (19.642374, 35.35534, 29.39689), (19.642374, 35.35534, 29.39689), (15.432914, 41.573483, 23.096989), (10.630376, 41.573483, 25.663998), (13.529902, 35.35534, 32.664074), (13.529902, 35.35534, 32.664074), (10.630376, 41.573483, 25.663998), (5.4193187, 41.573483, 27.244755), (6.8974843, 35.35534, 34.675995), (6.8974843, 35.35534, 34.675995), (5.4193187, 41.573483, 27.244755), (1.7009433e-15, 41.573483, 27.778511), (2.1648902e-15, 35.35534, 35.35534), (2.1648902e-15, 35.35534, 35.35534), (1.7009433e-15, 41.573483, 27.778511), (-5.4193187, 41.573483, 27.244755), (-6.8974843, 35.35534, 34.675995), (-6.8974843, 35.35534, 34.675995), (-5.4193187, 41.573483, 27.244755), (-10.630376, 41.573483, 25.663998), (-13.529902, 35.35534, 32.664074), (-13.529902, 35.35534, 32.664074), (-10.630376, 41.573483, 25.663998), (-15.432914, 41.573483, 23.096989), (-19.642374, 35.35534, 29.39689), (-19.642374, 35.35534, 29.39689), (-15.432914, 41.573483, 23.096989), (-19.642374, 41.573483, 19.642374), (-25, 35.35534, 25), (-25, 35.35534, 25), (-19.642374, 41.573483, 19.642374), (-23.096989, 41.573483, 15.432914), (-29.39689, 35.35534, 19.642374), (-29.39689, 35.35534, 19.642374), (-23.096989, 41.573483, 15.432914), (-25.663998, 41.573483, 10.630376), (-32.664074, 35.35534, 13.529902), (-32.664074, 35.35534, 13.529902), (-25.663998, 41.573483, 10.630376), (-27.244755, 41.573483, 5.4193187), (-34.675995, 35.35534, 6.8974843), (-34.675995, 35.35534, 6.8974843), (-27.244755, 41.573483, 5.4193187), (-27.778511, 41.573483, 3.4018865e-15), (-35.35534, 35.35534, 4.3297804e-15), (-35.35534, 35.35534, 4.3297804e-15), (-27.778511, 41.573483, 3.4018865e-15), (-27.244755, 41.573483, -5.4193187), (-34.675995, 35.35534, -6.8974843), (-34.675995, 35.35534, -6.8974843), (-27.244755, 41.573483, -5.4193187), (-25.663998, 41.573483, -10.630376), (-32.664074, 35.35534, -13.529902), (-32.664074, 35.35534, -13.529902), (-25.663998, 41.573483, -10.630376), (-23.096989, 41.573483, -15.432914), (-29.39689, 35.35534, -19.642374), (-29.39689, 35.35534, -19.642374), (-23.096989, 41.573483, -15.432914), (-19.642374, 41.573483, -19.642374), (-25, 35.35534, -25), (-25, 35.35534, -25), (-19.642374, 41.573483, -19.642374), (-15.432914, 41.573483, -23.096989), (-19.642374, 35.35534, -29.39689), (-19.642374, 35.35534, -29.39689), (-15.432914, 41.573483, -23.096989), (-10.630376, 41.573483, -25.663998), (-13.529902, 35.35534, -32.664074), (-13.529902, 35.35534, -32.664074), (-10.630376, 41.573483, -25.663998), (-5.4193187, 41.573483, -27.244755), (-6.8974843, 35.35534, -34.675995), (-6.8974843, 35.35534, -34.675995), (-5.4193187, 41.573483, -27.244755), (-5.1028297e-15, 41.573483, -27.778511), (-6.4946704e-15, 35.35534, -35.35534), (-6.4946704e-15, 35.35534, -35.35534), (-5.1028297e-15, 41.573483, -27.778511), (5.4193187, 41.573483, -27.244755), (6.8974843, 35.35534, -34.675995), (6.8974843, 35.35534, -34.675995), (5.4193187, 41.573483, -27.244755), (10.630376, 41.573483, -25.663998), (13.529902, 35.35534, -32.664074), (13.529902, 35.35534, -32.664074), (10.630376, 41.573483, -25.663998), (15.432914, 41.573483, -23.096989), (19.642374, 35.35534, -29.39689), (19.642374, 35.35534, -29.39689), (15.432914, 41.573483, -23.096989), (19.642374, 41.573483, -19.642374), (25, 35.35534, -25), (25, 35.35534, -25), (19.642374, 41.573483, -19.642374), (23.096989, 41.573483, -15.432914), (29.39689, 35.35534, -19.642374), (29.39689, 35.35534, -19.642374), (23.096989, 41.573483, -15.432914), (25.663998, 41.573483, -10.630376), (32.664074, 35.35534, -13.529902), (32.664074, 35.35534, -13.529902), (25.663998, 41.573483, -10.630376), (27.244755, 41.573483, -5.4193187), (34.675995, 35.35534, -6.8974843), (34.675995, 35.35534, -6.8974843), (27.244755, 41.573483, -5.4193187), (27.778511, 41.573483, 0), (35.35534, 35.35534, 0), (27.778511, 41.573483, 0), (19.134172, 46.193977, 0), (18.766514, 46.193977, 3.7328918), (27.244755, 41.573483, 5.4193187), (27.244755, 41.573483, 5.4193187), (18.766514, 46.193977, 3.7328918), (17.67767, 46.193977, 7.3223305), (25.663998, 41.573483, 10.630376), (25.663998, 41.573483, 10.630376), (17.67767, 46.193977, 7.3223305), (15.909482, 46.193977, 10.630376), (23.096989, 41.573483, 15.432914), (23.096989, 41.573483, 15.432914), (15.909482, 46.193977, 10.630376), (13.529902, 46.193977, 13.529902), (19.642374, 41.573483, 19.642374), (19.642374, 41.573483, 19.642374), (13.529902, 46.193977, 13.529902), (10.630376, 46.193977, 15.909482), (15.432914, 41.573483, 23.096989), (15.432914, 41.573483, 23.096989), (10.630376, 46.193977, 15.909482), (7.3223305, 46.193977, 17.67767), (10.630376, 41.573483, 25.663998), (10.630376, 41.573483, 25.663998), (7.3223305, 46.193977, 17.67767), (3.7328918, 46.193977, 18.766514), (5.4193187, 41.573483, 27.244755), (5.4193187, 41.573483, 27.244755), (3.7328918, 46.193977, 18.766514), (1.1716301e-15, 46.193977, 19.134172), (1.7009433e-15, 41.573483, 27.778511), (1.7009433e-15, 41.573483, 27.778511), (1.1716301e-15, 46.193977, 19.134172), (-3.7328918, 46.193977, 18.766514), (-5.4193187, 41.573483, 27.244755), (-5.4193187, 41.573483, 27.244755), (-3.7328918, 46.193977, 18.766514), (-7.3223305, 46.193977, 17.67767), (-10.630376, 41.573483, 25.663998), (-10.630376, 41.573483, 25.663998), (-7.3223305, 46.193977, 17.67767), (-10.630376, 46.193977, 15.909482), (-15.432914, 41.573483, 23.096989), (-15.432914, 41.573483, 23.096989), (-10.630376, 46.193977, 15.909482), (-13.529902, 46.193977, 13.529902), (-19.642374, 41.573483, 19.642374), (-19.642374, 41.573483, 19.642374), (-13.529902, 46.193977, 13.529902), (-15.909482, 46.193977, 10.630376), (-23.096989, 41.573483, 15.432914), (-23.096989, 41.573483, 15.432914), (-15.909482, 46.193977, 10.630376), (-17.67767, 46.193977, 7.3223305), (-25.663998, 41.573483, 10.630376), (-25.663998, 41.573483, 10.630376), (-17.67767, 46.193977, 7.3223305), (-18.766514, 46.193977, 3.7328918), (-27.244755, 41.573483, 5.4193187), (-27.244755, 41.573483, 5.4193187), (-18.766514, 46.193977, 3.7328918), (-19.134172, 46.193977, 2.3432601e-15), (-27.778511, 41.573483, 3.4018865e-15), (-27.778511, 41.573483, 3.4018865e-15), (-19.134172, 46.193977, 2.3432601e-15), (-18.766514, 46.193977, -3.7328918), (-27.244755, 41.573483, -5.4193187), (-27.244755, 41.573483, -5.4193187), (-18.766514, 46.193977, -3.7328918), (-17.67767, 46.193977, -7.3223305), (-25.663998, 41.573483, -10.630376), (-25.663998, 41.573483, -10.630376), (-17.67767, 46.193977, -7.3223305), (-15.909482, 46.193977, -10.630376), (-23.096989, 41.573483, -15.432914), (-23.096989, 41.573483, -15.432914), (-15.909482, 46.193977, -10.630376), (-13.529902, 46.193977, -13.529902), (-19.642374, 41.573483, -19.642374), (-19.642374, 41.573483, -19.642374), (-13.529902, 46.193977, -13.529902), (-10.630376, 46.193977, -15.909482), (-15.432914, 41.573483, -23.096989), (-15.432914, 41.573483, -23.096989), (-10.630376, 46.193977, -15.909482), (-7.3223305, 46.193977, -17.67767), (-10.630376, 41.573483, -25.663998), (-10.630376, 41.573483, -25.663998), (-7.3223305, 46.193977, -17.67767), (-3.7328918, 46.193977, -18.766514), (-5.4193187, 41.573483, -27.244755), (-5.4193187, 41.573483, -27.244755), (-3.7328918, 46.193977, -18.766514), (-3.5148903e-15, 46.193977, -19.134172), (-5.1028297e-15, 41.573483, -27.778511), (-5.1028297e-15, 41.573483, -27.778511), (-3.5148903e-15, 46.193977, -19.134172), (3.7328918, 46.193977, -18.766514), (5.4193187, 41.573483, -27.244755), (5.4193187, 41.573483, -27.244755), (3.7328918, 46.193977, -18.766514), (7.3223305, 46.193977, -17.67767), (10.630376, 41.573483, -25.663998), (10.630376, 41.573483, -25.663998), (7.3223305, 46.193977, -17.67767), (10.630376, 46.193977, -15.909482), (15.432914, 41.573483, -23.096989), (15.432914, 41.573483, -23.096989), (10.630376, 46.193977, -15.909482), (13.529902, 46.193977, -13.529902), (19.642374, 41.573483, -19.642374), (19.642374, 41.573483, -19.642374), (13.529902, 46.193977, -13.529902), (15.909482, 46.193977, -10.630376), (23.096989, 41.573483, -15.432914), (23.096989, 41.573483, -15.432914), (15.909482, 46.193977, -10.630376), (17.67767, 46.193977, -7.3223305), (25.663998, 41.573483, -10.630376), (25.663998, 41.573483, -10.630376), (17.67767, 46.193977, -7.3223305), (18.766514, 46.193977, -3.7328918), (27.244755, 41.573483, -5.4193187), (27.244755, 41.573483, -5.4193187), (18.766514, 46.193977, -3.7328918), (19.134172, 46.193977, 0), (27.778511, 41.573483, 0), (19.134172, 46.193977, 0), (9.754516, 49.039265, 0), (9.567086, 49.039265, 1.9030117), (18.766514, 46.193977, 3.7328918), (18.766514, 46.193977, 3.7328918), (9.567086, 49.039265, 1.9030117), (9.011998, 49.039265, 3.7328918), (17.67767, 46.193977, 7.3223305), (17.67767, 46.193977, 7.3223305), (9.011998, 49.039265, 3.7328918), (8.110583, 49.039265, 5.4193187), (15.909482, 46.193977, 10.630376), (15.909482, 46.193977, 10.630376), (8.110583, 49.039265, 5.4193187), (6.8974843, 49.039265, 6.8974843), (13.529902, 46.193977, 13.529902), (13.529902, 46.193977, 13.529902), (6.8974843, 49.039265, 6.8974843), (5.4193187, 49.039265, 8.110583), (10.630376, 46.193977, 15.909482), (10.630376, 46.193977, 15.909482), (5.4193187, 49.039265, 8.110583), (3.7328918, 49.039265, 9.011998), (7.3223305, 46.193977, 17.67767), (7.3223305, 46.193977, 17.67767), (3.7328918, 49.039265, 9.011998), (1.9030117, 49.039265, 9.567086), (3.7328918, 46.193977, 18.766514), (3.7328918, 46.193977, 18.766514), (1.9030117, 49.039265, 9.567086), (5.9729185e-16, 49.039265, 9.754516), (1.1716301e-15, 46.193977, 19.134172), (1.1716301e-15, 46.193977, 19.134172), (5.9729185e-16, 49.039265, 9.754516), (-1.9030117, 49.039265, 9.567086), (-3.7328918, 46.193977, 18.766514), (-3.7328918, 46.193977, 18.766514), (-1.9030117, 49.039265, 9.567086), (-3.7328918, 49.039265, 9.011998), (-7.3223305, 46.193977, 17.67767), (-7.3223305, 46.193977, 17.67767), (-3.7328918, 49.039265, 9.011998), (-5.4193187, 49.039265, 8.110583), (-10.630376, 46.193977, 15.909482), (-10.630376, 46.193977, 15.909482), (-5.4193187, 49.039265, 8.110583), (-6.8974843, 49.039265, 6.8974843), (-13.529902, 46.193977, 13.529902), (-13.529902, 46.193977, 13.529902), (-6.8974843, 49.039265, 6.8974843), (-8.110583, 49.039265, 5.4193187), (-15.909482, 46.193977, 10.630376), (-15.909482, 46.193977, 10.630376), (-8.110583, 49.039265, 5.4193187), (-9.011998, 49.039265, 3.7328918), (-17.67767, 46.193977, 7.3223305), (-17.67767, 46.193977, 7.3223305), (-9.011998, 49.039265, 3.7328918), (-9.567086, 49.039265, 1.9030117), (-18.766514, 46.193977, 3.7328918), (-18.766514, 46.193977, 3.7328918), (-9.567086, 49.039265, 1.9030117), (-9.754516, 49.039265, 1.1945837e-15), (-19.134172, 46.193977, 2.3432601e-15), (-19.134172, 46.193977, 2.3432601e-15), (-9.754516, 49.039265, 1.1945837e-15), (-9.567086, 49.039265, -1.9030117), (-18.766514, 46.193977, -3.7328918), (-18.766514, 46.193977, -3.7328918), (-9.567086, 49.039265, -1.9030117), (-9.011998, 49.039265, -3.7328918), (-17.67767, 46.193977, -7.3223305), (-17.67767, 46.193977, -7.3223305), (-9.011998, 49.039265, -3.7328918), (-8.110583, 49.039265, -5.4193187), (-15.909482, 46.193977, -10.630376), (-15.909482, 46.193977, -10.630376), (-8.110583, 49.039265, -5.4193187), (-6.8974843, 49.039265, -6.8974843), (-13.529902, 46.193977, -13.529902), (-13.529902, 46.193977, -13.529902), (-6.8974843, 49.039265, -6.8974843), (-5.4193187, 49.039265, -8.110583), (-10.630376, 46.193977, -15.909482), (-10.630376, 46.193977, -15.909482), (-5.4193187, 49.039265, -8.110583), (-3.7328918, 49.039265, -9.011998), (-7.3223305, 46.193977, -17.67767), (-7.3223305, 46.193977, -17.67767), (-3.7328918, 49.039265, -9.011998), (-1.9030117, 49.039265, -9.567086), (-3.7328918, 46.193977, -18.766514), (-3.7328918, 46.193977, -18.766514), (-1.9030117, 49.039265, -9.567086), (-1.7918755e-15, 49.039265, -9.754516), (-3.5148903e-15, 46.193977, -19.134172), (-3.5148903e-15, 46.193977, -19.134172), (-1.7918755e-15, 49.039265, -9.754516), (1.9030117, 49.039265, -9.567086), (3.7328918, 46.193977, -18.766514), (3.7328918, 46.193977, -18.766514), (1.9030117, 49.039265, -9.567086), (3.7328918, 49.039265, -9.011998), (7.3223305, 46.193977, -17.67767), (7.3223305, 46.193977, -17.67767), (3.7328918, 49.039265, -9.011998), (5.4193187, 49.039265, -8.110583), (10.630376, 46.193977, -15.909482), (10.630376, 46.193977, -15.909482), (5.4193187, 49.039265, -8.110583), (6.8974843, 49.039265, -6.8974843), (13.529902, 46.193977, -13.529902), (13.529902, 46.193977, -13.529902), (6.8974843, 49.039265, -6.8974843), (8.110583, 49.039265, -5.4193187), (15.909482, 46.193977, -10.630376), (15.909482, 46.193977, -10.630376), (8.110583, 49.039265, -5.4193187), (9.011998, 49.039265, -3.7328918), (17.67767, 46.193977, -7.3223305), (17.67767, 46.193977, -7.3223305), (9.011998, 49.039265, -3.7328918), (9.567086, 49.039265, -1.9030117), (18.766514, 46.193977, -3.7328918), (18.766514, 46.193977, -3.7328918), (9.567086, 49.039265, -1.9030117), (9.754516, 49.039265, 0), (19.134172, 46.193977, 0), (0, 50, 0), (9.567086, 49.039265, 1.9030117), (9.754516, 49.039265, 0), (0, 50, 0), (9.011998, 49.039265, 3.7328918), (9.567086, 49.039265, 1.9030117), (0, 50, 0), (8.110583, 49.039265, 5.4193187), (9.011998, 49.039265, 3.7328918), (0, 50, 0), (6.8974843, 49.039265, 6.8974843), (8.110583, 49.039265, 5.4193187), (0, 50, 0), (5.4193187, 49.039265, 8.110583), (6.8974843, 49.039265, 6.8974843), (0, 50, 0), (3.7328918, 49.039265, 9.011998), (5.4193187, 49.039265, 8.110583), (0, 50, 0), (1.9030117, 49.039265, 9.567086), (3.7328918, 49.039265, 9.011998), (0, 50, 0), (5.9729185e-16, 49.039265, 9.754516), (1.9030117, 49.039265, 9.567086), (0, 50, 0), (-1.9030117, 49.039265, 9.567086), (5.9729185e-16, 49.039265, 9.754516), (0, 50, 0), (-3.7328918, 49.039265, 9.011998), (-1.9030117, 49.039265, 9.567086), (0, 50, 0), (-5.4193187, 49.039265, 8.110583), (-3.7328918, 49.039265, 9.011998), (0, 50, 0), (-6.8974843, 49.039265, 6.8974843), (-5.4193187, 49.039265, 8.110583), (0, 50, 0), (-8.110583, 49.039265, 5.4193187), (-6.8974843, 49.039265, 6.8974843), (0, 50, 0), (-9.011998, 49.039265, 3.7328918), (-8.110583, 49.039265, 5.4193187), (0, 50, 0), (-9.567086, 49.039265, 1.9030117), (-9.011998, 49.039265, 3.7328918), (0, 50, 0), (-9.754516, 49.039265, 1.1945837e-15), (-9.567086, 49.039265, 1.9030117), (0, 50, 0), (-9.567086, 49.039265, -1.9030117), (-9.754516, 49.039265, 1.1945837e-15), (0, 50, 0), (-9.011998, 49.039265, -3.7328918), (-9.567086, 49.039265, -1.9030117), (0, 50, 0), (-8.110583, 49.039265, -5.4193187), (-9.011998, 49.039265, -3.7328918), (0, 50, 0), (-6.8974843, 49.039265, -6.8974843), (-8.110583, 49.039265, -5.4193187), (0, 50, 0), (-5.4193187, 49.039265, -8.110583), (-6.8974843, 49.039265, -6.8974843), (0, 50, 0), (-3.7328918, 49.039265, -9.011998), (-5.4193187, 49.039265, -8.110583), (0, 50, 0), (-1.9030117, 49.039265, -9.567086), (-3.7328918, 49.039265, -9.011998), (0, 50, 0), (-1.7918755e-15, 49.039265, -9.754516), (-1.9030117, 49.039265, -9.567086), (0, 50, 0), (1.9030117, 49.039265, -9.567086), (-1.7918755e-15, 49.039265, -9.754516), (0, 50, 0), (3.7328918, 49.039265, -9.011998), (1.9030117, 49.039265, -9.567086), (0, 50, 0), (5.4193187, 49.039265, -8.110583), (3.7328918, 49.039265, -9.011998), (0, 50, 0), (6.8974843, 49.039265, -6.8974843), (5.4193187, 49.039265, -8.110583), (0, 50, 0), (8.110583, 49.039265, -5.4193187), (6.8974843, 49.039265, -6.8974843), (0, 50, 0), (9.011998, 49.039265, -3.7328918), (8.110583, 49.039265, -5.4193187), (0, 50, 0), (9.567086, 49.039265, -1.9030117), (9.011998, 49.039265, -3.7328918), (0, 50, 0), (9.754516, 49.039265, 0), (9.567086, 49.039265, -1.9030117)] ( interpolation = "faceVarying" ) point3f[] points = [(0, -50, 0), (9.754516, -49.039265, 0), (9.567086, -49.039265, 1.9030117), (9.011998, -49.039265, 3.7328918), (8.110583, -49.039265, 5.4193187), (6.8974843, -49.039265, 6.8974843), (5.4193187, -49.039265, 8.110583), (3.7328918, -49.039265, 9.011998), (1.9030117, -49.039265, 9.567086), (5.9729185e-16, -49.039265, 9.754516), (-1.9030117, -49.039265, 9.567086), (-3.7328918, -49.039265, 9.011998), (-5.4193187, -49.039265, 8.110583), (-6.8974843, -49.039265, 6.8974843), (-8.110583, -49.039265, 5.4193187), (-9.011998, -49.039265, 3.7328918), (-9.567086, -49.039265, 1.9030117), (-9.754516, -49.039265, 1.1945837e-15), (-9.567086, -49.039265, -1.9030117), (-9.011998, -49.039265, -3.7328918), (-8.110583, -49.039265, -5.4193187), (-6.8974843, -49.039265, -6.8974843), (-5.4193187, -49.039265, -8.110583), (-3.7328918, -49.039265, -9.011998), (-1.9030117, -49.039265, -9.567086), (-1.7918755e-15, -49.039265, -9.754516), (1.9030117, -49.039265, -9.567086), (3.7328918, -49.039265, -9.011998), (5.4193187, -49.039265, -8.110583), (6.8974843, -49.039265, -6.8974843), (8.110583, -49.039265, -5.4193187), (9.011998, -49.039265, -3.7328918), (9.567086, -49.039265, -1.9030117), (19.134172, -46.193977, 0), (18.766514, -46.193977, 3.7328918), (17.67767, -46.193977, 7.3223305), (15.909482, -46.193977, 10.630376), (13.529902, -46.193977, 13.529902), (10.630376, -46.193977, 15.909482), (7.3223305, -46.193977, 17.67767), (3.7328918, -46.193977, 18.766514), (1.1716301e-15, -46.193977, 19.134172), (-3.7328918, -46.193977, 18.766514), (-7.3223305, -46.193977, 17.67767), (-10.630376, -46.193977, 15.909482), (-13.529902, -46.193977, 13.529902), (-15.909482, -46.193977, 10.630376), (-17.67767, -46.193977, 7.3223305), (-18.766514, -46.193977, 3.7328918), (-19.134172, -46.193977, 2.3432601e-15), (-18.766514, -46.193977, -3.7328918), (-17.67767, -46.193977, -7.3223305), (-15.909482, -46.193977, -10.630376), (-13.529902, -46.193977, -13.529902), (-10.630376, -46.193977, -15.909482), (-7.3223305, -46.193977, -17.67767), (-3.7328918, -46.193977, -18.766514), (-3.5148903e-15, -46.193977, -19.134172), (3.7328918, -46.193977, -18.766514), (7.3223305, -46.193977, -17.67767), (10.630376, -46.193977, -15.909482), (13.529902, -46.193977, -13.529902), (15.909482, -46.193977, -10.630376), (17.67767, -46.193977, -7.3223305), (18.766514, -46.193977, -3.7328918), (27.778511, -41.573483, 0), (27.244755, -41.573483, 5.4193187), (25.663998, -41.573483, 10.630376), (23.096989, -41.573483, 15.432914), (19.642374, -41.573483, 19.642374), (15.432914, -41.573483, 23.096989), (10.630376, -41.573483, 25.663998), (5.4193187, -41.573483, 27.244755), (1.7009433e-15, -41.573483, 27.778511), (-5.4193187, -41.573483, 27.244755), (-10.630376, -41.573483, 25.663998), (-15.432914, -41.573483, 23.096989), (-19.642374, -41.573483, 19.642374), (-23.096989, -41.573483, 15.432914), (-25.663998, -41.573483, 10.630376), (-27.244755, -41.573483, 5.4193187), (-27.778511, -41.573483, 3.4018865e-15), (-27.244755, -41.573483, -5.4193187), (-25.663998, -41.573483, -10.630376), (-23.096989, -41.573483, -15.432914), (-19.642374, -41.573483, -19.642374), (-15.432914, -41.573483, -23.096989), (-10.630376, -41.573483, -25.663998), (-5.4193187, -41.573483, -27.244755), (-5.1028297e-15, -41.573483, -27.778511), (5.4193187, -41.573483, -27.244755), (10.630376, -41.573483, -25.663998), (15.432914, -41.573483, -23.096989), (19.642374, -41.573483, -19.642374), (23.096989, -41.573483, -15.432914), (25.663998, -41.573483, -10.630376), (27.244755, -41.573483, -5.4193187), (35.35534, -35.35534, 0), (34.675995, -35.35534, 6.8974843), (32.664074, -35.35534, 13.529902), (29.39689, -35.35534, 19.642374), (25, -35.35534, 25), (19.642374, -35.35534, 29.39689), (13.529902, -35.35534, 32.664074), (6.8974843, -35.35534, 34.675995), (2.1648902e-15, -35.35534, 35.35534), (-6.8974843, -35.35534, 34.675995), (-13.529902, -35.35534, 32.664074), (-19.642374, -35.35534, 29.39689), (-25, -35.35534, 25), (-29.39689, -35.35534, 19.642374), (-32.664074, -35.35534, 13.529902), (-34.675995, -35.35534, 6.8974843), (-35.35534, -35.35534, 4.3297804e-15), (-34.675995, -35.35534, -6.8974843), (-32.664074, -35.35534, -13.529902), (-29.39689, -35.35534, -19.642374), (-25, -35.35534, -25), (-19.642374, -35.35534, -29.39689), (-13.529902, -35.35534, -32.664074), (-6.8974843, -35.35534, -34.675995), (-6.4946704e-15, -35.35534, -35.35534), (6.8974843, -35.35534, -34.675995), (13.529902, -35.35534, -32.664074), (19.642374, -35.35534, -29.39689), (25, -35.35534, -25), (29.39689, -35.35534, -19.642374), (32.664074, -35.35534, -13.529902), (34.675995, -35.35534, -6.8974843), (41.573483, -27.778511, 0), (40.77466, -27.778511, 8.110583), (38.408886, -27.778511, 15.909482), (34.567085, -27.778511, 23.096989), (29.39689, -27.778511, 29.39689), (23.096989, -27.778511, 34.567085), (15.909482, -27.778511, 38.408886), (8.110583, -27.778511, 40.77466), (2.5456415e-15, -27.778511, 41.573483), (-8.110583, -27.778511, 40.77466), (-15.909482, -27.778511, 38.408886), (-23.096989, -27.778511, 34.567085), (-29.39689, -27.778511, 29.39689), (-34.567085, -27.778511, 23.096989), (-38.408886, -27.778511, 15.909482), (-40.77466, -27.778511, 8.110583), (-41.573483, -27.778511, 5.091283e-15), (-40.77466, -27.778511, -8.110583), (-38.408886, -27.778511, -15.909482), (-34.567085, -27.778511, -23.096989), (-29.39689, -27.778511, -29.39689), (-23.096989, -27.778511, -34.567085), (-15.909482, -27.778511, -38.408886), (-8.110583, -27.778511, -40.77466), (-7.6369244e-15, -27.778511, -41.573483), (8.110583, -27.778511, -40.77466), (15.909482, -27.778511, -38.408886), (23.096989, -27.778511, -34.567085), (29.39689, -27.778511, -29.39689), (34.567085, -27.778511, -23.096989), (38.408886, -27.778511, -15.909482), (40.77466, -27.778511, -8.110583), (46.193977, -19.134172, 0), (45.306374, -19.134172, 9.011998), (42.67767, -19.134172, 17.67767), (38.408886, -19.134172, 25.663998), (32.664074, -19.134172, 32.664074), (25.663998, -19.134172, 38.408886), (17.67767, -19.134172, 42.67767), (9.011998, -19.134172, 45.306374), (2.8285653e-15, -19.134172, 46.193977), (-9.011998, -19.134172, 45.306374), (-17.67767, -19.134172, 42.67767), (-25.663998, -19.134172, 38.408886), (-32.664074, -19.134172, 32.664074), (-38.408886, -19.134172, 25.663998), (-42.67767, -19.134172, 17.67767), (-45.306374, -19.134172, 9.011998), (-46.193977, -19.134172, 5.6571306e-15), (-45.306374, -19.134172, -9.011998), (-42.67767, -19.134172, -17.67767), (-38.408886, -19.134172, -25.663998), (-32.664074, -19.134172, -32.664074), (-25.663998, -19.134172, -38.408886), (-17.67767, -19.134172, -42.67767), (-9.011998, -19.134172, -45.306374), (-8.4856955e-15, -19.134172, -46.193977), (9.011998, -19.134172, -45.306374), (17.67767, -19.134172, -42.67767), (25.663998, -19.134172, -38.408886), (32.664074, -19.134172, -32.664074), (38.408886, -19.134172, -25.663998), (42.67767, -19.134172, -17.67767), (45.306374, -19.134172, -9.011998), (49.039265, -9.754516, 0), (48.09699, -9.754516, 9.567086), (45.306374, -9.754516, 18.766514), (40.77466, -9.754516, 27.244755), (34.675995, -9.754516, 34.675995), (27.244755, -9.754516, 40.77466), (18.766514, -9.754516, 45.306374), (9.567086, -9.754516, 48.09699), (3.002789e-15, -9.754516, 49.039265), (-9.567086, -9.754516, 48.09699), (-18.766514, -9.754516, 45.306374), (-27.244755, -9.754516, 40.77466), (-34.675995, -9.754516, 34.675995), (-40.77466, -9.754516, 27.244755), (-45.306374, -9.754516, 18.766514), (-48.09699, -9.754516, 9.567086), (-49.039265, -9.754516, 6.005578e-15), (-48.09699, -9.754516, -9.567086), (-45.306374, -9.754516, -18.766514), (-40.77466, -9.754516, -27.244755), (-34.675995, -9.754516, -34.675995), (-27.244755, -9.754516, -40.77466), (-18.766514, -9.754516, -45.306374), (-9.567086, -9.754516, -48.09699), (-9.0083665e-15, -9.754516, -49.039265), (9.567086, -9.754516, -48.09699), (18.766514, -9.754516, -45.306374), (27.244755, -9.754516, -40.77466), (34.675995, -9.754516, -34.675995), (40.77466, -9.754516, -27.244755), (45.306374, -9.754516, -18.766514), (48.09699, -9.754516, -9.567086), (50, 0, 0), (49.039265, 0, 9.754516), (46.193977, 0, 19.134172), (41.573483, 0, 27.778511), (35.35534, 0, 35.35534), (27.778511, 0, 41.573483), (19.134172, 0, 46.193977), (9.754516, 0, 49.039265), (3.0616169e-15, 0, 50), (-9.754516, 0, 49.039265), (-19.134172, 0, 46.193977), (-27.778511, 0, 41.573483), (-35.35534, 0, 35.35534), (-41.573483, 0, 27.778511), (-46.193977, 0, 19.134172), (-49.039265, 0, 9.754516), (-50, 0, 6.1232338e-15), (-49.039265, 0, -9.754516), (-46.193977, 0, -19.134172), (-41.573483, 0, -27.778511), (-35.35534, 0, -35.35534), (-27.778511, 0, -41.573483), (-19.134172, 0, -46.193977), (-9.754516, 0, -49.039265), (-9.184851e-15, 0, -50), (9.754516, 0, -49.039265), (19.134172, 0, -46.193977), (27.778511, 0, -41.573483), (35.35534, 0, -35.35534), (41.573483, 0, -27.778511), (46.193977, 0, -19.134172), (49.039265, 0, -9.754516), (49.039265, 9.754516, 0), (48.09699, 9.754516, 9.567086), (45.306374, 9.754516, 18.766514), (40.77466, 9.754516, 27.244755), (34.675995, 9.754516, 34.675995), (27.244755, 9.754516, 40.77466), (18.766514, 9.754516, 45.306374), (9.567086, 9.754516, 48.09699), (3.002789e-15, 9.754516, 49.039265), (-9.567086, 9.754516, 48.09699), (-18.766514, 9.754516, 45.306374), (-27.244755, 9.754516, 40.77466), (-34.675995, 9.754516, 34.675995), (-40.77466, 9.754516, 27.244755), (-45.306374, 9.754516, 18.766514), (-48.09699, 9.754516, 9.567086), (-49.039265, 9.754516, 6.005578e-15), (-48.09699, 9.754516, -9.567086), (-45.306374, 9.754516, -18.766514), (-40.77466, 9.754516, -27.244755), (-34.675995, 9.754516, -34.675995), (-27.244755, 9.754516, -40.77466), (-18.766514, 9.754516, -45.306374), (-9.567086, 9.754516, -48.09699), (-9.0083665e-15, 9.754516, -49.039265), (9.567086, 9.754516, -48.09699), (18.766514, 9.754516, -45.306374), (27.244755, 9.754516, -40.77466), (34.675995, 9.754516, -34.675995), (40.77466, 9.754516, -27.244755), (45.306374, 9.754516, -18.766514), (48.09699, 9.754516, -9.567086), (46.193977, 19.134172, 0), (45.306374, 19.134172, 9.011998), (42.67767, 19.134172, 17.67767), (38.408886, 19.134172, 25.663998), (32.664074, 19.134172, 32.664074), (25.663998, 19.134172, 38.408886), (17.67767, 19.134172, 42.67767), (9.011998, 19.134172, 45.306374), (2.8285653e-15, 19.134172, 46.193977), (-9.011998, 19.134172, 45.306374), (-17.67767, 19.134172, 42.67767), (-25.663998, 19.134172, 38.408886), (-32.664074, 19.134172, 32.664074), (-38.408886, 19.134172, 25.663998), (-42.67767, 19.134172, 17.67767), (-45.306374, 19.134172, 9.011998), (-46.193977, 19.134172, 5.6571306e-15), (-45.306374, 19.134172, -9.011998), (-42.67767, 19.134172, -17.67767), (-38.408886, 19.134172, -25.663998), (-32.664074, 19.134172, -32.664074), (-25.663998, 19.134172, -38.408886), (-17.67767, 19.134172, -42.67767), (-9.011998, 19.134172, -45.306374), (-8.4856955e-15, 19.134172, -46.193977), (9.011998, 19.134172, -45.306374), (17.67767, 19.134172, -42.67767), (25.663998, 19.134172, -38.408886), (32.664074, 19.134172, -32.664074), (38.408886, 19.134172, -25.663998), (42.67767, 19.134172, -17.67767), (45.306374, 19.134172, -9.011998), (41.573483, 27.778511, 0), (40.77466, 27.778511, 8.110583), (38.408886, 27.778511, 15.909482), (34.567085, 27.778511, 23.096989), (29.39689, 27.778511, 29.39689), (23.096989, 27.778511, 34.567085), (15.909482, 27.778511, 38.408886), (8.110583, 27.778511, 40.77466), (2.5456415e-15, 27.778511, 41.573483), (-8.110583, 27.778511, 40.77466), (-15.909482, 27.778511, 38.408886), (-23.096989, 27.778511, 34.567085), (-29.39689, 27.778511, 29.39689), (-34.567085, 27.778511, 23.096989), (-38.408886, 27.778511, 15.909482), (-40.77466, 27.778511, 8.110583), (-41.573483, 27.778511, 5.091283e-15), (-40.77466, 27.778511, -8.110583), (-38.408886, 27.778511, -15.909482), (-34.567085, 27.778511, -23.096989), (-29.39689, 27.778511, -29.39689), (-23.096989, 27.778511, -34.567085), (-15.909482, 27.778511, -38.408886), (-8.110583, 27.778511, -40.77466), (-7.6369244e-15, 27.778511, -41.573483), (8.110583, 27.778511, -40.77466), (15.909482, 27.778511, -38.408886), (23.096989, 27.778511, -34.567085), (29.39689, 27.778511, -29.39689), (34.567085, 27.778511, -23.096989), (38.408886, 27.778511, -15.909482), (40.77466, 27.778511, -8.110583), (35.35534, 35.35534, 0), (34.675995, 35.35534, 6.8974843), (32.664074, 35.35534, 13.529902), (29.39689, 35.35534, 19.642374), (25, 35.35534, 25), (19.642374, 35.35534, 29.39689), (13.529902, 35.35534, 32.664074), (6.8974843, 35.35534, 34.675995), (2.1648902e-15, 35.35534, 35.35534), (-6.8974843, 35.35534, 34.675995), (-13.529902, 35.35534, 32.664074), (-19.642374, 35.35534, 29.39689), (-25, 35.35534, 25), (-29.39689, 35.35534, 19.642374), (-32.664074, 35.35534, 13.529902), (-34.675995, 35.35534, 6.8974843), (-35.35534, 35.35534, 4.3297804e-15), (-34.675995, 35.35534, -6.8974843), (-32.664074, 35.35534, -13.529902), (-29.39689, 35.35534, -19.642374), (-25, 35.35534, -25), (-19.642374, 35.35534, -29.39689), (-13.529902, 35.35534, -32.664074), (-6.8974843, 35.35534, -34.675995), (-6.4946704e-15, 35.35534, -35.35534), (6.8974843, 35.35534, -34.675995), (13.529902, 35.35534, -32.664074), (19.642374, 35.35534, -29.39689), (25, 35.35534, -25), (29.39689, 35.35534, -19.642374), (32.664074, 35.35534, -13.529902), (34.675995, 35.35534, -6.8974843), (27.778511, 41.573483, 0), (27.244755, 41.573483, 5.4193187), (25.663998, 41.573483, 10.630376), (23.096989, 41.573483, 15.432914), (19.642374, 41.573483, 19.642374), (15.432914, 41.573483, 23.096989), (10.630376, 41.573483, 25.663998), (5.4193187, 41.573483, 27.244755), (1.7009433e-15, 41.573483, 27.778511), (-5.4193187, 41.573483, 27.244755), (-10.630376, 41.573483, 25.663998), (-15.432914, 41.573483, 23.096989), (-19.642374, 41.573483, 19.642374), (-23.096989, 41.573483, 15.432914), (-25.663998, 41.573483, 10.630376), (-27.244755, 41.573483, 5.4193187), (-27.778511, 41.573483, 3.4018865e-15), (-27.244755, 41.573483, -5.4193187), (-25.663998, 41.573483, -10.630376), (-23.096989, 41.573483, -15.432914), (-19.642374, 41.573483, -19.642374), (-15.432914, 41.573483, -23.096989), (-10.630376, 41.573483, -25.663998), (-5.4193187, 41.573483, -27.244755), (-5.1028297e-15, 41.573483, -27.778511), (5.4193187, 41.573483, -27.244755), (10.630376, 41.573483, -25.663998), (15.432914, 41.573483, -23.096989), (19.642374, 41.573483, -19.642374), (23.096989, 41.573483, -15.432914), (25.663998, 41.573483, -10.630376), (27.244755, 41.573483, -5.4193187), (19.134172, 46.193977, 0), (18.766514, 46.193977, 3.7328918), (17.67767, 46.193977, 7.3223305), (15.909482, 46.193977, 10.630376), (13.529902, 46.193977, 13.529902), (10.630376, 46.193977, 15.909482), (7.3223305, 46.193977, 17.67767), (3.7328918, 46.193977, 18.766514), (1.1716301e-15, 46.193977, 19.134172), (-3.7328918, 46.193977, 18.766514), (-7.3223305, 46.193977, 17.67767), (-10.630376, 46.193977, 15.909482), (-13.529902, 46.193977, 13.529902), (-15.909482, 46.193977, 10.630376), (-17.67767, 46.193977, 7.3223305), (-18.766514, 46.193977, 3.7328918), (-19.134172, 46.193977, 2.3432601e-15), (-18.766514, 46.193977, -3.7328918), (-17.67767, 46.193977, -7.3223305), (-15.909482, 46.193977, -10.630376), (-13.529902, 46.193977, -13.529902), (-10.630376, 46.193977, -15.909482), (-7.3223305, 46.193977, -17.67767), (-3.7328918, 46.193977, -18.766514), (-3.5148903e-15, 46.193977, -19.134172), (3.7328918, 46.193977, -18.766514), (7.3223305, 46.193977, -17.67767), (10.630376, 46.193977, -15.909482), (13.529902, 46.193977, -13.529902), (15.909482, 46.193977, -10.630376), (17.67767, 46.193977, -7.3223305), (18.766514, 46.193977, -3.7328918), (9.754516, 49.039265, 0), (9.567086, 49.039265, 1.9030117), (9.011998, 49.039265, 3.7328918), (8.110583, 49.039265, 5.4193187), (6.8974843, 49.039265, 6.8974843), (5.4193187, 49.039265, 8.110583), (3.7328918, 49.039265, 9.011998), (1.9030117, 49.039265, 9.567086), (5.9729185e-16, 49.039265, 9.754516), (-1.9030117, 49.039265, 9.567086), (-3.7328918, 49.039265, 9.011998), (-5.4193187, 49.039265, 8.110583), (-6.8974843, 49.039265, 6.8974843), (-8.110583, 49.039265, 5.4193187), (-9.011998, 49.039265, 3.7328918), (-9.567086, 49.039265, 1.9030117), (-9.754516, 49.039265, 1.1945837e-15), (-9.567086, 49.039265, -1.9030117), (-9.011998, 49.039265, -3.7328918), (-8.110583, 49.039265, -5.4193187), (-6.8974843, 49.039265, -6.8974843), (-5.4193187, 49.039265, -8.110583), (-3.7328918, 49.039265, -9.011998), (-1.9030117, 49.039265, -9.567086), (-1.7918755e-15, 49.039265, -9.754516), (1.9030117, 49.039265, -9.567086), (3.7328918, 49.039265, -9.011998), (5.4193187, 49.039265, -8.110583), (6.8974843, 49.039265, -6.8974843), (8.110583, 49.039265, -5.4193187), (9.011998, 49.039265, -3.7328918), (9.567086, 49.039265, -1.9030117), (0, 50, 0)] float2[] primvars:st = [(0.5, 0), (1, 0.0625), (0.96875, 0.0625), (0.5, 0), (0.96875, 0.0625), (0.9375, 0.0625), (0.5, 0), (0.9375, 0.0625), (0.90625, 0.0625), (0.5, 0), (0.90625, 0.0625), (0.875, 0.0625), (0.5, 0), (0.875, 0.0625), (0.84375, 0.0625), (0.5, 0), (0.84375, 0.0625), (0.8125, 0.0625), (0.5, 0), (0.8125, 0.0625), (0.78125, 0.0625), (0.5, 0), (0.78125, 0.0625), (0.75, 0.0625), (0.5, 0), (0.75, 0.0625), (0.71875, 0.0625), (0.5, 0), (0.71875, 0.0625), (0.6875, 0.0625), (0.5, 0), (0.6875, 0.0625), (0.65625, 0.0625), (0.5, 0), (0.65625, 0.0625), (0.625, 0.0625), (0.5, 0), (0.625, 0.0625), (0.59375, 0.0625), (0.5, 0), (0.59375, 0.0625), (0.5625, 0.0625), (0.5, 0), (0.5625, 0.0625), (0.53125, 0.0625), (0.5, 0), (0.53125, 0.0625), (0.5, 0.0625), (0.5, 0), (0.5, 0.0625), (0.46875, 0.0625), (0.5, 0), (0.46875, 0.0625), (0.4375, 0.0625), (0.5, 0), (0.4375, 0.0625), (0.40625, 0.0625), (0.5, 0), (0.40625, 0.0625), (0.375, 0.0625), (0.5, 0), (0.375, 0.0625), (0.34375, 0.0625), (0.5, 0), (0.34375, 0.0625), (0.3125, 0.0625), (0.5, 0), (0.3125, 0.0625), (0.28125, 0.0625), (0.5, 0), (0.28125, 0.0625), (0.25, 0.0625), (0.5, 0), (0.25, 0.0625), (0.21875, 0.0625), (0.5, 0), (0.21875, 0.0625), (0.1875, 0.0625), (0.5, 0), (0.1875, 0.0625), (0.15625, 0.0625), (0.5, 0), (0.15625, 0.0625), (0.125, 0.0625), (0.5, 0), (0.125, 0.0625), (0.09375, 0.0625), (0.5, 0), (0.09375, 0.0625), (0.0625, 0.0625), (0.5, 0), (0.0625, 0.0625), (0.03125, 0.0625), (0.5, 0), (0.03125, 0.0625), (0, 0.0625), (1, 0.0625), (1, 0.125), (0.96875, 0.125), (0.96875, 0.0625), (0.96875, 0.0625), (0.96875, 0.125), (0.9375, 0.125), (0.9375, 0.0625), (0.9375, 0.0625), (0.9375, 0.125), (0.90625, 0.125), (0.90625, 0.0625), (0.90625, 0.0625), (0.90625, 0.125), (0.875, 0.125), (0.875, 0.0625), (0.875, 0.0625), (0.875, 0.125), (0.84375, 0.125), (0.84375, 0.0625), (0.84375, 0.0625), (0.84375, 0.125), (0.8125, 0.125), (0.8125, 0.0625), (0.8125, 0.0625), (0.8125, 0.125), (0.78125, 0.125), (0.78125, 0.0625), (0.78125, 0.0625), (0.78125, 0.125), (0.75, 0.125), (0.75, 0.0625), (0.75, 0.0625), (0.75, 0.125), (0.71875, 0.125), (0.71875, 0.0625), (0.71875, 0.0625), (0.71875, 0.125), (0.6875, 0.125), (0.6875, 0.0625), (0.6875, 0.0625), (0.6875, 0.125), (0.65625, 0.125), (0.65625, 0.0625), (0.65625, 0.0625), (0.65625, 0.125), (0.625, 0.125), (0.625, 0.0625), (0.625, 0.0625), (0.625, 0.125), (0.59375, 0.125), (0.59375, 0.0625), (0.59375, 0.0625), (0.59375, 0.125), (0.5625, 0.125), (0.5625, 0.0625), (0.5625, 0.0625), (0.5625, 0.125), (0.53125, 0.125), (0.53125, 0.0625), (0.53125, 0.0625), (0.53125, 0.125), (0.5, 0.125), (0.5, 0.0625), (0.5, 0.0625), (0.5, 0.125), (0.46875, 0.125), (0.46875, 0.0625), (0.46875, 0.0625), (0.46875, 0.125), (0.4375, 0.125), (0.4375, 0.0625), (0.4375, 0.0625), (0.4375, 0.125), (0.40625, 0.125), (0.40625, 0.0625), (0.40625, 0.0625), (0.40625, 0.125), (0.375, 0.125), (0.375, 0.0625), (0.375, 0.0625), (0.375, 0.125), (0.34375, 0.125), (0.34375, 0.0625), (0.34375, 0.0625), (0.34375, 0.125), (0.3125, 0.125), (0.3125, 0.0625), (0.3125, 0.0625), (0.3125, 0.125), (0.28125, 0.125), (0.28125, 0.0625), (0.28125, 0.0625), (0.28125, 0.125), (0.25, 0.125), (0.25, 0.0625), (0.25, 0.0625), (0.25, 0.125), (0.21875, 0.125), (0.21875, 0.0625), (0.21875, 0.0625), (0.21875, 0.125), (0.1875, 0.125), (0.1875, 0.0625), (0.1875, 0.0625), (0.1875, 0.125), (0.15625, 0.125), (0.15625, 0.0625), (0.15625, 0.0625), (0.15625, 0.125), (0.125, 0.125), (0.125, 0.0625), (0.125, 0.0625), (0.125, 0.125), (0.09375, 0.125), (0.09375, 0.0625), (0.09375, 0.0625), (0.09375, 0.125), (0.0625, 0.125), (0.0625, 0.0625), (0.0625, 0.0625), (0.0625, 0.125), (0.03125, 0.125), (0.03125, 0.0625), (0.03125, 0.0625), (0.03125, 0.125), (0, 0.125), (0, 0.0625), (1, 0.125), (1, 0.1875), (0.96875, 0.1875), (0.96875, 0.125), (0.96875, 0.125), (0.96875, 0.1875), (0.9375, 0.1875), (0.9375, 0.125), (0.9375, 0.125), (0.9375, 0.1875), (0.90625, 0.1875), (0.90625, 0.125), (0.90625, 0.125), (0.90625, 0.1875), (0.875, 0.1875), (0.875, 0.125), (0.875, 0.125), (0.875, 0.1875), (0.84375, 0.1875), (0.84375, 0.125), (0.84375, 0.125), (0.84375, 0.1875), (0.8125, 0.1875), (0.8125, 0.125), (0.8125, 0.125), (0.8125, 0.1875), (0.78125, 0.1875), (0.78125, 0.125), (0.78125, 0.125), (0.78125, 0.1875), (0.75, 0.1875), (0.75, 0.125), (0.75, 0.125), (0.75, 0.1875), (0.71875, 0.1875), (0.71875, 0.125), (0.71875, 0.125), (0.71875, 0.1875), (0.6875, 0.1875), (0.6875, 0.125), (0.6875, 0.125), (0.6875, 0.1875), (0.65625, 0.1875), (0.65625, 0.125), (0.65625, 0.125), (0.65625, 0.1875), (0.625, 0.1875), (0.625, 0.125), (0.625, 0.125), (0.625, 0.1875), (0.59375, 0.1875), (0.59375, 0.125), (0.59375, 0.125), (0.59375, 0.1875), (0.5625, 0.1875), (0.5625, 0.125), (0.5625, 0.125), (0.5625, 0.1875), (0.53125, 0.1875), (0.53125, 0.125), (0.53125, 0.125), (0.53125, 0.1875), (0.5, 0.1875), (0.5, 0.125), (0.5, 0.125), (0.5, 0.1875), (0.46875, 0.1875), (0.46875, 0.125), (0.46875, 0.125), (0.46875, 0.1875), (0.4375, 0.1875), (0.4375, 0.125), (0.4375, 0.125), (0.4375, 0.1875), (0.40625, 0.1875), (0.40625, 0.125), (0.40625, 0.125), (0.40625, 0.1875), (0.375, 0.1875), (0.375, 0.125), (0.375, 0.125), (0.375, 0.1875), (0.34375, 0.1875), (0.34375, 0.125), (0.34375, 0.125), (0.34375, 0.1875), (0.3125, 0.1875), (0.3125, 0.125), (0.3125, 0.125), (0.3125, 0.1875), (0.28125, 0.1875), (0.28125, 0.125), (0.28125, 0.125), (0.28125, 0.1875), (0.25, 0.1875), (0.25, 0.125), (0.25, 0.125), (0.25, 0.1875), (0.21875, 0.1875), (0.21875, 0.125), (0.21875, 0.125), (0.21875, 0.1875), (0.1875, 0.1875), (0.1875, 0.125), (0.1875, 0.125), (0.1875, 0.1875), (0.15625, 0.1875), (0.15625, 0.125), (0.15625, 0.125), (0.15625, 0.1875), (0.125, 0.1875), (0.125, 0.125), (0.125, 0.125), (0.125, 0.1875), (0.09375, 0.1875), (0.09375, 0.125), (0.09375, 0.125), (0.09375, 0.1875), (0.0625, 0.1875), (0.0625, 0.125), (0.0625, 0.125), (0.0625, 0.1875), (0.03125, 0.1875), (0.03125, 0.125), (0.03125, 0.125), (0.03125, 0.1875), (0, 0.1875), (0, 0.125), (1, 0.1875), (1, 0.25), (0.96875, 0.25), (0.96875, 0.1875), (0.96875, 0.1875), (0.96875, 0.25), (0.9375, 0.25), (0.9375, 0.1875), (0.9375, 0.1875), (0.9375, 0.25), (0.90625, 0.25), (0.90625, 0.1875), (0.90625, 0.1875), (0.90625, 0.25), (0.875, 0.25), (0.875, 0.1875), (0.875, 0.1875), (0.875, 0.25), (0.84375, 0.25), (0.84375, 0.1875), (0.84375, 0.1875), (0.84375, 0.25), (0.8125, 0.25), (0.8125, 0.1875), (0.8125, 0.1875), (0.8125, 0.25), (0.78125, 0.25), (0.78125, 0.1875), (0.78125, 0.1875), (0.78125, 0.25), (0.75, 0.25), (0.75, 0.1875), (0.75, 0.1875), (0.75, 0.25), (0.71875, 0.25), (0.71875, 0.1875), (0.71875, 0.1875), (0.71875, 0.25), (0.6875, 0.25), (0.6875, 0.1875), (0.6875, 0.1875), (0.6875, 0.25), (0.65625, 0.25), (0.65625, 0.1875), (0.65625, 0.1875), (0.65625, 0.25), (0.625, 0.25), (0.625, 0.1875), (0.625, 0.1875), (0.625, 0.25), (0.59375, 0.25), (0.59375, 0.1875), (0.59375, 0.1875), (0.59375, 0.25), (0.5625, 0.25), (0.5625, 0.1875), (0.5625, 0.1875), (0.5625, 0.25), (0.53125, 0.25), (0.53125, 0.1875), (0.53125, 0.1875), (0.53125, 0.25), (0.5, 0.25), (0.5, 0.1875), (0.5, 0.1875), (0.5, 0.25), (0.46875, 0.25), (0.46875, 0.1875), (0.46875, 0.1875), (0.46875, 0.25), (0.4375, 0.25), (0.4375, 0.1875), (0.4375, 0.1875), (0.4375, 0.25), (0.40625, 0.25), (0.40625, 0.1875), (0.40625, 0.1875), (0.40625, 0.25), (0.375, 0.25), (0.375, 0.1875), (0.375, 0.1875), (0.375, 0.25), (0.34375, 0.25), (0.34375, 0.1875), (0.34375, 0.1875), (0.34375, 0.25), (0.3125, 0.25), (0.3125, 0.1875), (0.3125, 0.1875), (0.3125, 0.25), (0.28125, 0.25), (0.28125, 0.1875), (0.28125, 0.1875), (0.28125, 0.25), (0.25, 0.25), (0.25, 0.1875), (0.25, 0.1875), (0.25, 0.25), (0.21875, 0.25), (0.21875, 0.1875), (0.21875, 0.1875), (0.21875, 0.25), (0.1875, 0.25), (0.1875, 0.1875), (0.1875, 0.1875), (0.1875, 0.25), (0.15625, 0.25), (0.15625, 0.1875), (0.15625, 0.1875), (0.15625, 0.25), (0.125, 0.25), (0.125, 0.1875), (0.125, 0.1875), (0.125, 0.25), (0.09375, 0.25), (0.09375, 0.1875), (0.09375, 0.1875), (0.09375, 0.25), (0.0625, 0.25), (0.0625, 0.1875), (0.0625, 0.1875), (0.0625, 0.25), (0.03125, 0.25), (0.03125, 0.1875), (0.03125, 0.1875), (0.03125, 0.25), (0, 0.25), (0, 0.1875), (1, 0.25), (1, 0.3125), (0.96875, 0.3125), (0.96875, 0.25), (0.96875, 0.25), (0.96875, 0.3125), (0.9375, 0.3125), (0.9375, 0.25), (0.9375, 0.25), (0.9375, 0.3125), (0.90625, 0.3125), (0.90625, 0.25), (0.90625, 0.25), (0.90625, 0.3125), (0.875, 0.3125), (0.875, 0.25), (0.875, 0.25), (0.875, 0.3125), (0.84375, 0.3125), (0.84375, 0.25), (0.84375, 0.25), (0.84375, 0.3125), (0.8125, 0.3125), (0.8125, 0.25), (0.8125, 0.25), (0.8125, 0.3125), (0.78125, 0.3125), (0.78125, 0.25), (0.78125, 0.25), (0.78125, 0.3125), (0.75, 0.3125), (0.75, 0.25), (0.75, 0.25), (0.75, 0.3125), (0.71875, 0.3125), (0.71875, 0.25), (0.71875, 0.25), (0.71875, 0.3125), (0.6875, 0.3125), (0.6875, 0.25), (0.6875, 0.25), (0.6875, 0.3125), (0.65625, 0.3125), (0.65625, 0.25), (0.65625, 0.25), (0.65625, 0.3125), (0.625, 0.3125), (0.625, 0.25), (0.625, 0.25), (0.625, 0.3125), (0.59375, 0.3125), (0.59375, 0.25), (0.59375, 0.25), (0.59375, 0.3125), (0.5625, 0.3125), (0.5625, 0.25), (0.5625, 0.25), (0.5625, 0.3125), (0.53125, 0.3125), (0.53125, 0.25), (0.53125, 0.25), (0.53125, 0.3125), (0.5, 0.3125), (0.5, 0.25), (0.5, 0.25), (0.5, 0.3125), (0.46875, 0.3125), (0.46875, 0.25), (0.46875, 0.25), (0.46875, 0.3125), (0.4375, 0.3125), (0.4375, 0.25), (0.4375, 0.25), (0.4375, 0.3125), (0.40625, 0.3125), (0.40625, 0.25), (0.40625, 0.25), (0.40625, 0.3125), (0.375, 0.3125), (0.375, 0.25), (0.375, 0.25), (0.375, 0.3125), (0.34375, 0.3125), (0.34375, 0.25), (0.34375, 0.25), (0.34375, 0.3125), (0.3125, 0.3125), (0.3125, 0.25), (0.3125, 0.25), (0.3125, 0.3125), (0.28125, 0.3125), (0.28125, 0.25), (0.28125, 0.25), (0.28125, 0.3125), (0.25, 0.3125), (0.25, 0.25), (0.25, 0.25), (0.25, 0.3125), (0.21875, 0.3125), (0.21875, 0.25), (0.21875, 0.25), (0.21875, 0.3125), (0.1875, 0.3125), (0.1875, 0.25), (0.1875, 0.25), (0.1875, 0.3125), (0.15625, 0.3125), (0.15625, 0.25), (0.15625, 0.25), (0.15625, 0.3125), (0.125, 0.3125), (0.125, 0.25), (0.125, 0.25), (0.125, 0.3125), (0.09375, 0.3125), (0.09375, 0.25), (0.09375, 0.25), (0.09375, 0.3125), (0.0625, 0.3125), (0.0625, 0.25), (0.0625, 0.25), (0.0625, 0.3125), (0.03125, 0.3125), (0.03125, 0.25), (0.03125, 0.25), (0.03125, 0.3125), (0, 0.3125), (0, 0.25), (1, 0.3125), (1, 0.375), (0.96875, 0.375), (0.96875, 0.3125), (0.96875, 0.3125), (0.96875, 0.375), (0.9375, 0.375), (0.9375, 0.3125), (0.9375, 0.3125), (0.9375, 0.375), (0.90625, 0.375), (0.90625, 0.3125), (0.90625, 0.3125), (0.90625, 0.375), (0.875, 0.375), (0.875, 0.3125), (0.875, 0.3125), (0.875, 0.375), (0.84375, 0.375), (0.84375, 0.3125), (0.84375, 0.3125), (0.84375, 0.375), (0.8125, 0.375), (0.8125, 0.3125), (0.8125, 0.3125), (0.8125, 0.375), (0.78125, 0.375), (0.78125, 0.3125), (0.78125, 0.3125), (0.78125, 0.375), (0.75, 0.375), (0.75, 0.3125), (0.75, 0.3125), (0.75, 0.375), (0.71875, 0.375), (0.71875, 0.3125), (0.71875, 0.3125), (0.71875, 0.375), (0.6875, 0.375), (0.6875, 0.3125), (0.6875, 0.3125), (0.6875, 0.375), (0.65625, 0.375), (0.65625, 0.3125), (0.65625, 0.3125), (0.65625, 0.375), (0.625, 0.375), (0.625, 0.3125), (0.625, 0.3125), (0.625, 0.375), (0.59375, 0.375), (0.59375, 0.3125), (0.59375, 0.3125), (0.59375, 0.375), (0.5625, 0.375), (0.5625, 0.3125), (0.5625, 0.3125), (0.5625, 0.375), (0.53125, 0.375), (0.53125, 0.3125), (0.53125, 0.3125), (0.53125, 0.375), (0.5, 0.375), (0.5, 0.3125), (0.5, 0.3125), (0.5, 0.375), (0.46875, 0.375), (0.46875, 0.3125), (0.46875, 0.3125), (0.46875, 0.375), (0.4375, 0.375), (0.4375, 0.3125), (0.4375, 0.3125), (0.4375, 0.375), (0.40625, 0.375), (0.40625, 0.3125), (0.40625, 0.3125), (0.40625, 0.375), (0.375, 0.375), (0.375, 0.3125), (0.375, 0.3125), (0.375, 0.375), (0.34375, 0.375), (0.34375, 0.3125), (0.34375, 0.3125), (0.34375, 0.375), (0.3125, 0.375), (0.3125, 0.3125), (0.3125, 0.3125), (0.3125, 0.375), (0.28125, 0.375), (0.28125, 0.3125), (0.28125, 0.3125), (0.28125, 0.375), (0.25, 0.375), (0.25, 0.3125), (0.25, 0.3125), (0.25, 0.375), (0.21875, 0.375), (0.21875, 0.3125), (0.21875, 0.3125), (0.21875, 0.375), (0.1875, 0.375), (0.1875, 0.3125), (0.1875, 0.3125), (0.1875, 0.375), (0.15625, 0.375), (0.15625, 0.3125), (0.15625, 0.3125), (0.15625, 0.375), (0.125, 0.375), (0.125, 0.3125), (0.125, 0.3125), (0.125, 0.375), (0.09375, 0.375), (0.09375, 0.3125), (0.09375, 0.3125), (0.09375, 0.375), (0.0625, 0.375), (0.0625, 0.3125), (0.0625, 0.3125), (0.0625, 0.375), (0.03125, 0.375), (0.03125, 0.3125), (0.03125, 0.3125), (0.03125, 0.375), (0, 0.375), (0, 0.3125), (1, 0.375), (1, 0.4375), (0.96875, 0.4375), (0.96875, 0.375), (0.96875, 0.375), (0.96875, 0.4375), (0.9375, 0.4375), (0.9375, 0.375), (0.9375, 0.375), (0.9375, 0.4375), (0.90625, 0.4375), (0.90625, 0.375), (0.90625, 0.375), (0.90625, 0.4375), (0.875, 0.4375), (0.875, 0.375), (0.875, 0.375), (0.875, 0.4375), (0.84375, 0.4375), (0.84375, 0.375), (0.84375, 0.375), (0.84375, 0.4375), (0.8125, 0.4375), (0.8125, 0.375), (0.8125, 0.375), (0.8125, 0.4375), (0.78125, 0.4375), (0.78125, 0.375), (0.78125, 0.375), (0.78125, 0.4375), (0.75, 0.4375), (0.75, 0.375), (0.75, 0.375), (0.75, 0.4375), (0.71875, 0.4375), (0.71875, 0.375), (0.71875, 0.375), (0.71875, 0.4375), (0.6875, 0.4375), (0.6875, 0.375), (0.6875, 0.375), (0.6875, 0.4375), (0.65625, 0.4375), (0.65625, 0.375), (0.65625, 0.375), (0.65625, 0.4375), (0.625, 0.4375), (0.625, 0.375), (0.625, 0.375), (0.625, 0.4375), (0.59375, 0.4375), (0.59375, 0.375), (0.59375, 0.375), (0.59375, 0.4375), (0.5625, 0.4375), (0.5625, 0.375), (0.5625, 0.375), (0.5625, 0.4375), (0.53125, 0.4375), (0.53125, 0.375), (0.53125, 0.375), (0.53125, 0.4375), (0.5, 0.4375), (0.5, 0.375), (0.5, 0.375), (0.5, 0.4375), (0.46875, 0.4375), (0.46875, 0.375), (0.46875, 0.375), (0.46875, 0.4375), (0.4375, 0.4375), (0.4375, 0.375), (0.4375, 0.375), (0.4375, 0.4375), (0.40625, 0.4375), (0.40625, 0.375), (0.40625, 0.375), (0.40625, 0.4375), (0.375, 0.4375), (0.375, 0.375), (0.375, 0.375), (0.375, 0.4375), (0.34375, 0.4375), (0.34375, 0.375), (0.34375, 0.375), (0.34375, 0.4375), (0.3125, 0.4375), (0.3125, 0.375), (0.3125, 0.375), (0.3125, 0.4375), (0.28125, 0.4375), (0.28125, 0.375), (0.28125, 0.375), (0.28125, 0.4375), (0.25, 0.4375), (0.25, 0.375), (0.25, 0.375), (0.25, 0.4375), (0.21875, 0.4375), (0.21875, 0.375), (0.21875, 0.375), (0.21875, 0.4375), (0.1875, 0.4375), (0.1875, 0.375), (0.1875, 0.375), (0.1875, 0.4375), (0.15625, 0.4375), (0.15625, 0.375), (0.15625, 0.375), (0.15625, 0.4375), (0.125, 0.4375), (0.125, 0.375), (0.125, 0.375), (0.125, 0.4375), (0.09375, 0.4375), (0.09375, 0.375), (0.09375, 0.375), (0.09375, 0.4375), (0.0625, 0.4375), (0.0625, 0.375), (0.0625, 0.375), (0.0625, 0.4375), (0.03125, 0.4375), (0.03125, 0.375), (0.03125, 0.375), (0.03125, 0.4375), (0, 0.4375), (0, 0.375), (1, 0.4375), (1, 0.5), (0.96875, 0.5), (0.96875, 0.4375), (0.96875, 0.4375), (0.96875, 0.5), (0.9375, 0.5), (0.9375, 0.4375), (0.9375, 0.4375), (0.9375, 0.5), (0.90625, 0.5), (0.90625, 0.4375), (0.90625, 0.4375), (0.90625, 0.5), (0.875, 0.5), (0.875, 0.4375), (0.875, 0.4375), (0.875, 0.5), (0.84375, 0.5), (0.84375, 0.4375), (0.84375, 0.4375), (0.84375, 0.5), (0.8125, 0.5), (0.8125, 0.4375), (0.8125, 0.4375), (0.8125, 0.5), (0.78125, 0.5), (0.78125, 0.4375), (0.78125, 0.4375), (0.78125, 0.5), (0.75, 0.5), (0.75, 0.4375), (0.75, 0.4375), (0.75, 0.5), (0.71875, 0.5), (0.71875, 0.4375), (0.71875, 0.4375), (0.71875, 0.5), (0.6875, 0.5), (0.6875, 0.4375), (0.6875, 0.4375), (0.6875, 0.5), (0.65625, 0.5), (0.65625, 0.4375), (0.65625, 0.4375), (0.65625, 0.5), (0.625, 0.5), (0.625, 0.4375), (0.625, 0.4375), (0.625, 0.5), (0.59375, 0.5), (0.59375, 0.4375), (0.59375, 0.4375), (0.59375, 0.5), (0.5625, 0.5), (0.5625, 0.4375), (0.5625, 0.4375), (0.5625, 0.5), (0.53125, 0.5), (0.53125, 0.4375), (0.53125, 0.4375), (0.53125, 0.5), (0.5, 0.5), (0.5, 0.4375), (0.5, 0.4375), (0.5, 0.5), (0.46875, 0.5), (0.46875, 0.4375), (0.46875, 0.4375), (0.46875, 0.5), (0.4375, 0.5), (0.4375, 0.4375), (0.4375, 0.4375), (0.4375, 0.5), (0.40625, 0.5), (0.40625, 0.4375), (0.40625, 0.4375), (0.40625, 0.5), (0.375, 0.5), (0.375, 0.4375), (0.375, 0.4375), (0.375, 0.5), (0.34375, 0.5), (0.34375, 0.4375), (0.34375, 0.4375), (0.34375, 0.5), (0.3125, 0.5), (0.3125, 0.4375), (0.3125, 0.4375), (0.3125, 0.5), (0.28125, 0.5), (0.28125, 0.4375), (0.28125, 0.4375), (0.28125, 0.5), (0.25, 0.5), (0.25, 0.4375), (0.25, 0.4375), (0.25, 0.5), (0.21875, 0.5), (0.21875, 0.4375), (0.21875, 0.4375), (0.21875, 0.5), (0.1875, 0.5), (0.1875, 0.4375), (0.1875, 0.4375), (0.1875, 0.5), (0.15625, 0.5), (0.15625, 0.4375), (0.15625, 0.4375), (0.15625, 0.5), (0.125, 0.5), (0.125, 0.4375), (0.125, 0.4375), (0.125, 0.5), (0.09375, 0.5), (0.09375, 0.4375), (0.09375, 0.4375), (0.09375, 0.5), (0.0625, 0.5), (0.0625, 0.4375), (0.0625, 0.4375), (0.0625, 0.5), (0.03125, 0.5), (0.03125, 0.4375), (0.03125, 0.4375), (0.03125, 0.5), (0, 0.5), (0, 0.4375), (1, 0.5), (1, 0.5625), (0.96875, 0.5625), (0.96875, 0.5), (0.96875, 0.5), (0.96875, 0.5625), (0.9375, 0.5625), (0.9375, 0.5), (0.9375, 0.5), (0.9375, 0.5625), (0.90625, 0.5625), (0.90625, 0.5), (0.90625, 0.5), (0.90625, 0.5625), (0.875, 0.5625), (0.875, 0.5), (0.875, 0.5), (0.875, 0.5625), (0.84375, 0.5625), (0.84375, 0.5), (0.84375, 0.5), (0.84375, 0.5625), (0.8125, 0.5625), (0.8125, 0.5), (0.8125, 0.5), (0.8125, 0.5625), (0.78125, 0.5625), (0.78125, 0.5), (0.78125, 0.5), (0.78125, 0.5625), (0.75, 0.5625), (0.75, 0.5), (0.75, 0.5), (0.75, 0.5625), (0.71875, 0.5625), (0.71875, 0.5), (0.71875, 0.5), (0.71875, 0.5625), (0.6875, 0.5625), (0.6875, 0.5), (0.6875, 0.5), (0.6875, 0.5625), (0.65625, 0.5625), (0.65625, 0.5), (0.65625, 0.5), (0.65625, 0.5625), (0.625, 0.5625), (0.625, 0.5), (0.625, 0.5), (0.625, 0.5625), (0.59375, 0.5625), (0.59375, 0.5), (0.59375, 0.5), (0.59375, 0.5625), (0.5625, 0.5625), (0.5625, 0.5), (0.5625, 0.5), (0.5625, 0.5625), (0.53125, 0.5625), (0.53125, 0.5), (0.53125, 0.5), (0.53125, 0.5625), (0.5, 0.5625), (0.5, 0.5), (0.5, 0.5), (0.5, 0.5625), (0.46875, 0.5625), (0.46875, 0.5), (0.46875, 0.5), (0.46875, 0.5625), (0.4375, 0.5625), (0.4375, 0.5), (0.4375, 0.5), (0.4375, 0.5625), (0.40625, 0.5625), (0.40625, 0.5), (0.40625, 0.5), (0.40625, 0.5625), (0.375, 0.5625), (0.375, 0.5), (0.375, 0.5), (0.375, 0.5625), (0.34375, 0.5625), (0.34375, 0.5), (0.34375, 0.5), (0.34375, 0.5625), (0.3125, 0.5625), (0.3125, 0.5), (0.3125, 0.5), (0.3125, 0.5625), (0.28125, 0.5625), (0.28125, 0.5), (0.28125, 0.5), (0.28125, 0.5625), (0.25, 0.5625), (0.25, 0.5), (0.25, 0.5), (0.25, 0.5625), (0.21875, 0.5625), (0.21875, 0.5), (0.21875, 0.5), (0.21875, 0.5625), (0.1875, 0.5625), (0.1875, 0.5), (0.1875, 0.5), (0.1875, 0.5625), (0.15625, 0.5625), (0.15625, 0.5), (0.15625, 0.5), (0.15625, 0.5625), (0.125, 0.5625), (0.125, 0.5), (0.125, 0.5), (0.125, 0.5625), (0.09375, 0.5625), (0.09375, 0.5), (0.09375, 0.5), (0.09375, 0.5625), (0.0625, 0.5625), (0.0625, 0.5), (0.0625, 0.5), (0.0625, 0.5625), (0.03125, 0.5625), (0.03125, 0.5), (0.03125, 0.5), (0.03125, 0.5625), (0, 0.5625), (0, 0.5), (1, 0.5625), (1, 0.625), (0.96875, 0.625), (0.96875, 0.5625), (0.96875, 0.5625), (0.96875, 0.625), (0.9375, 0.625), (0.9375, 0.5625), (0.9375, 0.5625), (0.9375, 0.625), (0.90625, 0.625), (0.90625, 0.5625), (0.90625, 0.5625), (0.90625, 0.625), (0.875, 0.625), (0.875, 0.5625), (0.875, 0.5625), (0.875, 0.625), (0.84375, 0.625), (0.84375, 0.5625), (0.84375, 0.5625), (0.84375, 0.625), (0.8125, 0.625), (0.8125, 0.5625), (0.8125, 0.5625), (0.8125, 0.625), (0.78125, 0.625), (0.78125, 0.5625), (0.78125, 0.5625), (0.78125, 0.625), (0.75, 0.625), (0.75, 0.5625), (0.75, 0.5625), (0.75, 0.625), (0.71875, 0.625), (0.71875, 0.5625), (0.71875, 0.5625), (0.71875, 0.625), (0.6875, 0.625), (0.6875, 0.5625), (0.6875, 0.5625), (0.6875, 0.625), (0.65625, 0.625), (0.65625, 0.5625), (0.65625, 0.5625), (0.65625, 0.625), (0.625, 0.625), (0.625, 0.5625), (0.625, 0.5625), (0.625, 0.625), (0.59375, 0.625), (0.59375, 0.5625), (0.59375, 0.5625), (0.59375, 0.625), (0.5625, 0.625), (0.5625, 0.5625), (0.5625, 0.5625), (0.5625, 0.625), (0.53125, 0.625), (0.53125, 0.5625), (0.53125, 0.5625), (0.53125, 0.625), (0.5, 0.625), (0.5, 0.5625), (0.5, 0.5625), (0.5, 0.625), (0.46875, 0.625), (0.46875, 0.5625), (0.46875, 0.5625), (0.46875, 0.625), (0.4375, 0.625), (0.4375, 0.5625), (0.4375, 0.5625), (0.4375, 0.625), (0.40625, 0.625), (0.40625, 0.5625), (0.40625, 0.5625), (0.40625, 0.625), (0.375, 0.625), (0.375, 0.5625), (0.375, 0.5625), (0.375, 0.625), (0.34375, 0.625), (0.34375, 0.5625), (0.34375, 0.5625), (0.34375, 0.625), (0.3125, 0.625), (0.3125, 0.5625), (0.3125, 0.5625), (0.3125, 0.625), (0.28125, 0.625), (0.28125, 0.5625), (0.28125, 0.5625), (0.28125, 0.625), (0.25, 0.625), (0.25, 0.5625), (0.25, 0.5625), (0.25, 0.625), (0.21875, 0.625), (0.21875, 0.5625), (0.21875, 0.5625), (0.21875, 0.625), (0.1875, 0.625), (0.1875, 0.5625), (0.1875, 0.5625), (0.1875, 0.625), (0.15625, 0.625), (0.15625, 0.5625), (0.15625, 0.5625), (0.15625, 0.625), (0.125, 0.625), (0.125, 0.5625), (0.125, 0.5625), (0.125, 0.625), (0.09375, 0.625), (0.09375, 0.5625), (0.09375, 0.5625), (0.09375, 0.625), (0.0625, 0.625), (0.0625, 0.5625), (0.0625, 0.5625), (0.0625, 0.625), (0.03125, 0.625), (0.03125, 0.5625), (0.03125, 0.5625), (0.03125, 0.625), (0, 0.625), (0, 0.5625), (1, 0.625), (1, 0.6875), (0.96875, 0.6875), (0.96875, 0.625), (0.96875, 0.625), (0.96875, 0.6875), (0.9375, 0.6875), (0.9375, 0.625), (0.9375, 0.625), (0.9375, 0.6875), (0.90625, 0.6875), (0.90625, 0.625), (0.90625, 0.625), (0.90625, 0.6875), (0.875, 0.6875), (0.875, 0.625), (0.875, 0.625), (0.875, 0.6875), (0.84375, 0.6875), (0.84375, 0.625), (0.84375, 0.625), (0.84375, 0.6875), (0.8125, 0.6875), (0.8125, 0.625), (0.8125, 0.625), (0.8125, 0.6875), (0.78125, 0.6875), (0.78125, 0.625), (0.78125, 0.625), (0.78125, 0.6875), (0.75, 0.6875), (0.75, 0.625), (0.75, 0.625), (0.75, 0.6875), (0.71875, 0.6875), (0.71875, 0.625), (0.71875, 0.625), (0.71875, 0.6875), (0.6875, 0.6875), (0.6875, 0.625), (0.6875, 0.625), (0.6875, 0.6875), (0.65625, 0.6875), (0.65625, 0.625), (0.65625, 0.625), (0.65625, 0.6875), (0.625, 0.6875), (0.625, 0.625), (0.625, 0.625), (0.625, 0.6875), (0.59375, 0.6875), (0.59375, 0.625), (0.59375, 0.625), (0.59375, 0.6875), (0.5625, 0.6875), (0.5625, 0.625), (0.5625, 0.625), (0.5625, 0.6875), (0.53125, 0.6875), (0.53125, 0.625), (0.53125, 0.625), (0.53125, 0.6875), (0.5, 0.6875), (0.5, 0.625), (0.5, 0.625), (0.5, 0.6875), (0.46875, 0.6875), (0.46875, 0.625), (0.46875, 0.625), (0.46875, 0.6875), (0.4375, 0.6875), (0.4375, 0.625), (0.4375, 0.625), (0.4375, 0.6875), (0.40625, 0.6875), (0.40625, 0.625), (0.40625, 0.625), (0.40625, 0.6875), (0.375, 0.6875), (0.375, 0.625), (0.375, 0.625), (0.375, 0.6875), (0.34375, 0.6875), (0.34375, 0.625), (0.34375, 0.625), (0.34375, 0.6875), (0.3125, 0.6875), (0.3125, 0.625), (0.3125, 0.625), (0.3125, 0.6875), (0.28125, 0.6875), (0.28125, 0.625), (0.28125, 0.625), (0.28125, 0.6875), (0.25, 0.6875), (0.25, 0.625), (0.25, 0.625), (0.25, 0.6875), (0.21875, 0.6875), (0.21875, 0.625), (0.21875, 0.625), (0.21875, 0.6875), (0.1875, 0.6875), (0.1875, 0.625), (0.1875, 0.625), (0.1875, 0.6875), (0.15625, 0.6875), (0.15625, 0.625), (0.15625, 0.625), (0.15625, 0.6875), (0.125, 0.6875), (0.125, 0.625), (0.125, 0.625), (0.125, 0.6875), (0.09375, 0.6875), (0.09375, 0.625), (0.09375, 0.625), (0.09375, 0.6875), (0.0625, 0.6875), (0.0625, 0.625), (0.0625, 0.625), (0.0625, 0.6875), (0.03125, 0.6875), (0.03125, 0.625), (0.03125, 0.625), (0.03125, 0.6875), (0, 0.6875), (0, 0.625), (1, 0.6875), (1, 0.75), (0.96875, 0.75), (0.96875, 0.6875), (0.96875, 0.6875), (0.96875, 0.75), (0.9375, 0.75), (0.9375, 0.6875), (0.9375, 0.6875), (0.9375, 0.75), (0.90625, 0.75), (0.90625, 0.6875), (0.90625, 0.6875), (0.90625, 0.75), (0.875, 0.75), (0.875, 0.6875), (0.875, 0.6875), (0.875, 0.75), (0.84375, 0.75), (0.84375, 0.6875), (0.84375, 0.6875), (0.84375, 0.75), (0.8125, 0.75), (0.8125, 0.6875), (0.8125, 0.6875), (0.8125, 0.75), (0.78125, 0.75), (0.78125, 0.6875), (0.78125, 0.6875), (0.78125, 0.75), (0.75, 0.75), (0.75, 0.6875), (0.75, 0.6875), (0.75, 0.75), (0.71875, 0.75), (0.71875, 0.6875), (0.71875, 0.6875), (0.71875, 0.75), (0.6875, 0.75), (0.6875, 0.6875), (0.6875, 0.6875), (0.6875, 0.75), (0.65625, 0.75), (0.65625, 0.6875), (0.65625, 0.6875), (0.65625, 0.75), (0.625, 0.75), (0.625, 0.6875), (0.625, 0.6875), (0.625, 0.75), (0.59375, 0.75), (0.59375, 0.6875), (0.59375, 0.6875), (0.59375, 0.75), (0.5625, 0.75), (0.5625, 0.6875), (0.5625, 0.6875), (0.5625, 0.75), (0.53125, 0.75), (0.53125, 0.6875), (0.53125, 0.6875), (0.53125, 0.75), (0.5, 0.75), (0.5, 0.6875), (0.5, 0.6875), (0.5, 0.75), (0.46875, 0.75), (0.46875, 0.6875), (0.46875, 0.6875), (0.46875, 0.75), (0.4375, 0.75), (0.4375, 0.6875), (0.4375, 0.6875), (0.4375, 0.75), (0.40625, 0.75), (0.40625, 0.6875), (0.40625, 0.6875), (0.40625, 0.75), (0.375, 0.75), (0.375, 0.6875), (0.375, 0.6875), (0.375, 0.75), (0.34375, 0.75), (0.34375, 0.6875), (0.34375, 0.6875), (0.34375, 0.75), (0.3125, 0.75), (0.3125, 0.6875), (0.3125, 0.6875), (0.3125, 0.75), (0.28125, 0.75), (0.28125, 0.6875), (0.28125, 0.6875), (0.28125, 0.75), (0.25, 0.75), (0.25, 0.6875), (0.25, 0.6875), (0.25, 0.75), (0.21875, 0.75), (0.21875, 0.6875), (0.21875, 0.6875), (0.21875, 0.75), (0.1875, 0.75), (0.1875, 0.6875), (0.1875, 0.6875), (0.1875, 0.75), (0.15625, 0.75), (0.15625, 0.6875), (0.15625, 0.6875), (0.15625, 0.75), (0.125, 0.75), (0.125, 0.6875), (0.125, 0.6875), (0.125, 0.75), (0.09375, 0.75), (0.09375, 0.6875), (0.09375, 0.6875), (0.09375, 0.75), (0.0625, 0.75), (0.0625, 0.6875), (0.0625, 0.6875), (0.0625, 0.75), (0.03125, 0.75), (0.03125, 0.6875), (0.03125, 0.6875), (0.03125, 0.75), (0, 0.75), (0, 0.6875), (1, 0.75), (1, 0.8125), (0.96875, 0.8125), (0.96875, 0.75), (0.96875, 0.75), (0.96875, 0.8125), (0.9375, 0.8125), (0.9375, 0.75), (0.9375, 0.75), (0.9375, 0.8125), (0.90625, 0.8125), (0.90625, 0.75), (0.90625, 0.75), (0.90625, 0.8125), (0.875, 0.8125), (0.875, 0.75), (0.875, 0.75), (0.875, 0.8125), (0.84375, 0.8125), (0.84375, 0.75), (0.84375, 0.75), (0.84375, 0.8125), (0.8125, 0.8125), (0.8125, 0.75), (0.8125, 0.75), (0.8125, 0.8125), (0.78125, 0.8125), (0.78125, 0.75), (0.78125, 0.75), (0.78125, 0.8125), (0.75, 0.8125), (0.75, 0.75), (0.75, 0.75), (0.75, 0.8125), (0.71875, 0.8125), (0.71875, 0.75), (0.71875, 0.75), (0.71875, 0.8125), (0.6875, 0.8125), (0.6875, 0.75), (0.6875, 0.75), (0.6875, 0.8125), (0.65625, 0.8125), (0.65625, 0.75), (0.65625, 0.75), (0.65625, 0.8125), (0.625, 0.8125), (0.625, 0.75), (0.625, 0.75), (0.625, 0.8125), (0.59375, 0.8125), (0.59375, 0.75), (0.59375, 0.75), (0.59375, 0.8125), (0.5625, 0.8125), (0.5625, 0.75), (0.5625, 0.75), (0.5625, 0.8125), (0.53125, 0.8125), (0.53125, 0.75), (0.53125, 0.75), (0.53125, 0.8125), (0.5, 0.8125), (0.5, 0.75), (0.5, 0.75), (0.5, 0.8125), (0.46875, 0.8125), (0.46875, 0.75), (0.46875, 0.75), (0.46875, 0.8125), (0.4375, 0.8125), (0.4375, 0.75), (0.4375, 0.75), (0.4375, 0.8125), (0.40625, 0.8125), (0.40625, 0.75), (0.40625, 0.75), (0.40625, 0.8125), (0.375, 0.8125), (0.375, 0.75), (0.375, 0.75), (0.375, 0.8125), (0.34375, 0.8125), (0.34375, 0.75), (0.34375, 0.75), (0.34375, 0.8125), (0.3125, 0.8125), (0.3125, 0.75), (0.3125, 0.75), (0.3125, 0.8125), (0.28125, 0.8125), (0.28125, 0.75), (0.28125, 0.75), (0.28125, 0.8125), (0.25, 0.8125), (0.25, 0.75), (0.25, 0.75), (0.25, 0.8125), (0.21875, 0.8125), (0.21875, 0.75), (0.21875, 0.75), (0.21875, 0.8125), (0.1875, 0.8125), (0.1875, 0.75), (0.1875, 0.75), (0.1875, 0.8125), (0.15625, 0.8125), (0.15625, 0.75), (0.15625, 0.75), (0.15625, 0.8125), (0.125, 0.8125), (0.125, 0.75), (0.125, 0.75), (0.125, 0.8125), (0.09375, 0.8125), (0.09375, 0.75), (0.09375, 0.75), (0.09375, 0.8125), (0.0625, 0.8125), (0.0625, 0.75), (0.0625, 0.75), (0.0625, 0.8125), (0.03125, 0.8125), (0.03125, 0.75), (0.03125, 0.75), (0.03125, 0.8125), (0, 0.8125), (0, 0.75), (1, 0.8125), (1, 0.875), (0.96875, 0.875), (0.96875, 0.8125), (0.96875, 0.8125), (0.96875, 0.875), (0.9375, 0.875), (0.9375, 0.8125), (0.9375, 0.8125), (0.9375, 0.875), (0.90625, 0.875), (0.90625, 0.8125), (0.90625, 0.8125), (0.90625, 0.875), (0.875, 0.875), (0.875, 0.8125), (0.875, 0.8125), (0.875, 0.875), (0.84375, 0.875), (0.84375, 0.8125), (0.84375, 0.8125), (0.84375, 0.875), (0.8125, 0.875), (0.8125, 0.8125), (0.8125, 0.8125), (0.8125, 0.875), (0.78125, 0.875), (0.78125, 0.8125), (0.78125, 0.8125), (0.78125, 0.875), (0.75, 0.875), (0.75, 0.8125), (0.75, 0.8125), (0.75, 0.875), (0.71875, 0.875), (0.71875, 0.8125), (0.71875, 0.8125), (0.71875, 0.875), (0.6875, 0.875), (0.6875, 0.8125), (0.6875, 0.8125), (0.6875, 0.875), (0.65625, 0.875), (0.65625, 0.8125), (0.65625, 0.8125), (0.65625, 0.875), (0.625, 0.875), (0.625, 0.8125), (0.625, 0.8125), (0.625, 0.875), (0.59375, 0.875), (0.59375, 0.8125), (0.59375, 0.8125), (0.59375, 0.875), (0.5625, 0.875), (0.5625, 0.8125), (0.5625, 0.8125), (0.5625, 0.875), (0.53125, 0.875), (0.53125, 0.8125), (0.53125, 0.8125), (0.53125, 0.875), (0.5, 0.875), (0.5, 0.8125), (0.5, 0.8125), (0.5, 0.875), (0.46875, 0.875), (0.46875, 0.8125), (0.46875, 0.8125), (0.46875, 0.875), (0.4375, 0.875), (0.4375, 0.8125), (0.4375, 0.8125), (0.4375, 0.875), (0.40625, 0.875), (0.40625, 0.8125), (0.40625, 0.8125), (0.40625, 0.875), (0.375, 0.875), (0.375, 0.8125), (0.375, 0.8125), (0.375, 0.875), (0.34375, 0.875), (0.34375, 0.8125), (0.34375, 0.8125), (0.34375, 0.875), (0.3125, 0.875), (0.3125, 0.8125), (0.3125, 0.8125), (0.3125, 0.875), (0.28125, 0.875), (0.28125, 0.8125), (0.28125, 0.8125), (0.28125, 0.875), (0.25, 0.875), (0.25, 0.8125), (0.25, 0.8125), (0.25, 0.875), (0.21875, 0.875), (0.21875, 0.8125), (0.21875, 0.8125), (0.21875, 0.875), (0.1875, 0.875), (0.1875, 0.8125), (0.1875, 0.8125), (0.1875, 0.875), (0.15625, 0.875), (0.15625, 0.8125), (0.15625, 0.8125), (0.15625, 0.875), (0.125, 0.875), (0.125, 0.8125), (0.125, 0.8125), (0.125, 0.875), (0.09375, 0.875), (0.09375, 0.8125), (0.09375, 0.8125), (0.09375, 0.875), (0.0625, 0.875), (0.0625, 0.8125), (0.0625, 0.8125), (0.0625, 0.875), (0.03125, 0.875), (0.03125, 0.8125), (0.03125, 0.8125), (0.03125, 0.875), (0, 0.875), (0, 0.8125), (1, 0.875), (1, 0.9375), (0.96875, 0.9375), (0.96875, 0.875), (0.96875, 0.875), (0.96875, 0.9375), (0.9375, 0.9375), (0.9375, 0.875), (0.9375, 0.875), (0.9375, 0.9375), (0.90625, 0.9375), (0.90625, 0.875), (0.90625, 0.875), (0.90625, 0.9375), (0.875, 0.9375), (0.875, 0.875), (0.875, 0.875), (0.875, 0.9375), (0.84375, 0.9375), (0.84375, 0.875), (0.84375, 0.875), (0.84375, 0.9375), (0.8125, 0.9375), (0.8125, 0.875), (0.8125, 0.875), (0.8125, 0.9375), (0.78125, 0.9375), (0.78125, 0.875), (0.78125, 0.875), (0.78125, 0.9375), (0.75, 0.9375), (0.75, 0.875), (0.75, 0.875), (0.75, 0.9375), (0.71875, 0.9375), (0.71875, 0.875), (0.71875, 0.875), (0.71875, 0.9375), (0.6875, 0.9375), (0.6875, 0.875), (0.6875, 0.875), (0.6875, 0.9375), (0.65625, 0.9375), (0.65625, 0.875), (0.65625, 0.875), (0.65625, 0.9375), (0.625, 0.9375), (0.625, 0.875), (0.625, 0.875), (0.625, 0.9375), (0.59375, 0.9375), (0.59375, 0.875), (0.59375, 0.875), (0.59375, 0.9375), (0.5625, 0.9375), (0.5625, 0.875), (0.5625, 0.875), (0.5625, 0.9375), (0.53125, 0.9375), (0.53125, 0.875), (0.53125, 0.875), (0.53125, 0.9375), (0.5, 0.9375), (0.5, 0.875), (0.5, 0.875), (0.5, 0.9375), (0.46875, 0.9375), (0.46875, 0.875), (0.46875, 0.875), (0.46875, 0.9375), (0.4375, 0.9375), (0.4375, 0.875), (0.4375, 0.875), (0.4375, 0.9375), (0.40625, 0.9375), (0.40625, 0.875), (0.40625, 0.875), (0.40625, 0.9375), (0.375, 0.9375), (0.375, 0.875), (0.375, 0.875), (0.375, 0.9375), (0.34375, 0.9375), (0.34375, 0.875), (0.34375, 0.875), (0.34375, 0.9375), (0.3125, 0.9375), (0.3125, 0.875), (0.3125, 0.875), (0.3125, 0.9375), (0.28125, 0.9375), (0.28125, 0.875), (0.28125, 0.875), (0.28125, 0.9375), (0.25, 0.9375), (0.25, 0.875), (0.25, 0.875), (0.25, 0.9375), (0.21875, 0.9375), (0.21875, 0.875), (0.21875, 0.875), (0.21875, 0.9375), (0.1875, 0.9375), (0.1875, 0.875), (0.1875, 0.875), (0.1875, 0.9375), (0.15625, 0.9375), (0.15625, 0.875), (0.15625, 0.875), (0.15625, 0.9375), (0.125, 0.9375), (0.125, 0.875), (0.125, 0.875), (0.125, 0.9375), (0.09375, 0.9375), (0.09375, 0.875), (0.09375, 0.875), (0.09375, 0.9375), (0.0625, 0.9375), (0.0625, 0.875), (0.0625, 0.875), (0.0625, 0.9375), (0.03125, 0.9375), (0.03125, 0.875), (0.03125, 0.875), (0.03125, 0.9375), (0, 0.9375), (0, 0.875), (0.5, 1), (0.96875, 0.9375), (1, 0.9375), (0.5, 1), (0.9375, 0.9375), (0.96875, 0.9375), (0.5, 1), (0.90625, 0.9375), (0.9375, 0.9375), (0.5, 1), (0.875, 0.9375), (0.90625, 0.9375), (0.5, 1), (0.84375, 0.9375), (0.875, 0.9375), (0.5, 1), (0.8125, 0.9375), (0.84375, 0.9375), (0.5, 1), (0.78125, 0.9375), (0.8125, 0.9375), (0.5, 1), (0.75, 0.9375), (0.78125, 0.9375), (0.5, 1), (0.71875, 0.9375), (0.75, 0.9375), (0.5, 1), (0.6875, 0.9375), (0.71875, 0.9375), (0.5, 1), (0.65625, 0.9375), (0.6875, 0.9375), (0.5, 1), (0.625, 0.9375), (0.65625, 0.9375), (0.5, 1), (0.59375, 0.9375), (0.625, 0.9375), (0.5, 1), (0.5625, 0.9375), (0.59375, 0.9375), (0.5, 1), (0.53125, 0.9375), (0.5625, 0.9375), (0.5, 1), (0.5, 0.9375), (0.53125, 0.9375), (0.5, 1), (0.46875, 0.9375), (0.5, 0.9375), (0.5, 1), (0.4375, 0.9375), (0.46875, 0.9375), (0.5, 1), (0.40625, 0.9375), (0.4375, 0.9375), (0.5, 1), (0.375, 0.9375), (0.40625, 0.9375), (0.5, 1), (0.34375, 0.9375), (0.375, 0.9375), (0.5, 1), (0.3125, 0.9375), (0.34375, 0.9375), (0.5, 1), (0.28125, 0.9375), (0.3125, 0.9375), (0.5, 1), (0.25, 0.9375), (0.28125, 0.9375), (0.5, 1), (0.21875, 0.9375), (0.25, 0.9375), (0.5, 1), (0.1875, 0.9375), (0.21875, 0.9375), (0.5, 1), (0.15625, 0.9375), (0.1875, 0.9375), (0.5, 1), (0.125, 0.9375), (0.15625, 0.9375), (0.5, 1), (0.09375, 0.9375), (0.125, 0.9375), (0.5, 1), (0.0625, 0.9375), (0.09375, 0.9375), (0.5, 1), (0.03125, 0.9375), (0.0625, 0.9375), (0.5, 1), (0, 0.9375), (0.03125, 0.9375)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (0.9000000134110451, 0.9000000134110451, 0.9000000134110451) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } } def Xform "Environment" { double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] def DistantLight "defaultLight" ( prepend apiSchemas = ["ShapingAPI"] ) { float angle = 1 bool enableColorTemperature = 0 float intensity = 3000 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file double3 xformOp:rotateXYZ = (315, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } }
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/scenes/BenchChair_Mini.usda
#usda 1.0 ( customLayerData = { dictionary audioSettings = { double dopplerLimit = 2 double dopplerScale = 1 double nonSpatialTimeScale = 1 double spatialTimeScale = 1 double speedOfSound = 340 } dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 1000) double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (284.0601537893443, 376.0975079160896, 678.3476801943718) double radius = 4103.913656878516 double3 target = (2.25830078125, 4.174749374389648, 163.00079822540283) } dictionary Right = { double3 position = (-1000, 0, -2.220446049250313e-13) double radius = 500 double3 target = (0, 0, 0) } dictionary Top = { double3 position = (-8.659560562354932e-14, 1000, 2.220446049250313e-13) double radius = 500 double3 target = (0, 0, 0) } string boundCamera = "/OmniverseKit_Persp" } dictionary omni_layer = { dictionary muteness = { } } dictionary renderSettings = { } } defaultPrim = "World" metersPerUnit = 0.009999999776482582 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def DistantLight "defaultLight" ( prepend apiSchemas = ["ShapingAPI"] kind = "model" ) { float angle = 1 float intensity = 3000 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file float3 xformOp:rotateZYX = (315, 0, 0) float3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateZYX"] } def PointInstancer "PI" { point3f[] positions = [(0, 0, 0), (2, 0, 100), (4, 0, 200), (6, 0, 300)] int[] protoIndices = [1, 0, 1, 0] rel prototypes = [ </World/PI/Prototypes/bench/proto_0>, </World/PI/Prototypes/sofa/proto_0>, ] float3[] scales = [(100, 100, 100), (100, 100, 100), (100, 100, 100), (100, 100, 100)] def Xform "Prototypes" { def Xform "chair" { } def Xform "bench" { def Xform "proto_0" ( prepend apiSchemas = ["SemanticsAPI:Semantics"] instanceable = true references = @./bench_golden.usd@ ) { string semantic:Semantics:params:semanticData = "bench" string semantic:Semantics:params:semanticType = "class" } } def Xform "sofa" { def Xform "proto_0" ( prepend apiSchemas = ["SemanticsAPI:Semantics"] instanceable = true references = @./sofa_golden.usd@ ) { string semantic:Semantics:params:semanticData = "sofa" string semantic:Semantics:params:semanticType = "class" } } } } }
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/scenes/cube.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (188.15415084862954, 188.15415084863005, 188.15415084862929) double3 target = (-3.410605131648481e-13, 1.1368683772161603e-13, -4.263256414560601e-13) } dictionary Right = { double radius = 500 double3 target = (0, 0, 0) } dictionary Top = { double radius = 500 double3 target = (0, 0, 0) } string boundCamera = "/OmniverseKit_Persp" } dictionary renderSettings = { float "rtx:post:lensDistortion:cameraFocalLength" = 18.147562 } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def DistantLight "defaultLight" ( prepend apiSchemas = ["ShapingAPI"] ) { float angle = 1 float intensity = 3000 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file float3 xformOp:rotateXYZ = (315, 0, 0) double3 xformOp:scale = (1, 1, 1) float3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Cube "Cube" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] color3f[] primvars:displayColor = [(1, 0.5, 0.5)] double size = 100 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } }
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/scenes/occlusion.usda
#usda 1.0 ( customLayerData = { dictionary audioSettings = { double dopplerLimit = 2 double dopplerScale = 1 double nonSpatialTimeScale = 1 double spatialTimeScale = 1 double speedOfSound = 340 } dictionary cameraSettings = { dictionary Front = { double radius = 3000 double3 target = (98.03826837800693, 7.528925233790124, 0) } dictionary Perspective = { double3 position = (-154.72631975736212, 1150.551337133561, 628.9729272322076) double3 target = (4.206412995699793e-12, 4.9112713895738125e-11, 6.298250809777528e-11) } dictionary Right = { double radius = 500 double3 target = (0, 0, 0) } dictionary Top = { double radius = 500 double3 target = (9.0205620750794e-12, 0, 7.632783294297953e-12) } string boundCamera = "/OmniverseKit_Front" } dictionary renderSettings = { float "rtx:post:lensDistortion:cameraFocalLength" = 50 } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def DistantLight "defaultLight" ( prepend apiSchemas = ["ShapingAPI"] kind = "model" ) { float angle = 1 float intensity = 3000 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file float3 xformOp:rotateZYX = (315, 0, 0) float3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateZYX"] } def Mesh "Cube" ( kind = "model" ) { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4] int[] faceVertexIndices = [0, 4, 5, 1, 4, 0, 2, 6, 5, 4, 6, 7, 1, 5, 7, 3, 0, 1, 3, 2, 3, 7, 6, 2] normal3f[] normals = [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, 0, -1), (0, 0, -1), (0, 0, -1), (0, 0, -1), (1, 0, 0), (1, 0, 0), (1, 0, 0), (1, 0, 0), (0, 0, 1), (0, 0, 1), (0, 0, 1), (0, 0, 1), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(-50, -50, -50), (-50, -50, 50), (-50, 50, -50), (-50, 50, 50), (50, -50, -50), (50, -50, 50), (50, 50, -50), (50, 50, 50)] float2[] primvars:st = [(0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateZYX = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 121.195201) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateZYX", "xformOp:scale"] } def Mesh "Cube_100" ( prepend apiSchemas = ["SemanticsAPI:Semantics"] kind = "model" ) { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4] int[] faceVertexIndices = [0, 4, 5, 1, 4, 0, 2, 6, 5, 4, 6, 7, 1, 5, 7, 3, 0, 1, 3, 2, 3, 7, 6, 2] normal3f[] normals = [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, 0, -1), (0, 0, -1), (0, 0, -1), (0, 0, -1), (1, 0, 0), (1, 0, 0), (1, 0, 0), (1, 0, 0), (0, 0, 1), (0, 0, 1), (0, 0, 1), (0, 0, 1), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(-50, -50, -50), (-50, -50, 50), (-50, 50, -50), (-50, 50, 50), (50, -50, -50), (50, -50, 50), (50, 50, -50), (50, 50, 50)] float2[] primvars:st = [(0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1)] ( interpolation = "faceVarying" ) string semantic:Semantics:params:semanticData = "100" string semantic:Semantics:params:semanticType = "class" uniform token subdivisionScheme = "none" double3 xformOp:rotateZYX = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 90.130004) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateZYX", "xformOp:scale"] } def Mesh "Cube_50" ( prepend apiSchemas = ["SemanticsAPI:Semantics"] kind = "model" ) { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4] int[] faceVertexIndices = [0, 4, 5, 1, 4, 0, 2, 6, 5, 4, 6, 7, 1, 5, 7, 3, 0, 1, 3, 2, 3, 7, 6, 2] normal3f[] normals = [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, 0, -1), (0, 0, -1), (0, 0, -1), (0, 0, -1), (1, 0, 0), (1, 0, 0), (1, 0, 0), (1, 0, 0), (0, 0, 1), (0, 0, 1), (0, 0, 1), (0, 0, 1), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(-50, -50, -50), (-50, -50, 50), (-50, 50, -50), (-50, 50, 50), (50, -50, -50), (50, -50, 50), (50, 50, -50), (50, 50, 50)] float2[] primvars:st = [(0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1)] ( interpolation = "faceVarying" ) string semantic:Semantics:params:semanticData = "50" string semantic:Semantics:params:semanticType = "class" uniform token subdivisionScheme = "none" double3 xformOp:rotateZYX = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (75, 0, 29.276982) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateZYX", "xformOp:scale"] } def Mesh "Cube_0" ( prepend apiSchemas = ["SemanticsAPI:Semantics"] kind = "model" ) { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4] int[] faceVertexIndices = [0, 4, 5, 1, 4, 0, 2, 6, 5, 4, 6, 7, 1, 5, 7, 3, 0, 1, 3, 2, 3, 7, 6, 2] normal3f[] normals = [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, 0, -1), (0, 0, -1), (0, 0, -1), (0, 0, -1), (1, 0, 0), (1, 0, 0), (1, 0, 0), (1, 0, 0), (0, 0, 1), (0, 0, 1), (0, 0, 1), (0, 0, 1), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(-50, -50, -50), (-50, -50, 50), (-50, 50, -50), (-50, 50, 50), (50, -50, -50), (50, -50, 50), (50, 50, -50), (50, 50, 50)] float2[] primvars:st = [(0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1)] ( interpolation = "faceVarying" ) string semantic:Semantics:params:semanticData = "0" string semantic:Semantics:params:semanticType = "class" uniform token subdivisionScheme = "none" double3 xformOp:rotateZYX = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (250, 0, -33.879526) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateZYX", "xformOp:scale"] } def Mesh "Cube_25" ( prepend apiSchemas = ["SemanticsAPI:Semantics"] kind = "model" ) { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4] int[] faceVertexIndices = [0, 4, 5, 1, 4, 0, 2, 6, 5, 4, 6, 7, 1, 5, 7, 3, 0, 1, 3, 2, 3, 7, 6, 2] normal3f[] normals = [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, 0, -1), (0, 0, -1), (0, 0, -1), (0, 0, -1), (1, 0, 0), (1, 0, 0), (1, 0, 0), (1, 0, 0), (0, 0, 1), (0, 0, 1), (0, 0, 1), (0, 0, 1), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(-50, -50, -50), (-50, -50, 50), (-50, 50, -50), (-50, 50, 50), (50, -50, -50), (50, -50, 50), (50, 50, -50), (50, 50, 50)] float2[] primvars:st = [(0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1)] ( interpolation = "faceVarying" ) string semantic:Semantics:params:semanticData = "25" string semantic:Semantics:params:semanticType = "class" uniform token subdivisionScheme = "none" double3 xformOp:rotateZYX = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (150, 0, 1.671752) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateZYX", "xformOp:scale"] } def Mesh "Cube_75" ( prepend apiSchemas = ["SemanticsAPI:Semantics"] kind = "model" ) { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4] int[] faceVertexIndices = [0, 4, 5, 1, 4, 0, 2, 6, 5, 4, 6, 7, 1, 5, 7, 3, 0, 1, 3, 2, 3, 7, 6, 2] normal3f[] normals = [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, 0, -1), (0, 0, -1), (0, 0, -1), (0, 0, -1), (1, 0, 0), (1, 0, 0), (1, 0, 0), (1, 0, 0), (0, 0, 1), (0, 0, 1), (0, 0, 1), (0, 0, 1), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(-50, -50, -50), (-50, -50, 50), (-50, 50, -50), (-50, 50, 50), (50, -50, -50), (50, -50, 50), (50, 50, -50), (50, 50, 50)] float2[] primvars:st = [(0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1)] ( interpolation = "faceVarying" ) string semantic:Semantics:params:semanticData = "75" string semantic:Semantics:params:semanticType = "class" uniform token subdivisionScheme = "none" double3 xformOp:rotateZYX = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (25, 0, 66.267482) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateZYX", "xformOp:scale"] } }
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/scenes/point_instancer_semantic_shapes.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (25.320213923059804, 25.32022525282619, 25.32021392305995) double3 target = (-0.000003978038350282986, 0.00000795607681425281, -0.0000039780382046217255) } dictionary Right = { double3 position = (-50000, 0, 0) double radius = 500 } dictionary Top = { double3 position = (0, 50000, 0) double radius = 500 } string boundCamera = "/OmniverseKit_Persp" } dictionary omni_layer = { dictionary muteness = { } } dictionary renderSettings = { } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.01 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def Xform "prototypes" { token visibility = "invisible" def Xform "Cone" { def Cone "Cone" ( prepend apiSchemas = ["SemanticsAPI:Semantics"] ) { string semantic:Semantics:params:semanticData = "cone_p" string semantic:Semantics:params:semanticType = "class" } } def Xform "Cube" { def Cube "Cube" ( prepend apiSchemas = ["SemanticsAPI:Semantics"] ) { string semantic:Semantics:params:semanticData = "cube_p" string semantic:Semantics:params:semanticType = "class" } } } def PointInstancer "PI" { point3f[] positions = [(0, 10, 0), (10, 10, 0), (0, 10, 10), (10, 10, 10)] int[] protoIndices = [0, 0, 0, 1] rel prototypes = [ </World/PI/Xform/Cone>, </World/PI/Xform/Cube>, ] def Xform "Xform" { token visibility = "invisible" def "Cone" ( prepend references = </World/prototypes/Cone> ) { } def "Cube" ( prepend references = </World/prototypes/Cube> ) { } } } } def Xform "Environment" { double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] def DistantLight "defaultLight" ( prepend apiSchemas = ["ShapingAPI"] ) { float angle = 1 float intensity = 3000 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file double3 xformOp:rotateXYZ = (315, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } }
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/scenes/cube_full_occlusion.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500, 500, 500) double3 target = (-0.00000397803842133726, 0.000007956076785831101, -0.000003978038307650422) } dictionary Right = { double3 position = (-50000, 0, 0) double radius = 500 } dictionary Top = { double3 position = (0, 50000, 0) double radius = 500 } string boundCamera = "/OmniverseKit_Front" } dictionary omni_layer = { dictionary muteness = { } } dictionary renderSettings = { float3 "rtx:debugView:pixelDebug:textColor" = (0, 1e18, 0) float3 "rtx:dynamicDiffuseGI:probeCounts" = (6, 6, 6) float3 "rtx:dynamicDiffuseGI:probeGridOrigin" = (-210, -250, -10) float3 "rtx:dynamicDiffuseGI:volumeSize" = (600, 440, 300) float3 "rtx:fog:fogColor" = (0.75, 0.75, 0.75) float3 "rtx:raytracing:inscattering:singleScatteringAlbedo" = (0.9, 0.9, 0.9) float3 "rtx:raytracing:inscattering:transmittanceColor" = (0.5, 0.5, 0.5) float3 "rtx:sceneDb:ambientLightColor" = (0.1, 0.1, 0.1) } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.01 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def Mesh "Cube" { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4] int[] faceVertexIndices = [0, 1, 3, 2, 0, 4, 5, 1, 1, 5, 6, 3, 2, 3, 6, 7, 0, 2, 7, 4, 4, 7, 6, 5] normal3f[] normals = [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, 0, -1), (0, 0, -1), (0, 0, -1), (0, 0, -1), (1, 0, 0), (1, 0, 0), (1, 0, 0), (1, 0, 0), (0, 0, 1), (0, 0, 1), (0, 0, 1), (0, 0, 1), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(-50, -50, -50), (50, -50, -50), (-50, -50, 50), (50, -50, 50), (-50, 50, -50), (50, 50, -50), (50, 50, 50), (-50, 50, 50)] float2[] primvars:st = [(1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Mesh "Cube_01" { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4] int[] faceVertexIndices = [0, 1, 3, 2, 0, 4, 5, 1, 1, 5, 6, 3, 2, 3, 6, 7, 0, 2, 7, 4, 4, 7, 6, 5] normal3f[] normals = [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, 0, -1), (0, 0, -1), (0, 0, -1), (0, 0, -1), (1, 0, 0), (1, 0, 0), (1, 0, 0), (1, 0, 0), (0, 0, 1), (0, 0, 1), (0, 0, 1), (0, 0, 1), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(-50, -50, -50), (50, -50, -50), (-50, -50, 50), (50, -50, 50), (-50, 50, -50), (50, 50, -50), (50, 50, 50), (-50, 50, 50)] float2[] primvars:st = [(1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 150) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } } def Xform "Environment" { double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] def DistantLight "defaultLight" ( prepend apiSchemas = ["ShapingAPI"] ) { float angle = 1 float intensity = 3000 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file double3 xformOp:rotateXYZ = (315, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } }
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/scenes/BenchChair_SceneInstance_Mini.usda
#usda 1.0 ( customLayerData = { dictionary audioSettings = { double dopplerLimit = 2 double dopplerScale = 1 token enableDistanceDelay = "off" token enableDoppler = "off" double nonSpatialTimeScale = 1 double spatialTimeScale = 1 double speedOfSound = 340 } dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 1000) double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (1980.5111035466489, 475.2360575421583, 2180.5243867717586) double radius = 2676.7526261935177 double3 target = (435.0872419642733, -1070.1877671536854, 635.100525189383) } dictionary Right = { double3 position = (-1000, 0, -2.220446049250313e-13) double radius = 500 double3 target = (0, 0, 0) } dictionary Top = { double3 position = (-8.659560562354932e-14, 1000, 2.220446049250313e-13) double radius = 500 double3 target = (0, 0, 0) } string boundCamera = "/OmniverseKit_Persp" } dictionary omni_layer = { dictionary muteness = { } } dictionary renderSettings = { } } defaultPrim = "World" metersPerUnit = 0.009999999776482582 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def DistantLight "defaultLight" ( prepend apiSchemas = ["ShapingAPI"] kind = "model" ) { float angle = 1 float intensity = 3000 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file float3 xformOp:rotateZYX = (315, 0, 0) float3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateZYX"] } def Xform "Prototypes" { token visibility = "invisible" def Xform "bench" ( prepend apiSchemas = ["SemanticsAPI:Semantics"] instanceable = true references = @./bench_golden.usd@ ) { string semantic:Semantics:params:semanticData = "bench" string semantic:Semantics:params:semanticType = "class" } def Xform "sofa" ( prepend apiSchemas = ["SemanticsAPI:Semantics"] instanceable = true references = @./sofa_golden.usd@ ) { string semantic:Semantics:params:semanticData = "sofa" string semantic:Semantics:params:semanticType = "class" } } def "Objects" { def Xform "obj_667" ( prepend apiSchemas = ["SemanticsAPI:Semantics"] instanceable = true references = @./bench_golden.usd@ ) { string semantic:Semantics:params:semanticData = "bench" string semantic:Semantics:params:semanticType = "class" float3 xformOp:scale = (100, 100, 100) double3 xformOp:translate = (1334, 0, 1700) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:scale"] } def Xform "obj_716" ( prepend apiSchemas = ["SemanticsAPI:Semantics"] instanceable = true references = @./sofa_golden.usd@ ) { string semantic:Semantics:params:semanticData = "sofa" string semantic:Semantics:params:semanticType = "class" float3 xformOp:scale = (100, 100, 100) double3 xformOp:translate = (1432, 0, 1600) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:scale"] } def Xform "obj_717" ( prepend apiSchemas = ["SemanticsAPI:Semantics"] instanceable = true references = @./sofa_golden.usd@ ) { string semantic:Semantics:params:semanticData = "sofa" string semantic:Semantics:params:semanticType = "class" float3 xformOp:scale = (100, 100, 100) double3 xformOp:translate = (1434, 0, 1700) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:scale"] } def Xform "obj_767" ( prepend apiSchemas = ["SemanticsAPI:Semantics"] instanceable = true references = @./bench_golden.usd@ ) { string semantic:Semantics:params:semanticData = "bench" string semantic:Semantics:params:semanticType = "class" float3 xformOp:scale = (100, 100, 100) double3 xformOp:translate = (1534, 0, 1700) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:scale"] } } }
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/scenes/cross_correspondence.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500, 500, 499.99999999999983) double3 target = (-1.1368683772161603e-13, -2.2737367544323206e-13, 2.8421709430404007e-13) } dictionary Right = { double3 position = (-50000, 0, -1.1102230246251565e-11) double radius = 500 } dictionary Top = { double3 position = (-4.329780281177466e-12, 50000, 1.1102230246251565e-11) double radius = 500 } string boundCamera = "/World/Cameras/CameraFisheyeLeft" } dictionary omni_layer = { dictionary muteness = { } } dictionary renderSettings = { bool "rtx:directLighting:enabled" = 0 int "rtx:ecoMode:maxFramesWithoutChange" = 5 bool "rtx:hydra:enableSemanticSchema" = 1 bool "rtx:reflections:enabled" = 0 bool "rtx:translucency:enabled" = 0 bool "rtx:raytracing:autoToggleDenoiserSettings" = 0 bool "rtx:fishEye:useCubemap" = 1 } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.01 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def Scope "Cameras" { def Camera "CameraFisheyeLeft" { token cameraProjectionType = "fisheyePolynomial" ( allowedTokens = ["pinhole", "fisheyeOrthographic", "fisheyeEquidistant", "fisheyeEquisolid", "fisheyePolynomial", "fisheyeSpherical"] ) string crossCameraReferenceName = "CameraFisheyeRight" float focalLength = 24 float focusDistance = 400 float horizontalAperture = 20.955 float verticalAperture = 11.764211 double3 xformOp:rotateXYZ = (-10, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (-10, 4, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Camera "CameraPinhole" { float focalLength = 24 float focusDistance = 400 float horizontalAperture = 20.955 float verticalAperture = 11.770693 double3 xformOp:rotateXYZ = (-9.999999999999982, -0, 0) double3 xformOp:scale = (1, 0.9999999999999999, 0.9999999999999999) double3 xformOp:translate = (10, 3.999999999999968, -1.4210854715202004e-14) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Camera "CameraFisheyeRight" { token cameraProjectionType = "fisheyePolynomial" ( allowedTokens = ["pinhole", "fisheyeOrthographic", "fisheyeEquidistant", "fisheyeEquisolid", "fisheyePolynomial", "fisheyeSpherical"] ) string crossCameraReferenceName = "CameraFisheyeLeft" float focalLength = 24 float focusDistance = 400 float horizontalAperture = 20.955 float verticalAperture = 11.807976 double3 xformOp:rotateXYZ = (-10, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 4, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } } def Mesh "Plane" { int[] faceVertexCounts = [4] int[] faceVertexIndices = [0, 2, 3, 1] rel material:binding = </World/Looks/OmniPBR_green> ( bindMaterialAs = "weakerThanDescendants" ) normal3f[] normals = [(0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(-50, 0, -50), (50, 0, -50), (-50, 0, 50), (50, 0, 50)] float2[] primvars:st = [(1, 0), (1, 1), (0, 1), (0, 0)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (11.937299728393555, 1, 11.937299728393555) double3 xformOp:translate = (0, -1.29846, -588.602) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Mesh "Cone" { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 32, 33, 1, 1, 33, 34, 2, 2, 34, 35, 3, 3, 35, 36, 4, 4, 36, 37, 5, 5, 37, 38, 6, 6, 38, 39, 7, 7, 39, 40, 8, 8, 40, 41, 9, 9, 41, 42, 10, 10, 42, 43, 11, 11, 43, 44, 12, 12, 44, 45, 13, 13, 45, 46, 14, 14, 46, 47, 15, 15, 47, 48, 16, 16, 48, 49, 17, 17, 49, 50, 18, 18, 50, 51, 19, 19, 51, 52, 20, 20, 52, 53, 21, 21, 53, 54, 22, 22, 54, 55, 23, 23, 55, 56, 24, 24, 56, 57, 25, 25, 57, 58, 26, 26, 58, 59, 27, 27, 59, 60, 28, 28, 60, 61, 29, 29, 61, 62, 30, 30, 62, 63, 31, 31, 63, 32, 0, 32, 64, 65, 33, 33, 65, 66, 34, 34, 66, 67, 35, 35, 67, 68, 36, 36, 68, 69, 37, 37, 69, 70, 38, 38, 70, 71, 39, 39, 71, 72, 40, 40, 72, 73, 41, 41, 73, 74, 42, 42, 74, 75, 43, 43, 75, 76, 44, 44, 76, 77, 45, 45, 77, 78, 46, 46, 78, 79, 47, 47, 79, 80, 48, 48, 80, 81, 49, 49, 81, 82, 50, 50, 82, 83, 51, 51, 83, 84, 52, 52, 84, 85, 53, 53, 85, 86, 54, 54, 86, 87, 55, 55, 87, 88, 56, 56, 88, 89, 57, 57, 89, 90, 58, 58, 90, 91, 59, 59, 91, 92, 60, 60, 92, 93, 61, 61, 93, 94, 62, 62, 94, 95, 63, 63, 95, 64, 32, 64, 96, 97, 65, 65, 97, 98, 66, 66, 98, 99, 67, 67, 99, 100, 68, 68, 100, 101, 69, 69, 101, 102, 70, 70, 102, 103, 71, 71, 103, 104, 72, 72, 104, 105, 73, 73, 105, 106, 74, 74, 106, 107, 75, 75, 107, 108, 76, 76, 108, 109, 77, 77, 109, 110, 78, 78, 110, 111, 79, 79, 111, 112, 80, 80, 112, 113, 81, 81, 113, 114, 82, 82, 114, 115, 83, 83, 115, 116, 84, 84, 116, 117, 85, 85, 117, 118, 86, 86, 118, 119, 87, 87, 119, 120, 88, 88, 120, 121, 89, 89, 121, 122, 90, 90, 122, 123, 91, 91, 123, 124, 92, 92, 124, 125, 93, 93, 125, 126, 94, 94, 126, 127, 95, 95, 127, 96, 64, 96, 128, 129, 97, 97, 129, 130, 98, 98, 130, 131, 99, 99, 131, 132, 100, 100, 132, 133, 101, 101, 133, 134, 102, 102, 134, 135, 103, 103, 135, 136, 104, 104, 136, 137, 105, 105, 137, 138, 106, 106, 138, 139, 107, 107, 139, 140, 108, 108, 140, 141, 109, 109, 141, 142, 110, 110, 142, 143, 111, 111, 143, 144, 112, 112, 144, 145, 113, 113, 145, 146, 114, 114, 146, 147, 115, 115, 147, 148, 116, 116, 148, 149, 117, 117, 149, 150, 118, 118, 150, 151, 119, 119, 151, 152, 120, 120, 152, 153, 121, 121, 153, 154, 122, 122, 154, 155, 123, 123, 155, 156, 124, 124, 156, 157, 125, 125, 157, 158, 126, 126, 158, 159, 127, 127, 159, 128, 96, 160, 161, 162, 160, 162, 163, 160, 163, 164, 160, 164, 165, 160, 165, 166, 160, 166, 167, 160, 167, 168, 160, 168, 169, 160, 169, 170, 160, 170, 171, 160, 171, 172, 160, 172, 173, 160, 173, 174, 160, 174, 175, 160, 175, 176, 160, 176, 177, 160, 177, 178, 160, 178, 179, 160, 179, 180, 160, 180, 181, 160, 181, 182, 160, 182, 183, 160, 183, 184, 160, 184, 185, 160, 185, 186, 160, 186, 187, 160, 187, 188, 160, 188, 189, 160, 189, 190, 160, 190, 191, 160, 191, 192, 160, 192, 161] rel material:binding = </World/Looks/OmniPBR_blue> ( bindMaterialAs = "weakerThanDescendants" ) normal3f[] normals = [(0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8772411, 0.44721362, 0.17449394), (0.877241, 0.4472136, 0.17449391), (0.877241, 0.4472136, 0.17449391), (0.8772411, 0.44721362, 0.17449394), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.7436893, 0.4472136, 0.49691668), (0.74368936, 0.44721362, 0.4969167), (0.74368936, 0.44721362, 0.4969167), (0.7436893, 0.4472136, 0.49691668), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.44721365, 0.63245505), (0.632456, 0.44721365, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228343, 0.4472136, 0.8263426), (0.34228346, 0.44721362, 0.8263426), (0.34228346, 0.44721362, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.1744953, 0.4472136, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.8772408), (0.0000014049631, 0.44721362, 0.89442724), (0.0000014049629, 0.4472136, 0.8944272), (0.0000014049629, 0.4472136, 0.8944272), (0.0000014049631, 0.44721362, 0.89442724), (-0.17449255, 0.44721356, 0.8772414), (-0.17449254, 0.44721362, 0.8772414), (-0.17449254, 0.44721362, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.4969155, 0.44721362, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.4969155, 0.44721362, 0.74369013), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.74368775, 0.4472136, 0.496919), (-0.7436878, 0.44721362, 0.49691904), (-0.7436878, 0.44721362, 0.49691904), (-0.74368775, 0.4472136, 0.496919), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8944272, 0.4472136, 0.0000028099257), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8772417, 0.44721356, -0.17449118), (-0.8772416, 0.4472136, -0.17449117), (-0.8772416, 0.4472136, -0.17449117), (-0.8772417, 0.44721356, -0.17449118), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.63245803, 0.44721362, -0.632453), (-0.632458, 0.4472136, -0.632453), (-0.632458, 0.4472136, -0.632453), (-0.63245803, 0.44721362, -0.632453), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.44721362, -0.743687), (-0.4969202, 0.44721362, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.34228605, 0.4472136, -0.8263415), (-0.34228605, 0.44721362, -0.8263415), (-0.34228605, 0.44721362, -0.8263415), (-0.34228605, 0.4472136, -0.8263415), (-0.17449805, 0.4472136, -0.8772402), (-0.17449804, 0.44721362, -0.87724024), (-0.17449804, 0.44721362, -0.87724024), (-0.17449805, 0.4472136, -0.8772402), (-0.000004214889, 0.44721362, -0.89442724), (-0.0000042148886, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.44721362, -0.89442724), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.4472136, -0.8263448), (0.34227827, 0.4472136, -0.8263448), (0.34227827, 0.44721356, -0.8263447), (0.4969132, 0.4472136, -0.7436916), (0.4969132, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436916), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.44721362, -0.632459), (0.7436862, 0.4472136, -0.49692136), (0.74368626, 0.44721362, -0.4969214), (0.74368626, 0.44721362, -0.4969214), (0.7436862, 0.4472136, -0.49692136), (0.826341, 0.4472136, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.44721362, -0.17449942), (0.87723994, 0.44721362, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.877241, 0.44721356, 0.17449391), (0.8772411, 0.44721362, 0.17449394), (0.8772411, 0.44721362, 0.17449394), (0.877241, 0.44721356, 0.17449391), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.74368936, 0.44721365, 0.49691668), (0.7436893, 0.4472136, 0.49691668), (0.7436893, 0.4472136, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.632456, 0.4472136, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228346, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.87724084), (0.000001404963, 0.4472136, 0.8944272), (0.0000014049631, 0.44721362, 0.89442724), (0.0000014049631, 0.44721362, 0.89442724), (0.000001404963, 0.4472136, 0.8944272), (-0.17449254, 0.44721356, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772414), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.49691552, 0.4472136, 0.7436901), (-0.4969155, 0.44721362, 0.74369013), (-0.4969155, 0.44721362, 0.74369013), (-0.49691552, 0.4472136, 0.7436901), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.7436878, 0.4472136, 0.496919), (-0.74368775, 0.4472136, 0.496919), (-0.74368775, 0.4472136, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.44721356, 0.34228474), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.44721356, 0.17449667), (-0.8944272, 0.4472136, 0.000002809926), (-0.89442724, 0.44721362, 0.0000028099262), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8944272, 0.4472136, 0.000002809926), (-0.8772416, 0.4472136, -0.17449115), (-0.8772417, 0.44721356, -0.17449118), (-0.8772417, 0.44721356, -0.17449118), (-0.8772416, 0.4472136, -0.17449115), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.74369085, 0.44721362, -0.49691433), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.74369085, 0.44721362, -0.49691433), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.44721362, -0.632453), (-0.63245803, 0.44721362, -0.632453), (-0.63245803, 0.4472136, -0.6324531), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.34228602, 0.4472136, -0.82634145), (-0.34228605, 0.4472136, -0.8263415), (-0.34228605, 0.4472136, -0.8263415), (-0.34228602, 0.4472136, -0.82634145), (-0.17449804, 0.44721356, -0.8772402), (-0.17449805, 0.4472136, -0.8772402), (-0.17449805, 0.4472136, -0.8772402), (-0.17449804, 0.44721356, -0.8772402), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.44721362, -0.89442724), (-0.000004214889, 0.44721362, -0.89442724), (-0.0000042148886, 0.4472136, -0.8944272), (0.17448977, 0.44721362, -0.87724185), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.17448977, 0.44721362, -0.87724185), (0.34227824, 0.4472136, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.49691316, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436916), (0.4969132, 0.4472136, -0.7436916), (0.49691316, 0.4472136, -0.7436917), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.7436862, 0.44721356, -0.49692133), (0.7436862, 0.4472136, -0.49692136), (0.7436862, 0.4472136, -0.49692136), (0.7436862, 0.44721356, -0.49692133), (0.8263409, 0.4472136, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8772411, 0.44721356, 0.17449392), (0.877241, 0.44721356, 0.17449391), (0.877241, 0.44721356, 0.17449391), (0.8772411, 0.44721356, 0.17449392), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228218), (0.74368936, 0.44721362, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.63245606, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.63245606, 0.4472136, 0.63245505), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.1744953, 0.44721356, 0.8772408), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.44721356, 0.8772408), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (-0.17449254, 0.44721356, 0.8772413), (-0.17449254, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772413), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.74369013), (-0.63245404, 0.44721356, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.44721356, 0.632457), (-0.74368775, 0.44721356, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.74368775, 0.44721356, 0.496919), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.44721356, 0.3422847), (-0.8772405, 0.4472136, 0.17449668), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.4472136, 0.17449668), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.4472136, -0.17449115), (-0.8772416, 0.4472136, -0.17449115), (-0.8772416, 0.44721362, -0.17449115), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.7436909, 0.44721362, -0.49691433), (-0.74369085, 0.44721362, -0.49691433), (-0.74369085, 0.44721362, -0.49691433), (-0.7436909, 0.44721362, -0.49691433), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.49692017, 0.44721356, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.4472136, -0.82634145), (-0.34228602, 0.4472136, -0.82634145), (-0.34228602, 0.44721362, -0.8263415), (-0.17449807, 0.4472136, -0.87724024), (-0.17449804, 0.44721356, -0.8772402), (-0.17449804, 0.44721356, -0.8772402), (-0.17449807, 0.4472136, -0.87724024), (-0.000004214889, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (0.17448978, 0.44721362, -0.87724185), (0.17448977, 0.44721362, -0.87724185), (0.17448977, 0.44721362, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.34227827, 0.4472136, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.44721356, -0.632459), (0.74368626, 0.4472136, -0.49692136), (0.7436862, 0.44721356, -0.49692133), (0.7436862, 0.44721356, -0.49692133), (0.74368626, 0.4472136, -0.49692136), (0.826341, 0.44721362, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449944), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.87724113, 0.4472136, 0.17449392), (0.8772411, 0.44721356, 0.17449392), (0.8772411, 0.44721356, 0.17449392), (0.87724113, 0.4472136, 0.17449392), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.44721362, 0.34228215), (0.7436893, 0.44721362, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.7436893, 0.44721362, 0.49691668), (0.632456, 0.4472136, 0.632455), (0.63245606, 0.4472136, 0.63245505), (0.63245606, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.632455), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228343, 0.4472136, 0.8263425), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263425), (0.17449528, 0.4472136, 0.8772408), (0.1744953, 0.44721356, 0.8772408), (0.1744953, 0.44721356, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.0000014049629, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.0000014049629, 0.4472136, 0.8944272), (-0.17449255, 0.4472136, 0.8772414), (-0.17449254, 0.44721356, 0.8772413), (-0.17449254, 0.44721356, 0.8772413), (-0.17449255, 0.4472136, 0.8772414), (-0.34228086, 0.44721365, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228086, 0.44721365, 0.82634366), (-0.49691546, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.49691546, 0.4472136, 0.7436901), (-0.6324541, 0.4472136, 0.6324571), (-0.63245404, 0.44721356, 0.632457), (-0.63245404, 0.44721356, 0.632457), (-0.6324541, 0.4472136, 0.6324571), (-0.74368775, 0.4472136, 0.49691907), (-0.74368775, 0.44721356, 0.496919), (-0.74368775, 0.44721356, 0.496919), (-0.74368775, 0.4472136, 0.49691907), (-0.82634205, 0.44721365, 0.34228477), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721365, 0.34228477), (-0.87724054, 0.4472136, 0.1744967), (-0.8772405, 0.4472136, 0.17449668), (-0.8772405, 0.4472136, 0.17449668), (-0.87724054, 0.4472136, 0.1744967), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8772416, 0.4472136, -0.17449117), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.4472136, -0.17449117), (-0.82634413, 0.44721356, -0.34227952), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.82634413, 0.44721356, -0.34227952), (-0.74369085, 0.4472136, -0.4969143), (-0.7436909, 0.44721362, -0.49691433), (-0.7436909, 0.44721362, -0.49691433), (-0.74369085, 0.4472136, -0.4969143), (-0.632458, 0.4472136, -0.632453), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.632458, 0.4472136, -0.632453), (-0.49692023, 0.4472136, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.49692023, 0.4472136, -0.743687), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.17449807, 0.4472136, -0.8772403), (-0.17449807, 0.4472136, -0.87724024), (-0.17449807, 0.4472136, -0.87724024), (-0.17449807, 0.4472136, -0.8772403), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (0.17448977, 0.4472136, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.17448977, 0.4472136, -0.87724185), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.49691314, 0.4472136, -0.7436916), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691314, 0.4472136, -0.7436916), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.4472136, -0.63245904), (0.7436862, 0.4472136, -0.4969214), (0.74368626, 0.4472136, -0.49692136), (0.74368626, 0.4472136, -0.49692136), (0.7436862, 0.4472136, -0.4969214), (0.8263409, 0.4472136, -0.3422873), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.8263409, 0.4472136, -0.3422873), (0.87723994, 0.44721365, -0.17449942), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.44721365, -0.17449942), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(50, -50, 0), (49.039265, -50, 9.754506), (46.193985, -50, 19.134153), (41.573498, -50, 27.778486), (35.355366, -50, 35.355312), (27.778553, -50, 41.573452), (19.134226, -50, 46.193954), (9.754583, -50, 49.03925), (0.000078539815, -50, 50), (-9.75443, -50, 49.03928), (-19.13408, -50, 46.194016), (-27.778421, -50, 41.57354), (-35.355255, -50, 35.355423), (-41.57341, -50, 27.778618), (-46.193924, -50, 19.134298), (-49.039234, -50, 9.754661), (-50, -50, 0.00015707963), (-49.039295, -50, -9.754353), (-46.194046, -50, -19.134008), (-41.573586, -50, -27.778357), (-35.355476, -50, -35.3552), (-27.778683, -50, -41.573364), (-19.13437, -50, -46.193893), (-9.754738, -50, -49.03922), (-0.00023561945, -50, -50), (9.754275, -50, -49.03931), (19.133936, -50, -46.194073), (27.778292, -50, -41.573627), (35.355145, -50, -35.355534), (41.573322, -50, -27.778748), (46.193863, -50, -19.134443), (49.039204, -50, -9.754814), (37.50001, -25.000025, 0), (36.77946, -25.000025, 7.315882), (34.6455, -25.000025, 14.35062), (31.180134, -25.000025, 20.833872), (26.516535, -25.000025, 26.516493), (20.833921, -25.000025, 31.1801), (14.350675, -25.000025, 34.645477), (7.31594, -25.000025, 36.77945), (0.000058904883, -25.000025, 37.50001), (-7.3158245, -25.000025, 36.779472), (-14.350566, -25.000025, 34.645523), (-20.833824, -25.000025, 31.180166), (-26.51645, -25.000025, 26.516575), (-31.180067, -25.000025, 20.833971), (-34.645454, -25.000025, 14.350729), (-36.779438, -25.000025, 7.3159976), (-37.50001, -25.000025, 0.00011780977), (-36.779484, -25.000025, -7.315767), (-34.645546, -25.000025, -14.350511), (-31.180199, -25.000025, -20.833775), (-26.516617, -25.000025, -26.516409), (-20.834019, -25.000025, -31.180035), (-14.350783, -25.000025, -34.64543), (-7.316056, -25.000025, -36.779427), (-0.00017671465, -25.000025, -37.50001), (7.315709, -25.000025, -36.779495), (14.350456, -25.000025, -34.64557), (20.833725, -25.000025, -31.180231), (26.516367, -25.000025, -26.516659), (31.180002, -25.000025, -20.834068), (34.64541, -25.000025, -14.350838), (36.779415, -25.000025, -7.3161135), (25.000025, -0.00005, 0), (24.519657, -0.00005, 4.8772583), (23.097015, -0.00005, 9.567086), (20.78677, -0.00005, 13.889257), (17.677702, -0.00005, 17.677673), (13.88929, -0.00005, 20.786747), (9.567122, -0.00005, 23.097), (4.8772964, -0.00005, 24.51965), (0.000039269948, -0.00005, 25.000025), (-4.8772197, -0.00005, 24.519665), (-9.56705, -0.00005, 23.09703), (-13.889225, -0.00005, 20.78679), (-17.677645, -0.00005, 17.677729), (-20.786726, -0.00005, 13.889323), (-23.096985, -0.00005, 9.567159), (-24.519642, -0.00005, 4.877335), (-25.000025, -0.00005, 0.000078539895), (-24.519672, -0.00005, -4.877181), (-23.097046, -0.00005, -9.567014), (-20.786814, -0.00005, -13.889193), (-17.677757, -0.00005, -17.677618), (-13.889356, -0.00005, -20.786703), (-9.567195, -0.00005, -23.09697), (-4.8773737, -0.00005, -24.519634), (-0.00011780984, -0.00005, -25.000025), (4.8771424, -0.00005, -24.51968), (9.5669775, -0.00005, -23.097061), (13.889159, -0.00005, -20.786835), (17.67759, -0.00005, -17.677784), (20.786682, -0.00005, -13.889388), (23.096954, -0.00005, -9.567231), (24.519627, -0.00005, -4.8774123), (12.500037, 24.999926, 0), (12.259853, 24.999926, 2.438634), (11.548531, 24.999926, 4.7835526), (10.393405, 24.999926, 6.9446425), (8.838868, 24.999926, 8.838855), (6.9446588, 24.999926, 10.393394), (4.783571, 24.999926, 11.548523), (2.4386532, 24.999926, 12.25985), (0.000019635014, 24.999926, 12.500037), (-2.4386146, 24.999926, 12.259857), (-4.7835345, 24.999926, 11.548538), (-6.9446263, 24.999926, 10.393416), (-8.8388405, 24.999926, 8.838882), (-10.393384, 24.999926, 6.9446754), (-11.548515, 24.999926, 4.783589), (-12.259846, 24.999926, 2.4386725), (-12.500037, 24.999926, 0.000039270028), (-12.259861, 24.999926, -2.4385955), (-11.548546, 24.999926, -4.7835164), (-10.393427, 24.999926, -6.94461), (-8.838896, 24.999926, -8.838826), (-6.9446917, 24.999926, -10.393373), (-4.783607, 24.999926, -11.548508), (-2.4386916, 24.999926, -12.259842), (-0.00005890504, 24.999926, -12.500037), (2.4385762, 24.999926, -12.259865), (4.7834983, 24.999926, -11.548553), (6.9445934, 24.999926, -10.393438), (8.838813, 24.999926, -8.83891), (10.393362, 24.999926, -6.944708), (11.548501, 24.999926, -4.783625), (12.259838, 24.999926, -2.438711), (0.00005, 49.9999, 0), (0.000049039267, 49.9999, 0.000009754506), (0.000046193985, 49.9999, 0.000019134153), (0.000041573498, 49.9999, 0.000027778487), (0.000035355366, 49.9999, 0.00003535531), (0.000027778553, 49.9999, 0.000041573454), (0.000019134226, 49.9999, 0.000046193953), (0.0000097545835, 49.9999, 0.000049039252), (7.8539814e-11, 49.9999, 0.00005), (-0.00000975443, 49.9999, 0.00004903928), (-0.00001913408, 49.9999, 0.000046194014), (-0.000027778422, 49.9999, 0.00004157354), (-0.000035355257, 49.9999, 0.00003535542), (-0.00004157341, 49.9999, 0.000027778618), (-0.000046193923, 49.9999, 0.000019134299), (-0.000049039234, 49.9999, 0.000009754661), (-0.00005, 49.9999, 1.5707963e-10), (-0.000049039296, 49.9999, -0.0000097543525), (-0.000046194044, 49.9999, -0.000019134008), (-0.000041573585, 49.9999, -0.000027778357), (-0.00003535548, 49.9999, -0.0000353552), (-0.000027778684, 49.9999, -0.000041573367), (-0.000019134372, 49.9999, -0.000046193894), (-0.000009754737, 49.9999, -0.00004903922), (-2.3561944e-10, 49.9999, -0.00005), (0.000009754275, 49.9999, -0.00004903931), (0.000019133935, 49.9999, -0.000046194073), (0.000027778291, 49.9999, -0.00004157363), (0.000035355144, 49.9999, -0.000035355533), (0.000041573323, 49.9999, -0.000027778748), (0.000046193865, 49.9999, -0.000019134444), (0.000049039205, 49.9999, -0.0000097548145), (0, -50, 0), (50, -50, 0), (49.039265, -50, 9.754506), (46.193985, -50, 19.134153), (41.573498, -50, 27.778486), (35.355366, -50, 35.355312), (27.778553, -50, 41.573452), (19.134226, -50, 46.193954), (9.754583, -50, 49.03925), (0.000078539815, -50, 50), (-9.75443, -50, 49.03928), (-19.13408, -50, 46.194016), (-27.778421, -50, 41.57354), (-35.355255, -50, 35.355423), (-41.57341, -50, 27.778618), (-46.193924, -50, 19.134298), (-49.039234, -50, 9.754661), (-50, -50, 0.00015707963), (-49.039295, -50, -9.754353), (-46.194046, -50, -19.134008), (-41.573586, -50, -27.778357), (-35.355476, -50, -35.3552), (-27.778683, -50, -41.573364), (-19.13437, -50, -46.193893), (-9.754738, -50, -49.03922), (-0.00023561945, -50, -50), (9.754275, -50, -49.03931), (19.133936, -50, -46.194073), (27.778292, -50, -41.573627), (35.355145, -50, -35.355534), (41.573322, -50, -27.778748), (46.193863, -50, -19.134443), (49.039204, -50, -9.754814)] float2[] primvars:st = [(1, 0), (1, 0.24999975), (0.96875006, 0.24999975), (0.96875006, 0), (0.96875006, 0), (0.96875006, 0.24999975), (0.93750006, 0.24999975), (0.93750006, 0), (0.93750006, 0), (0.93750006, 0.24999975), (0.9062501, 0.24999975), (0.9062501, 0), (0.9062501, 0), (0.9062501, 0.24999975), (0.8750001, 0.24999975), (0.8750001, 0), (0.8750001, 0), (0.8750001, 0.24999975), (0.8437502, 0.24999975), (0.8437502, 0), (0.8437502, 0), (0.8437502, 0.24999975), (0.8125002, 0.24999975), (0.8125002, 0), (0.8125002, 0), (0.8125002, 0.24999975), (0.78125024, 0.24999975), (0.78125024, 0), (0.78125024, 0), (0.78125024, 0.24999975), (0.75000024, 0.24999975), (0.75000024, 0), (0.75000024, 0), (0.75000024, 0.24999975), (0.7187503, 0.24999975), (0.7187503, 0), (0.7187503, 0), (0.7187503, 0.24999975), (0.6875003, 0.24999975), (0.6875003, 0), (0.6875003, 0), (0.6875003, 0.24999975), (0.65625036, 0.24999975), (0.65625036, 0), (0.65625036, 0), (0.65625036, 0.24999975), (0.62500036, 0.24999975), (0.62500036, 0), (0.62500036, 0), (0.62500036, 0.24999975), (0.5937504, 0.24999975), (0.5937504, 0), (0.5937504, 0), (0.5937504, 0.24999975), (0.5625004, 0.24999975), (0.5625004, 0), (0.5625004, 0), (0.5625004, 0.24999975), (0.5312505, 0.24999975), (0.5312505, 0), (0.5312505, 0), (0.5312505, 0.24999975), (0.5000005, 0.24999975), (0.5000005, 0), (0.5000005, 0), (0.5000005, 0.24999975), (0.46875054, 0.24999975), (0.46875054, 0), (0.46875054, 0), (0.46875054, 0.24999975), (0.43750057, 0.24999975), (0.43750057, 0), (0.43750057, 0), (0.43750057, 0.24999975), (0.4062506, 0.24999975), (0.4062506, 0), (0.4062506, 0), (0.4062506, 0.24999975), (0.37500063, 0.24999975), (0.37500063, 0), (0.37500063, 0), (0.37500063, 0.24999975), (0.34375066, 0.24999975), (0.34375066, 0), (0.34375066, 0), (0.34375066, 0.24999975), (0.3125007, 0.24999975), (0.3125007, 0), (0.3125007, 0), (0.3125007, 0.24999975), (0.28125072, 0.24999975), (0.28125072, 0), (0.28125072, 0), (0.28125072, 0.24999975), (0.25000075, 0.24999975), (0.25000075, 0), (0.25000075, 0), (0.25000075, 0.24999975), (0.21875077, 0.24999975), (0.21875077, 0), (0.21875077, 0), (0.21875077, 0.24999975), (0.18750082, 0.24999975), (0.18750082, 0), (0.18750082, 0), (0.18750082, 0.24999975), (0.15625085, 0.24999975), (0.15625085, 0), (0.15625085, 0), (0.15625085, 0.24999975), (0.12500088, 0.24999975), (0.12500088, 0), (0.12500088, 0), (0.12500088, 0.24999975), (0.09375091, 0.24999975), (0.09375091, 0), (0.09375091, 0), (0.09375091, 0.24999975), (0.06250094, 0.24999975), (0.06250094, 0), (0.06250094, 0), (0.06250094, 0.24999975), (0.03125097, 0.24999975), (0.03125097, 0), (0.03125097, 0), (0.03125097, 0.24999975), (0, 0.24999975), (0, 0), (1, 0.24999975), (1, 0.4999995), (0.96875006, 0.4999995), (0.96875006, 0.24999975), (0.96875006, 0.24999975), (0.96875006, 0.4999995), (0.93750006, 0.4999995), (0.93750006, 0.24999975), (0.93750006, 0.24999975), (0.93750006, 0.4999995), (0.9062501, 0.4999995), (0.9062501, 0.24999975), (0.9062501, 0.24999975), (0.9062501, 0.4999995), (0.8750001, 0.4999995), (0.8750001, 0.24999975), (0.8750001, 0.24999975), (0.8750001, 0.4999995), (0.8437502, 0.4999995), (0.8437502, 0.24999975), (0.8437502, 0.24999975), (0.8437502, 0.4999995), (0.8125002, 0.4999995), (0.8125002, 0.24999975), (0.8125002, 0.24999975), (0.8125002, 0.4999995), (0.78125024, 0.4999995), (0.78125024, 0.24999975), (0.78125024, 0.24999975), (0.78125024, 0.4999995), (0.75000024, 0.4999995), (0.75000024, 0.24999975), (0.75000024, 0.24999975), (0.75000024, 0.4999995), (0.7187503, 0.4999995), (0.7187503, 0.24999975), (0.7187503, 0.24999975), (0.7187503, 0.4999995), (0.6875003, 0.4999995), (0.6875003, 0.24999975), (0.6875003, 0.24999975), (0.6875003, 0.4999995), (0.65625036, 0.4999995), (0.65625036, 0.24999975), (0.65625036, 0.24999975), (0.65625036, 0.4999995), (0.62500036, 0.4999995), (0.62500036, 0.24999975), (0.62500036, 0.24999975), (0.62500036, 0.4999995), (0.5937504, 0.4999995), (0.5937504, 0.24999975), (0.5937504, 0.24999975), (0.5937504, 0.4999995), (0.5625004, 0.4999995), (0.5625004, 0.24999975), (0.5625004, 0.24999975), (0.5625004, 0.4999995), (0.5312505, 0.4999995), (0.5312505, 0.24999975), (0.5312505, 0.24999975), (0.5312505, 0.4999995), (0.5000005, 0.4999995), (0.5000005, 0.24999975), (0.5000005, 0.24999975), (0.5000005, 0.4999995), (0.46875054, 0.4999995), (0.46875054, 0.24999975), (0.46875054, 0.24999975), (0.46875054, 0.4999995), (0.43750057, 0.4999995), (0.43750057, 0.24999975), (0.43750057, 0.24999975), (0.43750057, 0.4999995), (0.4062506, 0.4999995), (0.4062506, 0.24999975), (0.4062506, 0.24999975), (0.4062506, 0.4999995), (0.37500063, 0.4999995), (0.37500063, 0.24999975), (0.37500063, 0.24999975), (0.37500063, 0.4999995), (0.34375066, 0.4999995), (0.34375066, 0.24999975), (0.34375066, 0.24999975), (0.34375066, 0.4999995), (0.3125007, 0.4999995), (0.3125007, 0.24999975), (0.3125007, 0.24999975), (0.3125007, 0.4999995), (0.28125072, 0.4999995), (0.28125072, 0.24999975), (0.28125072, 0.24999975), (0.28125072, 0.4999995), (0.25000075, 0.4999995), (0.25000075, 0.24999975), (0.25000075, 0.24999975), (0.25000075, 0.4999995), (0.21875077, 0.4999995), (0.21875077, 0.24999975), (0.21875077, 0.24999975), (0.21875077, 0.4999995), (0.18750082, 0.4999995), (0.18750082, 0.24999975), (0.18750082, 0.24999975), (0.18750082, 0.4999995), (0.15625085, 0.4999995), (0.15625085, 0.24999975), (0.15625085, 0.24999975), (0.15625085, 0.4999995), (0.12500088, 0.4999995), (0.12500088, 0.24999975), (0.12500088, 0.24999975), (0.12500088, 0.4999995), (0.09375091, 0.4999995), (0.09375091, 0.24999975), (0.09375091, 0.24999975), (0.09375091, 0.4999995), (0.06250094, 0.4999995), (0.06250094, 0.24999975), (0.06250094, 0.24999975), (0.06250094, 0.4999995), (0.03125097, 0.4999995), (0.03125097, 0.24999975), (0.03125097, 0.24999975), (0.03125097, 0.4999995), (0, 0.4999995), (0, 0.24999975), (1, 0.4999995), (1, 0.7499992), (0.96875006, 0.7499992), (0.96875006, 0.4999995), (0.96875006, 0.4999995), (0.96875006, 0.7499992), (0.93750006, 0.7499992), (0.93750006, 0.4999995), (0.93750006, 0.4999995), (0.93750006, 0.7499992), (0.9062501, 0.7499992), (0.9062501, 0.4999995), (0.9062501, 0.4999995), (0.9062501, 0.7499992), (0.8750001, 0.7499992), (0.8750001, 0.4999995), (0.8750001, 0.4999995), (0.8750001, 0.7499992), (0.8437502, 0.7499992), (0.8437502, 0.4999995), (0.8437502, 0.4999995), (0.8437502, 0.7499992), (0.8125002, 0.7499992), (0.8125002, 0.4999995), (0.8125002, 0.4999995), (0.8125002, 0.7499992), (0.78125024, 0.7499992), (0.78125024, 0.4999995), (0.78125024, 0.4999995), (0.78125024, 0.7499992), (0.75000024, 0.7499992), (0.75000024, 0.4999995), (0.75000024, 0.4999995), (0.75000024, 0.7499992), (0.7187503, 0.7499992), (0.7187503, 0.4999995), (0.7187503, 0.4999995), (0.7187503, 0.7499992), (0.6875003, 0.7499992), (0.6875003, 0.4999995), (0.6875003, 0.4999995), (0.6875003, 0.7499992), (0.65625036, 0.7499992), (0.65625036, 0.4999995), (0.65625036, 0.4999995), (0.65625036, 0.7499992), (0.62500036, 0.7499992), (0.62500036, 0.4999995), (0.62500036, 0.4999995), (0.62500036, 0.7499992), (0.5937504, 0.7499992), (0.5937504, 0.4999995), (0.5937504, 0.4999995), (0.5937504, 0.7499992), (0.5625004, 0.7499992), (0.5625004, 0.4999995), (0.5625004, 0.4999995), (0.5625004, 0.7499992), (0.5312505, 0.7499992), (0.5312505, 0.4999995), (0.5312505, 0.4999995), (0.5312505, 0.7499992), (0.5000005, 0.7499992), (0.5000005, 0.4999995), (0.5000005, 0.4999995), (0.5000005, 0.7499992), (0.46875054, 0.7499992), (0.46875054, 0.4999995), (0.46875054, 0.4999995), (0.46875054, 0.7499992), (0.43750057, 0.7499992), (0.43750057, 0.4999995), (0.43750057, 0.4999995), (0.43750057, 0.7499992), (0.4062506, 0.7499992), (0.4062506, 0.4999995), (0.4062506, 0.4999995), (0.4062506, 0.7499992), (0.37500063, 0.7499992), (0.37500063, 0.4999995), (0.37500063, 0.4999995), (0.37500063, 0.7499992), (0.34375066, 0.7499992), (0.34375066, 0.4999995), (0.34375066, 0.4999995), (0.34375066, 0.7499992), (0.3125007, 0.7499992), (0.3125007, 0.4999995), (0.3125007, 0.4999995), (0.3125007, 0.7499992), (0.28125072, 0.7499992), (0.28125072, 0.4999995), (0.28125072, 0.4999995), (0.28125072, 0.7499992), (0.25000075, 0.7499992), (0.25000075, 0.4999995), (0.25000075, 0.4999995), (0.25000075, 0.7499992), (0.21875077, 0.7499992), (0.21875077, 0.4999995), (0.21875077, 0.4999995), (0.21875077, 0.7499992), (0.18750082, 0.7499992), (0.18750082, 0.4999995), (0.18750082, 0.4999995), (0.18750082, 0.7499992), (0.15625085, 0.7499992), (0.15625085, 0.4999995), (0.15625085, 0.4999995), (0.15625085, 0.7499992), (0.12500088, 0.7499992), (0.12500088, 0.4999995), (0.12500088, 0.4999995), (0.12500088, 0.7499992), (0.09375091, 0.7499992), (0.09375091, 0.4999995), (0.09375091, 0.4999995), (0.09375091, 0.7499992), (0.06250094, 0.7499992), (0.06250094, 0.4999995), (0.06250094, 0.4999995), (0.06250094, 0.7499992), (0.03125097, 0.7499992), (0.03125097, 0.4999995), (0.03125097, 0.4999995), (0.03125097, 0.7499992), (0, 0.7499992), (0, 0.4999995), (1, 0.7499992), (1, 0.999999), (0.96875006, 0.999999), (0.96875006, 0.7499992), (0.96875006, 0.7499992), (0.96875006, 0.999999), (0.93750006, 0.999999), (0.93750006, 0.7499992), (0.93750006, 0.7499992), (0.93750006, 0.999999), (0.9062501, 0.999999), (0.9062501, 0.7499992), (0.9062501, 0.7499992), (0.9062501, 0.999999), (0.8750001, 0.999999), (0.8750001, 0.7499992), (0.8750001, 0.7499992), (0.8750001, 0.999999), (0.8437502, 0.999999), (0.8437502, 0.7499992), (0.8437502, 0.7499992), (0.8437502, 0.999999), (0.8125002, 0.999999), (0.8125002, 0.7499992), (0.8125002, 0.7499992), (0.8125002, 0.999999), (0.78125024, 0.999999), (0.78125024, 0.7499992), (0.78125024, 0.7499992), (0.78125024, 0.999999), (0.75000024, 0.999999), (0.75000024, 0.7499992), (0.75000024, 0.7499992), (0.75000024, 0.999999), (0.7187503, 0.999999), (0.7187503, 0.7499992), (0.7187503, 0.7499992), (0.7187503, 0.999999), (0.6875003, 0.999999), (0.6875003, 0.7499992), (0.6875003, 0.7499992), (0.6875003, 0.999999), (0.65625036, 0.999999), (0.65625036, 0.7499992), (0.65625036, 0.7499992), (0.65625036, 0.999999), (0.62500036, 0.999999), (0.62500036, 0.7499992), (0.62500036, 0.7499992), (0.62500036, 0.999999), (0.5937504, 0.999999), (0.5937504, 0.7499992), (0.5937504, 0.7499992), (0.5937504, 0.999999), (0.5625004, 0.999999), (0.5625004, 0.7499992), (0.5625004, 0.7499992), (0.5625004, 0.999999), (0.5312505, 0.999999), (0.5312505, 0.7499992), (0.5312505, 0.7499992), (0.5312505, 0.999999), (0.5000005, 0.999999), (0.5000005, 0.7499992), (0.5000005, 0.7499992), (0.5000005, 0.999999), (0.46875054, 0.999999), (0.46875054, 0.7499992), (0.46875054, 0.7499992), (0.46875054, 0.999999), (0.43750057, 0.999999), (0.43750057, 0.7499992), (0.43750057, 0.7499992), (0.43750057, 0.999999), (0.4062506, 0.999999), (0.4062506, 0.7499992), (0.4062506, 0.7499992), (0.4062506, 0.999999), (0.37500063, 0.999999), (0.37500063, 0.7499992), (0.37500063, 0.7499992), (0.37500063, 0.999999), (0.34375066, 0.999999), (0.34375066, 0.7499992), (0.34375066, 0.7499992), (0.34375066, 0.999999), (0.3125007, 0.999999), (0.3125007, 0.7499992), (0.3125007, 0.7499992), (0.3125007, 0.999999), (0.28125072, 0.999999), (0.28125072, 0.7499992), (0.28125072, 0.7499992), (0.28125072, 0.999999), (0.25000075, 0.999999), (0.25000075, 0.7499992), (0.25000075, 0.7499992), (0.25000075, 0.999999), (0.21875077, 0.999999), (0.21875077, 0.7499992), (0.21875077, 0.7499992), (0.21875077, 0.999999), (0.18750082, 0.999999), (0.18750082, 0.7499992), (0.18750082, 0.7499992), (0.18750082, 0.999999), (0.15625085, 0.999999), (0.15625085, 0.7499992), (0.15625085, 0.7499992), (0.15625085, 0.999999), (0.12500088, 0.999999), (0.12500088, 0.7499992), (0.12500088, 0.7499992), (0.12500088, 0.999999), (0.09375091, 0.999999), (0.09375091, 0.7499992), (0.09375091, 0.7499992), (0.09375091, 0.999999), (0.06250094, 0.999999), (0.06250094, 0.7499992), (0.06250094, 0.7499992), (0.06250094, 0.999999), (0.03125097, 0.999999), (0.03125097, 0.7499992), (0.03125097, 0.7499992), (0.03125097, 0.999999), (0, 0.999999), (0, 0.7499992), (0.5, 0.5), (1, 0.5), (0.9903927, 0.5975451), (0.5, 0.5), (0.9903927, 0.5975451), (0.9619398, 0.6913415), (0.5, 0.5), (0.9619398, 0.6913415), (0.91573495, 0.7777849), (0.5, 0.5), (0.91573495, 0.7777849), (0.85355365, 0.8535531), (0.5, 0.5), (0.85355365, 0.8535531), (0.77778554, 0.9157345), (0.5, 0.5), (0.77778554, 0.9157345), (0.69134223, 0.9619395), (0.5, 0.5), (0.69134223, 0.9619395), (0.59754586, 0.9903925), (0.5, 0.5), (0.59754586, 0.9903925), (0.5000008, 1), (0.5, 0.5), (0.5000008, 1), (0.40245572, 0.9903928), (0.5, 0.5), (0.40245572, 0.9903928), (0.3086592, 0.96194017), (0.5, 0.5), (0.3086592, 0.96194017), (0.22221579, 0.9157354), (0.5, 0.5), (0.22221579, 0.9157354), (0.14644744, 0.85355425), (0.5, 0.5), (0.14644744, 0.85355425), (0.0842659, 0.7777862), (0.5, 0.5), (0.0842659, 0.7777862), (0.03806076, 0.691343), (0.5, 0.5), (0.03806076, 0.691343), (0.009607648, 0.5975466), (0.5, 0.5), (0.009607648, 0.5975466), (2.4674152e-12, 0.50000155), (0.5, 0.5), (2.4674152e-12, 0.50000155), (0.009607034, 0.40245646), (0.5, 0.5), (0.009607034, 0.40245646), (0.03805956, 0.3086599), (0.5, 0.5), (0.03805956, 0.3086599), (0.08426416, 0.22221643), (0.5, 0.5), (0.08426416, 0.22221643), (0.14644521, 0.146448), (0.5, 0.5), (0.14644521, 0.146448), (0.22221316, 0.08426634), (0.5, 0.5), (0.22221316, 0.08426634), (0.30865628, 0.03806106), (0.5, 0.5), (0.30865628, 0.03806106), (0.40245262, 0.0096078), (0.5, 0.5), (0.40245262, 0.0096078), (0.49999765, 5.5516702e-12), (0.5, 0.5), (0.49999765, 5.5516702e-12), (0.59754276, 0.009606881), (0.5, 0.5), (0.59754276, 0.009606881), (0.6913394, 0.038059257), (0.5, 0.5), (0.6913394, 0.038059257), (0.7777829, 0.08426372), (0.5, 0.5), (0.7777829, 0.08426372), (0.85355145, 0.14644466), (0.5, 0.5), (0.85355145, 0.14644466), (0.9157332, 0.22221252), (0.5, 0.5), (0.9157332, 0.22221252), (0.9619386, 0.30865556), (0.5, 0.5), (0.9619386, 0.30865556), (0.990392, 0.40245184), (0.5, 0.5), (0.990392, 0.40245184), (1, 0.5)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (0.03, 0.2, 0.029999999329447746) double3 xformOp:translate = (-5.67828, 0, -4.58463) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Mesh "Cube" { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4] int[] faceVertexIndices = [0, 1, 3, 2, 0, 4, 5, 1, 1, 5, 6, 3, 2, 3, 6, 7, 0, 2, 7, 4, 4, 7, 6, 5] normal3f[] normals = [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, 0, -1), (0, 0, -1), (0, 0, -1), (0, 0, -1), (1, 0, 0), (1, 0, 0), (1, 0, 0), (1, 0, 0), (0, 0, 1), (0, 0, 1), (0, 0, 1), (0, 0, 1), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(-50, -50, -50), (50, -50, -50), (-50, -50, 50), (50, -50, 50), (-50, 50, -50), (50, 50, -50), (50, 50, 50), (-50, 50, 50)] float2[] primvars:st = [(1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (0.30000001192092896, 0.029999999329447746, 0.029999999329447746) double3 xformOp:translate = (-6.36188, 0, -8.10291) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Mesh "CubeBackground" { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4] int[] faceVertexIndices = [0, 1, 3, 2, 0, 4, 5, 1, 1, 5, 6, 3, 2, 3, 6, 7, 0, 2, 7, 4, 4, 7, 6, 5] normal3f[] normals = [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, 0, -1), (0, 0, -1), (0, 0, -1), (0, 0, -1), (1, 0, 0), (1, 0, 0), (1, 0, 0), (1, 0, 0), (0, 0, 1), (0, 0, 1), (0, 0, 1), (0, 0, 1), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(-50, -50, -50), (50, -50, -50), (-50, -50, 50), (50, -50, 50), (-50, 50, -50), (50, 50, -50), (50, 50, 50), (-50, 50, 50)] float2[] primvars:st = [(1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (20, 2, 1) double3 xformOp:translate = (-6.36188, 0, -320) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } }
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/scenes/maya2_atlas_road_tile_237_01.usd2.usda
#usda 1.0 ( defaultPrim = "atlas_road_tile_237_01_usd2" upAxis = "Y" ) def "atlas_road_tile_237_01_usd2" ( kind = "component" ) { def Xform "SceneNode" ( kind = "group" ) { def Xform "Tile_0_0Node" ( kind = "group" ) { def Xform "RoadsNode" ( kind = "group" ) { def Xform "Road_RoadNode" ( kind = "group" ) { def Mesh "Road_Road_Layer0Node" ( prepend apiSchemas = ["ShadowAPI"] kind = "component" ) { bool primvars:materialFlattening_isBaseMesh = 1 float3[] extent = [(-35.747242, -0.095022194, -365.21683), (-7.774334, -3.3177234e-14, -265.1001)] int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 2, 1, 0, 3, 2, 0, 4, 3, 5, 4, 0, 6, 4, 5, 7, 6, 5, 6, 8, 4, 4, 8, 9, 4, 9, 3, 9, 10, 3, 9, 11, 10, 12, 11, 9, 8, 12, 9, 11, 12, 13, 11, 13, 14, 15, 11, 14, 15, 14, 16, 15, 16, 17, 10, 15, 17, 10, 17, 18, 10, 18, 3, 3, 18, 2, 10, 11, 15, 14, 127, 128, 16, 13, 131, 130, 14, 19, 133, 132, 13, 12, 19, 13, 20, 22, 21, 22, 20, 23, 24, 22, 23, 25, 24, 23, 26, 25, 23, 27, 26, 23, 27, 23, 20, 28, 27, 20, 29, 27, 28, 27, 30, 26, 30, 25, 26, 25, 31, 24, 25, 32, 31, 32, 33, 31, 31, 33, 34, 31, 34, 35, 24, 31, 35, 24, 35, 36, 37, 24, 36, 22, 24, 37, 35, 38, 36, 34, 38, 35, 39, 38, 34, 40, 39, 34, 33, 40, 34, 40, 134, 135, 39, 39, 135, 136, 39, 136, 137, 38, 38, 137, 138, 38, 138, 139, 41, 36, 38, 41, 41, 139, 140, 126, 43, 42, 125, 42, 43, 44, 43, 45, 44, 45, 46, 44, 44, 46, 47, 46, 48, 47, 47, 48, 49, 48, 50, 49, 49, 50, 51, 50, 52, 51, 52, 53, 51, 53, 54, 51, 55, 54, 53, 55, 56, 54, 55, 57, 56, 56, 57, 58, 57, 59, 58, 58, 59, 60, 59, 61, 60, 60, 61, 62, 61, 63, 62, 62, 63, 64, 63, 65, 64, 64, 65, 66, 65, 67, 66, 66, 67, 68, 67, 69, 68, 69, 70, 68, 71, 70, 69, 71, 72, 70, 73, 72, 71, 73, 71, 74, 75, 73, 74, 74, 76, 75, 77, 76, 74, 77, 74, 78, 78, 74, 79, 79, 74, 80, 80, 74, 71, 77, 81, 76, 81, 82, 76, 82, 83, 76, 76, 83, 84, 76, 84, 75, 84, 85, 75, 86, 85, 84, 83, 86, 84, 75, 85, 87, 75, 87, 88, 89, 75, 88, 75, 89, 90, 75, 90, 91, 75, 91, 73, 73, 91, 92, 73, 92, 93, 94, 73, 93, 95, 73, 94, 73, 95, 96, 73, 96, 97, 72, 73, 97, 72, 97, 98, 72, 98, 99, 72, 99, 100, 100, 99, 101, 99, 102, 101, 99, 103, 102, 98, 103, 99, 104, 103, 98, 97, 104, 98, 105, 104, 97, 97, 106, 105, 97, 107, 106, 97, 96, 107, 105, 108, 104, 104, 108, 109, 104, 109, 110, 104, 110, 111, 104, 111, 112, 104, 112, 113, 104, 113, 114, 104, 114, 115, 115, 116, 104, 104, 116, 103, 103, 116, 117, 103, 117, 102, 102, 117, 118, 118, 119, 102, 102, 119, 101, 116, 120, 117, 120, 121, 117, 87, 122, 88, 122, 87, 123, 124, 125, 42, 129, 127, 14, 130, 129, 14, 13, 132, 131] rel material:binding = </atlas_road_tile_237_01_usd2/Looks/lambert> # normal3f[] normals = [(-3.6485125e-22, -1, -6.1232144e-17), (7.529882e-22, -1, -6.1233e-17), (-6.1415184e-21, -1, -6.1231376e-17), (-3.6485125e-22, -1, -6.1232144e-17), (2.4111807e-22, -1, -6.123268e-17), (7.529882e-22, -1, -6.1233e-17), (-3.6485125e-22, -1, -6.1232144e-17), (-1.2104193e-23, -1, -6.1232594e-17), (2.4111807e-22, -1, -6.123268e-17), (4.05927e-22, -1, -6.1232124e-17), (-1.2104193e-23, -1, -6.1232594e-17), (-3.6485125e-22, -1, -6.1232144e-17), (-6.78704e-24, -1, -6.123258e-17), (-1.2104193e-23, -1, -6.1232594e-17), (4.05927e-22, -1, -6.1232124e-17), (6.6063483e-22, -1, -6.1232045e-17), (-6.78704e-24, -1, -6.123258e-17), (4.05927e-22, -1, -6.1232124e-17), (-6.78704e-24, -1, -6.123258e-17), (2.1114811e-22, -1, -6.123226e-17), (-1.2104193e-23, -1, -6.1232594e-17), (-1.2104193e-23, -1, -6.1232594e-17), (2.1114811e-22, -1, -6.123226e-17), (1.1864844e-22, -1, -6.1232296e-17), (-1.2104193e-23, -1, -6.1232594e-17), (1.1864844e-22, -1, -6.1232296e-17), (2.4111807e-22, -1, -6.123268e-17), (1.1864844e-22, -1, -6.1232296e-17), (-8.300981e-23, -1, -6.1232276e-17), (2.4111807e-22, -1, -6.123268e-17), (1.1864844e-22, -1, -6.1232296e-17), (9.958789e-24, -1, -6.123247e-17), (-8.300981e-23, -1, -6.1232276e-17), (3.651635e-23, -1, -6.123238e-17), (9.958789e-24, -1, -6.123247e-17), (1.1864844e-22, -1, -6.1232296e-17), (2.1114811e-22, -1, -6.123226e-17), (3.651635e-23, -1, -6.123238e-17), (1.1864844e-22, -1, -6.1232296e-17), (9.958789e-24, -1, -6.123247e-17), (3.651635e-23, -1, -6.123238e-17), (5.660923e-23, -1, -6.1232554e-17), (9.958789e-24, -1, -6.123247e-17), (5.660923e-23, -1, -6.1232554e-17), (-1.2073672e-23, -1, -6.123245e-17), (-2.1764144e-23, -1, -6.123258e-17), (9.958789e-24, -1, -6.123247e-17), (-1.2073672e-23, -1, -6.123245e-17), (-2.1764144e-23, -1, -6.123258e-17), (-1.2073672e-23, -1, -6.123245e-17), (-8.427858e-22, -1, -6.1232243e-17), (-2.1764144e-23, -1, -6.123258e-17), (-8.427858e-22, -1, -6.1232243e-17), (-2.2203574e-22, -1, -6.1232396e-17), (-8.300981e-23, -1, -6.1232276e-17), (-2.1764144e-23, -1, -6.123258e-17), (-2.2203574e-22, -1, -6.1232396e-17), (-8.300981e-23, -1, -6.1232276e-17), (-2.2203574e-22, -1, -6.1232396e-17), (-1.2202113e-21, -1, -6.1232296e-17), (-8.300981e-23, -1, -6.1232276e-17), (-1.2202113e-21, -1, -6.1232296e-17), (2.4111807e-22, -1, -6.123268e-17), (2.4111807e-22, -1, -6.123268e-17), (-1.2202113e-21, -1, -6.1232296e-17), (7.529882e-22, -1, -6.1233e-17), (-8.300981e-23, -1, -6.1232276e-17), (9.958789e-24, -1, -6.123247e-17), (-2.1764144e-23, -1, -6.123258e-17), (-1.2073672e-23, -1, -6.123245e-17), (-1.2618686e-21, -1, -6.123295e-17), (-1.8251399e-21, -1, -6.123253e-17), (-8.427858e-22, -1, -6.1232243e-17), (5.660923e-23, -1, -6.1232554e-17), (1.8698818e-22, -1, -6.1232614e-17), (2.3010313e-22, -1, -6.123252e-17), (-1.2073672e-23, -1, -6.123245e-17), (-2.919419e-23, -1, -6.123274e-17), (-6.215274e-23, -1, -6.123288e-17), (-4.924853e-23, -1, -6.1232806e-17), (5.660923e-23, -1, -6.1232554e-17), (3.651635e-23, -1, -6.123238e-17), (-2.919419e-23, -1, -6.123274e-17), (5.660923e-23, -1, -6.1232554e-17), (4.1524664e-22, -1, -6.123251e-17), (-5.2696045e-22, -1, -6.123212e-17), (6.1782586e-22, -1, -6.1232316e-17), (-5.2696045e-22, -1, -6.123212e-17), (4.1524664e-22, -1, -6.123251e-17), (-2.509189e-22, -1, -6.123247e-17), (-9.267729e-23, -1, -6.123226e-17), (-5.2696045e-22, -1, -6.123212e-17), (-2.509189e-22, -1, -6.123247e-17), (-3.6432934e-25, -1, -6.123283e-17), (-9.267729e-23, -1, -6.123226e-17), (-2.509189e-22, -1, -6.123247e-17), (-1.7392807e-22, -1, -6.123247e-17), (-3.6432934e-25, -1, -6.123283e-17), (-2.509189e-22, -1, -6.123247e-17), (3.3923922e-22, -1, -6.1232846e-17), (-1.7392807e-22, -1, -6.123247e-17), (-2.509189e-22, -1, -6.123247e-17), (3.3923922e-22, -1, -6.1232846e-17), (-2.509189e-22, -1, -6.123247e-17), (4.1524664e-22, -1, -6.123251e-17), (-7.027061e-23, -1, -6.123144e-17), (3.3923922e-22, -1, -6.1232846e-17), (4.1524664e-22, -1, -6.123251e-17), (-1.5260621e-21, -1, -6.1233236e-17), (3.3923922e-22, -1, -6.1232846e-17), (-7.027061e-23, -1, -6.123144e-17), (3.3923922e-22, -1, -6.1232846e-17), (-1.1997939e-21, -1, -6.123334e-17), (-1.7392807e-22, -1, -6.123247e-17), (-1.1997939e-21, -1, -6.123334e-17), (-3.6432934e-25, -1, -6.123283e-17), (-1.7392807e-22, -1, -6.123247e-17), (-3.6432934e-25, -1, -6.123283e-17), (-2.6044332e-22, -1, -6.123202e-17), (-9.267729e-23, -1, -6.123226e-17), (-3.6432934e-25, -1, -6.123283e-17), (-1.0744059e-21, -1, -6.123282e-17), (-2.6044332e-22, -1, -6.123202e-17), (-1.0744059e-21, -1, -6.123282e-17), (-1.2274267e-21, -1, -6.123218e-17), (-2.6044332e-22, -1, -6.123202e-17), (-2.6044332e-22, -1, -6.123202e-17), (-1.2274267e-21, -1, -6.123218e-17), (5.567601e-23, -1, -6.123245e-17), (-2.6044332e-22, -1, -6.123202e-17), (5.567601e-23, -1, -6.123245e-17), (-8.533897e-23, -1, -6.123256e-17), (-9.267729e-23, -1, -6.123226e-17), (-2.6044332e-22, -1, -6.123202e-17), (-8.533897e-23, -1, -6.123256e-17), (-9.267729e-23, -1, -6.123226e-17), (-8.533897e-23, -1, -6.123256e-17), (-6.5070306e-22, -1, -6.123245e-17), (0, -1, -6.123225e-17), (-9.267729e-23, -1, -6.123226e-17), (-6.5070306e-22, -1, -6.123245e-17), (-5.2696045e-22, -1, -6.123212e-17), (-9.267729e-23, -1, -6.123226e-17), (0, -1, -6.123225e-17), (-8.533897e-23, -1, -6.123256e-17), (-2.9179283e-22, -1, -6.123202e-17), (-6.5070306e-22, -1, -6.123245e-17), (5.567601e-23, -1, -6.123245e-17), (-2.9179283e-22, -1, -6.123202e-17), (-8.533897e-23, -1, -6.123256e-17), (-5.4073646e-24, -1, -6.1232144e-17), (-2.9179283e-22, -1, -6.123202e-17), (5.567601e-23, -1, -6.123245e-17), (-3.0518842e-22, -1, -6.1232085e-17), (-5.4073646e-24, -1, -6.1232144e-17), (5.567601e-23, -1, -6.123245e-17), (-1.2274267e-21, -1, -6.123218e-17), (-3.0518842e-22, -1, -6.1232085e-17), (5.567601e-23, -1, -6.123245e-17), (-3.0518842e-22, -1, -6.1232085e-17), (-6.3589767e-22, -1, -6.123223e-17), (-5.249384e-22, -1, -6.1232316e-17), (-5.4073646e-24, -1, -6.1232144e-17), (-5.4073646e-24, -1, -6.1232144e-17), (-5.249384e-22, -1, -6.1232316e-17), (1.8075093e-22, -1, -6.123122e-17), (-5.4073646e-24, -1, -6.1232144e-17), (1.8075093e-22, -1, -6.123122e-17), (4.2133902e-22, -1, -6.1231376e-17), (-2.9179283e-22, -1, -6.123202e-17), (-2.9179283e-22, -1, -6.123202e-17), (4.2133902e-22, -1, -6.1231376e-17), (-2.4263678e-23, -1, -6.123272e-17), (-2.9179283e-22, -1, -6.123202e-17), (-2.4263678e-23, -1, -6.123272e-17), (-6.469645e-22, -1, -6.123231e-17), (-7.7175103e-22, -1, -6.123143e-17), (-6.5070306e-22, -1, -6.123245e-17), (-2.9179283e-22, -1, -6.123202e-17), (-7.7175103e-22, -1, -6.123143e-17), (-7.7175103e-22, -1, -6.123143e-17), (-6.469645e-22, -1, -6.123231e-17), (0, -1, -6.123195e-17), (0.00045326314, -0.9999712, 0.007577902), (0.00042736702, -0.9999752, 0.0070428797), (0.00045143615, -0.9999751, 0.007046324), (0.0004548705, -0.9999712, 0.0075880517), (0.00045143615, -0.9999751, 0.007046324), (0.00042736702, -0.9999752, 0.0070428797), (0.00039287584, -0.99998075, 0.0062020435), (0.00042736702, -0.9999752, 0.0070428797), (0.00037355695, -0.99998057, 0.006235507), (0.00039287584, -0.99998075, 0.0062020435), (0.00037355695, -0.99998057, 0.006235507), (0.00030642014, -0.99998564, 0.0053476244), (0.00039287584, -0.99998075, 0.0062020435), (0.00039287584, -0.99998075, 0.0062020435), (0.00030642014, -0.99998564, 0.0053476244), (0.00031123572, -0.99998766, 0.004964043), (0.00030642014, -0.99998564, 0.0053476244), (0.00016780948, -0.9999923, 0.0039284313), (0.00031123572, -0.99998766, 0.004964043), (0.00031123572, -0.99998766, 0.004964043), (0.00016780948, -0.9999923, 0.0039284313), (0.00025444385, -0.99999577, 0.0029239277), (0.00016780948, -0.9999923, 0.0039284313), (0.00016328246, -0.9999963, 0.0027547868), (0.00025444385, -0.99999577, 0.0029239277), (0.00025444385, -0.99999577, 0.0029239277), (0.00016328246, -0.9999963, 0.0027547868), (0.0002604198, -0.9999976, 0.0021712906), (0.00016328246, -0.9999963, 0.0027547868), (0.00012358239, -0.99999875, 0.0016435258), (0.0002604198, -0.9999976, 0.0021712906), (0.00012358239, -0.99999875, 0.0016435258), (0.00002970595, -0.9999995, 0.001075443), (0.0002604198, -0.9999976, 0.0021712906), (0.00002970595, -0.9999995, 0.001075443), (0.0000016438415, -0.9999998, 0.0007153118), (0.0002604198, -0.9999976, 0.0021712906), (0.0000039594647, -0.99999976, 0.0007448297), (0.0000016438415, -0.9999998, 0.0007153118), (0.00002970595, -0.9999995, 0.001075443), (0.0000039594647, -0.99999976, 0.0007448297), (0.000014449269, -0.9999998, 0.0006479358), (0.0000016438415, -0.9999998, 0.0007153118), (0.0000039594647, -0.99999976, 0.0007448297), (0.000010262533, -0.99999976, 0.00068328646), (0.000014449269, -0.9999998, 0.0006479358), (0.000014449269, -0.9999998, 0.0006479358), (0.000010262533, -0.99999976, 0.00068328646), (0.000015461319, -0.9999999, 0.0005679259), (0.000010262533, -0.99999976, 0.00068328646), (0.00001982972, -0.99999994, 0.00057249767), (0.000015461319, -0.9999999, 0.0005679259), (0.000015461319, -0.9999999, 0.0005679259), (0.00001982972, -0.99999994, 0.00057249767), (0.0000150695105, -0.99999994, 0.00045836007), (0.00001982972, -0.99999994, 0.00057249767), (0.00002379181, -0.9999999, 0.00047548526), (0.0000150695105, -0.99999994, 0.00045836007), (0.0000150695105, -0.99999994, 0.00045836007), (0.00002379181, -0.9999999, 0.00047548526), (0.0000149502785, -0.99999994, 0.00035524007), (0.00002379181, -0.9999999, 0.00047548526), (0.000019594603, -1, 0.00037781993), (0.0000149502785, -0.99999994, 0.00035524007), (0.0000149502785, -0.99999994, 0.00035524007), (0.000019594603, -1, 0.00037781993), (0.000016491604, -1, 0.0002861417), (0.000019594603, -1, 0.00037781993), (0.00001686244, -1, 0.00028836742), (0.000016491604, -1, 0.0002861417), (0.000016491604, -1, 0.0002861417), (0.00001686244, -1, 0.00028836742), (0.000015013587, -1, 0.00021947335), (0.00001686244, -1, 0.00028836742), (0.00001391493, -1, 0.00021107642), (0.000015013587, -1, 0.00021947335), (0.000015013587, -1, 0.00021947335), (0.00001391493, -1, 0.00021107642), (0.000010226686, -1, 0.00010994751), (0.00001391493, -1, 0.00021107642), (0.000013909594, -1, 0.00012925663), (0.000010226686, -1, 0.00010994751), (0.000013909594, -1, 0.00012925663), (0.0000010018234, -1, 0.00003147856), (0.000010226686, -1, 0.00010994751), (0.000004974253, -1, 0.000032391978), (0.0000010018234, -1, 0.00003147856), (0.000013909594, -1, 0.00012925663), (0.000004974253, -1, 0.000032391978), (-0.0000029387127, -1, 0.000002435062), (0.0000010018234, -1, 0.00003147856), (-0.0000017330298, -1, 0.0000038507283), (-0.0000029387127, -1, 0.000002435062), (0.000004974253, -1, 0.000032391978), (-0.0000017330298, -1, 0.0000038507283), (0.000004974253, -1, 0.000032391978), (9.0721767e-7, -1, 0.0000038868097), (-3.0532189e-22, -1, -6.122932e-17), (-0.0000017330298, -1, 0.0000038507283), (9.0721767e-7, -1, 0.0000038868097), (9.0721767e-7, -1, 0.0000038868097), (-8.736974e-22, -1, -6.123366e-17), (-3.0532189e-22, -1, -6.122932e-17), (-1.2263052e-21, -1, -6.123231e-17), (-8.736974e-22, -1, -6.123366e-17), (9.0721767e-7, -1, 0.0000038868097), (-1.2263052e-21, -1, -6.123231e-17), (9.0721767e-7, -1, 0.0000038868097), (7.8324815e-22, -1, -6.1233176e-17), (7.8324815e-22, -1, -6.1233176e-17), (9.0721767e-7, -1, 0.0000038868097), (-9.417867e-22, -1, -6.123014e-17), (-9.417867e-22, -1, -6.123014e-17), (9.0721767e-7, -1, 0.0000038868097), (0.00007594335, -1, 0.000022449161), (0.00007594335, -1, 0.000022449161), (9.0721767e-7, -1, 0.0000038868097), (0.000004974253, -1, 0.000032391978), (-1.2263052e-21, -1, -6.123231e-17), (2.3896725e-21, -1, -6.123334e-17), (-8.736974e-22, -1, -6.123366e-17), (2.3896725e-21, -1, -6.123334e-17), (7.2088654e-22, -1, -6.123202e-17), (-8.736974e-22, -1, -6.123366e-17), (7.2088654e-22, -1, -6.123202e-17), (9.265542e-22, -1, -6.1230245e-17), (-8.736974e-22, -1, -6.123366e-17), (-8.736974e-22, -1, -6.123366e-17), (9.265542e-22, -1, -6.1230245e-17), (5.03548e-22, -1, -6.1233e-17), (-8.736974e-22, -1, -6.123366e-17), (5.03548e-22, -1, -6.1233e-17), (-3.0532189e-22, -1, -6.122932e-17), (5.03548e-22, -1, -6.1233e-17), (-1.128467e-22, -1, -6.12292e-17), (-3.0532189e-22, -1, -6.122932e-17), (1.9892324e-22, -1, -6.123038e-17), (-1.128467e-22, -1, -6.12292e-17), (5.03548e-22, -1, -6.1233e-17), (9.265542e-22, -1, -6.1230245e-17), (1.9892324e-22, -1, -6.123038e-17), (5.03548e-22, -1, -6.1233e-17), (-3.0532189e-22, -1, -6.122932e-17), (-1.128467e-22, -1, -6.12292e-17), (-3.4962674e-22, -1, -6.1222066e-17), (-3.0532189e-22, -1, -6.122932e-17), (-3.4962674e-22, -1, -6.1222066e-17), (-2.169195e-21, -1, -6.130378e-17), (-9.133292e-22, -1, -6.124258e-17), (-3.0532189e-22, -1, -6.122932e-17), (-2.169195e-21, -1, -6.130378e-17), (-3.0532189e-22, -1, -6.122932e-17), (-9.133292e-22, -1, -6.124258e-17), (1.2418912e-21, -1, -6.1227935e-17), (-3.0532189e-22, -1, -6.122932e-17), (1.2418912e-21, -1, -6.1227935e-17), (4.168579e-22, -1, -6.12341e-17), (-3.0532189e-22, -1, -6.122932e-17), (4.168579e-22, -1, -6.12341e-17), (-0.0000017330298, -1, 0.0000038507283), (-0.0000017330298, -1, 0.0000038507283), (4.168579e-22, -1, -6.12341e-17), (1.1130442e-20, -1, -6.123129e-17), (-0.0000017330298, -1, 0.0000038507283), (1.1130442e-20, -1, -6.123129e-17), (-7.282593e-21, -1, -6.123089e-17), (1.1818559e-20, -1, -6.123561e-17), (-0.0000017330298, -1, 0.0000038507283), (-7.282593e-21, -1, -6.123089e-17), (1.5978871e-21, -1, -6.1226294e-17), (-0.0000017330298, -1, 0.0000038507283), (1.1818559e-20, -1, -6.123561e-17), (-0.0000017330298, -1, 0.0000038507283), (1.5978871e-21, -1, -6.1226294e-17), (-2.9951134e-21, -1, -6.1230834e-17), (-0.0000017330298, -1, 0.0000038507283), (-2.9951134e-21, -1, -6.1230834e-17), (-4.5947116e-22, -1, -6.1236796e-17), (-0.0000029387127, -1, 0.000002435062), (-0.0000017330298, -1, 0.0000038507283), (-4.5947116e-22, -1, -6.1236796e-17), (-0.0000029387127, -1, 0.000002435062), (-4.5947116e-22, -1, -6.1236796e-17), (3.8458118e-22, -1, -6.1231595e-17), (-0.0000029387127, -1, 0.000002435062), (3.8458118e-22, -1, -6.1231595e-17), (9.920974e-23, -1, -6.1231376e-17), (-0.0000029387127, -1, 0.000002435062), (9.920974e-23, -1, -6.1231376e-17), (1.647227e-21, -1, -6.1231324e-17), (1.647227e-21, -1, -6.1231324e-17), (9.920974e-23, -1, -6.1231376e-17), (6.9372415e-21, -1, -6.1231515e-17), (9.920974e-23, -1, -6.1231376e-17), (1.6821686e-22, -1, -6.123207e-17), (6.9372415e-21, -1, -6.1231515e-17), (9.920974e-23, -1, -6.1231376e-17), (-8.241473e-23, -1, -6.1230834e-17), (1.6821686e-22, -1, -6.123207e-17), (3.8458118e-22, -1, -6.1231595e-17), (-8.241473e-23, -1, -6.1230834e-17), (9.920974e-23, -1, -6.1231376e-17), (6.166056e-23, -1, -6.1235916e-17), (-8.241473e-23, -1, -6.1230834e-17), (3.8458118e-22, -1, -6.1231595e-17), (-4.5947116e-22, -1, -6.1236796e-17), (6.166056e-23, -1, -6.1235916e-17), (3.8458118e-22, -1, -6.1231595e-17), (5.732337e-21, -1, -6.1231906e-17), (6.166056e-23, -1, -6.1235916e-17), (-4.5947116e-22, -1, -6.1236796e-17), (-4.5947116e-22, -1, -6.1236796e-17), (1.7086884e-20, -1, -6.122272e-17), (5.732337e-21, -1, -6.1231906e-17), (-4.5947116e-22, -1, -6.1236796e-17), (-2.0554433e-20, -1, -6.123802e-17), (1.7086884e-20, -1, -6.122272e-17), (-4.5947116e-22, -1, -6.1236796e-17), (-2.9951134e-21, -1, -6.1230834e-17), (-2.0554433e-20, -1, -6.123802e-17), (5.732337e-21, -1, -6.1231906e-17), (9.2962814e-21, -1, -6.116485e-17), (6.166056e-23, -1, -6.1235916e-17), (6.166056e-23, -1, -6.1235916e-17), (9.2962814e-21, -1, -6.116485e-17), (3.8106902e-21, -1, -6.131878e-17), (6.166056e-23, -1, -6.1235916e-17), (3.8106902e-21, -1, -6.131878e-17), (9.364407e-21, -1, -6.1209546e-17), (6.166056e-23, -1, -6.1235916e-17), (9.364407e-21, -1, -6.1209546e-17), (0, -1, -6.120703e-17), (6.166056e-23, -1, -6.1235916e-17), (0, -1, -6.120703e-17), (0, -1, -6.1232045e-17), (6.166056e-23, -1, -6.1235916e-17), (0, -1, -6.1232045e-17), (0, -1, -6.122133e-17), (6.166056e-23, -1, -6.1235916e-17), (0, -1, -6.122133e-17), (0, -1, -6.1240694e-17), (6.166056e-23, -1, -6.1235916e-17), (0, -1, -6.1240694e-17), (0, -1, -6.1268136e-17), (0, -1, -6.1268136e-17), (0, -1, -6.122661e-17), (6.166056e-23, -1, -6.1235916e-17), (6.166056e-23, -1, -6.1235916e-17), (0, -1, -6.122661e-17), (-8.241473e-23, -1, -6.1230834e-17), (-8.241473e-23, -1, -6.1230834e-17), (0, -1, -6.122661e-17), (-2.2994144e-22, -1, -6.122786e-17), (-8.241473e-23, -1, -6.1230834e-17), (-2.2994144e-22, -1, -6.122786e-17), (1.6821686e-22, -1, -6.123207e-17), (1.6821686e-22, -1, -6.123207e-17), (-2.2994144e-22, -1, -6.122786e-17), (0, -1, -6.123522e-17), (0, -1, -6.123522e-17), (2.3544923e-21, -1, -6.123149e-17), (1.6821686e-22, -1, -6.123207e-17), (1.6821686e-22, -1, -6.123207e-17), (2.3544923e-21, -1, -6.123149e-17), (6.9372415e-21, -1, -6.1231515e-17), (0, -1, -6.122661e-17), (0, -1, -6.1240654e-17), (-2.2994144e-22, -1, -6.122786e-17), (0, -1, -6.1240654e-17), (0, -1, -6.130486e-17), (-2.2994144e-22, -1, -6.122786e-17), (-3.4962674e-22, -1, -6.1222066e-17), (-8.0590747e-22, -1, -6.13189e-17), (-2.169195e-21, -1, -6.130378e-17), (-8.0590747e-22, -1, -6.13189e-17), (-3.4962674e-22, -1, -6.1222066e-17), (-3.0164833e-21, -1, -6.1218525e-17), (0.00052958913, -0.9999674, 0.008059868), (0.0004548705, -0.9999712, 0.0075880517), (0.00045143615, -0.9999751, 0.007046324), (0, -1, -6.123216e-17), (-1.2618686e-21, -1, -6.123295e-17), (-1.2073672e-23, -1, -6.123245e-17), (2.3010313e-22, -1, -6.123252e-17), (0, -1, -6.123216e-17), (-1.2073672e-23, -1, -6.123245e-17), (5.660923e-23, -1, -6.1232554e-17), (-4.924853e-23, -1, -6.1232806e-17), (1.8698818e-22, -1, -6.1232614e-17)] ( # normal3f[] normals = [(0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (-0.00047480434, 0.9999719, -0.007476213), (-0.0004321736, 0.99997544, -0.0070021525), (-0.0003852808, 0.99998075, -0.0062117353), (-0.00037313532, 0.9999806, -0.00622981), (-0.00032304882, 0.9999852, -0.0054318015), (-0.0002996303, 0.9999878, -0.0049361703), (-0.0001937583, 0.9999919, -0.0040231324), (-0.00021860337, 0.9999954, -0.0030266854), (-0.00019825515, 0.9999967, -0.0025569373), (-0.00021519681, 0.99999803, -0.0019925465), (-0.00011908179, 0.99999875, -0.001616332), (-0.000029429728, 0.99999946, -0.0010719418), (-0.0000037813809, 0.9999998, -0.0007430077), (-0.000003954158, 0.9999998, -0.0007447579), (-0.00001089513, 0.9999998, -0.00068065396), (-0.00001201546, 0.9999999, -0.0006683113), (-0.00001533885, 0.9999998, -0.0005824069), (-0.000018544202, 0.9999999, -0.0005421457), (-0.00001830038, 0.99999994, -0.0004793314), (-0.000020890337, 1, -0.0004512229), (-0.000017114464, 1, -0.00037996643), (-0.000018803828, 1, -0.00036157624), (-0.00001697498, 0.99999994, -0.00029906034), (-0.000016669552, 1, -0.00027724318), (-0.000015188796, 1, -0.00022793126), (-0.000013859618, 1, -0.00020298123), (-0.000010662276, 1, -0.00012408638), (-0.000011758428, 1, -0.00010527236), (-0.0000043463842, 1, -0.000046533358), (-0.0000021026724, 1, -0.000013358976), (0.0000026094754, 1, -0.0000021803778), (0.0000015009123, 1, -0.000003738723), (-0.000007754741, 1, -0.000004201465), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (-0.00003893976, 1, -0.000011510737), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (-0.0005000827, 0.9999675, -0.008021407), (-0.0004878739, 0.99996847, -0.0079104025), (-0.00046015042, 0.9999712, -0.0075504463), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17), (0, 1, 6.123234e-17)] ( normal3f[] normals = [(-3.6485125e-22, 1, -6.1232144e-17), (7.529882e-22, 1, -6.1233e-17), (-6.1415184e-21, 1, -6.1231376e-17), (-3.6485125e-22, 1, -6.1232144e-17), (2.4111807e-22, 1, -6.123268e-17), (7.529882e-22, 1, -6.1233e-17), (-3.6485125e-22, 1, -6.1232144e-17), (-1.2104193e-23, 1, -6.1232594e-17), (2.4111807e-22, 1, -6.123268e-17), (4.05927e-22, 1, -6.1232124e-17), (-1.2104193e-23, 1, -6.1232594e-17), (-3.6485125e-22, 1, -6.1232144e-17), (-6.78704e-24, 1, -6.123258e-17), (-1.2104193e-23, 1, -6.1232594e-17), (4.05927e-22, 1, -6.1232124e-17), (6.6063483e-22, 1, -6.1232045e-17), (-6.78704e-24, 1, -6.123258e-17), (4.05927e-22, 1, -6.1232124e-17), (-6.78704e-24, 1, -6.123258e-17), (2.1114811e-22, 1, -6.123226e-17), (-1.2104193e-23, 1, -6.1232594e-17), (-1.2104193e-23, 1, -6.1232594e-17), (2.1114811e-22, 1, -6.123226e-17), (1.1864844e-22, 1, -6.1232296e-17), (-1.2104193e-23, 1, -6.1232594e-17), (1.1864844e-22, 1, -6.1232296e-17), (2.4111807e-22, 1, -6.123268e-17), (1.1864844e-22, 1, -6.1232296e-17), (-8.300981e-23, 1, -6.1232276e-17), (2.4111807e-22, 1, -6.123268e-17), (1.1864844e-22, 1, -6.1232296e-17), (9.958789e-24, 1, -6.123247e-17), (-8.300981e-23, 1, -6.1232276e-17), (3.651635e-23, 1, -6.123238e-17), (9.958789e-24, 1, -6.123247e-17), (1.1864844e-22, 1, -6.1232296e-17), (2.1114811e-22, 1, -6.123226e-17), (3.651635e-23, 1, -6.123238e-17), (1.1864844e-22, 1, -6.1232296e-17), (9.958789e-24, 1, -6.123247e-17), (3.651635e-23, 1, -6.123238e-17), (5.660923e-23, 1, -6.1232554e-17), (9.958789e-24, 1, -6.123247e-17), (5.660923e-23, 1, -6.1232554e-17), (-1.2073672e-23, 1, -6.123245e-17), (-2.1764144e-23, 1, -6.123258e-17), (9.958789e-24, 1, -6.123247e-17), (-1.2073672e-23, 1, -6.123245e-17), (-2.1764144e-23, 1, -6.123258e-17), (-1.2073672e-23, 1, -6.123245e-17), (-8.427858e-22, 1, -6.1232243e-17), (-2.1764144e-23, 1, -6.123258e-17), (-8.427858e-22, 1, -6.1232243e-17), (-2.2203574e-22, 1, -6.1232396e-17), (-8.300981e-23, 1, -6.1232276e-17), (-2.1764144e-23, 1, -6.123258e-17), (-2.2203574e-22, 1, -6.1232396e-17), (-8.300981e-23, 1, -6.1232276e-17), (-2.2203574e-22, 1, -6.1232396e-17), (-1.2202113e-21, 1, -6.1232296e-17), (-8.300981e-23, 1, -6.1232276e-17), (-1.2202113e-21, 1, -6.1232296e-17), (2.4111807e-22, 1, -6.123268e-17), (2.4111807e-22, 1, -6.123268e-17), (-1.2202113e-21, 1, -6.1232296e-17), (7.529882e-22, 1, -6.1233e-17), (-8.300981e-23, 1, -6.1232276e-17), (9.958789e-24, 1, -6.123247e-17), (-2.1764144e-23, 1, -6.123258e-17), (-1.2073672e-23, 1, -6.123245e-17), (-1.2618686e-21, 1, -6.123295e-17), (-1.8251399e-21, 1, -6.123253e-17), (-8.427858e-22, 1, -6.1232243e-17), (5.660923e-23, 1, -6.1232554e-17), (1.8698818e-22, 1, -6.1232614e-17), (2.3010313e-22, 1, -6.123252e-17), (-1.2073672e-23, 1, -6.123245e-17), (-2.919419e-23, 1, -6.123274e-17), (-6.215274e-23, 1, -6.123288e-17), (-4.924853e-23, 1, -6.1232806e-17), (5.660923e-23, 1, -6.1232554e-17), (3.651635e-23, 1, -6.123238e-17), (-2.919419e-23, 1, -6.123274e-17), (5.660923e-23, 1, -6.1232554e-17), (4.1524664e-22, 1, -6.123251e-17), (-5.2696045e-22, 1, -6.123212e-17), (6.1782586e-22, 1, -6.1232316e-17), (-5.2696045e-22, 1, -6.123212e-17), (4.1524664e-22, 1, -6.123251e-17), (-2.509189e-22, 1, -6.123247e-17), (-9.267729e-23, 1, -6.123226e-17), (-5.2696045e-22, 1, -6.123212e-17), (-2.509189e-22, 1, -6.123247e-17), (-3.6432934e-25, 1, -6.123283e-17), (-9.267729e-23, 1, -6.123226e-17), (-2.509189e-22, 1, -6.123247e-17), (-1.7392807e-22, 1, -6.123247e-17), (-3.6432934e-25, 1, -6.123283e-17), (-2.509189e-22, 1, -6.123247e-17), (3.3923922e-22, 1, -6.1232846e-17), (-1.7392807e-22, 1, -6.123247e-17), (-2.509189e-22, 1, -6.123247e-17), (3.3923922e-22, 1, -6.1232846e-17), (-2.509189e-22, 1, -6.123247e-17), (4.1524664e-22, 1, -6.123251e-17), (-7.027061e-23, 1, -6.123144e-17), (3.3923922e-22, 1, -6.1232846e-17), (4.1524664e-22, 1, -6.123251e-17), (-1.5260621e-21, 1, -6.1233236e-17), (3.3923922e-22, 1, -6.1232846e-17), (-7.027061e-23, 1, -6.123144e-17), (3.3923922e-22, 1, -6.1232846e-17), (-1.1997939e-21, 1, -6.123334e-17), (-1.7392807e-22, 1, -6.123247e-17), (-1.1997939e-21, 1, -6.123334e-17), (-3.6432934e-25, 1, -6.123283e-17), (-1.7392807e-22, 1, -6.123247e-17), (-3.6432934e-25, 1, -6.123283e-17), (-2.6044332e-22, 1, -6.123202e-17), (-9.267729e-23, 1, -6.123226e-17), (-3.6432934e-25, 1, -6.123283e-17), (-1.0744059e-21, 1, -6.123282e-17), (-2.6044332e-22, 1, -6.123202e-17), (-1.0744059e-21, 1, -6.123282e-17), (-1.2274267e-21, 1, -6.123218e-17), (-2.6044332e-22, 1, -6.123202e-17), (-2.6044332e-22, 1, -6.123202e-17), (-1.2274267e-21, 1, -6.123218e-17), (5.567601e-23, 1, -6.123245e-17), (-2.6044332e-22, 1, -6.123202e-17), (5.567601e-23, 1, -6.123245e-17), (-8.533897e-23, 1, -6.123256e-17), (-9.267729e-23, 1, -6.123226e-17), (-2.6044332e-22, 1, -6.123202e-17), (-8.533897e-23, 1, -6.123256e-17), (-9.267729e-23, 1, -6.123226e-17), (-8.533897e-23, 1, -6.123256e-17), (-6.5070306e-22, 1, -6.123245e-17), (0, 1, -6.123225e-17), (-9.267729e-23, 1, -6.123226e-17), (-6.5070306e-22, 1, -6.123245e-17), (-5.2696045e-22, 1, -6.123212e-17), (-9.267729e-23, 1, -6.123226e-17), (0, 1, -6.123225e-17), (-8.533897e-23, 1, -6.123256e-17), (-2.9179283e-22, 1, -6.123202e-17), (-6.5070306e-22, 1, -6.123245e-17), (5.567601e-23, 1, -6.123245e-17), (-2.9179283e-22, 1, -6.123202e-17), (-8.533897e-23, 1, -6.123256e-17), (-5.4073646e-24, 1, -6.1232144e-17), (-2.9179283e-22, 1, -6.123202e-17), (5.567601e-23, 1, -6.123245e-17), (-3.0518842e-22, 1, -6.1232085e-17), (-5.4073646e-24, 1, -6.1232144e-17), (5.567601e-23, 1, -6.123245e-17), (-1.2274267e-21, 1, -6.123218e-17), (-3.0518842e-22, 1, -6.1232085e-17), (5.567601e-23, 1, -6.123245e-17), (-3.0518842e-22, 1, -6.1232085e-17), (-6.3589767e-22, 1, -6.123223e-17), (-5.249384e-22, 1, -6.1232316e-17), (-5.4073646e-24, 1, -6.1232144e-17), (-5.4073646e-24, 1, -6.1232144e-17), (-5.249384e-22, 1, -6.1232316e-17), (1.8075093e-22, 1, -6.123122e-17), (-5.4073646e-24, 1, -6.1232144e-17), (1.8075093e-22, 1, -6.123122e-17), (4.2133902e-22, 1, -6.1231376e-17), (-2.9179283e-22, 1, -6.123202e-17), (-2.9179283e-22, 1, -6.123202e-17), (4.2133902e-22, 1, -6.1231376e-17), (-2.4263678e-23, 1, -6.123272e-17), (-2.9179283e-22, 1, -6.123202e-17), (-2.4263678e-23, 1, -6.123272e-17), (-6.469645e-22, 1, -6.123231e-17), (-7.7175103e-22, 1, -6.123143e-17), (-6.5070306e-22, 1, -6.123245e-17), (-2.9179283e-22, 1, -6.123202e-17), (-7.7175103e-22, 1, -6.123143e-17), (-7.7175103e-22, 1, -6.123143e-17), (-6.469645e-22, 1, -6.123231e-17), (0, 1, -6.123195e-17), (0.00045326314, 0.9999712, 0.007577902), (0.00042736702, 0.9999752, 0.0070428797), (0.00045143615, 0.9999751, 0.007046324), (0.0004548705, 0.9999712, 0.0075880517), (0.00045143615, 0.9999751, 0.007046324), (0.00042736702, 0.9999752, 0.0070428797), (0.00039287584, 0.99998075, 0.0062020435), (0.00042736702, 0.9999752, 0.0070428797), (0.00037355695, 0.99998057, 0.006235507), (0.00039287584, 0.99998075, 0.0062020435), (0.00037355695, 0.99998057, 0.006235507), (0.00030642014, 0.99998564, 0.0053476244), (0.00039287584, 0.99998075, 0.0062020435), (0.00039287584, 0.99998075, 0.0062020435), (0.00030642014, 0.99998564, 0.0053476244), (0.00031123572, 0.99998766, 0.004964043), (0.00030642014, 0.99998564, 0.0053476244), (0.00016780948, 0.9999923, 0.0039284313), (0.00031123572, 0.99998766, 0.004964043), (0.00031123572, 0.99998766, 0.004964043), (0.00016780948, 0.9999923, 0.0039284313), (0.00025444385, 0.99999577, 0.0029239277), (0.00016780948, 0.9999923, 0.0039284313), (0.00016328246, 0.9999963, 0.0027547868), (0.00025444385, 0.99999577, 0.0029239277), (0.00025444385, 0.99999577, 0.0029239277), (0.00016328246, 0.9999963, 0.0027547868), (0.0002604198, 0.9999976, 0.0021712906), (0.00016328246, 0.9999963, 0.0027547868), (0.00012358239, 0.99999875, 0.0016435258), (0.0002604198, 0.9999976, 0.0021712906), (0.00012358239, 0.99999875, 0.0016435258), (2.970595e-05, 0.9999995, 0.001075443), (0.0002604198, 0.9999976, 0.0021712906), (2.970595e-05, 0.9999995, 0.001075443), (1.6438415e-06, 0.9999998, 0.0007153118), (0.0002604198, 0.9999976, 0.0021712906), (3.9594647e-06, 0.99999976, 0.0007448297), (1.6438415e-06, 0.9999998, 0.0007153118), (2.970595e-05, 0.9999995, 0.001075443), (3.9594647e-06, 0.99999976, 0.0007448297), (1.4449269e-05, 0.9999998, 0.0006479358), (1.6438415e-06, 0.9999998, 0.0007153118), (3.9594647e-06, 0.99999976, 0.0007448297), (1.0262533e-05, 0.99999976, 0.00068328646), (1.4449269e-05, 0.9999998, 0.0006479358), (1.4449269e-05, 0.9999998, 0.0006479358), (1.0262533e-05, 0.99999976, 0.00068328646), (1.5461319e-05, 0.9999999, 0.0005679259), (1.0262533e-05, 0.99999976, 0.00068328646), (1.982972e-05, 0.99999994, 0.00057249767), (1.5461319e-05, 0.9999999, 0.0005679259), (1.5461319e-05, 0.9999999, 0.0005679259), (1.982972e-05, 0.99999994, 0.00057249767), (1.50695105e-05, 0.99999994, 0.00045836007), (1.982972e-05, 0.99999994, 0.00057249767), (2.379181e-05, 0.9999999, 0.00047548526), (1.50695105e-05, 0.99999994, 0.00045836007), (1.50695105e-05, 0.99999994, 0.00045836007), (2.379181e-05, 0.9999999, 0.00047548526), (1.49502785e-05, 0.99999994, 0.00035524007), (2.379181e-05, 0.9999999, 0.00047548526), (1.9594603e-05, 1, 0.00037781993), (1.49502785e-05, 0.99999994, 0.00035524007), (1.49502785e-05, 0.99999994, 0.00035524007), (1.9594603e-05, 1, 0.00037781993), (1.6491604e-05, 1, 0.0002861417), (1.9594603e-05, 1, 0.00037781993), (1.686244e-05, 1, 0.00028836742), (1.6491604e-05, 1, 0.0002861417), (1.6491604e-05, 1, 0.0002861417), (1.686244e-05, 1, 0.00028836742), (1.5013587e-05, 1, 0.00021947335), (1.686244e-05, 1, 0.00028836742), (1.391493e-05, 1, 0.00021107642), (1.5013587e-05, 1, 0.00021947335), (1.5013587e-05, 1, 0.00021947335), (1.391493e-05, 1, 0.00021107642), (1.0226686e-05, 1, 0.00010994751), (1.391493e-05, 1, 0.00021107642), (1.3909594e-05, 1, 0.00012925663), (1.0226686e-05, 1, 0.00010994751), (1.3909594e-05, 1, 0.00012925663), (1.0018234e-06, 1, 3.147856e-05), (1.0226686e-05, 1, 0.00010994751), (4.974253e-06, 1, 3.2391978e-05), (1.0018234e-06, 1, 3.147856e-05), (1.3909594e-05, 1, 0.00012925663), (4.974253e-06, 1, 3.2391978e-05), (-2.9387127e-06, 1, 2.435062e-06), (1.0018234e-06, 1, 3.147856e-05), (-1.7330298e-06, 1, 3.8507283e-06), (-2.9387127e-06, 1, 2.435062e-06), (4.974253e-06, 1, 3.2391978e-05), (-1.7330298e-06, 1, 3.8507283e-06), (4.974253e-06, 1, 3.2391978e-05), (9.0721767e-07, 1, 3.8868097e-06), (-3.0532189e-22, 1, -6.122932e-17), (-1.7330298e-06, 1, 3.8507283e-06), (9.0721767e-07, 1, 3.8868097e-06), (9.0721767e-07, 1, 3.8868097e-06), (-8.736974e-22, 1, -6.123366e-17), (-3.0532189e-22, 1, -6.122932e-17), (-1.2263052e-21, 1, -6.123231e-17), (-8.736974e-22, 1, -6.123366e-17), (9.0721767e-07, 1, 3.8868097e-06), (-1.2263052e-21, 1, -6.123231e-17), (9.0721767e-07, 1, 3.8868097e-06), (7.8324815e-22, 1, -6.1233176e-17), (7.8324815e-22, 1, -6.1233176e-17), (9.0721767e-07, 1, 3.8868097e-06), (-9.417867e-22, 1, -6.123014e-17), (-9.417867e-22, 1, -6.123014e-17), (9.0721767e-07, 1, 3.8868097e-06), (7.594335e-05, 1, 2.2449161e-05), (7.594335e-05, 1, 2.2449161e-05), (9.0721767e-07, 1, 3.8868097e-06), (4.974253e-06, 1, 3.2391978e-05), (-1.2263052e-21, 1, -6.123231e-17), (2.3896725e-21, 1, -6.123334e-17), (-8.736974e-22, 1, -6.123366e-17), (2.3896725e-21, 1, -6.123334e-17), (7.2088654e-22, 1, -6.123202e-17), (-8.736974e-22, 1, -6.123366e-17), (7.2088654e-22, 1, -6.123202e-17), (9.265542e-22, 1, -6.1230245e-17), (-8.736974e-22, 1, -6.123366e-17), (-8.736974e-22, 1, -6.123366e-17), (9.265542e-22, 1, -6.1230245e-17), (5.03548e-22, 1, -6.1233e-17), (-8.736974e-22, 1, -6.123366e-17), (5.03548e-22, 1, -6.1233e-17), (-3.0532189e-22, 1, -6.122932e-17), (5.03548e-22, 1, -6.1233e-17), (-1.128467e-22, 1, -6.12292e-17), (-3.0532189e-22, 1, -6.122932e-17), (1.9892324e-22, 1, -6.123038e-17), (-1.128467e-22, 1, -6.12292e-17), (5.03548e-22, 1, -6.1233e-17), (9.265542e-22, 1, -6.1230245e-17), (1.9892324e-22, 1, -6.123038e-17), (5.03548e-22, 1, -6.1233e-17), (-3.0532189e-22, 1, -6.122932e-17), (-1.128467e-22, 1, -6.12292e-17), (-3.4962674e-22, 1, -6.1222066e-17), (-3.0532189e-22, 1, -6.122932e-17), (-3.4962674e-22, 1, -6.1222066e-17), (-2.169195e-21, 1, -6.130378e-17), (-9.133292e-22, 1, -6.124258e-17), (-3.0532189e-22, 1, -6.122932e-17), (-2.169195e-21, 1, -6.130378e-17), (-3.0532189e-22, 1, -6.122932e-17), (-9.133292e-22, 1, -6.124258e-17), (1.2418912e-21, 1, -6.1227935e-17), (-3.0532189e-22, 1, -6.122932e-17), (1.2418912e-21, 1, -6.1227935e-17), (4.168579e-22, 1, -6.12341e-17), (-3.0532189e-22, 1, -6.122932e-17), (4.168579e-22, 1, -6.12341e-17), (-1.7330298e-06, 1, 3.8507283e-06), (-1.7330298e-06, 1, 3.8507283e-06), (4.168579e-22, 1, -6.12341e-17), (1.1130442e-20, 1, -6.123129e-17), (-1.7330298e-06, 1, 3.8507283e-06), (1.1130442e-20, 1, -6.123129e-17), (-7.282593e-21, 1, -6.123089e-17), (1.1818559e-20, 1, -6.123561e-17), (-1.7330298e-06, 1, 3.8507283e-06), (-7.282593e-21, 1, -6.123089e-17), (1.5978871e-21, 1, -6.1226294e-17), (-1.7330298e-06, 1, 3.8507283e-06), (1.1818559e-20, 1, -6.123561e-17), (-1.7330298e-06, 1, 3.8507283e-06), (1.5978871e-21, 1, -6.1226294e-17), (-2.9951134e-21, 1, -6.1230834e-17), (-1.7330298e-06, 1, 3.8507283e-06), (-2.9951134e-21, 1, -6.1230834e-17), (-4.5947116e-22, 1, -6.1236796e-17), (-2.9387127e-06, 1, 2.435062e-06), (-1.7330298e-06, 1, 3.8507283e-06), (-4.5947116e-22, 1, -6.1236796e-17), (-2.9387127e-06, 1, 2.435062e-06), (-4.5947116e-22, 1, -6.1236796e-17), (3.8458118e-22, 1, -6.1231595e-17), (-2.9387127e-06, 1, 2.435062e-06), (3.8458118e-22, 1, -6.1231595e-17), (9.920974e-23, 1, -6.1231376e-17), (-2.9387127e-06, 1, 2.435062e-06), (9.920974e-23, 1, -6.1231376e-17), (1.647227e-21, 1, -6.1231324e-17), (1.647227e-21, 1, -6.1231324e-17), (9.920974e-23, 1, -6.1231376e-17), (6.9372415e-21, 1, -6.1231515e-17), (9.920974e-23, 1, -6.1231376e-17), (1.6821686e-22, 1, -6.123207e-17), (6.9372415e-21, 1, -6.1231515e-17), (9.920974e-23, 1, -6.1231376e-17), (-8.241473e-23, 1, -6.1230834e-17), (1.6821686e-22, 1, -6.123207e-17), (3.8458118e-22, 1, -6.1231595e-17), (-8.241473e-23, 1, -6.1230834e-17), (9.920974e-23, 1, -6.1231376e-17), (6.166056e-23, 1, -6.1235916e-17), (-8.241473e-23, 1, -6.1230834e-17), (3.8458118e-22, 1, -6.1231595e-17), (-4.5947116e-22, 1, -6.1236796e-17), (6.166056e-23, 1, -6.1235916e-17), (3.8458118e-22, 1, -6.1231595e-17), (5.732337e-21, 1, -6.1231906e-17), (6.166056e-23, 1, -6.1235916e-17), (-4.5947116e-22, 1, -6.1236796e-17), (-4.5947116e-22, 1, -6.1236796e-17), (1.7086884e-20, 1, -6.122272e-17), (5.732337e-21, 1, -6.1231906e-17), (-4.5947116e-22, 1, -6.1236796e-17), (-2.0554433e-20, 1, -6.123802e-17), (1.7086884e-20, 1, -6.122272e-17), (-4.5947116e-22, 1, -6.1236796e-17), (-2.9951134e-21, 1, -6.1230834e-17), (-2.0554433e-20, 1, -6.123802e-17), (5.732337e-21, 1, -6.1231906e-17), (9.2962814e-21, 1, -6.116485e-17), (6.166056e-23, 1, -6.1235916e-17), (6.166056e-23, 1, -6.1235916e-17), (9.2962814e-21, 1, -6.116485e-17), (3.8106902e-21, 1, -6.131878e-17), (6.166056e-23, 1, -6.1235916e-17), (3.8106902e-21, 1, -6.131878e-17), (9.364407e-21, 1, -6.1209546e-17), (6.166056e-23, 1, -6.1235916e-17), (9.364407e-21, 1, -6.1209546e-17), (0, 1, -6.120703e-17), (6.166056e-23, 1, -6.1235916e-17), (0, 1, -6.120703e-17), (0, 1, -6.1232045e-17), (6.166056e-23, 1, -6.1235916e-17), (0, 1, -6.1232045e-17), (0, 1, -6.122133e-17), (6.166056e-23, 1, -6.1235916e-17), (0, 1, -6.122133e-17), (0, 1, -6.1240694e-17), (6.166056e-23, 1, -6.1235916e-17), (0, 1, -6.1240694e-17), (0, 1, -6.1268136e-17), (0, 1, -6.1268136e-17), (0, 1, -6.122661e-17), (6.166056e-23, 1, -6.1235916e-17), (6.166056e-23, 1, -6.1235916e-17), (0, 1, -6.122661e-17), (-8.241473e-23, 1, -6.1230834e-17), (-8.241473e-23, 1, -6.1230834e-17), (0, 1, -6.122661e-17), (-2.2994144e-22, 1, -6.122786e-17), (-8.241473e-23, 1, -6.1230834e-17), (-2.2994144e-22, 1, -6.122786e-17), (1.6821686e-22, 1, -6.123207e-17), (1.6821686e-22, 1, -6.123207e-17), (-2.2994144e-22, 1, -6.122786e-17), (0, 1, -6.123522e-17), (0, 1, -6.123522e-17), (2.3544923e-21, 1, -6.123149e-17), (1.6821686e-22, 1, -6.123207e-17), (1.6821686e-22, 1, -6.123207e-17), (2.3544923e-21, 1, -6.123149e-17), (6.9372415e-21, 1, -6.1231515e-17), (0, 1, -6.122661e-17), (0, 1, -6.1240654e-17), (-2.2994144e-22, 1, -6.122786e-17), (0, 1, -6.1240654e-17), (0, 1, -6.130486e-17), (-2.2994144e-22, 1, -6.122786e-17), (-3.4962674e-22, 1, -6.1222066e-17), (-8.0590747e-22, 1, -6.13189e-17), (-2.169195e-21, 1, -6.130378e-17), (-8.0590747e-22, 1, -6.13189e-17), (-3.4962674e-22, 1, -6.1222066e-17), (-3.0164833e-21, 1, -6.1218525e-17), (0.00052958913, 0.9999674, 0.008059868), (0.0004548705, 0.9999712, 0.0075880517), (0.00045143615, 0.9999751, 0.007046324), (0, 1, -6.123216e-17), (-1.2618686e-21, 1, -6.123295e-17), (-1.2073672e-23, 1, -6.123245e-17), (2.3010313e-22, 1, -6.123252e-17), (0, 1, -6.123216e-17), (-1.2073672e-23, 1, -6.123245e-17), (5.660923e-23, 1, -6.1232554e-17), (-4.924853e-23, 1, -6.1232806e-17), (1.8698818e-22, 1, -6.1232614e-17)] ( interpolation = "faceVarying" ) uniform token orientation = "leftHanded" point3f[] points = [(-30.41412, -3.421142e-14, -305.5166), (-30.912838, -3.4213636e-14, -305.4804), (-30.276241, -3.4750567e-14, -296.71167), (-29.777584, -3.474835e-14, -296.74786), (-26.28674, -3.4732833e-14, -297.00128), (-26.923336, -3.4195903e-14, -305.77002), (-22.795956, -3.4717316e-14, -297.2547), (-23.432491, -3.4180385e-14, -306.02344), (-22.159359, -3.5254246e-14, -288.48596), (-25.650204, -3.5269764e-14, -288.23254), (-29.140987, -3.5285282e-14, -287.97913), (-25.013607, -3.5806695e-14, -279.4638), (-21.522823, -3.5791177e-14, -279.71722), (-24.37701, -3.6343626e-14, -270.69507), (-27.867855, -3.6359143e-14, -270.44165), (-28.504452, -3.5822213e-14, -279.2104), (-28.366512, -3.636136e-14, -270.40546), (-29.003109, -3.582443e-14, -279.1742), (-29.639706, -3.5287498e-14, -287.94293), (-20.886227, -3.6328108e-14, -270.9485), (-18.249203, -3.4138992e-14, -306.69946), (-21.715939, -3.4168462e-14, -306.2182), (-20.423275, -3.4738644e-14, -296.90637), (-16.956478, -3.4709177e-14, -297.38763), (-15.663815, -3.5279366e-14, -288.07574), (-11.117977, -3.4950138e-14, -293.45245), (-13.489742, -3.4679707e-14, -297.8689), (-12.296932, -3.4378984e-14, -302.7801), (-14.782406, -3.4109522e-14, -307.18073), (-12.911068, -3.4093618e-14, -307.4405), (-11.699947, -3.4664498e-14, -298.1173), (-12.197079, -3.5249896e-14, -288.557), (-10.548641, -3.5235886e-14, -288.78583), (-9.439083, -3.580763e-14, -279.44855), (-10.904415, -3.5820085e-14, -279.24512), (-14.371151, -3.584955e-14, -278.76392), (-17.837887, -3.5879018e-14, -278.28265), (-19.130611, -3.5308833e-14, -287.59448), (-13.078487, -3.641974e-14, -269.45203), (-9.6116905, -3.639027e-14, -269.9333), (-8.353329, -3.6379574e-14, -270.10797), (-16.545223, -3.6449207e-14, -268.97076), (-35.652035, -0.08354988, -363.79974), (-17.34753, -0.07847872, -364.2254), (-35.402706, -0.06046048, -360.4292), (-17.209286, -0.062048916, -361.77386), (-17.083065, -0.047830407, -359.32172), (-35.13061, -0.041582018, -357.06036), (-16.96893, -0.035823192, -356.8689), (-34.83575, -0.026914487, -353.69342), (-16.729122, -0.017083557, -351.42834), (-34.097225, -0.008864977, -345.57648), (-16.598873, -0.011463912, -348.47357), (-16.529293, -0.00981842, -346.94824), (-34.095882, -0.008854516, -345.56183), (-16.528744, -0.009809399, -346.93695), (-34.09515, -0.008848865, -345.55396), (-16.36163, -0.007343576, -343.6264), (-33.626217, -0.005546664, -340.40002), (-16.172543, -0.0052340776, -340.31702), (-33.157345, -0.0030121936, -335.24615), (-15.961483, -0.0034809038, -337.00897), (-32.955624, -0.0021380398, -332.97168), (-15.728573, -0.0020840543, -333.7024), (-32.76428, -0.001413341, -330.69635), (-15.536739, -0.001235754, -331.10236), (-32.58337, -0.0008380975, -328.42017), (-15.368465, -0.00069511164, -328.92633), (-32.412838, -0.00041230925, -326.1432), (-15.184994, -0.0003089385, -326.7516), (-32.02447, -3.3275964e-14, -320.79376), (-14.986263, -0.000077234625, -324.57812), (-31.573666, -3.3656248e-14, -314.58325), (-22.088558, -3.4004097e-14, -308.90247), (-18.621822, -3.3974627e-14, -309.38373), (-18.346798, -3.409593e-14, -307.4027), (-15.1550865, -3.394516e-14, -309.865), (-13.799496, -3.3691613e-14, -314.00574), (-14.149166, -3.3520333e-14, -316.80292), (-14.473446, -3.334887e-14, -319.60315), (-14.772335, -3.3177234e-14, -322.4062), (-13.424557, -3.3862687e-14, -311.21185), (-13.2738, -3.392917e-14, -310.12616), (-13.005489, -3.4050525e-14, -308.14423), (-14.880062, -3.4066462e-14, -307.88397), (-14.782406, -3.4109522e-14, -307.18073), (-12.911068, -3.4093618e-14, -307.4405), (-18.249203, -3.4138992e-14, -306.69946), (-21.734615, -3.4160232e-14, -306.3526), (-21.772823, -3.415043e-14, -306.51263), (-21.841122, -3.414126e-14, -306.6624), (-21.936886, -3.4133063e-14, -306.79626), (-22.056576, -3.4126148e-14, -306.90924), (-22.195736, -3.4120767e-14, -306.99707), (-22.34924, -3.4117125e-14, -307.05658), (-22.511227, -3.4115353e-14, -307.0855), (-22.675777, -3.4115523e-14, -307.08276), (-23.642452, -3.4003277e-14, -308.91583), (-27.133297, -3.4018795e-14, -308.6624), (-30.62408, -3.4034312e-14, -308.409), (-31.122799, -3.4036528e-14, -308.3728), (-30.977962, -3.4158674e-14, -306.37805), (-30.479305, -3.4156455e-14, -306.41425), (-26.98846, -3.414094e-14, -306.66766), (-23.497677, -3.4125423e-14, -306.92108), (-22.946163, -3.412021e-14, -307.00616), (-22.859005, -3.411805e-14, -307.04144), (-22.76855, -3.411648e-14, -307.06708), (-23.029049, -3.412294e-14, -306.9616), (-23.123104, -3.4126998e-14, -306.89532), (-23.20007, -3.4131308e-14, -306.82495), (-23.268002, -3.4136146e-14, -306.7459), (-23.325985, -3.4141455e-14, -306.65924), (-23.373104, -3.414715e-14, -306.56622), (-23.408749, -3.415315e-14, -306.4682), (-23.43237, -3.4159372e-14, -306.36664), (-23.4436, -3.4165718e-14, -306.263), (-26.923336, -3.4195903e-14, -305.77002), (-30.41412, -3.421142e-14, -305.5166), (-30.912838, -3.4213636e-14, -305.4804), (-23.442318, -3.41721e-14, -306.15875), (-23.432491, -3.4180385e-14, -306.02344), (-21.73248, -3.416116e-14, -306.3374), (-21.715939, -3.4168462e-14, -306.2182), (-35.747242, -0.095022194, -365.21683), (-26.708584, -0.09023493, -365.21683), (-17.408318, -0.08601941, -365.21683), (-27.78421, -3.668622e-14, -265.1001), (-27.981388, -3.668622e-14, -265.1001), (-27.480068, -3.668622e-14, -265.1001), (-25.278801, -3.668622e-14, -265.1001), (-23.970863, -3.668622e-14, -265.1001), (-21.665123, -3.668622e-14, -265.1001), (-20.461643, -3.668622e-14, -265.1001), (-7.774334, -3.6686217e-14, -265.1001), (-8.378765, -3.6686217e-14, -265.1001), (-8.940754, -3.6686217e-14, -265.1001), (-10.732922, -3.6686217e-14, -265.1001), (-12.474358, -3.668622e-14, -265.1001), (-14.459068, -3.6686217e-14, -265.1001), (-16.007904, -3.6686217e-14, -265.1001)] color3f[] primvars:displayColor = [(0.68561757, 0.4460292, 0.59804285)] int[] primvars:displayColor:indices = [0] # texCoord2f[] primvars:st1 = [(0.6368808, 0.0104429815), (0.6391797, 0.15725206), (0.62856543, 0.011046336), (0.6474941, 0.15664831), (0.70569867, 0.15242323), (0.64979297, 0.30345735), (0.6950844, 0.0062175067), (0.71631193, 0.29862854), (0.65810835, 0.302854), (0.7639023, 0.14819776), (0.7745166, 0.29440346), (0.66040725, 0.4496631), (0.753289, 0.0019920322), (0.78512985, 0.4406088), (0.72692627, 0.44483426), (0.6687216, 0.44905975), (0.6710216, 0.5958688), (0.73754054, 0.59104), (0.67933595, 0.59526545), (0.7957441, 0.5868145), (0.6807306, 0.6843276), (0.6774429, 0.6843276), (0.8028234, 0.6843276), (0.7827572, 0.6843276), (0.74431247, 0.6843276), (0.72250456, 0.6843276), (0.6858017, 0.6843276), (0.44715416, 0.014347675), (0.4109047, 0.1776328), (0.3893515, 0.022371978), (0.4687084, 0.16960849), (0.5463994, 0.079697065), (0.4902616, 0.3248701), (0.5265111, 0.1615842), (0.50495785, 0.0063233725), (0.43245792, 0.33289438), (0.56605667, 0.23522174), (0.55635315, 0.1574423), (0.5361596, 0.0019920322), (0.45401224, 0.48815525), (0.5480643, 0.3168458), (0.51181483, 0.48013094), (0.5755495, 0.31303066), (0.53336805, 0.63539296), (0.5940497, 0.46871576), (0.5696175, 0.47210783), (0.4755655, 0.64341724), (0.59117174, 0.6273686), (0.543441, 0.70795476), (0.5103489, 0.70795476), (0.61215305, 0.62445617), (0.60235864, 0.70795476), (0.57247686, 0.70795476), (0.48452446, 0.70795476), (0.61172897, 0.70795476), (0.6218069, 0.70795476), (0.3073766, 0.00199243), (0.30839017, 0.0185234), (0.0031898804, 0.025620382), (0.15230854, 0.00199243), (0.0073471, 0.081819154), (0.0016024421, 0.00199243), (0.31069514, 0.05939871), (0.31279972, 0.10028516), (0.011883853, 0.13798927), (0.31470275, 0.14118196), (0.016800191, 0.19412835), (0.31870118, 0.23189454), (0.029113993, 0.3294661), (0.32087287, 0.2811615), (0.32203302, 0.30659392), (0.02913643, 0.32971045), (0.32204217, 0.3067822), (0.029148618, 0.3298414), (0.3248286, 0.3619804), (0.03696736, 0.41577572), (0.3279813, 0.41715953), (0.044785105, 0.50170887), (0.33150044, 0.47231638), (0.048148528, 0.53963226), (0.33538383, 0.52744853), (0.051338926, 0.57756996), (0.3385824, 0.57080054), (0.05435531, 0.615522), (0.34138814, 0.60708225), (0.057198655, 0.6534872), (0.3444472, 0.64334285), (0.06367408, 0.74268067), (0.34776077, 0.67958236), (0.07119059, 0.8462317), (0.22934063, 0.94095045), (0.20343173, 0.9407276), (0.2871432, 0.9329261), (0.21954958, 0.9712913), (0.14522713, 0.944953), (0.35132766, 0.715796), (0.29172885, 0.9659566), (0.22229318, 0.9712455), (0.21800274, 0.9715528), (0.20584565, 0.9739869), (0.087023534, 0.9491781), (0.3563112, 0.7625325), (0.2318695, 0.976068), (0.34494588, 0.92490184), (0.22499415, 0.9717279), (0.21649456, 0.9719802), (0.2150413, 0.97256845), (0.14764205, 0.97821236), (0.07870815, 0.9497819), (0.3617181, 0.80922204), (0.2334662, 0.9782999), (0.22987384, 0.97418433), (0.36754832, 0.85586107), (0.34953147, 0.95793235), (0.22755355, 0.9727201), (0.21365932, 0.9733111), (0.2067473, 0.98495954), (0.089437455, 0.98243785), (0.08112306, 0.9830412), (0.234605, 0.98079735), (0.37379986, 0.9024448), (0.3807872, 0.953593), (0.35115975, 0.96965796), (0.21209107, 0.9744163), (0.20693456, 0.9832314), (0.14872791, 0.99317926), (0.23524204, 0.9834655), (0.3763135, 0.920547), (0.38236153, 0.9653266), (0.2933561, 0.97768223), (0.2108078, 0.97559), (0.20732841, 0.981538), (0.20676863, 0.98669755), (0.090524316, 0.9974047), (0.08220893, 0.9980081), (0.20967516, 0.9769078), (0.20792271, 0.9799038), (0.20693251, 0.98895377), (0.23527765, 0.983719), (0.20870835, 0.97835284), (0.23555346, 0.98570657)] ( # customData = { # dictionary Maya = { # int UVSetIndex = 0 # } # } # interpolation = "faceVarying" # ) texCoord2f[] primvars:st = [(31.03888, -558.7149), (30.540161, -558.7511), (31.176758, -567.51984), (31.675415, -567.48364), (35.16626, -567.2302), (34.529663, -558.4615), (38.657043, -566.9768), (38.020508, -558.20807), (39.29364, -575.74554), (35.802795, -575.99896), (32.31201, -576.2524), (36.439392, -584.7677), (39.930176, -584.5143), (37.07599, -593.53644), (33.585144, -593.78986), (32.948547, -585.0211), (33.086487, -593.82605), (32.44989, -585.0573), (31.813293, -576.2886), (40.566772, -593.283), (43.203796, -557.53204), (39.73706, -558.0133), (41.029724, -567.32513), (44.49652, -566.8439), (45.789185, -576.15576), (50.335022, -570.77905), (47.963257, -566.3626), (49.156067, -561.4514), (46.670593, -557.0508), (48.54193, -556.791), (49.75305, -566.1142), (49.25592, -575.6745), (50.904358, -575.4457), (52.013916, -584.78296), (50.548584, -584.9864), (47.08185, -585.4676), (43.615112, -585.94885), (42.322388, -576.637), (48.37451, -594.7795), (51.84131, -594.2982), (53.09967, -594.12354), (44.907776, -595.26074), (25.800964, -500.43176), (44.10547, -500.0061), (26.050293, -503.8023), (44.243713, -502.45764), (44.369934, -504.9098), (26.322388, -507.17114), (44.48407, -507.3626), (26.617249, -510.5381), (44.723877, -512.80316), (27.355774, -518.655), (44.854126, -515.75793), (44.923706, -517.28326), (27.357117, -518.6697), (44.924255, -517.29456), (27.35785, -518.67755), (45.09137, -520.6051), (27.826782, -523.8315), (45.280457, -523.9145), (28.295654, -528.98535), (45.491516, -527.22253), (28.497375, -531.2598), (45.724426, -530.5291), (28.68872, -533.53516), (45.91626, -533.12915), (28.869629, -535.81134), (46.084534, -535.3052), (29.040161, -538.0883), (46.268005, -537.4799), (29.428528, -543.43774), (46.466736, -539.6534), (29.879333, -549.64825), (39.36444, -555.32904), (42.831177, -554.8478), (43.1062, -556.8288), (46.297913, -554.3665), (47.653503, -550.22577), (47.303833, -547.4286), (46.979553, -544.62836), (46.680664, -541.8253), (48.028442, -553.01965), (48.1792, -554.10535), (48.44751, -556.0873), (46.572937, -556.34753), (46.670593, -557.0508), (48.54193, -556.791), (43.203796, -557.53204), (39.718384, -557.8789), (39.680176, -557.7189), (39.611877, -557.5691), (39.516113, -557.43524), (39.396423, -557.32227), (39.257263, -557.23444), (39.10376, -557.1749), (38.941772, -557.146), (38.77722, -557.14874), (37.810547, -555.3157), (34.319702, -555.5691), (30.828918, -555.8225), (30.3302, -555.8587), (30.475037, -557.85345), (30.973694, -557.81726), (34.46454, -557.56384), (37.955322, -557.3104), (38.506836, -557.22534), (38.593994, -557.19006), (38.68445, -557.1644), (38.42395, -557.2699), (38.329895, -557.3362), (38.25293, -557.40656), (38.184998, -557.4856), (38.127014, -557.57227), (38.079895, -557.6653), (38.04425, -557.7633), (38.02063, -557.86487), (38.0094, -557.9685), (34.529663, -558.4615), (31.03888, -558.7149), (30.540161, -558.7511), (38.01068, -558.07275), (38.020508, -558.20807), (39.72052, -557.8941), (39.73706, -558.0133), (25.705757, -499.01468), (34.744415, -499.01468), (44.04468, -499.01468), (33.66879, -599.1314), (33.47161, -599.1314), (33.97293, -599.1314), (36.1742, -599.1314), (37.482136, -599.1314), (39.787876, -599.1314), (40.991356, -599.1314), (53.678665, -599.1314), (53.074234, -599.1314), (52.512245, -599.1314), (50.720078, -599.1314), (48.97864, -599.1314), (46.99393, -599.1314), (45.445095, -599.1314)] ( customData = { dictionary Maya = { int UVSetIndex = 1 } } interpolation = "faceVarying" ) int[] primvars:st:indices = [0, 2, 1, 0, 3, 2, 0, 4, 3, 5, 4, 0, 6, 4, 5, 7, 6, 5, 6, 8, 4, 4, 8, 9, 4, 9, 3, 9, 10, 3, 9, 11, 10, 12, 11, 9, 8, 12, 9, 11, 12, 13, 11, 13, 14, 15, 11, 14, 15, 14, 16, 15, 16, 17, 10, 15, 17, 10, 17, 18, 10, 18, 3, 3, 18, 2, 10, 11, 15, 14, 127, 128, 16, 13, 131, 130, 14, 19, 133, 132, 13, 12, 19, 13, 20, 22, 21, 22, 20, 23, 24, 22, 23, 25, 24, 23, 26, 25, 23, 27, 26, 23, 27, 23, 20, 28, 27, 20, 29, 27, 28, 27, 30, 26, 30, 25, 26, 25, 31, 24, 25, 32, 31, 32, 33, 31, 31, 33, 34, 31, 34, 35, 24, 31, 35, 24, 35, 36, 37, 24, 36, 22, 24, 37, 35, 38, 36, 34, 38, 35, 39, 38, 34, 40, 39, 34, 33, 40, 34, 40, 134, 135, 39, 39, 135, 136, 39, 136, 137, 38, 38, 137, 138, 38, 138, 139, 41, 36, 38, 41, 41, 139, 140, 126, 43, 42, 125, 42, 43, 44, 43, 45, 44, 45, 46, 44, 44, 46, 47, 46, 48, 47, 47, 48, 49, 48, 50, 49, 49, 50, 51, 50, 52, 51, 52, 53, 51, 53, 54, 51, 55, 54, 53, 55, 56, 54, 55, 57, 56, 56, 57, 58, 57, 59, 58, 58, 59, 60, 59, 61, 60, 60, 61, 62, 61, 63, 62, 62, 63, 64, 63, 65, 64, 64, 65, 66, 65, 67, 66, 66, 67, 68, 67, 69, 68, 69, 70, 68, 71, 70, 69, 71, 72, 70, 73, 72, 71, 73, 71, 74, 75, 73, 74, 74, 76, 75, 77, 76, 74, 77, 74, 78, 78, 74, 79, 79, 74, 80, 80, 74, 71, 77, 81, 76, 81, 82, 76, 82, 83, 76, 76, 83, 84, 76, 84, 75, 84, 85, 75, 86, 85, 84, 83, 86, 84, 75, 85, 87, 75, 87, 88, 89, 75, 88, 75, 89, 90, 75, 90, 91, 75, 91, 73, 73, 91, 92, 73, 92, 93, 94, 73, 93, 95, 73, 94, 73, 95, 96, 73, 96, 97, 72, 73, 97, 72, 97, 98, 72, 98, 99, 72, 99, 100, 100, 99, 101, 99, 102, 101, 99, 103, 102, 98, 103, 99, 104, 103, 98, 97, 104, 98, 105, 104, 97, 97, 106, 105, 97, 107, 106, 97, 96, 107, 105, 108, 104, 104, 108, 109, 104, 109, 110, 104, 110, 111, 104, 111, 112, 104, 112, 113, 104, 113, 114, 104, 114, 115, 115, 116, 104, 104, 116, 103, 103, 116, 117, 103, 117, 102, 102, 117, 118, 118, 119, 102, 102, 119, 101, 116, 120, 117, 120, 121, 117, 87, 122, 88, 122, 87, 123, 124, 125, 42, 129, 127, 14, 130, 129, 14, 13, 132, 131] # int[] primvars:st1:indices = [0, 1, 2, 0, 3, 1, 0, 4, 3, 6, 4, 0, 9, 4, 6, 12, 9, 6, 9, 10, 4, 4, 10, 7, 4, 7, 3, 7, 8, 3, 7, 14, 8, 13, 14, 7, 10, 13, 7, 14, 13, 17, 14, 17, 18, 15, 14, 18, 15, 18, 16, 15, 16, 11, 8, 15, 11, 8, 11, 5, 8, 5, 3, 3, 5, 1, 8, 14, 15, 18, 20, 21, 16, 17, 24, 25, 18, 19, 22, 23, 17, 13, 19, 17, 27, 28, 29, 28, 27, 30, 32, 28, 30, 36, 32, 30, 33, 36, 30, 31, 33, 30, 31, 30, 27, 34, 31, 27, 38, 31, 34, 31, 37, 33, 37, 36, 33, 36, 40, 32, 36, 42, 40, 42, 44, 40, 40, 44, 45, 40, 45, 41, 32, 40, 41, 32, 41, 39, 35, 32, 39, 28, 32, 35, 41, 43, 39, 45, 43, 41, 47, 43, 45, 50, 47, 45, 44, 50, 45, 50, 55, 54, 47, 47, 54, 51, 47, 51, 52, 43, 43, 52, 48, 43, 48, 49, 46, 39, 43, 46, 46, 49, 53, 56, 57, 58, 59, 58, 57, 60, 57, 62, 60, 62, 63, 60, 60, 63, 64, 63, 65, 64, 64, 65, 66, 65, 67, 66, 66, 67, 68, 67, 69, 68, 69, 70, 68, 70, 71, 68, 72, 71, 70, 72, 73, 71, 72, 74, 73, 73, 74, 75, 74, 76, 75, 75, 76, 77, 76, 78, 77, 77, 78, 79, 78, 80, 79, 79, 80, 81, 80, 82, 81, 81, 82, 83, 82, 84, 83, 83, 84, 85, 84, 86, 85, 86, 87, 85, 88, 87, 86, 88, 89, 87, 90, 89, 88, 90, 88, 92, 96, 90, 92, 92, 103, 96, 112, 103, 92, 112, 92, 109, 109, 92, 101, 101, 92, 95, 95, 92, 88, 112, 120, 103, 120, 127, 103, 127, 121, 103, 103, 121, 113, 103, 113, 96, 113, 122, 96, 128, 122, 113, 121, 128, 113, 96, 122, 129, 96, 129, 126, 119, 96, 126, 96, 119, 110, 96, 110, 102, 96, 102, 90, 90, 102, 111, 90, 111, 114, 104, 90, 114, 97, 90, 104, 90, 97, 93, 90, 93, 91, 89, 90, 91, 89, 91, 94, 89, 94, 100, 89, 100, 108, 108, 100, 118, 100, 117, 118, 100, 107, 117, 94, 107, 100, 99, 107, 94, 91, 99, 94, 106, 99, 91, 91, 105, 106, 91, 98, 105, 91, 93, 98, 106, 115, 99, 99, 115, 123, 99, 123, 130, 99, 130, 135, 99, 135, 139, 99, 139, 136, 99, 136, 131, 99, 131, 124, 124, 116, 99, 99, 116, 107, 107, 116, 125, 107, 125, 117, 117, 125, 133, 133, 134, 117, 117, 134, 118, 116, 132, 125, 132, 137, 125, 129, 138, 126, 138, 129, 140, 61, 59, 58, 26, 20, 18, 25, 26, 18, 17, 23, 24] bool shadow:enable = 1 uniform token subdivisionScheme = "none" } } } } } def Scope "Looks" { def Material "lambert" { token outputs:mdl:surface.connect = </atlas_road_tile_237_01_usd2/Looks/lambert/Shader.outputs:out> token outputs:surface.connect = </atlas_road_tile_237_01_usd2/Looks/lambert/lambertPreviewSurface.outputs:surface> def Shader "lambertPreviewSurface" { uniform token info:id = "UsdPreviewSurface" float inputs:clearcoat = 0 float inputs:clearcoatRoughness = 0 color3f inputs:diffuseColor.connect = </atlas_road_tile_237_01_usd2/Looks/lambert/diffuseColorTex.outputs:rgb> float inputs:displacement = 0 color3f inputs:emissiveColor = (0, 0, 0) float inputs:ior = 1.5 float inputs:metallic.connect = </atlas_road_tile_237_01_usd2/Looks/lambert/metallicTex.outputs:r> normal3f inputs:normal = (0, 0, 1) float inputs:occlusion = 1 float inputs:opacity = 1 float inputs:opacityThreshold = 0 float inputs:roughness.connect = </atlas_road_tile_237_01_usd2/Looks/lambert/roughnessTex.outputs:r> color3f inputs:specularColor = (0, 0, 0) int inputs:useSpecularWorkflow = 0 token outputs:surface } def Shader "diffuseColorTex" { uniform token info:id = "UsdUVTexture" float4 inputs:fallback = (0, 0, 0, 1) asset inputs:file = @lambertPreviewSurface/diffuseColorTex.png@ color3f outputs:rgb } def Shader "metallicTex" { uniform token info:id = "UsdUVTexture" float4 inputs:fallback = (0, 0, 0, 1) asset inputs:file = @lambertPreviewSurface/metallicTex.png@ float outputs:r } def Shader "roughnessTex" { uniform token info:id = "UsdUVTexture" float4 inputs:fallback = (0, 0, 0, 1) asset inputs:file = @lambertPreviewSurface/roughnessTex.png@ float outputs:r } def Shader "Shader" ( kind = "Material" ) { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @OmniPBR.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "OmniPBR" color3f inputs:diffuse_color_constant = (0.68561757, 0.4460292, 0.59804285) token outputs:out } } } }
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/scenes/occlusion_quadrant.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 270.1800438313185 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (-17.686258971514064, 52.51496952187055, 502.9662731226373) double3 target = (-36.99007381299464, 11.4077862535474, -0.02879534425244401) } dictionary Right = { double radius = 500 double3 target = (0, 0, 0) } dictionary Top = { double radius = 500 double3 target = (0, 0, 0) } string boundCamera = "/OmniverseKit_Front" } dictionary renderSettings = { float "rtx:post:lensDistortion:cameraFocalLength" = 50 token "rtx:rendermode" = "PathTracing" } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def DistantLight "defaultLight" ( prepend apiSchemas = ["ShapingAPI"] ) { float angle = 1 float intensity = 3000 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file float3 xformOp:rotateXYZ = (22, 0, 0) double3 xformOp:scale = (1, 1, 1) float3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Xform "Object" ( prepend apiSchemas = ["SemanticsAPI:Semantics"] ) { bool semantic:Semantics:params:decorator string semantic:Semantics:params:semanticData = "object" string semantic:Semantics:params:semanticType = "class" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] def Mesh "Cube" { int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [1, 2, 3, 3, 2, 4, 3, 4, 5, 5, 4, 6, 5, 6, 7, 7, 6, 8, 7, 8, 1, 1, 8, 2, 2, 8, 4, 4, 8, 6, 7, 1, 5, 5, 1, 3] point3f[] points = [(0, 0, 0), (-0.5, -0.5, 0.5), (0.5, -0.5, 0.5), (-0.5, 0.5, 0.5), (0.5, 0.5, 0.5), (-0.5, 0.5, -0.5), (0.5, 0.5, -0.5), (-0.5, -0.5, -0.5), (0.5, -0.5, -0.5)] token visibility = "inherited" float3 xformOp:rotateXYZ = (0, -0, 0) float3 xformOp:scale = (100, 100, 100) double3 xformOp:translate = (-55, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Mesh "Cube_01" { int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [1, 2, 3, 3, 2, 4, 3, 4, 5, 5, 4, 6, 5, 6, 7, 7, 6, 8, 7, 8, 1, 1, 8, 2, 2, 8, 4, 4, 8, 6, 7, 1, 5, 5, 1, 3] point3f[] points = [(0, 0, 0), (-0.5, -0.5, 0.5), (0.5, -0.5, 0.5), (-0.5, 0.5, 0.5), (0.5, 0.5, 0.5), (-0.5, 0.5, -0.5), (0.5, 0.5, -0.5), (-0.5, -0.5, -0.5), (0.5, -0.5, -0.5)] token visibility = "inherited" float3 xformOp:rotateXYZ = (0, -0, 0) float3 xformOp:scale = (100, 100, 100) double3 xformOp:translate = (55, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } } def Xform "Occluder" { token visibility = "inherited" token visibility.timeSamples = { 0: "inherited", 11: "invisible", } double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 200) double3 xformOp:translate.timeSamples = { 0: (0, 0, 0), 1: (-100, 0, 0), 2: (100, 0, 0), 3: (0, -100, 0), 4: (0, 100, 0), 5: (-100, -100, 0), 6: (100, -100, 0), 7: (100, 0, 0), 8: (-100, 0, 0), 9: (100, 0, 0), 10: (-100, 0, 0), } uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] def Mesh "Cube_02" { int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [1, 2, 3, 3, 2, 4, 3, 4, 5, 5, 4, 6, 5, 6, 7, 7, 6, 8, 7, 8, 1, 1, 8, 2, 2, 8, 4, 4, 8, 6, 7, 1, 5, 5, 1, 3] point3f[] points = [(0, 0, 0), (-0.5, -0.5, 0.5), (0.5, -0.5, 0.5), (-0.5, 0.5, 0.5), (0.5, 0.5, 0.5), (-0.5, 0.5, -0.5), (0.5, 0.5, -0.5), (-0.5, -0.5, -0.5), (0.5, -0.5, -0.5)] token visibility = "inherited" float3 xformOp:rotateXYZ = (0, -0, 0) float3 xformOp:scale = (211.93092, 200, 100) double3 xformOp:translate = (0, 0, 100) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } } def Xform "Occluder_2" { token visibility = "inherited" token visibility.timeSamples = { 0: "invisible", 7: "inherited", 11: "invisible", } double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 200) double3 xformOp:translate.timeSamples = { 0: (0, 0, 0), 7: (0, -100, 0), 8: (0, -100, 0), 9: (0, 100, 0), } uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] def Mesh "Cube_03" { int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [1, 2, 3, 3, 2, 4, 3, 4, 5, 5, 4, 6, 5, 6, 7, 7, 6, 8, 7, 8, 1, 1, 8, 2, 2, 8, 4, 4, 8, 6, 7, 1, 5, 5, 1, 3] point3f[] points = [(0, 0, 0), (-0.5, -0.5, 0.5), (0.5, -0.5, 0.5), (-0.5, 0.5, 0.5), (0.5, 0.5, 0.5), (-0.5, 0.5, -0.5), (0.5, 0.5, -0.5), (-0.5, -0.5, -0.5), (0.5, -0.5, -0.5)] token visibility = "inherited" float3 xformOp:rotateXYZ = (0, -0, 0) float3 xformOp:scale = (217.9884, 200, 100) double3 xformOp:translate = (0, 0, 100) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } } }
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/scenes/scene_instance_test.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (485.64670945959244, 499.31261288765523, 515.0406776527499) double3 target = (-14.353290540407405, -0.6873871123448527, 15.040677652750043) } dictionary Right = { double3 position = (-50000, 0, -1.1102230246251565e-11) double radius = 500 } dictionary Top = { double3 position = (-4.329780281177466e-12, 50000, 1.1102230246251565e-11) double radius = 500 } string boundCamera = "/OmniverseKit_Persp" } dictionary omni_layer = { dictionary muteness = { } } dictionary renderSettings = { } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.01 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def Mesh "Cone" ( prepend apiSchemas = ["SemanticsAPI:Semantics_JAfl"] instanceable = true ) { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 32, 33, 1, 1, 33, 34, 2, 2, 34, 35, 3, 3, 35, 36, 4, 4, 36, 37, 5, 5, 37, 38, 6, 6, 38, 39, 7, 7, 39, 40, 8, 8, 40, 41, 9, 9, 41, 42, 10, 10, 42, 43, 11, 11, 43, 44, 12, 12, 44, 45, 13, 13, 45, 46, 14, 14, 46, 47, 15, 15, 47, 48, 16, 16, 48, 49, 17, 17, 49, 50, 18, 18, 50, 51, 19, 19, 51, 52, 20, 20, 52, 53, 21, 21, 53, 54, 22, 22, 54, 55, 23, 23, 55, 56, 24, 24, 56, 57, 25, 25, 57, 58, 26, 26, 58, 59, 27, 27, 59, 60, 28, 28, 60, 61, 29, 29, 61, 62, 30, 30, 62, 63, 31, 31, 63, 32, 0, 32, 64, 65, 33, 33, 65, 66, 34, 34, 66, 67, 35, 35, 67, 68, 36, 36, 68, 69, 37, 37, 69, 70, 38, 38, 70, 71, 39, 39, 71, 72, 40, 40, 72, 73, 41, 41, 73, 74, 42, 42, 74, 75, 43, 43, 75, 76, 44, 44, 76, 77, 45, 45, 77, 78, 46, 46, 78, 79, 47, 47, 79, 80, 48, 48, 80, 81, 49, 49, 81, 82, 50, 50, 82, 83, 51, 51, 83, 84, 52, 52, 84, 85, 53, 53, 85, 86, 54, 54, 86, 87, 55, 55, 87, 88, 56, 56, 88, 89, 57, 57, 89, 90, 58, 58, 90, 91, 59, 59, 91, 92, 60, 60, 92, 93, 61, 61, 93, 94, 62, 62, 94, 95, 63, 63, 95, 64, 32, 64, 96, 97, 65, 65, 97, 98, 66, 66, 98, 99, 67, 67, 99, 100, 68, 68, 100, 101, 69, 69, 101, 102, 70, 70, 102, 103, 71, 71, 103, 104, 72, 72, 104, 105, 73, 73, 105, 106, 74, 74, 106, 107, 75, 75, 107, 108, 76, 76, 108, 109, 77, 77, 109, 110, 78, 78, 110, 111, 79, 79, 111, 112, 80, 80, 112, 113, 81, 81, 113, 114, 82, 82, 114, 115, 83, 83, 115, 116, 84, 84, 116, 117, 85, 85, 117, 118, 86, 86, 118, 119, 87, 87, 119, 120, 88, 88, 120, 121, 89, 89, 121, 122, 90, 90, 122, 123, 91, 91, 123, 124, 92, 92, 124, 125, 93, 93, 125, 126, 94, 94, 126, 127, 95, 95, 127, 96, 64, 96, 128, 129, 97, 97, 129, 130, 98, 98, 130, 131, 99, 99, 131, 132, 100, 100, 132, 133, 101, 101, 133, 134, 102, 102, 134, 135, 103, 103, 135, 136, 104, 104, 136, 137, 105, 105, 137, 138, 106, 106, 138, 139, 107, 107, 139, 140, 108, 108, 140, 141, 109, 109, 141, 142, 110, 110, 142, 143, 111, 111, 143, 144, 112, 112, 144, 145, 113, 113, 145, 146, 114, 114, 146, 147, 115, 115, 147, 148, 116, 116, 148, 149, 117, 117, 149, 150, 118, 118, 150, 151, 119, 119, 151, 152, 120, 120, 152, 153, 121, 121, 153, 154, 122, 122, 154, 155, 123, 123, 155, 156, 124, 124, 156, 157, 125, 125, 157, 158, 126, 126, 158, 159, 127, 127, 159, 128, 96, 160, 161, 162, 160, 162, 163, 160, 163, 164, 160, 164, 165, 160, 165, 166, 160, 166, 167, 160, 167, 168, 160, 168, 169, 160, 169, 170, 160, 170, 171, 160, 171, 172, 160, 172, 173, 160, 173, 174, 160, 174, 175, 160, 175, 176, 160, 176, 177, 160, 177, 178, 160, 178, 179, 160, 179, 180, 160, 180, 181, 160, 181, 182, 160, 182, 183, 160, 183, 184, 160, 184, 185, 160, 185, 186, 160, 186, 187, 160, 187, 188, 160, 188, 189, 160, 189, 190, 160, 190, 191, 160, 191, 192, 160, 192, 161] normal3f[] normals = [(0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8772411, 0.44721362, 0.17449394), (0.877241, 0.4472136, 0.17449391), (0.877241, 0.4472136, 0.17449391), (0.8772411, 0.44721362, 0.17449394), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.7436893, 0.4472136, 0.49691668), (0.74368936, 0.44721362, 0.4969167), (0.74368936, 0.44721362, 0.4969167), (0.7436893, 0.4472136, 0.49691668), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.44721365, 0.63245505), (0.632456, 0.44721365, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228343, 0.4472136, 0.8263426), (0.34228346, 0.44721362, 0.8263426), (0.34228346, 0.44721362, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.1744953, 0.4472136, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.8772408), (0.0000014049631, 0.44721362, 0.89442724), (0.0000014049629, 0.4472136, 0.8944272), (0.0000014049629, 0.4472136, 0.8944272), (0.0000014049631, 0.44721362, 0.89442724), (-0.17449255, 0.44721356, 0.8772414), (-0.17449254, 0.44721362, 0.8772414), (-0.17449254, 0.44721362, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.4969155, 0.44721362, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.4969155, 0.44721362, 0.74369013), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.74368775, 0.4472136, 0.496919), (-0.7436878, 0.44721362, 0.49691904), (-0.7436878, 0.44721362, 0.49691904), (-0.74368775, 0.4472136, 0.496919), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8944272, 0.4472136, 0.0000028099257), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8772417, 0.44721356, -0.17449118), (-0.8772416, 0.4472136, -0.17449117), (-0.8772416, 0.4472136, -0.17449117), (-0.8772417, 0.44721356, -0.17449118), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.63245803, 0.44721362, -0.632453), (-0.632458, 0.4472136, -0.632453), (-0.632458, 0.4472136, -0.632453), (-0.63245803, 0.44721362, -0.632453), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.44721362, -0.743687), (-0.4969202, 0.44721362, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.34228605, 0.4472136, -0.8263415), (-0.34228605, 0.44721362, -0.8263415), (-0.34228605, 0.44721362, -0.8263415), (-0.34228605, 0.4472136, -0.8263415), (-0.17449805, 0.4472136, -0.8772402), (-0.17449804, 0.44721362, -0.87724024), (-0.17449804, 0.44721362, -0.87724024), (-0.17449805, 0.4472136, -0.8772402), (-0.000004214889, 0.44721362, -0.89442724), (-0.0000042148886, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.44721362, -0.89442724), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.4472136, -0.8263448), (0.34227827, 0.4472136, -0.8263448), (0.34227827, 0.44721356, -0.8263447), (0.4969132, 0.4472136, -0.7436916), (0.4969132, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436916), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.44721362, -0.632459), (0.7436862, 0.4472136, -0.49692136), (0.74368626, 0.44721362, -0.4969214), (0.74368626, 0.44721362, -0.4969214), (0.7436862, 0.4472136, -0.49692136), (0.826341, 0.4472136, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.44721362, -0.17449942), (0.87723994, 0.44721362, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.877241, 0.44721356, 0.17449391), (0.8772411, 0.44721362, 0.17449394), (0.8772411, 0.44721362, 0.17449394), (0.877241, 0.44721356, 0.17449391), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.74368936, 0.44721365, 0.49691668), (0.7436893, 0.4472136, 0.49691668), (0.7436893, 0.4472136, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.632456, 0.4472136, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228346, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.87724084), (0.000001404963, 0.4472136, 0.8944272), (0.0000014049631, 0.44721362, 0.89442724), (0.0000014049631, 0.44721362, 0.89442724), (0.000001404963, 0.4472136, 0.8944272), (-0.17449254, 0.44721356, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772414), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.49691552, 0.4472136, 0.7436901), (-0.4969155, 0.44721362, 0.74369013), (-0.4969155, 0.44721362, 0.74369013), (-0.49691552, 0.4472136, 0.7436901), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.7436878, 0.4472136, 0.496919), (-0.74368775, 0.4472136, 0.496919), (-0.74368775, 0.4472136, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.44721356, 0.34228474), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.44721356, 0.17449667), (-0.8944272, 0.4472136, 0.000002809926), (-0.89442724, 0.44721362, 0.0000028099262), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8944272, 0.4472136, 0.000002809926), (-0.8772416, 0.4472136, -0.17449115), (-0.8772417, 0.44721356, -0.17449118), (-0.8772417, 0.44721356, -0.17449118), (-0.8772416, 0.4472136, -0.17449115), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.74369085, 0.44721362, -0.49691433), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.74369085, 0.44721362, -0.49691433), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.44721362, -0.632453), (-0.63245803, 0.44721362, -0.632453), (-0.63245803, 0.4472136, -0.6324531), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.34228602, 0.4472136, -0.82634145), (-0.34228605, 0.4472136, -0.8263415), (-0.34228605, 0.4472136, -0.8263415), (-0.34228602, 0.4472136, -0.82634145), (-0.17449804, 0.44721356, -0.8772402), (-0.17449805, 0.4472136, -0.8772402), (-0.17449805, 0.4472136, -0.8772402), (-0.17449804, 0.44721356, -0.8772402), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.44721362, -0.89442724), (-0.000004214889, 0.44721362, -0.89442724), (-0.0000042148886, 0.4472136, -0.8944272), (0.17448977, 0.44721362, -0.87724185), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.17448977, 0.44721362, -0.87724185), (0.34227824, 0.4472136, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.49691316, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436916), (0.4969132, 0.4472136, -0.7436916), (0.49691316, 0.4472136, -0.7436917), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.7436862, 0.44721356, -0.49692133), (0.7436862, 0.4472136, -0.49692136), (0.7436862, 0.4472136, -0.49692136), (0.7436862, 0.44721356, -0.49692133), (0.8263409, 0.4472136, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8772411, 0.44721356, 0.17449392), (0.877241, 0.44721356, 0.17449391), (0.877241, 0.44721356, 0.17449391), (0.8772411, 0.44721356, 0.17449392), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228218), (0.74368936, 0.44721362, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.63245606, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.63245606, 0.4472136, 0.63245505), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.1744953, 0.44721356, 0.8772408), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.44721356, 0.8772408), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (-0.17449254, 0.44721356, 0.8772413), (-0.17449254, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772413), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.74369013), (-0.63245404, 0.44721356, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.44721356, 0.632457), (-0.74368775, 0.44721356, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.74368775, 0.44721356, 0.496919), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.44721356, 0.3422847), (-0.8772405, 0.4472136, 0.17449668), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.4472136, 0.17449668), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.4472136, -0.17449115), (-0.8772416, 0.4472136, -0.17449115), (-0.8772416, 0.44721362, -0.17449115), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.7436909, 0.44721362, -0.49691433), (-0.74369085, 0.44721362, -0.49691433), (-0.74369085, 0.44721362, -0.49691433), (-0.7436909, 0.44721362, -0.49691433), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.49692017, 0.44721356, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.4472136, -0.82634145), (-0.34228602, 0.4472136, -0.82634145), (-0.34228602, 0.44721362, -0.8263415), (-0.17449807, 0.4472136, -0.87724024), (-0.17449804, 0.44721356, -0.8772402), (-0.17449804, 0.44721356, -0.8772402), (-0.17449807, 0.4472136, -0.87724024), (-0.000004214889, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (0.17448978, 0.44721362, -0.87724185), (0.17448977, 0.44721362, -0.87724185), (0.17448977, 0.44721362, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.34227827, 0.4472136, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.44721356, -0.632459), (0.74368626, 0.4472136, -0.49692136), (0.7436862, 0.44721356, -0.49692133), (0.7436862, 0.44721356, -0.49692133), (0.74368626, 0.4472136, -0.49692136), (0.826341, 0.44721362, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449944), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.87724113, 0.4472136, 0.17449392), (0.8772411, 0.44721356, 0.17449392), (0.8772411, 0.44721356, 0.17449392), (0.87724113, 0.4472136, 0.17449392), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.44721362, 0.34228215), (0.7436893, 0.44721362, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.7436893, 0.44721362, 0.49691668), (0.632456, 0.4472136, 0.632455), (0.63245606, 0.4472136, 0.63245505), (0.63245606, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.632455), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228343, 0.4472136, 0.8263425), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263425), (0.17449528, 0.4472136, 0.8772408), (0.1744953, 0.44721356, 0.8772408), (0.1744953, 0.44721356, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.0000014049629, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.0000014049629, 0.4472136, 0.8944272), (-0.17449255, 0.4472136, 0.8772414), (-0.17449254, 0.44721356, 0.8772413), (-0.17449254, 0.44721356, 0.8772413), (-0.17449255, 0.4472136, 0.8772414), (-0.34228086, 0.44721365, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228086, 0.44721365, 0.82634366), (-0.49691546, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.49691546, 0.4472136, 0.7436901), (-0.6324541, 0.4472136, 0.6324571), (-0.63245404, 0.44721356, 0.632457), (-0.63245404, 0.44721356, 0.632457), (-0.6324541, 0.4472136, 0.6324571), (-0.74368775, 0.4472136, 0.49691907), (-0.74368775, 0.44721356, 0.496919), (-0.74368775, 0.44721356, 0.496919), (-0.74368775, 0.4472136, 0.49691907), (-0.82634205, 0.44721365, 0.34228477), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721365, 0.34228477), (-0.87724054, 0.4472136, 0.1744967), (-0.8772405, 0.4472136, 0.17449668), (-0.8772405, 0.4472136, 0.17449668), (-0.87724054, 0.4472136, 0.1744967), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8772416, 0.4472136, -0.17449117), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.4472136, -0.17449117), (-0.82634413, 0.44721356, -0.34227952), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.82634413, 0.44721356, -0.34227952), (-0.74369085, 0.4472136, -0.4969143), (-0.7436909, 0.44721362, -0.49691433), (-0.7436909, 0.44721362, -0.49691433), (-0.74369085, 0.4472136, -0.4969143), (-0.632458, 0.4472136, -0.632453), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.632458, 0.4472136, -0.632453), (-0.49692023, 0.4472136, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.49692023, 0.4472136, -0.743687), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.17449807, 0.4472136, -0.8772403), (-0.17449807, 0.4472136, -0.87724024), (-0.17449807, 0.4472136, -0.87724024), (-0.17449807, 0.4472136, -0.8772403), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (0.17448977, 0.4472136, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.17448977, 0.4472136, -0.87724185), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.49691314, 0.4472136, -0.7436916), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691314, 0.4472136, -0.7436916), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.4472136, -0.63245904), (0.7436862, 0.4472136, -0.4969214), (0.74368626, 0.4472136, -0.49692136), (0.74368626, 0.4472136, -0.49692136), (0.7436862, 0.4472136, -0.4969214), (0.8263409, 0.4472136, -0.3422873), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.8263409, 0.4472136, -0.3422873), (0.87723994, 0.44721365, -0.17449942), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.44721365, -0.17449942), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(50, -50, 0), (49.039265, -50, 9.754506), (46.193985, -50, 19.134153), (41.573498, -50, 27.778486), (35.355366, -50, 35.355312), (27.778553, -50, 41.573452), (19.134226, -50, 46.193954), (9.754583, -50, 49.03925), (0.000078539815, -50, 50), (-9.75443, -50, 49.03928), (-19.13408, -50, 46.194016), (-27.778421, -50, 41.57354), (-35.355255, -50, 35.355423), (-41.57341, -50, 27.778618), (-46.193924, -50, 19.134298), (-49.039234, -50, 9.754661), (-50, -50, 0.00015707963), (-49.039295, -50, -9.754353), (-46.194046, -50, -19.134008), (-41.573586, -50, -27.778357), (-35.355476, -50, -35.3552), (-27.778683, -50, -41.573364), (-19.13437, -50, -46.193893), (-9.754738, -50, -49.03922), (-0.00023561945, -50, -50), (9.754275, -50, -49.03931), (19.133936, -50, -46.194073), (27.778292, -50, -41.573627), (35.355145, -50, -35.355534), (41.573322, -50, -27.778748), (46.193863, -50, -19.134443), (49.039204, -50, -9.754814), (37.50001, -25.000025, 0), (36.77946, -25.000025, 7.315882), (34.6455, -25.000025, 14.35062), (31.180134, -25.000025, 20.833872), (26.516535, -25.000025, 26.516493), (20.833921, -25.000025, 31.1801), (14.350675, -25.000025, 34.645477), (7.31594, -25.000025, 36.77945), (0.000058904883, -25.000025, 37.50001), (-7.3158245, -25.000025, 36.779472), (-14.350566, -25.000025, 34.645523), (-20.833824, -25.000025, 31.180166), (-26.51645, -25.000025, 26.516575), (-31.180067, -25.000025, 20.833971), (-34.645454, -25.000025, 14.350729), (-36.779438, -25.000025, 7.3159976), (-37.50001, -25.000025, 0.00011780977), (-36.779484, -25.000025, -7.315767), (-34.645546, -25.000025, -14.350511), (-31.180199, -25.000025, -20.833775), (-26.516617, -25.000025, -26.516409), (-20.834019, -25.000025, -31.180035), (-14.350783, -25.000025, -34.64543), (-7.316056, -25.000025, -36.779427), (-0.00017671465, -25.000025, -37.50001), (7.315709, -25.000025, -36.779495), (14.350456, -25.000025, -34.64557), (20.833725, -25.000025, -31.180231), (26.516367, -25.000025, -26.516659), (31.180002, -25.000025, -20.834068), (34.64541, -25.000025, -14.350838), (36.779415, -25.000025, -7.3161135), (25.000025, -0.00005, 0), (24.519657, -0.00005, 4.8772583), (23.097015, -0.00005, 9.567086), (20.78677, -0.00005, 13.889257), (17.677702, -0.00005, 17.677673), (13.88929, -0.00005, 20.786747), (9.567122, -0.00005, 23.097), (4.8772964, -0.00005, 24.51965), (0.000039269948, -0.00005, 25.000025), (-4.8772197, -0.00005, 24.519665), (-9.56705, -0.00005, 23.09703), (-13.889225, -0.00005, 20.78679), (-17.677645, -0.00005, 17.677729), (-20.786726, -0.00005, 13.889323), (-23.096985, -0.00005, 9.567159), (-24.519642, -0.00005, 4.877335), (-25.000025, -0.00005, 0.000078539895), (-24.519672, -0.00005, -4.877181), (-23.097046, -0.00005, -9.567014), (-20.786814, -0.00005, -13.889193), (-17.677757, -0.00005, -17.677618), (-13.889356, -0.00005, -20.786703), (-9.567195, -0.00005, -23.09697), (-4.8773737, -0.00005, -24.519634), (-0.00011780984, -0.00005, -25.000025), (4.8771424, -0.00005, -24.51968), (9.5669775, -0.00005, -23.097061), (13.889159, -0.00005, -20.786835), (17.67759, -0.00005, -17.677784), (20.786682, -0.00005, -13.889388), (23.096954, -0.00005, -9.567231), (24.519627, -0.00005, -4.8774123), (12.500037, 24.999926, 0), (12.259853, 24.999926, 2.438634), (11.548531, 24.999926, 4.7835526), (10.393405, 24.999926, 6.9446425), (8.838868, 24.999926, 8.838855), (6.9446588, 24.999926, 10.393394), (4.783571, 24.999926, 11.548523), (2.4386532, 24.999926, 12.25985), (0.000019635014, 24.999926, 12.500037), (-2.4386146, 24.999926, 12.259857), (-4.7835345, 24.999926, 11.548538), (-6.9446263, 24.999926, 10.393416), (-8.8388405, 24.999926, 8.838882), (-10.393384, 24.999926, 6.9446754), (-11.548515, 24.999926, 4.783589), (-12.259846, 24.999926, 2.4386725), (-12.500037, 24.999926, 0.000039270028), (-12.259861, 24.999926, -2.4385955), (-11.548546, 24.999926, -4.7835164), (-10.393427, 24.999926, -6.94461), (-8.838896, 24.999926, -8.838826), (-6.9446917, 24.999926, -10.393373), (-4.783607, 24.999926, -11.548508), (-2.4386916, 24.999926, -12.259842), (-0.00005890504, 24.999926, -12.500037), (2.4385762, 24.999926, -12.259865), (4.7834983, 24.999926, -11.548553), (6.9445934, 24.999926, -10.393438), (8.838813, 24.999926, -8.83891), (10.393362, 24.999926, -6.944708), (11.548501, 24.999926, -4.783625), (12.259838, 24.999926, -2.438711), (0.00005, 49.9999, 0), (0.000049039267, 49.9999, 0.000009754506), (0.000046193985, 49.9999, 0.000019134153), (0.000041573498, 49.9999, 0.000027778487), (0.000035355366, 49.9999, 0.00003535531), (0.000027778553, 49.9999, 0.000041573454), (0.000019134226, 49.9999, 0.000046193953), (0.0000097545835, 49.9999, 0.000049039252), (7.8539814e-11, 49.9999, 0.00005), (-0.00000975443, 49.9999, 0.00004903928), (-0.00001913408, 49.9999, 0.000046194014), (-0.000027778422, 49.9999, 0.00004157354), (-0.000035355257, 49.9999, 0.00003535542), (-0.00004157341, 49.9999, 0.000027778618), (-0.000046193923, 49.9999, 0.000019134299), (-0.000049039234, 49.9999, 0.000009754661), (-0.00005, 49.9999, 1.5707963e-10), (-0.000049039296, 49.9999, -0.0000097543525), (-0.000046194044, 49.9999, -0.000019134008), (-0.000041573585, 49.9999, -0.000027778357), (-0.00003535548, 49.9999, -0.0000353552), (-0.000027778684, 49.9999, -0.000041573367), (-0.000019134372, 49.9999, -0.000046193894), (-0.000009754737, 49.9999, -0.00004903922), (-2.3561944e-10, 49.9999, -0.00005), (0.000009754275, 49.9999, -0.00004903931), (0.000019133935, 49.9999, -0.000046194073), (0.000027778291, 49.9999, -0.00004157363), (0.000035355144, 49.9999, -0.000035355533), (0.000041573323, 49.9999, -0.000027778748), (0.000046193865, 49.9999, -0.000019134444), (0.000049039205, 49.9999, -0.0000097548145), (0, -50, 0), (50, -50, 0), (49.039265, -50, 9.754506), (46.193985, -50, 19.134153), (41.573498, -50, 27.778486), (35.355366, -50, 35.355312), (27.778553, -50, 41.573452), (19.134226, -50, 46.193954), (9.754583, -50, 49.03925), (0.000078539815, -50, 50), (-9.75443, -50, 49.03928), (-19.13408, -50, 46.194016), (-27.778421, -50, 41.57354), (-35.355255, -50, 35.355423), (-41.57341, -50, 27.778618), (-46.193924, -50, 19.134298), (-49.039234, -50, 9.754661), (-50, -50, 0.00015707963), (-49.039295, -50, -9.754353), (-46.194046, -50, -19.134008), (-41.573586, -50, -27.778357), (-35.355476, -50, -35.3552), (-27.778683, -50, -41.573364), (-19.13437, -50, -46.193893), (-9.754738, -50, -49.03922), (-0.00023561945, -50, -50), (9.754275, -50, -49.03931), (19.133936, -50, -46.194073), (27.778292, -50, -41.573627), (35.355145, -50, -35.355534), (41.573322, -50, -27.778748), (46.193863, -50, -19.134443), (49.039204, -50, -9.754814)] float2[] primvars:st = [(1, 0), (1, 0.24999975), (0.96875006, 0.24999975), (0.96875006, 0), (0.96875006, 0), (0.96875006, 0.24999975), (0.93750006, 0.24999975), (0.93750006, 0), (0.93750006, 0), (0.93750006, 0.24999975), (0.9062501, 0.24999975), (0.9062501, 0), (0.9062501, 0), (0.9062501, 0.24999975), (0.8750001, 0.24999975), (0.8750001, 0), (0.8750001, 0), (0.8750001, 0.24999975), (0.8437502, 0.24999975), (0.8437502, 0), (0.8437502, 0), (0.8437502, 0.24999975), (0.8125002, 0.24999975), (0.8125002, 0), (0.8125002, 0), (0.8125002, 0.24999975), (0.78125024, 0.24999975), (0.78125024, 0), (0.78125024, 0), (0.78125024, 0.24999975), (0.75000024, 0.24999975), (0.75000024, 0), (0.75000024, 0), (0.75000024, 0.24999975), (0.7187503, 0.24999975), (0.7187503, 0), (0.7187503, 0), (0.7187503, 0.24999975), (0.6875003, 0.24999975), (0.6875003, 0), (0.6875003, 0), (0.6875003, 0.24999975), (0.65625036, 0.24999975), (0.65625036, 0), (0.65625036, 0), (0.65625036, 0.24999975), (0.62500036, 0.24999975), (0.62500036, 0), (0.62500036, 0), (0.62500036, 0.24999975), (0.5937504, 0.24999975), (0.5937504, 0), (0.5937504, 0), (0.5937504, 0.24999975), (0.5625004, 0.24999975), (0.5625004, 0), (0.5625004, 0), (0.5625004, 0.24999975), (0.5312505, 0.24999975), (0.5312505, 0), (0.5312505, 0), (0.5312505, 0.24999975), (0.5000005, 0.24999975), (0.5000005, 0), (0.5000005, 0), (0.5000005, 0.24999975), (0.46875054, 0.24999975), (0.46875054, 0), (0.46875054, 0), (0.46875054, 0.24999975), (0.43750057, 0.24999975), (0.43750057, 0), (0.43750057, 0), (0.43750057, 0.24999975), (0.4062506, 0.24999975), (0.4062506, 0), (0.4062506, 0), (0.4062506, 0.24999975), (0.37500063, 0.24999975), (0.37500063, 0), (0.37500063, 0), (0.37500063, 0.24999975), (0.34375066, 0.24999975), (0.34375066, 0), (0.34375066, 0), (0.34375066, 0.24999975), (0.3125007, 0.24999975), (0.3125007, 0), (0.3125007, 0), (0.3125007, 0.24999975), (0.28125072, 0.24999975), (0.28125072, 0), (0.28125072, 0), (0.28125072, 0.24999975), (0.25000075, 0.24999975), (0.25000075, 0), (0.25000075, 0), (0.25000075, 0.24999975), (0.21875077, 0.24999975), (0.21875077, 0), (0.21875077, 0), (0.21875077, 0.24999975), (0.18750082, 0.24999975), (0.18750082, 0), (0.18750082, 0), (0.18750082, 0.24999975), (0.15625085, 0.24999975), (0.15625085, 0), (0.15625085, 0), (0.15625085, 0.24999975), (0.12500088, 0.24999975), (0.12500088, 0), (0.12500088, 0), (0.12500088, 0.24999975), (0.09375091, 0.24999975), (0.09375091, 0), (0.09375091, 0), (0.09375091, 0.24999975), (0.06250094, 0.24999975), (0.06250094, 0), (0.06250094, 0), (0.06250094, 0.24999975), (0.03125097, 0.24999975), (0.03125097, 0), (0.03125097, 0), (0.03125097, 0.24999975), (0, 0.24999975), (0, 0), (1, 0.24999975), (1, 0.4999995), (0.96875006, 0.4999995), (0.96875006, 0.24999975), (0.96875006, 0.24999975), (0.96875006, 0.4999995), (0.93750006, 0.4999995), (0.93750006, 0.24999975), (0.93750006, 0.24999975), (0.93750006, 0.4999995), (0.9062501, 0.4999995), (0.9062501, 0.24999975), (0.9062501, 0.24999975), (0.9062501, 0.4999995), (0.8750001, 0.4999995), (0.8750001, 0.24999975), (0.8750001, 0.24999975), (0.8750001, 0.4999995), (0.8437502, 0.4999995), (0.8437502, 0.24999975), (0.8437502, 0.24999975), (0.8437502, 0.4999995), (0.8125002, 0.4999995), (0.8125002, 0.24999975), (0.8125002, 0.24999975), (0.8125002, 0.4999995), (0.78125024, 0.4999995), (0.78125024, 0.24999975), (0.78125024, 0.24999975), (0.78125024, 0.4999995), (0.75000024, 0.4999995), (0.75000024, 0.24999975), (0.75000024, 0.24999975), (0.75000024, 0.4999995), (0.7187503, 0.4999995), (0.7187503, 0.24999975), (0.7187503, 0.24999975), (0.7187503, 0.4999995), (0.6875003, 0.4999995), (0.6875003, 0.24999975), (0.6875003, 0.24999975), (0.6875003, 0.4999995), (0.65625036, 0.4999995), (0.65625036, 0.24999975), (0.65625036, 0.24999975), (0.65625036, 0.4999995), (0.62500036, 0.4999995), (0.62500036, 0.24999975), (0.62500036, 0.24999975), (0.62500036, 0.4999995), (0.5937504, 0.4999995), (0.5937504, 0.24999975), (0.5937504, 0.24999975), (0.5937504, 0.4999995), (0.5625004, 0.4999995), (0.5625004, 0.24999975), (0.5625004, 0.24999975), (0.5625004, 0.4999995), (0.5312505, 0.4999995), (0.5312505, 0.24999975), (0.5312505, 0.24999975), (0.5312505, 0.4999995), (0.5000005, 0.4999995), (0.5000005, 0.24999975), (0.5000005, 0.24999975), (0.5000005, 0.4999995), (0.46875054, 0.4999995), (0.46875054, 0.24999975), (0.46875054, 0.24999975), (0.46875054, 0.4999995), (0.43750057, 0.4999995), (0.43750057, 0.24999975), (0.43750057, 0.24999975), (0.43750057, 0.4999995), (0.4062506, 0.4999995), (0.4062506, 0.24999975), (0.4062506, 0.24999975), (0.4062506, 0.4999995), (0.37500063, 0.4999995), (0.37500063, 0.24999975), (0.37500063, 0.24999975), (0.37500063, 0.4999995), (0.34375066, 0.4999995), (0.34375066, 0.24999975), (0.34375066, 0.24999975), (0.34375066, 0.4999995), (0.3125007, 0.4999995), (0.3125007, 0.24999975), (0.3125007, 0.24999975), (0.3125007, 0.4999995), (0.28125072, 0.4999995), (0.28125072, 0.24999975), (0.28125072, 0.24999975), (0.28125072, 0.4999995), (0.25000075, 0.4999995), (0.25000075, 0.24999975), (0.25000075, 0.24999975), (0.25000075, 0.4999995), (0.21875077, 0.4999995), (0.21875077, 0.24999975), (0.21875077, 0.24999975), (0.21875077, 0.4999995), (0.18750082, 0.4999995), (0.18750082, 0.24999975), (0.18750082, 0.24999975), (0.18750082, 0.4999995), (0.15625085, 0.4999995), (0.15625085, 0.24999975), (0.15625085, 0.24999975), (0.15625085, 0.4999995), (0.12500088, 0.4999995), (0.12500088, 0.24999975), (0.12500088, 0.24999975), (0.12500088, 0.4999995), (0.09375091, 0.4999995), (0.09375091, 0.24999975), (0.09375091, 0.24999975), (0.09375091, 0.4999995), (0.06250094, 0.4999995), (0.06250094, 0.24999975), (0.06250094, 0.24999975), (0.06250094, 0.4999995), (0.03125097, 0.4999995), (0.03125097, 0.24999975), (0.03125097, 0.24999975), (0.03125097, 0.4999995), (0, 0.4999995), (0, 0.24999975), (1, 0.4999995), (1, 0.7499992), (0.96875006, 0.7499992), (0.96875006, 0.4999995), (0.96875006, 0.4999995), (0.96875006, 0.7499992), (0.93750006, 0.7499992), (0.93750006, 0.4999995), (0.93750006, 0.4999995), (0.93750006, 0.7499992), (0.9062501, 0.7499992), (0.9062501, 0.4999995), (0.9062501, 0.4999995), (0.9062501, 0.7499992), (0.8750001, 0.7499992), (0.8750001, 0.4999995), (0.8750001, 0.4999995), (0.8750001, 0.7499992), (0.8437502, 0.7499992), (0.8437502, 0.4999995), (0.8437502, 0.4999995), (0.8437502, 0.7499992), (0.8125002, 0.7499992), (0.8125002, 0.4999995), (0.8125002, 0.4999995), (0.8125002, 0.7499992), (0.78125024, 0.7499992), (0.78125024, 0.4999995), (0.78125024, 0.4999995), (0.78125024, 0.7499992), (0.75000024, 0.7499992), (0.75000024, 0.4999995), (0.75000024, 0.4999995), (0.75000024, 0.7499992), (0.7187503, 0.7499992), (0.7187503, 0.4999995), (0.7187503, 0.4999995), (0.7187503, 0.7499992), (0.6875003, 0.7499992), (0.6875003, 0.4999995), (0.6875003, 0.4999995), (0.6875003, 0.7499992), (0.65625036, 0.7499992), (0.65625036, 0.4999995), (0.65625036, 0.4999995), (0.65625036, 0.7499992), (0.62500036, 0.7499992), (0.62500036, 0.4999995), (0.62500036, 0.4999995), (0.62500036, 0.7499992), (0.5937504, 0.7499992), (0.5937504, 0.4999995), (0.5937504, 0.4999995), (0.5937504, 0.7499992), (0.5625004, 0.7499992), (0.5625004, 0.4999995), (0.5625004, 0.4999995), (0.5625004, 0.7499992), (0.5312505, 0.7499992), (0.5312505, 0.4999995), (0.5312505, 0.4999995), (0.5312505, 0.7499992), (0.5000005, 0.7499992), (0.5000005, 0.4999995), (0.5000005, 0.4999995), (0.5000005, 0.7499992), (0.46875054, 0.7499992), (0.46875054, 0.4999995), (0.46875054, 0.4999995), (0.46875054, 0.7499992), (0.43750057, 0.7499992), (0.43750057, 0.4999995), (0.43750057, 0.4999995), (0.43750057, 0.7499992), (0.4062506, 0.7499992), (0.4062506, 0.4999995), (0.4062506, 0.4999995), (0.4062506, 0.7499992), (0.37500063, 0.7499992), (0.37500063, 0.4999995), (0.37500063, 0.4999995), (0.37500063, 0.7499992), (0.34375066, 0.7499992), (0.34375066, 0.4999995), (0.34375066, 0.4999995), (0.34375066, 0.7499992), (0.3125007, 0.7499992), (0.3125007, 0.4999995), (0.3125007, 0.4999995), (0.3125007, 0.7499992), (0.28125072, 0.7499992), (0.28125072, 0.4999995), (0.28125072, 0.4999995), (0.28125072, 0.7499992), (0.25000075, 0.7499992), (0.25000075, 0.4999995), (0.25000075, 0.4999995), (0.25000075, 0.7499992), (0.21875077, 0.7499992), (0.21875077, 0.4999995), (0.21875077, 0.4999995), (0.21875077, 0.7499992), (0.18750082, 0.7499992), (0.18750082, 0.4999995), (0.18750082, 0.4999995), (0.18750082, 0.7499992), (0.15625085, 0.7499992), (0.15625085, 0.4999995), (0.15625085, 0.4999995), (0.15625085, 0.7499992), (0.12500088, 0.7499992), (0.12500088, 0.4999995), (0.12500088, 0.4999995), (0.12500088, 0.7499992), (0.09375091, 0.7499992), (0.09375091, 0.4999995), (0.09375091, 0.4999995), (0.09375091, 0.7499992), (0.06250094, 0.7499992), (0.06250094, 0.4999995), (0.06250094, 0.4999995), (0.06250094, 0.7499992), (0.03125097, 0.7499992), (0.03125097, 0.4999995), (0.03125097, 0.4999995), (0.03125097, 0.7499992), (0, 0.7499992), (0, 0.4999995), (1, 0.7499992), (1, 0.999999), (0.96875006, 0.999999), (0.96875006, 0.7499992), (0.96875006, 0.7499992), (0.96875006, 0.999999), (0.93750006, 0.999999), (0.93750006, 0.7499992), (0.93750006, 0.7499992), (0.93750006, 0.999999), (0.9062501, 0.999999), (0.9062501, 0.7499992), (0.9062501, 0.7499992), (0.9062501, 0.999999), (0.8750001, 0.999999), (0.8750001, 0.7499992), (0.8750001, 0.7499992), (0.8750001, 0.999999), (0.8437502, 0.999999), (0.8437502, 0.7499992), (0.8437502, 0.7499992), (0.8437502, 0.999999), (0.8125002, 0.999999), (0.8125002, 0.7499992), (0.8125002, 0.7499992), (0.8125002, 0.999999), (0.78125024, 0.999999), (0.78125024, 0.7499992), (0.78125024, 0.7499992), (0.78125024, 0.999999), (0.75000024, 0.999999), (0.75000024, 0.7499992), (0.75000024, 0.7499992), (0.75000024, 0.999999), (0.7187503, 0.999999), (0.7187503, 0.7499992), (0.7187503, 0.7499992), (0.7187503, 0.999999), (0.6875003, 0.999999), (0.6875003, 0.7499992), (0.6875003, 0.7499992), (0.6875003, 0.999999), (0.65625036, 0.999999), (0.65625036, 0.7499992), (0.65625036, 0.7499992), (0.65625036, 0.999999), (0.62500036, 0.999999), (0.62500036, 0.7499992), (0.62500036, 0.7499992), (0.62500036, 0.999999), (0.5937504, 0.999999), (0.5937504, 0.7499992), (0.5937504, 0.7499992), (0.5937504, 0.999999), (0.5625004, 0.999999), (0.5625004, 0.7499992), (0.5625004, 0.7499992), (0.5625004, 0.999999), (0.5312505, 0.999999), (0.5312505, 0.7499992), (0.5312505, 0.7499992), (0.5312505, 0.999999), (0.5000005, 0.999999), (0.5000005, 0.7499992), (0.5000005, 0.7499992), (0.5000005, 0.999999), (0.46875054, 0.999999), (0.46875054, 0.7499992), (0.46875054, 0.7499992), (0.46875054, 0.999999), (0.43750057, 0.999999), (0.43750057, 0.7499992), (0.43750057, 0.7499992), (0.43750057, 0.999999), (0.4062506, 0.999999), (0.4062506, 0.7499992), (0.4062506, 0.7499992), (0.4062506, 0.999999), (0.37500063, 0.999999), (0.37500063, 0.7499992), (0.37500063, 0.7499992), (0.37500063, 0.999999), (0.34375066, 0.999999), (0.34375066, 0.7499992), (0.34375066, 0.7499992), (0.34375066, 0.999999), (0.3125007, 0.999999), (0.3125007, 0.7499992), (0.3125007, 0.7499992), (0.3125007, 0.999999), (0.28125072, 0.999999), (0.28125072, 0.7499992), (0.28125072, 0.7499992), (0.28125072, 0.999999), (0.25000075, 0.999999), (0.25000075, 0.7499992), (0.25000075, 0.7499992), (0.25000075, 0.999999), (0.21875077, 0.999999), (0.21875077, 0.7499992), (0.21875077, 0.7499992), (0.21875077, 0.999999), (0.18750082, 0.999999), (0.18750082, 0.7499992), (0.18750082, 0.7499992), (0.18750082, 0.999999), (0.15625085, 0.999999), (0.15625085, 0.7499992), (0.15625085, 0.7499992), (0.15625085, 0.999999), (0.12500088, 0.999999), (0.12500088, 0.7499992), (0.12500088, 0.7499992), (0.12500088, 0.999999), (0.09375091, 0.999999), (0.09375091, 0.7499992), (0.09375091, 0.7499992), (0.09375091, 0.999999), (0.06250094, 0.999999), (0.06250094, 0.7499992), (0.06250094, 0.7499992), (0.06250094, 0.999999), (0.03125097, 0.999999), (0.03125097, 0.7499992), (0.03125097, 0.7499992), (0.03125097, 0.999999), (0, 0.999999), (0, 0.7499992), (0.5, 0.5), (1, 0.5), (0.9903927, 0.5975451), (0.5, 0.5), (0.9903927, 0.5975451), (0.9619398, 0.6913415), (0.5, 0.5), (0.9619398, 0.6913415), (0.91573495, 0.7777849), (0.5, 0.5), (0.91573495, 0.7777849), (0.85355365, 0.8535531), (0.5, 0.5), (0.85355365, 0.8535531), (0.77778554, 0.9157345), (0.5, 0.5), (0.77778554, 0.9157345), (0.69134223, 0.9619395), (0.5, 0.5), (0.69134223, 0.9619395), (0.59754586, 0.9903925), (0.5, 0.5), (0.59754586, 0.9903925), (0.5000008, 1), (0.5, 0.5), (0.5000008, 1), (0.40245572, 0.9903928), (0.5, 0.5), (0.40245572, 0.9903928), (0.3086592, 0.96194017), (0.5, 0.5), (0.3086592, 0.96194017), (0.22221579, 0.9157354), (0.5, 0.5), (0.22221579, 0.9157354), (0.14644744, 0.85355425), (0.5, 0.5), (0.14644744, 0.85355425), (0.0842659, 0.7777862), (0.5, 0.5), (0.0842659, 0.7777862), (0.03806076, 0.691343), (0.5, 0.5), (0.03806076, 0.691343), (0.009607648, 0.5975466), (0.5, 0.5), (0.009607648, 0.5975466), (2.4674152e-12, 0.50000155), (0.5, 0.5), (2.4674152e-12, 0.50000155), (0.009607034, 0.40245646), (0.5, 0.5), (0.009607034, 0.40245646), (0.03805956, 0.3086599), (0.5, 0.5), (0.03805956, 0.3086599), (0.08426416, 0.22221643), (0.5, 0.5), (0.08426416, 0.22221643), (0.14644521, 0.146448), (0.5, 0.5), (0.14644521, 0.146448), (0.22221316, 0.08426634), (0.5, 0.5), (0.22221316, 0.08426634), (0.30865628, 0.03806106), (0.5, 0.5), (0.30865628, 0.03806106), (0.40245262, 0.0096078), (0.5, 0.5), (0.40245262, 0.0096078), (0.49999765, 5.5516702e-12), (0.5, 0.5), (0.49999765, 5.5516702e-12), (0.59754276, 0.009606881), (0.5, 0.5), (0.59754276, 0.009606881), (0.6913394, 0.038059257), (0.5, 0.5), (0.6913394, 0.038059257), (0.7777829, 0.08426372), (0.5, 0.5), (0.7777829, 0.08426372), (0.85355145, 0.14644466), (0.5, 0.5), (0.85355145, 0.14644466), (0.9157332, 0.22221252), (0.5, 0.5), (0.9157332, 0.22221252), (0.9619386, 0.30865556), (0.5, 0.5), (0.9619386, 0.30865556), (0.990392, 0.40245184), (0.5, 0.5), (0.990392, 0.40245184), (1, 0.5)] ( interpolation = "faceVarying" ) string semantic:Semantics_JAfl:params:semanticData = "something" string semantic:Semantics_JAfl:params:semanticType = "class" uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def "brachiosaurus_01" ( prepend apiSchemas = ["SemanticsAPI:Semantics_zxNh"] instanceable = true delete references = [ @/home/jf/Pictures/Collected_jensenToy_demo_SSS/props/brachiosaurus_01.usd@, @../../../Library/Assets/Appliances/Residential/Kitchen/Kitchenware/Flatware@, @../../../Library/Assets/Appliances/Residential/Kitchen/Kitchenware/Flatware/Spoon_Small.usd@ ] prepend references = @../../../Library/Assets/Appliances/Residential/Kitchen/Refrigerators/fridge.usd@ ) { string semantic:Semantics_zxNh:params:semanticData = "something" string semantic:Semantics_zxNh:params:semanticType = "class" float3 xformOp:rotateXYZ = (0, -0, 0) float3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (-110.995, 0, 181.582) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def "cone" ( instanceable = false prepend references = @@@omniverse://ov-content/Users/[email protected]/JIRA/cone.usd@@@ ) { float3 xformOp:rotateXYZ = (0, -0, 0) float3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (155.889, 0, -153.261) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } } def DomeLight "DomeLight" ( prepend apiSchemas = ["ShapingAPI"] ) { float intensity = 1000 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file token texture:format = "latlong" double3 xformOp:rotateXYZ = (270, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] }
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/golden/view_np_image.py
import os import sys import matplotlib.pyplot as plt import numpy as np image = np.load(sys.argv[1])["array"] print(image.shape) # np.savez_compressed(f"{os.path.splitext(sys.argv[1])[0]}.npz", array=image) # image = (image - image.min()) / image.ptp() plt.imshow(image) plt.show()
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/ds2_materials/DrivesimPBR_Translucent.mdl
/***************************************************************************** * Copyright 1986-2020 NVIDIA Corporation. All rights reserved. ****************************************************************************** MDL MATERIALS ARE PROVIDED PURSUANT TO AN END USER LICENSE AGREEMENT, WHICH WAS ACCEPTED IN ORDER TO GAIN ACCESS TO THIS FILE. IN PARTICULAR, THE MDL MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL NVIDIA CORPORATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE MDL MATERIALS OR FROM OTHER DEALINGS IN THE MDL MATERIALS. */ mdl 1.4; import ::df::*; import ::state::*; import ::math::*; import ::base::*; import ::tex::*; import ::anno::*; import ::nvidia::core_definitions::file_texture; import ::nvidia::core_definitions::normalmap_texture; float4 raw_file_texture( uniform texture_2d texture [[ anno::description("The input texture") ]], base::texture_coordinate_info uvw = base::texture_coordinate_info() [[ anno::description("Custom value for texture coordinate") ]], uniform float2 crop_u = float2(0.0, 1.0) [[ anno::description("Restricts the texture access to sub-domain of the texture in the u direction") ]], uniform float2 crop_v = float2(0.0, 1.0) [[ anno::description("Restricts the texture access to sub-domain of the texture in the v direction") ]], uniform tex::wrap_mode wrap_u = tex::wrap_repeat [[ anno::description("Wrapping mode in the u direction") ]], uniform tex::wrap_mode wrap_v = tex::wrap_repeat [[ anno::description("Wrapping mode in the v direction") ]] ) [[ anno::description("General texturing function for 2D bitmap texture stored in a file"), anno::noinline() ]] { return tex::lookup_float4(texture, float2(uvw.position.x, uvw.position.y), wrap_u, wrap_v, crop_u, crop_v); } export material DrivesimPBR_Translucent( // -------------------- SPECULAR REFLECTION/TRANSMISSION ---------------------- uniform float ior_constant = 1.1f [[ anno::display_name("Index of Refraction"), anno::hard_range(0.0,5.), anno::description("Index of Refraction of the material"), anno::in_group("Specular") ]], uniform float reflection_roughness_constant = 0.5f [[ anno::display_name("Roughness Amount"), anno::hard_range(0.0,1.), anno::description("Higher roughness values lead to more blurry reflections"), anno::in_group("Specular") ]], uniform float reflection_roughness_texture_influence = 0.0f [[ anno::display_name("Roughness Map Influence"), anno::hard_range(0.0, 1.), anno::description("Blends between the constant value and the lookup of the roughness texture"), anno::in_group("Specular") ]], uniform texture_2d reflectionroughness_texture = texture_2d() [[ anno::display_name("Roughness Map"), anno::in_group("Specular") ]], // -------------------- VOLUME ---------------------- color transmittance_color = color(1.0, 1.0f, 1.0f) [[ anno::display_name("Transmittance Color"), anno::description("Expected transmittance after the specified transmittance distance through the volume."), anno::in_group("Volume") ]], float transmittance_measurement_distance = 1.0f [[ anno::display_name("Transmittance Measurement Distance"), anno::description("Distance to match the transmittance through the volume at."), anno::in_group("Volume") ]], // -------------------- EMISSIVE ---------------------- uniform bool enable_thin_walled = false [[ anno::display_name("Enable Thin Walled"), anno::description("Enables thin walled logic"), anno::in_group("Geometry") ]], // -------------------- EMISSIVE ---------------------- uniform bool enable_emission = false [[ anno::display_name("Enable Emission"), anno::description("Enables the emission of light from the material"), anno::in_group("Emissive") ]], color emissive_color = color(1.0, 0.1, 0.1) [[ anno::enable_if("enable_emission == true"), anno::display_name("Emissive Color"), anno::description("The emission color"), anno::in_group("Emissive") ]], uniform texture_2d emissive_mask_texture = texture_2d() [[ anno::enable_if("enable_emission == true"), anno::display_name("Emissive Mask Map"), anno::description("The texture masking the emissive color"), anno::in_group("Emissive") ]], uniform float emissive_intensity = 40.f [[ anno::enable_if("enable_emission == true"), anno::display_name("Emissive Intensity"), anno::description("Intensity of the emission"), anno::in_group("Emissive") ]], uniform bool enable_emissive_flipbook = false [[ anno::display_name("Enable Flipbook for emission"), anno::description("Allows the use of animated emissive textures (e.g. video screens)"), anno::in_group("Emissive") ]], uniform int2 flipbook_dim = int2(1,1) [[ anno::enable_if("enable_emissive_flipbook == true"), anno::display_name("Flipbook Rows/Columns"), anno::description("How many rows and columns are in the flipbook?"), anno::in_group("Emissive") ]], uniform int target_fps = 1 [[ anno::enable_if("enable_emissive_flipbook == true"), anno::display_name("Flipbook Target FPS"), anno::description("Playback speed in frames per second"), anno::in_group("Emissive") ]], // -------------------- NORMAL ---------------------- uniform float bump_factor = 1.f [[ anno::display_name("Normal Map Strength"), anno::description("Strength of normal map."), anno::in_group("Normal") ]], uniform texture_2d normalmap_texture = texture_2d() [[ anno::display_name("Normal Map"), anno::in_group("Normal") ]], // -------------------- UV ADJUSTMENTS ---------------------- uniform bool project_uvw = false [[ anno::display_name("Enable Project UVW Coordinates"), anno::description("When enabled, UV coordinates will be generated by projecting them from a coordinate system"), anno::in_group("UV") ]], uniform bool world_or_object = false [[ anno::enable_if("project_uvw == true"), anno::display_name("Enable World Space"), anno::description("When set to 'true' uses world space for projection, when 'false' object space is used"), anno::in_group("UV") ]], uniform float2 texture_translate = float2(0.0f) [[ anno::display_name("Texture Translate"), anno::description("Controls position of texture."), anno::in_group("UV") ]], uniform float2 texture_scale = float2(1.0f) [[ anno::display_name("Texture Scale"), anno::description("Larger number increases size of texture."), anno::in_group("UV") ]], uniform float2 texture_speed = float2(0.0f) [[ anno::display_name("Texture Speed"), anno::description("Scrolling texture animation speed in UVs per sec."), anno::in_group("UV") ]] ) [[ anno::display_name("Drivesim PBR Translucent"), anno::description("Supports the translucent material model of the Drivesim Renderer"), anno::version( 1, 0, 0), anno::author("NVIDIA CORPORATION"), anno::key_words(string[]("Drivesim", "PBR", "translucent", "omniverse", "generic")) ]] = let { base::texture_coordinate_system the_system = world_or_object ? base::texture_coordinate_world : base::texture_coordinate_object; base::texture_coordinate_info uvw = project_uvw ? base::coordinate_projection( coordinate_system: the_system, texture_space: 0, projection_type: base::projection_cubic ) : base::coordinate_source( coordinate_system: base::texture_coordinate_uvw, texture_space: 0 ); // Need to use a small value so the compiler doesnt optimize out this var... float t = 0.00000001;//state::animation_time(); base::texture_coordinate_info transformed_uvw = base::transform_coordinate( transform: base::rotation_translation_scale( scaling: float3(texture_scale.x, texture_scale.y, 1.0), rotation: float3(0.0, 0.0, 0.0 ), translation: float3(texture_translate.x + t * texture_speed.x, texture_translate.y + t * texture_speed.y, 0.0)), coordinate: uvw ); color volume_absorption_coefficient = -math::log(transmittance_color) / (transmittance_measurement_distance*0.01); float roughness_lookup = tex::texture_isvalid(reflectionroughness_texture) ? raw_file_texture(texture: reflectionroughness_texture, uvw: transformed_uvw).x : reflection_roughness_constant; float reflection_roughness = math::lerp(reflection_roughness_constant, roughness_lookup, reflection_roughness_texture_influence); float roughness_squared = reflection_roughness * reflection_roughness; bsdf final_bsdf = df::microfacet_ggx_smith_bsdf( roughness_u: roughness_squared, roughness_v: roughness_squared, tint: color(1.0, 1.0, 1.0), mode: df::scatter_reflect_transmit ); int rows = flipbook_dim.x; int columns = flipbook_dim.y; int numFrames = rows * columns; varying int frameIdx = int(state::animation_time() * target_fps) % numFrames; varying float2 baseUV = float2(transformed_uvw.position.x, transformed_uvw.position.y); varying float2 emissiveUV = enable_emissive_flipbook ? ((baseUV + float2(frameIdx % rows, frameIdx / rows)) / float2(rows, columns)) : baseUV; color emissive_mask = tex::texture_isvalid(emissive_mask_texture) ? tex::lookup_color(emissive_mask_texture, emissiveUV, tex::wrap_repeat, tex::wrap_repeat) : color(1.0); // Normal calculations float3 normal_lookup = tex::texture_isvalid(normalmap_texture) ? base::tangent_space_normal_texture( texture: normalmap_texture, factor: bump_factor, uvw: transformed_uvw ) : state::normal(); } in material( thin_walled: enable_thin_walled, surface: material_surface( scattering: final_bsdf, emission: material_emission ( df::diffuse_edf(), intensity: enable_emission ? emissive_color * emissive_mask * color(emissive_intensity) : color(0) ) ), ior: color(ior_constant), volume: material_volume( scattering: df::anisotropic_vdf(), absorption_coefficient: volume_absorption_coefficient, scattering_coefficient: color(0.0f, 0.0f, 0.0f) ), geometry: material_geometry( normal: normal_lookup ) );
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/ds2_materials/OmniUe4Base.mdl
mdl 1.3; import ::df::*; import ::state::*; import ::math::*; import ::tex::*; import ::anno::*; import ::base::*; using .::DrivesimPBR_Model import *; float3 tangent_space_normal( float3 normal = float3(0.0,0.0,1.0), float3 tangent_u = state::texture_tangent_u(0), float3 tangent_v = state::texture_tangent_v(0) ) [[ anno::description("Interprets the vector in tangent space"), anno::noinline() ]] { return math::normalize( tangent_u * normal.x + tangent_v * normal.y + state::normal() * (normal.z)); } export material OmniUe4Base( float3 base_color = float3(0.0, 0.0, 0.0), float metallic = 0.0, float roughness = 0.5, float specular = 0.5, float3 normal = float3(0.0, 0.0, 1.0), uniform float clearcoat_weight = 0.0, uniform float clearcoat_roughness = 0.0, float3 clearcoat_normal = float3(0.0, 0.0, 1.0), float3 emissive_color = float3(0.0, 0.0, 0.0), float3 displacement = float3(0.0, 0.0, 0.0), uniform float opacity = 1.0, uniform bool is_tangent_space_normal = true, uniform bool two_sided = false, uniform bool is_unlit = false ) [[ anno::author("NVIDIA CORPORATION"), anno::key_words(string[]("omni", "UE4", "omniverse", "lit", "clearcoat", "generic")) ]] = let { uniform bool enable_clearcoat = clearcoat_weight > 0.0 ? true : false; // bool enable_emission = (emissive_color.x > 0.0 || emissive_color.y > 0.0 || emissive_color.z > 0.0) ? true : false; uniform bool enable_opacity = opacity < 1.0 ? true : false; float3 final_normal = math::normalize(normal); float3 the_normal = is_unlit ? state::normal() : (is_tangent_space_normal ? tangent_space_normal( normal: final_normal, tangent_u: state::texture_tangent_u(0), tangent_v: state::texture_tangent_v(0) ) : final_normal); } in DrivesimPBR_Model( diffuse_color: base_color, roughness: roughness, metallic: metallic, specular: specular, normal: the_normal, enable_clearcoat: enable_clearcoat, clearcoat_weight: clearcoat_weight, clearcoat_reflection_roughness: clearcoat_roughness, clearcoat_normal: clearcoat_normal, enable_emission: false, // xxxnsubtil: no emission in road_base.mdl enable_opacity: enable_opacity, alpha: opacity );
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/ds2_materials/OmniUe4Function.mdl
/****************************************************************************** * Copyright 1986, 2019 NVIDIA ARC GmbH. All rights reserved. * ****************************************************************************** Permission is hereby granted by NVIDIA Corporation ("NVIDIA"), free of charge, to any person obtaining a copy of the sample definition code that uses our Material Definition Language (the "MDL Materials"), to reproduce and distribute the MDL Materials, including without limitation the rights to use, copy, merge, publish, distribute, and sell modified and unmodified copies of the MDL Materials, and to permit persons to whom the MDL Materials is furnished to do so, in all cases solely for use with NVIDIA’s Material Definition Language, subject to the following further conditions: 1. The above copyright notices, this list of conditions, and the disclaimer that follows shall be retained in all copies of one or more of the MDL Materials, including in any software with which the MDL Materials are bundled, redistributed, and/or sold, and included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user, as applicable. 2. The name of NVIDIA shall not be used to promote, endorse or advertise any Modified Version without specific prior written permission, except a) to comply with the notice requirements otherwise contained herein; or b) to acknowledge the contribution(s) of NVIDIA. THE MDL MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL NVIDIA CORPORATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE MDL MATERIALS OR FROM OTHER DEALINGS IN THE MDL MATERIALS. */ //* 1.0.1 - using absolute import paths when importing standard modules mdl 1.3; import ::df::*; import ::state::*; import ::math::*; import ::tex::*; import ::anno::*; export float3x3 matrix_inverse(float3x3 matrix) [[ anno::description("Inverse the 3x3 matrix"), anno::noinline() ]] { float determinant = (matrix[0][0] * matrix[1][1] * matrix[2][2] + matrix[1][0] * matrix[2][1] * matrix[0][2] + matrix[2][0] * matrix[0][1] * matrix[1][2]) - (matrix[0][2] * matrix[1][1] * matrix[2][0] + matrix[1][2] * matrix[2][1] * matrix[0][0] + matrix[2][2] * matrix[0][1] * matrix[1][0]); float rdet = 1.0f / determinant; float3x3 result; result[0][0] = rdet * (matrix[1][1] * matrix[2][2] - matrix[1][2] * matrix[2][1]); result[0][1] = -rdet * (matrix[0][1] * matrix[2][2] - matrix[0][2] * matrix[2][1]); result[0][2] = rdet * (matrix[0][1] * matrix[1][2] - matrix[0][2] * matrix[1][1]); result[1][0] = -rdet * (matrix[1][0] * matrix[2][2] - matrix[1][2] * matrix[2][0]); result[1][1] = rdet * (matrix[0][0] * matrix[2][2] - matrix[0][2] * matrix[2][0]); result[1][2] = -rdet * (matrix[0][0] * matrix[1][2] - matrix[0][2] * matrix[1][0]); result[2][0] = rdet * (matrix[1][0] * matrix[2][1] - matrix[1][1] * matrix[2][0]); result[2][1] = -rdet * (matrix[0][0] * matrix[2][1] - matrix[0][1] * matrix[2][0]); result[2][2] = rdet * (matrix[0][0] * matrix[1][1] - matrix[0][1] * matrix[1][0]); return result; } export float3 transform_vector_from_tangent_to_world(float3 vector) [[ anno::description("Transform vector from tangent space to world space"), anno::noinline() ]] { float3x3 tangent_to_world = float3x3(state::texture_tangent_u(0), state::texture_tangent_v(0), state::normal()); return tangent_to_world * vector; } export float3 transform_vector_from_world_to_tangent(float3 vector) [[ anno::description("Transform vector from world space to tangent space"), anno::noinline() ]] { float3x3 tangent_to_world = float3x3(state::texture_tangent_u(0), state::texture_tangent_v(0), state::normal()); // inverse tangent to world matrix float3x3 world_to_tangent = matrix_inverse(tangent_to_world); return world_to_tangent * vector; } export float4 unpack_normal_map( float4 texture_sample = float4(0.0, 0.0, 1.0, 1.0) ) [[ anno::description("Unpack a normal stored in a normal map"), anno::noinline() ]] { float2 normal_xy = float2(texture_sample.x, texture_sample.y); normal_xy = normal_xy * float2(2.0,2.0) - float2(1.0,1.0); float normal_z = math::sqrt( math::saturate( 1.0 - math::dot( normal_xy, normal_xy ) ) ); return float4( normal_xy.x, normal_xy.y, normal_z, 1.0 ); } // for get color value from normal. export float4 pack_normal_map( float4 texture_sample = float4(0.0, 0.0, 1.0, 1.0) ) [[ anno::description("Pack to color from a normal") ]] { float2 return_xy = float2(texture_sample.x, texture_sample.y); return_xy = (return_xy + float2(1.0,1.0)) / float2(2.0,2.0); return float4( return_xy.x, return_xy.y, 0.0, 1.0 ); } export float4 greyscale_texture_lookup( float4 texture_sample = float4(0.0, 0.0, 0.0, 1.0) ) [[ anno::description("Sampling a greyscale texture"), anno::noinline() ]] { return float4(texture_sample.x, texture_sample.x, texture_sample.x, texture_sample.x); } export float3 pixel_normal_world_space() [[ anno::description("Pixel normal in world space"), anno::noinline() ]] { return state::transform_normal(state::coordinate_internal,state::coordinate_world,state::normal()); } export float3 vertex_normal_world_space() [[ anno::description("Vertex normal in world space"), anno::noinline() ]] { return state::transform_normal(state::coordinate_internal,state::coordinate_world,state::normal()); } export float3 landscape_normal_world_space() [[ anno::description("Landscape normal in world space") ]] { float3 normalFromNormalmap = math::floor((::vertex_normal_world_space() * 0.5 + 0.5) * 255.0) / 255.0 * 2.0 - 1.0; float2 normalXY = float2(normalFromNormalmap.x, normalFromNormalmap.y); return float3(normalXY.x, normalXY.y, math::sqrt(math::saturate(1.0 - math::dot(normalXY, normalXY)))); } // Different implementation specific between mdl and hlsl for smoothstep export float smoothstep(float a, float b, float l) { if (a < b) { return math::smoothstep(a, b, l); } else if (a > b) { return 1.0 - math::smoothstep(b, a, l); } else { return l <= a ? 0.0 : 1.0; } } export float2 smoothstep(float2 a, float2 b, float2 l) { return float2(smoothstep(a.x, b.x, l.x), smoothstep(a.y, b.y, l.y)); } export float3 smoothstep(float3 a, float3 b, float3 l) { return float3(smoothstep(a.x, b.x, l.x), smoothstep(a.y, b.y, l.y), smoothstep(a.z, b.z, l.z)); } export float4 smoothstep(float4 a, float4 b, float4 l) { return float4(smoothstep(a.x, b.x, l.x), smoothstep(a.y, b.y, l.y), smoothstep(a.z, b.z, l.z), smoothstep(a.w, b.w, l.w)); } export float2 smoothstep(float2 a, float2 b, float l) { return float2(smoothstep(a.x, b.x, l), smoothstep(a.y, b.y, l)); } export float3 smoothstep(float3 a, float3 b, float l) { return float3(smoothstep(a.x, b.x, l), smoothstep(a.y, b.y, l), smoothstep(a.z, b.z, l)); } export float4 smoothstep(float4 a, float4 b, float l) { return float4(smoothstep(a.x, b.x, l), smoothstep(a.y, b.y, l), smoothstep(a.z, b.z, l), smoothstep(a.w, b.w, l)); } //------------------ Random from UE4 ----------------------- float length2(float3 v) { return math::dot(v, v); } float3 GetPerlinNoiseGradientTextureAt(uniform texture_2d PerlinNoiseGradientTexture, float3 v) { const float2 ZShear = float2(17.0f, 89.0f); float2 OffsetA = v.z * ZShear; float2 TexA = (float2(v.x, v.y) + OffsetA + 0.5f) / 128.0f; float4 PerlinNoise = tex::lookup_float4(PerlinNoiseGradientTexture,float2(TexA.x,1.0-TexA.y),tex::wrap_repeat,tex::wrap_repeat); return float3(PerlinNoise.x, PerlinNoise.y, PerlinNoise.z) * 2.0 - 1.0; } float3 SkewSimplex(float3 In) { return In + math::dot(In, float3(1.0 / 3.0f) ); } float3 UnSkewSimplex(float3 In) { return In - math::dot(In, float3(1.0 / 6.0f) ); } // 3D random number generator inspired by PCGs (permuted congruential generator) // Using a **simple** Feistel cipher in place of the usual xor shift permutation step // @param v = 3D integer coordinate // @return three elements w/ 16 random bits each (0-0xffff). // ~8 ALU operations for result.x (7 mad, 1 >>) // ~10 ALU operations for result.xy (8 mad, 2 >>) // ~12 ALU operations for result.xyz (9 mad, 3 >>) //TODO: uint3 int3 Rand3DPCG16(int3 p) { // taking a signed int then reinterpreting as unsigned gives good behavior for negatives //TODO: uint3 int3 v = int3(p); // Linear congruential step. These LCG constants are from Numerical Recipies // For additional #'s, PCG would do multiple LCG steps and scramble each on output // So v here is the RNG state v = v * 1664525 + 1013904223; // PCG uses xorshift for the final shuffle, but it is expensive (and cheap // versions of xorshift have visible artifacts). Instead, use simple MAD Feistel steps // // Feistel ciphers divide the state into separate parts (usually by bits) // then apply a series of permutation steps one part at a time. The permutations // use a reversible operation (usually ^) to part being updated with the result of // a permutation function on the other parts and the key. // // In this case, I'm using v.x, v.y and v.z as the parts, using + instead of ^ for // the combination function, and just multiplying the other two parts (no key) for // the permutation function. // // That gives a simple mad per round. v.x += v.y*v.z; v.y += v.z*v.x; v.z += v.x*v.y; v.x += v.y*v.z; v.y += v.z*v.x; v.z += v.x*v.y; // only top 16 bits are well shuffled return v >> 16; } // Wraps noise for tiling texture creation // @param v = unwrapped texture parameter // @param bTiling = true to tile, false to not tile // @param RepeatSize = number of units before repeating // @return either original or wrapped coord float3 NoiseTileWrap(float3 v, bool bTiling, float RepeatSize) { return bTiling ? (math::frac(v / RepeatSize) * RepeatSize) : v; } // Evaluate polynomial to get smooth transitions for Perlin noise // only needed by Perlin functions in this file // scalar(per component): 2 add, 5 mul float4 PerlinRamp(float4 t) { return t * t * t * (t * (t * 6 - 15) + 10); } // Blum-Blum-Shub-inspired pseudo random number generator // http://www.umbc.edu/~olano/papers/mNoise.pdf // real BBS uses ((s*s) mod M) with bignums and M as the product of two huge Blum primes // instead, we use a single prime M just small enough not to overflow // note that the above paper used 61, which fits in a half, but is unusably bad // @param Integer valued floating point seed // @return random number in range [0,1) // ~8 ALU operations (5 *, 3 frac) float RandBBSfloat(float seed) { float BBS_PRIME24 = 4093.0; float s = math::frac(seed / BBS_PRIME24); s = math::frac(s * s * BBS_PRIME24); s = math::frac(s * s * BBS_PRIME24); return s; } // Modified noise gradient term // @param seed - random seed for integer lattice position // @param offset - [-1,1] offset of evaluation point from lattice point // @return gradient direction (xyz) and contribution (w) from this lattice point float4 MGradient(int seed, float3 offset) { //TODO uint int rand = Rand3DPCG16(int3(seed,0,0)).x; int3 MGradientMask = int3(0x8000, 0x4000, 0x2000); float3 MGradientScale = float3(1.0 / 0x4000, 1.0 / 0x2000, 1.0 / 0x1000); float3 direction = float3(int3(rand, rand, rand) & MGradientMask) * MGradientScale - 1; return float4(direction.x, direction.y, direction.z, math::dot(direction, offset)); } // compute Perlin and related noise corner seed values // @param v = 3D noise argument, use float3(x,y,0) for 2D or float3(x,0,0) for 1D // @param bTiling = true to return seed values for a repeating noise pattern // @param RepeatSize = integer units before tiling in each dimension // @param seed000-seed111 = hash function seeds for the eight corners // @return fractional part of v struct SeedValue { float3 fv = float3(0); float seed000 = 0; float seed001 = 0; float seed010 = 0; float seed011 = 0; float seed100 = 0; float seed101 = 0; float seed110 = 0; float seed111 = 0; }; SeedValue NoiseSeeds(float3 v, bool bTiling, float RepeatSize) { SeedValue seeds; seeds.fv = math::frac(v); float3 iv = math::floor(v); const float3 primes = float3(19, 47, 101); if (bTiling) { // can't algebraically combine with primes seeds.seed000 = math::dot(primes, NoiseTileWrap(iv, true, RepeatSize)); seeds.seed100 = math::dot(primes, NoiseTileWrap(iv + float3(1, 0, 0), true, RepeatSize)); seeds.seed010 = math::dot(primes, NoiseTileWrap(iv + float3(0, 1, 0), true, RepeatSize)); seeds.seed110 = math::dot(primes, NoiseTileWrap(iv + float3(1, 1, 0), true, RepeatSize)); seeds.seed001 = math::dot(primes, NoiseTileWrap(iv + float3(0, 0, 1), true, RepeatSize)); seeds.seed101 = math::dot(primes, NoiseTileWrap(iv + float3(1, 0, 1), true, RepeatSize)); seeds.seed011 = math::dot(primes, NoiseTileWrap(iv + float3(0, 1, 1), true, RepeatSize)); seeds.seed111 = math::dot(primes, NoiseTileWrap(iv + float3(1, 1, 1), true, RepeatSize)); } else { // get to combine offsets with multiplication by primes in this case seeds.seed000 = math::dot(iv, primes); seeds.seed100 = seeds.seed000 + primes.x; seeds.seed010 = seeds.seed000 + primes.y; seeds.seed110 = seeds.seed100 + primes.y; seeds.seed001 = seeds.seed000 + primes.z; seeds.seed101 = seeds.seed100 + primes.z; seeds.seed011 = seeds.seed010 + primes.z; seeds.seed111 = seeds.seed110 + primes.z; } return seeds; } struct SimplexWeights { float4 Result = float4(0); float3 PosA = float3(0); float3 PosB = float3(0); float3 PosC = float3(0); float3 PosD = float3(0); }; // Computed weights and sample positions for simplex interpolation // @return float4(a,b,c, d) Barycentric coordinate defined as Filtered = Tex(PosA) * a + Tex(PosB) * b + Tex(PosC) * c + Tex(PosD) * d SimplexWeights ComputeSimplexWeights3D(float3 OrthogonalPos) { SimplexWeights weights; float3 OrthogonalPosFloor = math::floor(OrthogonalPos); weights.PosA = OrthogonalPosFloor; weights.PosB = weights.PosA + float3(1, 1, 1); OrthogonalPos -= OrthogonalPosFloor; float Largest = math::max(OrthogonalPos.x, math::max(OrthogonalPos.y, OrthogonalPos.z)); float Smallest = math::min(OrthogonalPos.x, math::min(OrthogonalPos.y, OrthogonalPos.z)); weights.PosC = weights.PosA + float3(Largest == OrthogonalPos.x, Largest == OrthogonalPos.y, Largest == OrthogonalPos.z); weights.PosD = weights.PosA + float3(Smallest != OrthogonalPos.x, Smallest != OrthogonalPos.y, Smallest != OrthogonalPos.z); float RG = OrthogonalPos.x - OrthogonalPos.y; float RB = OrthogonalPos.x - OrthogonalPos.z; float GB = OrthogonalPos.y - OrthogonalPos.z; weights.Result.z = math::min(math::max(0, RG), math::max(0, RB)) // X + math::min(math::max(0, -RG), math::max(0, GB)) // Y + math::min(math::max(0, -RB), math::max(0, -GB)); // Z weights.Result.w = math::min(math::max(0, -RG), math::max(0, -RB)) // X + math::min(math::max(0, RG), math::max(0, -GB)) // Y + math::min(math::max(0, RB), math::max(0, GB)); // Z weights.Result.y = Smallest; weights.Result.x = 1.0f - weights.Result.y - weights.Result.z - weights.Result.w; return weights; } // filtered 3D gradient simple noise (few texture lookups, high quality) // @param v >0 // @return random number in the range -1 .. 1 float SimplexNoise3D_TEX(uniform texture_2d PerlinNoiseGradientTexture, float3 EvalPos) { float3 OrthogonalPos = SkewSimplex(EvalPos); SimplexWeights Weights = ComputeSimplexWeights3D(OrthogonalPos); // can be optimized to 1 or 2 texture lookups (4 or 8 channel encoded in 32 bit) float3 A = GetPerlinNoiseGradientTextureAt(PerlinNoiseGradientTexture, Weights.PosA); float3 B = GetPerlinNoiseGradientTextureAt(PerlinNoiseGradientTexture, Weights.PosB); float3 C = GetPerlinNoiseGradientTextureAt(PerlinNoiseGradientTexture, Weights.PosC); float3 D = GetPerlinNoiseGradientTextureAt(PerlinNoiseGradientTexture, Weights.PosD); Weights.PosA = UnSkewSimplex(Weights.PosA); Weights.PosB = UnSkewSimplex(Weights.PosB); Weights.PosC = UnSkewSimplex(Weights.PosC); Weights.PosD = UnSkewSimplex(Weights.PosD); float DistanceWeight; DistanceWeight = math::saturate(0.6f - length2(EvalPos - Weights.PosA)); DistanceWeight *= DistanceWeight; DistanceWeight *= DistanceWeight; float a = math::dot(A, EvalPos - Weights.PosA) * DistanceWeight; DistanceWeight = math::saturate(0.6f - length2(EvalPos - Weights.PosB)); DistanceWeight *= DistanceWeight; DistanceWeight *= DistanceWeight; float b = math::dot(B, EvalPos - Weights.PosB) * DistanceWeight; DistanceWeight = math::saturate(0.6f - length2(EvalPos - Weights.PosC)); DistanceWeight *= DistanceWeight; DistanceWeight *= DistanceWeight; float c = math::dot(C, EvalPos - Weights.PosC) * DistanceWeight; DistanceWeight = math::saturate(0.6f - length2(EvalPos - Weights.PosD)); DistanceWeight *= DistanceWeight; DistanceWeight *= DistanceWeight; float d = math::dot(D, EvalPos - Weights.PosD) * DistanceWeight; return 32 * (a + b + c + d); } // filtered 3D noise, can be optimized // @param v = 3D noise argument, use float3(x,y,0) for 2D or float3(x,0,0) for 1D // @param bTiling = repeat noise pattern // @param RepeatSize = integer units before tiling in each dimension // @return random number in the range -1 .. 1 float GradientNoise3D_TEX(uniform texture_2d PerlinNoiseGradientTexture, float3 v, bool bTiling, float RepeatSize) { bTiling = true; float3 fv = math::frac(v); float3 iv0 = NoiseTileWrap(math::floor(v), bTiling, RepeatSize); float3 iv1 = NoiseTileWrap(iv0 + 1, bTiling, RepeatSize); const int2 ZShear = int2(17, 89); float2 OffsetA = iv0.z * ZShear; float2 OffsetB = OffsetA + ZShear; // non-tiling, use relative offset if (bTiling) // tiling, have to compute from wrapped coordinates { OffsetB = iv1.z * ZShear; } // Texture size scale factor float ts = 1 / 128.0f; // texture coordinates for iv0.xy, as offset for both z slices float2 TexA0 = (float2(iv0.x, iv0.y) + OffsetA + 0.5f) * ts; float2 TexB0 = (float2(iv0.x, iv0.y) + OffsetB + 0.5f) * ts; // texture coordinates for iv1.xy, as offset for both z slices float2 TexA1 = TexA0 + ts; // for non-tiling, can compute relative to existing coordinates float2 TexB1 = TexB0 + ts; if (bTiling) // for tiling, need to compute from wrapped coordinates { TexA1 = (float2(iv1.x, iv1.y) + OffsetA + 0.5f) * ts; TexB1 = (float2(iv1.x, iv1.y) + OffsetB + 0.5f) * ts; } // can be optimized to 1 or 2 texture lookups (4 or 8 channel encoded in 8, 16 or 32 bit) float4 PerlinNoise = tex::lookup_float4(PerlinNoiseGradientTexture,float2(TexA0.x,1.0-TexA0.y),tex::wrap_repeat,tex::wrap_repeat); float3 PerlinNoiseColor = float3(PerlinNoise.x, PerlinNoise.y, PerlinNoise.z); float3 A = PerlinNoiseColor * 2 - 1; PerlinNoise = tex::lookup_float4(PerlinNoiseGradientTexture,float2(TexA1.x,1.0-TexA0.y),tex::wrap_repeat,tex::wrap_repeat); PerlinNoiseColor = float3(PerlinNoise.x, PerlinNoise.y, PerlinNoise.z); float3 B = PerlinNoiseColor * 2 - 1; PerlinNoise = tex::lookup_float4(PerlinNoiseGradientTexture,float2(TexA0.x,1.0-TexA1.y),tex::wrap_repeat,tex::wrap_repeat); PerlinNoiseColor = float3(PerlinNoise.x, PerlinNoise.y, PerlinNoise.z); float3 C = PerlinNoiseColor * 2 - 1; PerlinNoise = tex::lookup_float4(PerlinNoiseGradientTexture,float2(TexA1.x,1.0-TexA1.y),tex::wrap_repeat,tex::wrap_repeat); PerlinNoiseColor = float3(PerlinNoise.x, PerlinNoise.y, PerlinNoise.z); float3 D = PerlinNoiseColor * 2 - 1; PerlinNoise = tex::lookup_float4(PerlinNoiseGradientTexture,float2(TexB0.x,1.0-TexB0.y),tex::wrap_repeat,tex::wrap_repeat); PerlinNoiseColor = float3(PerlinNoise.x, PerlinNoise.y, PerlinNoise.z); float3 E = PerlinNoiseColor * 2 - 1; PerlinNoise = tex::lookup_float4(PerlinNoiseGradientTexture,float2(TexB1.x,1.0-TexB0.y),tex::wrap_repeat,tex::wrap_repeat); PerlinNoiseColor = float3(PerlinNoise.x, PerlinNoise.y, PerlinNoise.z); float3 F = PerlinNoiseColor * 2 - 1; PerlinNoise = tex::lookup_float4(PerlinNoiseGradientTexture,float2(TexB0.x,1.0-TexB1.y),tex::wrap_repeat,tex::wrap_repeat); PerlinNoiseColor = float3(PerlinNoise.x, PerlinNoise.y, PerlinNoise.z); float3 G = PerlinNoiseColor * 2 - 1; PerlinNoise = tex::lookup_float4(PerlinNoiseGradientTexture,float2(TexB1.x,1.0-TexB1.y),tex::wrap_repeat,tex::wrap_repeat); PerlinNoiseColor = float3(PerlinNoise.x, PerlinNoise.y, PerlinNoise.z); float3 H = PerlinNoiseColor * 2 - 1; float a = math::dot(A, fv - float3(0, 0, 0)); float b = math::dot(B, fv - float3(1, 0, 0)); float c = math::dot(C, fv - float3(0, 1, 0)); float d = math::dot(D, fv - float3(1, 1, 0)); float e = math::dot(E, fv - float3(0, 0, 1)); float f = math::dot(F, fv - float3(1, 0, 1)); float g = math::dot(G, fv - float3(0, 1, 1)); float h = math::dot(H, fv - float3(1, 1, 1)); float4 Weights = PerlinRamp(math::frac(float4(fv.x, fv.y, fv.z, 0))); float i = math::lerp(math::lerp(a, b, Weights.x), math::lerp(c, d, Weights.x), Weights.y); float j = math::lerp(math::lerp(e, f, Weights.x), math::lerp(g, h, Weights.x), Weights.y); return math::lerp(i, j, Weights.z); } // @return random number in the range -1 .. 1 // scalar: 6 frac, 31 mul/mad, 15 add, float FastGradientPerlinNoise3D_TEX(uniform texture_3d PerlinNoise3DTexture, float3 xyz) { // needs to be the same value when creating the PerlinNoise3D texture float Extent = 16; // last texel replicated and needed for filtering // scalar: 3 frac, 6 mul xyz = math::frac(xyz / (Extent - 1)) * (Extent - 1); // scalar: 3 frac float3 uvw = math::frac(xyz); // = floor(xyz); // scalar: 3 add float3 p0 = xyz - uvw; // float3 f = math::pow(uvw, 2) * 3.0f - math::pow(uvw, 3) * 2.0f; // original perlin hermite (ok when used without bump mapping) // scalar: 2*3 add 5*3 mul float4 pr = PerlinRamp(float4(uvw.x, uvw.y, uvw.z, 0)); float3 f = float3(pr.x, pr.y, pr.z); // new, better with continues second derivative for bump mapping // scalar: 3 add float3 p = p0 + f; // scalar: 3 mad // TODO: need reverse??? float4 NoiseSample = tex::lookup_float4(PerlinNoise3DTexture, p / Extent + 0.5f / Extent); // +0.5f to get rid of bilinear offset // reconstruct from 8bit (using mad with 2 constants and dot4 was same instruction count) // scalar: 4 mad, 3 mul, 3 add float3 n = float3(NoiseSample.x, NoiseSample.y, NoiseSample.z) * 255.0f / 127.0f - 1.0f; float d = NoiseSample.w * 255.f - 127; return math::dot(xyz, n) - d; } // Perlin-style "Modified Noise" // http://www.umbc.edu/~olano/papers/index.html#mNoise // @param v = 3D noise argument, use float3(x,y,0) for 2D or float3(x,0,0) for 1D // @param bTiling = repeat noise pattern // @param RepeatSize = integer units before tiling in each dimension // @return random number in the range -1 .. 1 float GradientNoise3D_ALU(float3 v, bool bTiling, float RepeatSize) { SeedValue seeds = NoiseSeeds(v, bTiling, RepeatSize); float rand000 = MGradient(int(seeds.seed000), seeds.fv - float3(0, 0, 0)).w; float rand100 = MGradient(int(seeds.seed100), seeds.fv - float3(1, 0, 0)).w; float rand010 = MGradient(int(seeds.seed010), seeds.fv - float3(0, 1, 0)).w; float rand110 = MGradient(int(seeds.seed110), seeds.fv - float3(1, 1, 0)).w; float rand001 = MGradient(int(seeds.seed001), seeds.fv - float3(0, 0, 1)).w; float rand101 = MGradient(int(seeds.seed101), seeds.fv - float3(1, 0, 1)).w; float rand011 = MGradient(int(seeds.seed011), seeds.fv - float3(0, 1, 1)).w; float rand111 = MGradient(int(seeds.seed111), seeds.fv - float3(1, 1, 1)).w; float4 Weights = PerlinRamp(float4(seeds.fv.x, seeds.fv.y, seeds.fv.z, 0)); float i = math::lerp(math::lerp(rand000, rand100, Weights.x), math::lerp(rand010, rand110, Weights.x), Weights.y); float j = math::lerp(math::lerp(rand001, rand101, Weights.x), math::lerp(rand011, rand111, Weights.x), Weights.y); return math::lerp(i, j, Weights.z); } // 3D value noise - used to be incorrectly called Perlin noise // @param v = 3D noise argument, use float3(x,y,0) for 2D or float3(x,0,0) for 1D // @param bTiling = repeat noise pattern // @param RepeatSize = integer units before tiling in each dimension // @return random number in the range -1 .. 1 float ValueNoise3D_ALU(float3 v, bool bTiling, float RepeatSize) { SeedValue seeds = NoiseSeeds(v, bTiling, RepeatSize); float rand000 = RandBBSfloat(seeds.seed000) * 2 - 1; float rand100 = RandBBSfloat(seeds.seed100) * 2 - 1; float rand010 = RandBBSfloat(seeds.seed010) * 2 - 1; float rand110 = RandBBSfloat(seeds.seed110) * 2 - 1; float rand001 = RandBBSfloat(seeds.seed001) * 2 - 1; float rand101 = RandBBSfloat(seeds.seed101) * 2 - 1; float rand011 = RandBBSfloat(seeds.seed011) * 2 - 1; float rand111 = RandBBSfloat(seeds.seed111) * 2 - 1; float4 Weights = PerlinRamp(float4(seeds.fv.x, seeds.fv.y, seeds.fv.z, 0)); float i = math::lerp(math::lerp(rand000, rand100, Weights.x), math::lerp(rand010, rand110, Weights.x), Weights.y); float j = math::lerp(math::lerp(rand001, rand101, Weights.x), math::lerp(rand011, rand111, Weights.x), Weights.y); return math::lerp(i, j, Weights.z); } // 3D jitter offset within a voronoi noise cell // @param pos - integer lattice corner // @return random offsets vector float3 VoronoiCornerSample(float3 pos, int Quality) { // random values in [-0.5, 0.5] float3 noise = float3(Rand3DPCG16(int3(pos))) / 0xffff - 0.5; // quality level 1 or 2: searches a 2x2x2 neighborhood with points distributed on a sphere // scale factor to guarantee jittered points will be found within a 2x2x2 search if (Quality <= 2) { return math::normalize(noise) * 0.2588; } // quality level 3: searches a 3x3x3 neighborhood with points distributed on a sphere // scale factor to guarantee jittered points will be found within a 3x3x3 search if (Quality == 3) { return math::normalize(noise) * 0.3090; } // quality level 4: jitter to anywhere in the cell, needs 4x4x4 search return noise; } // compare previous best with a new candidate // not producing point locations makes it easier for compiler to eliminate calculations when they're not needed // @param minval = location and distance of best candidate seed point before the new one // @param candidate = candidate seed point // @param offset = 3D offset to new candidate seed point // @param bDistanceOnly = if true, only set maxval.w with distance, otherwise maxval.w is distance and maxval.xyz is position // @return position (if bDistanceOnly is false) and distance to closest seed point so far float4 VoronoiCompare(float4 minval, float3 candidate, float3 offset, bool bDistanceOnly) { if (bDistanceOnly) { return float4(0, 0, 0, math::min(minval.w, math::dot(offset, offset))); } else { float newdist = math::dot(offset, offset); return newdist > minval.w ? minval : float4(candidate.x, candidate.y, candidate.z, newdist); } } // 220 instruction Worley noise float4 VoronoiNoise3D_ALU(float3 v, int Quality, bool bTiling, float RepeatSize, bool bDistanceOnly) { float3 fv = math::frac(v), fv2 = math::frac(v + 0.5); float3 iv = math::floor(v), iv2 = math::floor(v + 0.5); // with initial minimum distance = infinity (or at least bigger than 4), first min is optimized away float4 mindist = float4(0,0,0,100); float3 p, offset; // quality level 3: do a 3x3x3 search if (Quality == 3) { int offset_x; int offset_y; int offset_z; for (offset_x = -1; offset_x <= 1; ++offset_x) { for (offset_y = -1; offset_y <= 1; ++offset_y) { for (offset_z = -1; offset_z <= 1; ++offset_z) { offset = float3(offset_x, offset_y, offset_z); p = offset + VoronoiCornerSample(NoiseTileWrap(iv2 + offset, bTiling, RepeatSize), Quality); mindist = VoronoiCompare(mindist, iv2 + p, fv2 - p, bDistanceOnly); } } } } // everybody else searches a base 2x2x2 neighborhood else { int offset_x; int offset_y; int offset_z; for (offset_x = 0; offset_x <= 1; ++offset_x) { for (offset_y = 0; offset_y <= 1; ++offset_y) { for (offset_z = 0; offset_z <= 1; ++offset_z) { offset = float3(offset_x, offset_y, offset_z); p = offset + VoronoiCornerSample(NoiseTileWrap(iv + offset, bTiling, RepeatSize), Quality); mindist = VoronoiCompare(mindist, iv + p, fv - p, bDistanceOnly); // quality level 2, do extra set of points, offset by half a cell if (Quality == 2) { // 467 is just an offset to a different area in the random number field to avoid similar neighbor artifacts p = offset + VoronoiCornerSample(NoiseTileWrap(iv2 + offset, bTiling, RepeatSize) + 467, Quality); mindist = VoronoiCompare(mindist, iv2 + p, fv2 - p, bDistanceOnly); } } } } } // quality level 4: add extra sets of four cells in each direction if (Quality >= 4) { int offset_x; int offset_y; int offset_z; for (offset_x = -1; offset_x <= 2; offset_x += 3) { for (offset_y = 0; offset_y <= 1; ++offset_y) { for (offset_z = 0; offset_z <= 1; ++offset_z) { offset = float3(offset_x, offset_y, offset_z); // along x axis p = offset + VoronoiCornerSample(NoiseTileWrap(iv + offset, bTiling, RepeatSize), Quality); mindist = VoronoiCompare(mindist, iv + p, fv - p, bDistanceOnly); // along y axis p = float3(offset.y, offset.z, offset.x) + VoronoiCornerSample(NoiseTileWrap(iv + float3(offset.y, offset.z, offset.x), bTiling, RepeatSize), Quality); mindist = VoronoiCompare(mindist, iv + p, fv - p, bDistanceOnly); // along z axis p = float3(offset.z, offset.x, offset.y) + VoronoiCornerSample(NoiseTileWrap(iv + float3(offset.z, offset.x, offset.y), bTiling, RepeatSize), Quality); mindist = VoronoiCompare(mindist, iv + p, fv - p, bDistanceOnly); } } } } // transform squared distance to real distance return float4(mindist.x, mindist.y, mindist.z, math::sqrt(mindist.w)); } // Coordinates for corners of a Simplex tetrahedron // Based on McEwan et al., Efficient computation of noise in GLSL, JGT 2011 // @param v = 3D noise argument // @return 4 corner locations float4x3 SimplexCorners(float3 v) { // find base corner by skewing to tetrahedral space and back float3 tet = math::floor(v + v.x/3 + v.y/3 + v.z/3); float3 base = tet - tet.x/6 - tet.y/6 - tet.z/6; float3 f = v - base; // Find offsets to other corners (McEwan did this in tetrahedral space, // but since skew is along x=y=z axis, this works in Euclidean space too.) float3 g = math::step(float3(f.y,f.z,f.x), float3(f.x,f.y,f.z)), h = 1 - float3(g.z, g.x, g.y); float3 a1 = math::min(g, h) - 1.0 / 6.0, a2 = math::max(g, h) - 1.0 / 3.0; // four corners return float4x3(base, base + a1, base + a2, base + 0.5); } // Improved smoothing function for simplex noise // @param f = fractional distance to four tetrahedral corners // @return weight for each corner float4 SimplexSmooth(float4x3 f) { const float scale = 1024. / 375.; // scale factor to make noise -1..1 float4 d = float4(math::dot(f[0], f[0]), math::dot(f[1], f[1]), math::dot(f[2], f[2]), math::dot(f[3], f[3])); float4 s = math::saturate(2 * d); return (1 * scale + s*(-3 * scale + s*(3 * scale - s*scale))); } // Derivative of simplex noise smoothing function // @param f = fractional distanc eto four tetrahedral corners // @return derivative of smoothing function for each corner by x, y and z float3x4 SimplexDSmooth(float4x3 f) { const float scale = 1024. / 375.; // scale factor to make noise -1..1 float4 d = float4(math::dot(f[0], f[0]), math::dot(f[1], f[1]), math::dot(f[2], f[2]), math::dot(f[3], f[3])); float4 s = math::saturate(2 * d); s = -12 * scale + s*(24 * scale - s * 12 * scale); return float3x4( s * float4(f[0][0], f[1][0], f[2][0], f[3][0]), s * float4(f[0][1], f[1][1], f[2][1], f[3][1]), s * float4(f[0][2], f[1][2], f[2][2], f[3][2])); } // Simplex noise and its Jacobian derivative // @param v = 3D noise argument // @param bTiling = whether to repeat noise pattern // @param RepeatSize = integer units before tiling in each dimension, must be a multiple of 3 // @return float3x3 Jacobian in J[*].xyz, vector noise in J[*].w // J[0].w, J[1].w, J[2].w is a Perlin-style simplex noise with vector output, e.g. (Nx, Ny, Nz) // J[i].x is X derivative of the i'th component of the noise so J[2].x is dNz/dx // You can use this to compute the noise, gradient, curl, or divergence: // float3x4 J = JacobianSimplex_ALU(...); // float3 VNoise = float3(J[0].w, J[1].w, J[2].w); // 3D noise // float3 Grad = J[0].xyz; // gradient of J[0].w // float3 Curl = float3(J[1][2]-J[2][1], J[2][0]-J[0][2], J[0][1]-J[1][2]); // float Div = J[0][0]+J[1][1]+J[2][2]; // All of these are confirmed to compile out all unneeded terms. // So Grad of X doesn't compute Y or Z components, and VNoise doesn't do any of the derivative computation. float3x4 JacobianSimplex_ALU(float3 v, bool bTiling, float RepeatSize) { int3 MGradientMask = int3(0x8000, 0x4000, 0x2000); float3 MGradientScale = float3(1. / 0x4000, 1. / 0x2000, 1. / 0x1000); // corners of tetrahedron float4x3 T = SimplexCorners(v); // TODO: uint3 int3 rand = int3(0); float4x3 gvec0 = float4x3(1.0); float4x3 gvec1 = float4x3(1.0); float4x3 gvec2 = float4x3(1.0); float4x3 fv = float4x3(1.0); float3x4 grad = float3x4(1.0); // processing of tetrahedral vertices, unrolled // to compute gradient at each corner fv[0] = v - T[0]; rand = Rand3DPCG16(int3(math::floor(NoiseTileWrap(6 * T[0] + 0.5, bTiling, RepeatSize)))); gvec0[0] = float3(int3(rand.x,rand.x,rand.x) & MGradientMask) * MGradientScale - 1; gvec1[0] = float3(int3(rand.y,rand.y,rand.y) & MGradientMask) * MGradientScale - 1; gvec2[0] = float3(int3(rand.z,rand.z,rand.z) & MGradientMask) * MGradientScale - 1; grad[0][0] = math::dot(gvec0[0], fv[0]); grad[1][0] = math::dot(gvec1[0], fv[0]); grad[2][0] = math::dot(gvec2[0], fv[0]); fv[1] = v - T[1]; rand = Rand3DPCG16(int3(math::floor(NoiseTileWrap(6 * T[1] + 0.5, bTiling, RepeatSize)))); gvec0[1] = float3(int3(rand.x,rand.x,rand.x) & MGradientMask) * MGradientScale - 1; gvec1[1] = float3(int3(rand.y,rand.y,rand.y) & MGradientMask) * MGradientScale - 1; gvec1[1] = float3(int3(rand.z,rand.z,rand.z) & MGradientMask) * MGradientScale - 1; grad[0][1] = math::dot(gvec0[1], fv[1]); grad[1][1] = math::dot(gvec1[1], fv[1]); grad[2][1] = math::dot(gvec2[1], fv[1]); fv[2] = v - T[2]; rand = Rand3DPCG16(int3(math::floor(NoiseTileWrap(6 * T[2] + 0.5, bTiling, RepeatSize)))); gvec0[2] = float3(int3(rand.x,rand.x,rand.x) & MGradientMask) * MGradientScale - 1; gvec1[2] = float3(int3(rand.y,rand.y,rand.y) & MGradientMask) * MGradientScale - 1; gvec2[2] = float3(int3(rand.z,rand.z,rand.z) & MGradientMask) * MGradientScale - 1; grad[0][2] = math::dot(gvec0[2], fv[2]); grad[1][2] = math::dot(gvec1[2], fv[2]); grad[2][2] = math::dot(gvec2[2], fv[2]); fv[3] = v - T[3]; rand = Rand3DPCG16(int3(math::floor(NoiseTileWrap(6 * T[3] + 0.5, bTiling, RepeatSize)))); gvec0[3] = float3(int3(rand.x,rand.x,rand.x) & MGradientMask) * MGradientScale - 1; gvec1[3] = float3(int3(rand.y,rand.y,rand.y) & MGradientMask) * MGradientScale - 1; gvec2[3] = float3(int3(rand.z,rand.z,rand.z) & MGradientMask) * MGradientScale - 1; grad[0][3] = math::dot(gvec0[3], fv[3]); grad[1][3] = math::dot(gvec1[3], fv[3]); grad[2][3] = math::dot(gvec2[3], fv[3]); // blend gradients float4 sv = SimplexSmooth(fv); float3x4 ds = SimplexDSmooth(fv); float3x4 jacobian = float3x4(1.0); float3 vec0 = gvec0*sv + grad[0]*ds; // NOTE: mdl is column major, convert from UE4 (row major) jacobian[0] = float4(vec0.x, vec0.y, vec0.z, math::dot(sv, grad[0])); float3 vec1 = gvec1*sv + grad[1]*ds; jacobian[1] = float4(vec1.x, vec1.y, vec1.z, math::dot(sv, grad[1])); float3 vec2 = gvec2*sv + grad[2]*ds; jacobian[2] = float4(vec2.x, vec2.y, vec2.z, math::dot(sv, grad[2])); return jacobian; } // While RepeatSize is a float here, the expectation is that it would be largely integer values coming in from the UI. The downstream logic assumes // floats for all called functions (NoiseTileWrap) and this prevents any float-to-int conversion errors from automatic type conversion. float Noise3D_Multiplexer(uniform texture_2d PerlinNoiseGradientTexture, uniform texture_3d PerlinNoise3DTexture, int Function, float3 Position, int Quality, bool bTiling, float RepeatSize) { // verified, HLSL compiled out the switch if Function is a constant switch(Function) { case 0: return SimplexNoise3D_TEX(PerlinNoiseGradientTexture, Position); case 1: return GradientNoise3D_TEX(PerlinNoiseGradientTexture, Position, bTiling, RepeatSize); case 2: return FastGradientPerlinNoise3D_TEX(PerlinNoise3DTexture, Position); case 3: return GradientNoise3D_ALU(Position, bTiling, RepeatSize); case 4: return ValueNoise3D_ALU(Position, bTiling, RepeatSize); case 5: return VoronoiNoise3D_ALU(Position, Quality, bTiling, RepeatSize, true).w * 2.0 - 1.0; } return 0; } //---------------------------------------------------------- export float noise(uniform texture_2d PerlinNoiseGradientTexture, uniform texture_3d PerlinNoise3DTexture, float3 Position, float Scale, float Quality, float Function, float Turbulence, float Levels, float OutputMin, float OutputMax, float LevelScale, float FilterWidth, float Tiling, float RepeatSize) [[ anno::description("Noise"), anno::noinline() ]] { Position *= Scale; FilterWidth *= Scale; float Out = 0.0f; float OutScale = 1.0f; float InvLevelScale = 1.0f / LevelScale; int iFunction(Function); int iQuality(Quality); int iLevels(Levels); bool bTurbulence(Turbulence); bool bTiling(Tiling); for(int i = 0; i < iLevels; ++i) { // fade out noise level that are too high frequent (not done through dynamic branching as it usually requires gradient instructions) OutScale *= math::saturate(1.0 - FilterWidth); if(bTurbulence) { Out += math::abs(Noise3D_Multiplexer(PerlinNoiseGradientTexture, PerlinNoise3DTexture, iFunction, Position, iQuality, bTiling, RepeatSize)) * OutScale; } else { Out += Noise3D_Multiplexer(PerlinNoiseGradientTexture, PerlinNoise3DTexture, iFunction, Position, iQuality, bTiling, RepeatSize) * OutScale; } Position *= LevelScale; RepeatSize *= LevelScale; OutScale *= InvLevelScale; FilterWidth *= LevelScale; } if(!bTurbulence) { // bring -1..1 to 0..1 range Out = Out * 0.5f + 0.5f; } // Out is in 0..1 range return math::lerp(OutputMin, OutputMax, Out); } // Material node for noise functions returning a vector value // @param LevelScale usually 2 but higher values allow efficient use of few levels // @return in user defined range (OutputMin..OutputMax) export float4 vector4_noise(float3 Position, float Quality, float Function, float Tiling, float TileSize) [[ anno::description("Vector Noise"), anno::noinline() ]] { float4 result = float4(0,0,0,1); float3 ret = float3(0); int iQuality = int(Quality); int iFunction = int(Function); bool bTiling = Tiling > 0.0; float3x4 Jacobian = JacobianSimplex_ALU(Position, bTiling, TileSize); // compiled out if not used // verified, HLSL compiled out the switch if Function is a constant switch (iFunction) { case 0: // Cellnoise ret = float3(Rand3DPCG16(int3(math::floor(NoiseTileWrap(Position, bTiling, TileSize))))) / 0xffff; result = float4(ret.x, ret.y, ret.z, 1); break; case 1: // Color noise ret = float3(Jacobian[0].w, Jacobian[1].w, Jacobian[2].w); result = float4(ret.x, ret.y, ret.z, 1); break; case 2: // Gradient result = Jacobian[0]; break; case 3: // Curl ret = float3(Jacobian[2][1] - Jacobian[1][2], Jacobian[0][2] - Jacobian[2][0], Jacobian[1][0] - Jacobian[0][1]); result = float4(ret.x, ret.y, ret.z, 1); break; case 4: // Voronoi result = VoronoiNoise3D_ALU(Position, iQuality, bTiling, TileSize, false); break; } return result; } export float3 vector3_noise(float3 Position, float Quality, float Function, float Tiling, float TileSize) [[ anno::description("Vector Noise float3 version"), anno::noinline() ]] { float4 noise = vector4_noise(Position, Quality, Function, Tiling, TileSize); return float3(noise.x, noise.y, noise.z); } // workaround for ue4 fresnel (without supporting for camera vector) : replacing it with 0.0, means facing to the view export float fresnel(float exponent [[anno::unused()]], float base_reflect_fraction [[anno::unused()]], float3 normal [[anno::unused()]]) [[ anno::description("Fresnel"), anno::noinline() ]] { return 0.0; } export float fresnel_function(float3 normal_vector [[anno::unused()]], float3 camera_vector [[anno::unused()]], bool invert_fresnel [[anno::unused()]], float power [[anno::unused()]], bool use_cheap_contrast [[anno::unused()]], float cheap_contrast_dark [[anno::unused()]], float cheap_contrast_bright [[anno::unused()]], bool clamp_fresnel_dot_product [[anno::unused()]]) [[ anno::description("Fresnel Function"), anno::noinline() ]] { return 0.0; } export float3 camera_vector() [[ anno::description("Camera Vector"), anno::noinline() ]] { // assume camera postion is 0,0,0 return math::normalize(float3(0) - state::transform_point(state::coordinate_internal,state::coordinate_world,state::position())); } export float pixel_depth() [[ anno::description("Pixel Depth"), anno::noinline() ]] { return 256.0f; } export float scene_depth() [[ anno::description("Scene Depth") ]] { return 65500.0f; } export float3 scene_color() [[ anno::description("Scene Color") ]] { return float3(1.0f); } export float4 vertex_color() [[ anno::description("Vertex Color"), anno::noinline() ]] { return float4(1.0f); } export float4 vertex_color_from_coordinate(int VertexColorCoordinateIndex) [[ anno::description("Vertex Color for float2 PrimVar"), anno::noinline() ]] { // Kit only supports 4 uv sets, 2 uvs are available to vertex color. if vertex color index is invalid, output the constant WHITE color intead return (VertexColorCoordinateIndex > 2) ? float4(1.0f) : float4(state::texture_coordinate(VertexColorCoordinateIndex).x, state::texture_coordinate(VertexColorCoordinateIndex).y, state::texture_coordinate(VertexColorCoordinateIndex+1).x, state::texture_coordinate(VertexColorCoordinateIndex+1).y); } export float3 camera_position() [[ anno::description("Camera Position"), anno::noinline() ]] { return float3(1000.0f, 0, 0); } export float3 rotate_about_axis(float4 NormalizedRotationAxisAndAngle, float3 PositionOnAxis, float3 Position) [[ anno::description("Rotates Position about the given axis by the given angle") ]] { // Project Position onto the rotation axis and find the closest point on the axis to Position float3 NormalizedRotationAxis = float3(NormalizedRotationAxisAndAngle.x,NormalizedRotationAxisAndAngle.y,NormalizedRotationAxisAndAngle.z); float3 ClosestPointOnAxis = PositionOnAxis + NormalizedRotationAxis * math::dot(NormalizedRotationAxis, Position - PositionOnAxis); // Construct orthogonal axes in the plane of the rotation float3 UAxis = Position - ClosestPointOnAxis; float3 VAxis = math::cross(NormalizedRotationAxis, UAxis); float[2] SinCosAngle = math::sincos(NormalizedRotationAxisAndAngle.w); // Rotate using the orthogonal axes float3 R = UAxis * SinCosAngle[1] + VAxis * SinCosAngle[0]; // Reconstruct the rotated world space position float3 RotatedPosition = ClosestPointOnAxis + R; // Convert from position to a position offset return RotatedPosition - Position; } export float2 rotate_scale_offset_texcoords(float2 InTexCoords, float4 InRotationScale, float2 InOffset) [[ anno::description("Returns a float2 texture coordinate after 2x2 transform and offset applied") ]] { return float2(math::dot(InTexCoords, float2(InRotationScale.x, InRotationScale.y)), math::dot(InTexCoords, float2(InRotationScale.z, InRotationScale.w))) + InOffset; } export float3 reflection_custom_world_normal(float3 WorldNormal, bool bNormalizeInputNormal) [[ anno::description("Reflection vector about the specified world space normal") ]] { if (bNormalizeInputNormal) { WorldNormal = math::normalize(WorldNormal); } return -camera_vector() + WorldNormal * math::dot(WorldNormal, camera_vector()) * 2.0; } export float3 reflection_vector() [[ anno::description("Reflection Vector"), anno::noinline() ]] { float3 normal = state::transform_normal(state::coordinate_internal,state::coordinate_world,state::normal()); return reflection_custom_world_normal(normal, false); } export float dither_temporalAA(float AlphaThreshold = 0.5f, float Random = 1.0f [[anno::unused()]]) [[ anno::description("Dither TemporalAA"), anno::noinline() ]] { return AlphaThreshold; }
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/ds2_materials/DrivesimPBR.mdl
/***************************************************************************** * Copyright 1986-2020 NVIDIA Corporation. All rights reserved. ****************************************************************************** MDL MATERIALS ARE PROVIDED PURSUANT TO AN END USER LICENSE AGREEMENT, WHICH WAS ACCEPTED IN ORDER TO GAIN ACCESS TO THIS FILE. IN PARTICULAR, THE MDL MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL NVIDIA CORPORATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE MDL MATERIALS OR FROM OTHER DEALINGS IN THE MDL MATERIALS. */ mdl 1.4; import ::df::*; import ::state::*; import ::math::*; import ::base::*; import ::tex::*; import ::anno::*; import ::nvidia::core_definitions::file_texture; import ::nvidia::core_definitions::normalmap_texture; using .::DrivesimPBR_Model import *; float4 raw_file_texture( uniform texture_2d texture [[ anno::description("The input texture") ]], base::texture_coordinate_info uvw = base::texture_coordinate_info() [[ anno::description("Custom value for texture coordinate") ]], uniform float2 crop_u = float2(0.0, 1.0) [[ anno::description("Restricts the texture access to sub-domain of the texture in the u direction") ]], uniform float2 crop_v = float2(0.0, 1.0) [[ anno::description("Restricts the texture access to sub-domain of the texture in the v direction") ]], uniform tex::wrap_mode wrap_u = tex::wrap_repeat [[ anno::description("Wrapping mode in the u direction") ]], uniform tex::wrap_mode wrap_v = tex::wrap_repeat [[ anno::description("Wrapping mode in the v direction") ]] ) [[ anno::description("General texturing function for 2D bitmap texture stored in a file"), anno::noinline() ]] { return tex::lookup_float4(texture, float2(uvw.position.x, uvw.position.y), wrap_u, wrap_v, crop_u, crop_v); } base::texture_return add_colors( color color_1 = color(.5, .5, .5), color color_2 = color(.5, .5, .5), float weight = 1.0 ) [[ anno::hidden(), anno::unused() ]] { return base::blend_color_layers( layers: base::color_layer[]( base::color_layer( layer_color: color_2, weight: weight, mode: base::color_layer_add )), base: color_1 ); } base::texture_return blend_colors( color color_1 = color(1.0, 1.0, 1.0), color color_2 = color(.5, .5, .5), float weight = 1.0 ) [[ anno::hidden(), anno::unused() ]] { return base::blend_color_layers( layers: base::color_layer[]( base::color_layer( layer_color: color_2, weight: weight, mode: base::color_layer_blend )), base: color_1 ); } export material DrivesimPBR( // -------------------- DIFFUSE REFLECTION ---------------------- color diffuse_color_constant = color(0.2f) [[ anno::display_name("Albedo Base Color"), anno::description("The base albedo color to use if no texture is specified"), anno::in_group("Diffuse") ]], uniform texture_2d diffuse_texture = texture_2d() [[ anno::display_name("Albedo Map"), anno::description("The texture specifying the albedo value to use"), anno::in_group("Diffuse") ]], uniform color diffuse_tint = color(1.0f) [[ anno::display_name("Albedo Tint"), anno::description("This tints the albedo color or texture contant"), anno::in_group("Diffuse") ]], // -------------------- SPECULAR REFLECTION ---------------------- float reflection_roughness_constant = 0.5f [[ anno::display_name("Roughness Amount"), anno::hard_range(0.0,1.), anno::description("Higher roughness values lead to more blurry reflections"), anno::in_group("Specular") ]], uniform float reflection_roughness_texture_influence = 0.0f [[ anno::display_name("Roughness Map Influence"), anno::hard_range(0.0, 1.), anno::description("Blends between the constant value and the lookup of the roughness texture"), anno::in_group("Specular") ]], uniform texture_2d reflectionroughness_texture = texture_2d() [[ anno::display_name("Roughness Map"), anno::in_group("Specular") ]], float anisotropy_constant = 0.0f [[ anno::display_name("Anisotropy Amount"), anno::hard_range(-1.,1.), anno::description("0 for isotropic, extents of -1 to 1 for anisotropy"), anno::in_group("Specular") ]], uniform float anisotropy_texture_influence = 0.0f [[ anno::display_name("Anisotropy Map Influence"), anno::hard_range(0.0, 1.), anno::description("Blends between the constant value and the lookup of the anisotropy texture"), anno::in_group("Specular") ]], uniform texture_2d anisotropy_texture = texture_2d() [[ anno::display_name("Anisotropy Map"), anno::in_group("Specular") ]], float metallic_constant = 0.f [[ anno::display_name("Metallic Amount"), anno::hard_range(0.0,1.), anno::description("Metallic Material"), anno::in_group("Specular") ]], uniform float metallic_texture_influence = 0.0f [[ anno::display_name("Metallic Map Influence"), anno::hard_range(0.0, 1.), anno::description("Blends between the constant value and the lookup of the metallic texture"), anno::in_group("Specular") ]], uniform texture_2d metallic_texture = texture_2d() [[ anno::display_name("Metallic Map"), anno::in_group("Specular") ]], float specular_constant = 1.f [[ anno::display_name("Specular amount"), anno::hard_range(0.0, 1.0), anno::description("Scale of the specular component"), anno::in_group("Specular") ]], uniform texture_2d specular_texture = texture_2d() [[ anno::display_name("Specular Map"), anno::in_group("Specular") ]], // -------------------- ORM ---------------------- uniform bool enable_ORM_texture = true [[ anno::display_name("Enable ORM Texture"), anno::description("When True the ORM texture will be used to extract the Occlusion, Roughness and Metallic Map"), anno::in_group("Reflectivity") ]], uniform texture_2d ORM_texture = texture_2d() [[ anno::display_name("ORM Map"), anno::description("Texture that hae Occlusion, Roughness and Metallic map stored in the respective r, g and b channels"), anno::in_group("Reflectivity") ]], // -------------------- Clearcoat ---------------------- uniform bool enable_clearcoat = false [[ anno::display_name("Enable Clearcoat Layer"), anno::description("Adds a clearcoat layer on top of the material when enabled"), anno::in_group("Clearcoat") ]], color clearcoat_tint = color(1.0f) [[ anno::display_name("Clearcoat Tint"), anno::description("Clearcoat is tinted and affects the underlying material"), anno::in_group("Clearcoat") ]], float clearcoat_transparency = 1.0f [[ anno::display_name("Clearcoat Transparency"), anno::description("Adjusts the transparency of the clearcoat. Can be turned into a fully opaque clearcoat " "covering the underlying layer"), anno::in_group("Clearcoat") ]], float clearcoat_reflection_roughness = 0.0f [[ anno::display_name("Clearcoat Roughness"), anno::description("Higher roughness values lead to more blurry reflections"), anno::hard_range(0.0f, 1.0f), anno::in_group("Clearcoat") ]], float clearcoat_weight = 1.0f [[ anno::display_name("Clearcoat Weight"), anno::description("Sets the weight for clearcoat layer"), anno::hard_range(0.0f, 1.0f), anno::in_group("Clearcoat") ]], float clearcoat_flatten = 1.0f [[ anno::display_name("Clearcoat Flatten"), anno::description("Flattens the clearcoat to even out the underlying bump maps"), anno::hard_range(0.0f, 1.0f), anno::in_group("Clearcoat") ]], float clearcoat_ior = 1.56f [[ anno::display_name("Clearcoat IOR"), anno::description("Sets the Index of refraction for the clearcoat layer"), anno::soft_range(1.0f, 4.0f), anno::in_group("Clearcoat") ]], uniform float clearcoat_bump_factor = 1.f [[ anno::display_name("Clearcoat Normal Map Strength"), anno::description("Strength of normal map."), anno::in_group("Clearcoat") ]], float3 clearcoat_normal_input = float3(0.0, 0.0, 0.0), uniform texture_2d clearcoat_normalmap_texture = texture_2d() [[ anno::display_name("Clearcoat Normal Map"), anno::description("Enables the usage of the normalmap texture"), anno::in_group("Clearcoat") ]], // -------------------- REFLECTIVITY ---------------------- uniform bool enable_retroreflection = false [[ anno::display_name("Enable Retroreflection"), anno::in_group("Reflectivity") ]], uniform color retroreflection_tint = color(0) [[ anno::display_name("Retro-reflection tint"), anno::description("The tint of the retroreflection if no texture is used"), anno::in_group("Reflectivity") ]], uniform texture_2d retroreflection_texture = texture_2d() [[ anno::display_name("Retro-reflection texture"), anno::description("The tint of the retroreflection as a texture"), anno::in_group("Reflectivity") ]], uniform float normal_reflectivity = 0.5 [[ anno::display_name("Retro-reflection weight facing"), anno::hard_range(0.0,1.), anno::description("Reflectivity control for geometry facing the viewer"), anno::in_group("Reflectivity") ]], uniform float grazing_reflectivity = 1.0 [[ anno::display_name("Retro-reflection weight edge"), anno::hard_range(0.0,1.), anno::description("Reflectivity control for the reflectivity at geometry edges"), anno::in_group("Reflectivity") ]], // -------------------- AMBIENT OCCLUSION ---------------------- float ao_to_diffuse = 0.0 [[ anno::display_name("AO to Diffuse"), anno::description("Controls the amount of ambient occlusion multiplied into the diffuse color channel"), anno::in_group("AO") ]], float ao_input = float(1.0), uniform texture_2d ao_texture = texture_2d() [[ anno::display_name("Ambient Occlusion Map"), anno::description("The Ambient Occlusion texture for the material"), anno::in_group("AO") ]], // -------------------- EMISSIVE ---------------------- uniform bool enable_emission = false [[ anno::display_name("Enable Emission"), anno::description("Enables the emission of light from the material"), anno::in_group("Emissive") ]], uniform color emissive_color = color(1.0, 0.1, 0.1) [[ anno::enable_if("enable_emission == true"), anno::display_name("Emissive Color"), anno::description("The emission color"), anno::in_group("Emissive") ]], color emissive_mask_input = color(1.0), uniform texture_2d emissive_mask_texture = texture_2d() [[ anno::enable_if("enable_emission == true"), anno::display_name("Emissive Mask Map"), anno::description("The texture masking the emissive color"), anno::in_group("Emissive") ]], uniform float emissive_intensity = 40.f [[ anno::enable_if("enable_emission == true"), anno::display_name("Emissive Intensity"), anno::description("Intensity of the emission"), anno::in_group("Emissive") ]], uniform bool enable_emissive_flipbook = false [[ anno::display_name("Enable Flipbook for emission"), anno::description("Allows the use of animated emissive textures (e.g. video screens)"), anno::in_group("Emissive") ]], uniform int2 flipbook_dim = int2(1,1) [[ anno::enable_if("enable_emissive_flipbook == true"), anno::display_name("Flipbook Rows/Columns"), anno::description("How many rows and columns are in the flipbook?"), anno::in_group("Emissive") ]], uniform int target_fps = 1 [[ anno::enable_if("enable_emissive_flipbook == true"), anno::display_name("Flipbook Target FPS"), anno::description("Playback speed in frames per second"), anno::in_group("Emissive") ]], // -------------------- ALPHA ---------------------- uniform bool enable_opacity = false [[ anno::display_name("Enable Opacity"), anno::description("Enables or disables alpha functionality"), anno::in_group("Alpha") ]], float alpha_constant = 1.0 [[ anno::enable_if("enable_opacity == true"), anno::display_name("Opacity Fallback Constant"), anno::hard_range(0.0, 1.0), anno::description("The base alpha constant to use if no texture is specified"), anno::in_group("Alpha") ]], uniform texture_2d opacity_texture = texture_2d() [[ anno::enable_if("enable_opacity == true"), anno::display_name("Opacity Map"), anno::description("The texture specifying the opacity value to use"), anno::in_group("Alpha") ]], uniform bool enable_opacity_cutout = false [[ anno::enable_if("enable_opacity == true"), anno::display_name("Enable Alpha Cutout"), anno::description("Enables or disables alpha cutout functionality"), anno::in_group("Alpha") ]], uniform float alpha_cutout_cutoff = 1.f [[ anno::enable_if("enable_opacity == true"), anno::enable_if("enable_opacity_cutout == true"), anno::hard_range(0.0, 1.0), anno::display_name("Alpha Cutout Cutoff"), anno::description("The cutoff value to to render as transparent up to and opaque past"), anno::in_group("Alpha") ]], // -------------------- NORMAL ---------------------- uniform float bump_factor = 1.f [[ anno::display_name("Normal Map Strength"), anno::description("Strength of normal map."), anno::in_group("Normal") ]], float3 normal_input = state::normal(), uniform texture_2d normalmap_texture = texture_2d() [[ anno::display_name("Normal Map"), anno::in_group("Normal") ]], // -------------------- UV ADJUSTMENTS ---------------------- uniform bool project_uvw = false [[ anno::display_name("Enable Project UVW Coordinates"), anno::description("When enabled, UV coordinates will be generated by projecting them from a coordinate system"), anno::in_group("UV") ]], uniform bool world_or_object = false [[ anno::enable_if("project_uvw == true"), anno::display_name("Enable World Space"), anno::description("When set to 'true' uses world space for projection, when 'false' object space is used"), anno::in_group("UV") ]], uniform float2 texture_translate = float2(0.0f) [[ anno::display_name("Texture Translate"), anno::description("Controls position of texture."), anno::in_group("UV") ]], uniform float2 texture_scale = float2(1.0f) [[ anno::display_name("Texture Scale"), anno::description("Larger number increases size of texture."), anno::in_group("UV") ]], uniform float2 texture_speed = float2(0.0f) [[ anno::display_name("Texture Speed"), anno::description("Scrolling texture animation speed in UVs per sec."), anno::in_group("UV") ]] ) [[ anno::display_name("Drivesim PBR"), anno::description("Supports the opaque alpha cutout material model of the Drivesim Renderer"), anno::version( 1, 0, 0), anno::author("NVIDIA CORPORATION"), anno::key_words(string[]("Drivesim", "PBR", "opaque", "alpha", "cutout", "omniverse", "generic")) ]] = let { base::texture_coordinate_system the_system = world_or_object ? base::texture_coordinate_world : base::texture_coordinate_object; base::texture_coordinate_info uvw = project_uvw ? base::coordinate_projection( coordinate_system: the_system, texture_space: 0, projection_type: base::projection_cubic ) : base::coordinate_source( coordinate_system: base::texture_coordinate_uvw, texture_space: 0 ); // Need to use a small value so the compiler doesnt optimize out this var... float t = 0.00000001;//state::animation_time(); base::texture_coordinate_info transformed_uvw = base::transform_coordinate( transform: base::rotation_translation_scale( scaling: float3(texture_scale.x, texture_scale.y, 1.0), rotation: float3(0.0, 0.0, 0.0 ), translation: float3(texture_translate.x + t * texture_speed.x, texture_translate.y + t * texture_speed.y, 0.0)), coordinate: uvw ); // Diffuse Color Lookup and AO float4 base_lookup = tex::texture_isvalid(diffuse_texture) ? raw_file_texture(texture: diffuse_texture, uvw: transformed_uvw) : float4(1, 1, 1, 1); float opacityValue = tex::texture_isvalid(opacity_texture) ? raw_file_texture(texture: opacity_texture, uvw: transformed_uvw).w : alpha_constant; // Normal calculations float3 normal_lookup = tex::texture_isvalid(normalmap_texture) ? base::tangent_space_normal_texture( texture: normalmap_texture, factor: bump_factor, uvw: transformed_uvw ) : normal_input; float3 clearcoat_normal = tex::texture_isvalid(clearcoat_normalmap_texture) ? base::tangent_space_normal_texture( texture: clearcoat_normalmap_texture, factor: clearcoat_bump_factor, uvw: uvw ) : clearcoat_normal_input; float3 flattened_clearcoat_normal = ::math::lerp(normal_lookup, ::state::normal(), clearcoat_flatten); float3 final_clearcoat_normal = tex::texture_isvalid(clearcoat_normalmap_texture) ? clearcoat_normal : flattened_clearcoat_normal; float ao_lookup = tex::texture_isvalid(ao_texture) ? raw_file_texture(texture: ao_texture, uvw: transformed_uvw).x : ao_input; color diffuse_color = tex::texture_isvalid(diffuse_texture) ? color(base_lookup.x, base_lookup.y, base_lookup.z) : diffuse_color_constant; float3 ORM_lookup = tex::lookup_float3( tex: ORM_texture, coord: float2(transformed_uvw.position.x, transformed_uvw.position.y) ); float roughness_lookup = tex::texture_isvalid(reflectionroughness_texture) ? raw_file_texture(texture: reflectionroughness_texture, uvw: transformed_uvw).x : reflection_roughness_constant; float anisotropy_lookup = tex::texture_isvalid(anisotropy_texture) ? (raw_file_texture(texture: anisotropy_texture, uvw: transformed_uvw).x * 2.0f - 1.0f) : anisotropy_constant; float metallic_lookup = tex::texture_isvalid(metallic_texture) ? raw_file_texture(texture: metallic_texture, uvw: transformed_uvw).x : metallic_constant; float specular_lookup = tex::texture_isvalid(specular_texture) ? raw_file_texture(texture: specular_texture, uvw: transformed_uvw).x : specular_constant; float roughness_selection = enable_ORM_texture ? ORM_lookup.y : roughness_lookup; float metallic_selection = enable_ORM_texture ? ORM_lookup.z : metallic_lookup; float ao = enable_ORM_texture ? ORM_lookup.x : ao_lookup; float reflection_roughness = math::lerp(reflection_roughness_constant, roughness_selection, reflection_roughness_texture_influence); float anisotropy = math::lerp(anisotropy_constant, anisotropy_lookup, anisotropy_texture_influence); float metallic = math::lerp(metallic_constant, metallic_selection, metallic_texture_influence); int rows = flipbook_dim.x; int columns = flipbook_dim.y; int numFrames = rows * columns; varying int frameIdx = int(state::animation_time() * target_fps) % numFrames; varying float2 baseUV = float2(transformed_uvw.position.x, transformed_uvw.position.y); varying float2 emissiveUV = enable_emissive_flipbook ? ((baseUV + float2(frameIdx % rows, frameIdx / rows)) / float2(rows, columns)) : baseUV; color emissive_mask = tex::texture_isvalid(emissive_mask_texture) ? tex::lookup_color(emissive_mask_texture, emissiveUV, tex::wrap_repeat, tex::wrap_repeat) : emissive_mask_input; color retroreflection_lookup = tex::texture_isvalid(retroreflection_texture) ? tex::lookup_color(retroreflection_texture, float2(transformed_uvw.position.x, transformed_uvw.position.y)) : retroreflection_tint; } in DrivesimPBR_Model( diffuse_color: diffuse_color, diffuse_tint: diffuse_tint, roughness: reflection_roughness, anisotropy: anisotropy, metallic: metallic, specular: specular_lookup, normal: normal_lookup, enable_clearcoat: enable_clearcoat, clearcoat_tint: clearcoat_tint, clearcoat_transparency: clearcoat_transparency, clearcoat_reflection_roughness: clearcoat_reflection_roughness, clearcoat_weight: clearcoat_weight, clearcoat_ior: clearcoat_ior, clearcoat_normal: final_clearcoat_normal, enable_retroreflection: enable_retroreflection, retroreflection_tint: retroreflection_lookup, normal_reflectivity: normal_reflectivity, grazing_reflectivity: grazing_reflectivity, ao_to_diffuse: ao_to_diffuse, ao: ao, enable_emission: enable_emission, emissive_color: emissive_color, emissive_mask: emissive_mask, emissive_intensity: emissive_intensity, enable_opacity: enable_opacity, alpha: opacityValue, enable_opacity_cutout: enable_opacity_cutout, alpha_cutout_cutoff: alpha_cutout_cutoff );
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/ds2_materials/DrivesimPBR_Model.mdl
/***************************************************************************** * Copyright 1986-2020 NVIDIA Corporation. All rights reserved. ****************************************************************************** MDL MATERIALS ARE PROVIDED PURSUANT TO AN END USER LICENSE AGREEMENT, WHICH WAS ACCEPTED IN ORDER TO GAIN ACCESS TO THIS FILE. IN PARTICULAR, THE MDL MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL NVIDIA CORPORATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE MDL MATERIALS OR FROM OTHER DEALINGS IN THE MDL MATERIALS. */ mdl 1.4; import ::df::*; import ::state::*; import ::math::*; import ::base::*; import ::tex::*; import ::anno::*; import ::nvidia::baking::*; base::texture_return multiply_colors( color color_1 = color(1.0, 1.0, 1.0), color color_2 = color(.5, .5, .5), float weight = 1.0 ) [[ anno::hidden() ]] { return base::blend_color_layers( layers: base::color_layer[]( base::color_layer( layer_color: color_2, weight: weight, mode: base::color_layer_multiply )), base: color_1 ); } export material DrivesimPBR_Model( color diffuse_color = color(0.2f) [[ nvidia::baking::bake_to_texture("diffuse_texture", "diffuse_color_constant", "RGBA8_UNORM") ]], uniform color diffuse_tint = color(1.0f), float roughness = 0.5f [[ nvidia::baking::bake_to_texture("reflectionroughness_texture", "reflection_roughness_constant", "R8_UNORM") ]], float anisotropy = 0.0f [[ nvidia::baking::bake_to_texture("anisotropy_texture", "anisotropy_constant", "R8_SNORM") ]], float metallic = 0.f [[ nvidia::baking::bake_to_texture("metallic_texture", "metallic_constant", "R8_UNORM") ]], float specular = 1.f [[ nvidia::baking::bake_to_texture("specular_texture", "specular_constant", "R8_UNORM") ]], float3 normal = float3(0.0, 0.0, 0.0) [[ nvidia::baking::bake_to_texture("normalmap_texture", "normal_input", "RGBA8_SNORM", transform: "UNORM_VECTOR") ]], uniform bool enable_clearcoat = false, color clearcoat_tint = color(1.0f), float clearcoat_transparency = 1.0f, float clearcoat_reflection_roughness = 0.0f, float clearcoat_weight = 1.0f, float clearcoat_ior = 1.56f, float3 clearcoat_normal = float3(0.0, 0.0, 0.0) [[ nvidia::baking::bake_to_texture("clearcoat_normalmap_texture", "clearcoat_normal_input", "RGBA8_SNORM", transform: "UNORM_VECTOR") ]], uniform bool enable_retroreflection = false, color retroreflection_tint = color(0) [[ nvidia::baking::bake_to_texture("retroreflection_texture", "retroreflection_tint", "RGBA8_UNORM") ]], uniform float normal_reflectivity = 0.5, uniform float grazing_reflectivity = 1.0, float ao_to_diffuse = 0.0, float ao = 1.0f [[ nvidia::baking::bake_to_texture("ao_texture", "ao_input", "R8_UNORM") ]], uniform bool enable_emission = false, uniform color emissive_color = color(1.0, 0.1, 0.1), color emissive_mask = color(1.0, 0.1, 0.1) [[ nvidia::baking::bake_to_texture("emissive_mask_texture", "emissive_mask_input", "R8_UNORM") ]], uniform float emissive_intensity = 40.f, uniform bool enable_opacity = false, float alpha = 1.0, uniform bool enable_opacity_cutout = false, uniform float alpha_cutout_cutoff = 1.f ) [[ nvidia::baking::target_material_model("DrivesimPBR", "..::DrivesimPBR") ]] = let { color base_color = multiply_colors(diffuse_color, diffuse_tint, 1.0).tint; color ao_weighted_base_color = multiply_colors(base_color, color(ao), ao_to_diffuse).tint; float squared_roughness = roughness * roughness; float roughness_u = squared_roughness * (1 + anisotropy); float roughness_v = squared_roughness * (1 - anisotropy); bsdf diffuse_bsdf = df::weighted_layer( weight: 1.0, layer: df::diffuse_reflection_bsdf( tint: ao_weighted_base_color, roughness: 0.f ), base: bsdf(), normal: enable_clearcoat ? normal : state::normal() ); bsdf ggx_smith_bsdf = df::microfacet_ggx_smith_bsdf( roughness_u: roughness_u, roughness_v: roughness_v, tint: color(1.0, 1.0, 1.0), mode: df::scatter_reflect ); bsdf custom_curve_layer_bsdf = df::custom_curve_layer( normal_reflectivity: 0.03, grazing_reflectivity: 1.0, exponent: 5.0, weight: specular, layer: ggx_smith_bsdf, base: diffuse_bsdf, normal: enable_clearcoat ? normal : state::normal() ); // // Begin RETROREFLECTION SUPPORT // color final_retroreflection_color = multiply_colors(retroreflection_tint, base_color, 1.0).tint; bsdf backscattering_glossy_bsdf = df::backscattering_glossy_reflection_bsdf( tint: final_retroreflection_color, roughness_u: squared_roughness ); /*bsdf retroreflection_bsdf = df::custom_curve_layer( normal_reflectivity: 1.-normal_reflectivity, grazing_reflectivity: 1.-grazing_reflectivity, base: backscattering_glossy_bsdf, layer: custom_curve_layer_bsdf, normal: enable_clearcoat ? normal_lookup : state::normal() );*/ bool use_retroreflection = enable_retroreflection && (retroreflection_tint != color(0)); // if normal_reflectivity and grazing_reflectivity are 1 and weight is 1, just the layer is used bsdf opt_retroreflection_bsdf = df::custom_curve_layer( normal_reflectivity: use_retroreflection ? 1.-normal_reflectivity : 1, grazing_reflectivity: use_retroreflection ? 1.-grazing_reflectivity : 1, base: backscattering_glossy_bsdf, layer: custom_curve_layer_bsdf, normal: enable_clearcoat ? normal : state::normal() ); // // End RETROREFLECTION SUPPORT // bsdf directional_factor_bsdf = df::directional_factor( normal_tint: ao_weighted_base_color, grazing_tint: color(1.0, 1.0, 1.0), exponent: 5.0f, base: ggx_smith_bsdf ); // CLEARCOAT bsdf omni_PBR_bsdf = df::weighted_layer( weight: metallic, layer: directional_factor_bsdf, base: opt_retroreflection_bsdf, //use_retroreflection ? retroreflection_bsdf : custom_curve_layer_bsdf, normal: enable_clearcoat ? normal : state::normal() ); bsdf clearcoat_bsdf = df::microfacet_ggx_smith_bsdf( roughness_u: clearcoat_reflection_roughness * clearcoat_reflection_roughness, roughness_v: clearcoat_reflection_roughness * clearcoat_reflection_roughness, tint: color(1.0f), mode: df::scatter_reflect ); // bsdf omni_PBR_coated_bsdf = df::custom_curve_layer( // normal_reflectivity: clearcoat_reflectivity * 0.08, // grazing_reflectivity: 1.0, // weight: clearcoat_weight, // layer: clearcoat_bsdf, // base: omni_PBR_bsdf, // normal: final_clearcoat_normal // ); bsdf opt_opaque_clearcoat = df::weighted_layer( weight: enable_clearcoat ? clearcoat_transparency : 1, layer: ::df::tint( tint: enable_clearcoat ? clearcoat_tint : color(1), base: omni_PBR_bsdf), base: ::df::diffuse_reflection_bsdf( tint: clearcoat_tint) ); bsdf opt_omni_PBR_coated_bsdf = df::fresnel_layer( ior: clearcoat_ior, weight: enable_clearcoat ? clearcoat_weight : 0, layer: clearcoat_bsdf, base: opt_opaque_clearcoat, normal: clearcoat_normal ); bsdf final_bsdf = opt_omni_PBR_coated_bsdf; } in material( thin_walled: false, surface: material_surface( scattering: final_bsdf, emission: material_emission ( df::diffuse_edf(), intensity: enable_emission ? emissive_color * emissive_mask * color(emissive_intensity) : color(0) ) ), geometry: material_geometry( normal: enable_clearcoat ? state::normal() : normal, cutout_opacity: enable_opacity ? (enable_opacity_cutout ? (alpha < alpha_cutout_cutoff ? 0.0 : 1.0) : alpha) : 1.0 ) );
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/ds2_materials/DrivesimPBR_Opacity.mdl
/***************************************************************************** * Copyright 1986-2020 NVIDIA Corporation. All rights reserved. ****************************************************************************** MDL MATERIALS ARE PROVIDED PURSUANT TO AN END USER LICENSE AGREEMENT, WHICH WAS ACCEPTED IN ORDER TO GAIN ACCESS TO THIS FILE. IN PARTICULAR, THE MDL MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL NVIDIA CORPORATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE MDL MATERIALS OR FROM OTHER DEALINGS IN THE MDL MATERIALS. */ mdl 1.4; import ::df::*; import ::state::*; import ::math::*; import ::base::*; import ::tex::*; import ::anno::*; import ::nvidia::core_definitions::file_texture; import ::nvidia::core_definitions::normalmap_texture; float4 raw_file_texture( uniform texture_2d texture [[ anno::description("The input texture") ]], base::texture_coordinate_info uvw = base::texture_coordinate_info() [[ anno::description("Custom value for texture coordinate") ]], uniform float2 crop_u = float2(0.0, 1.0) [[ anno::description("Restricts the texture access to sub-domain of the texture in the u direction") ]], uniform float2 crop_v = float2(0.0, 1.0) [[ anno::description("Restricts the texture access to sub-domain of the texture in the v direction") ]], uniform tex::wrap_mode wrap_u = tex::wrap_repeat [[ anno::description("Wrapping mode in the u direction") ]], uniform tex::wrap_mode wrap_v = tex::wrap_repeat [[ anno::description("Wrapping mode in the v direction") ]] ) [[ anno::description("General texturing function for 2D bitmap texture stored in a file"), anno::noinline() ]] { return tex::lookup_float4(texture, float2(uvw.position.x, uvw.position.y), wrap_u, wrap_v, crop_u, crop_v); } base::texture_return multiply_colors( color color_1 = color(1.0, 1.0, 1.0), color color_2 = color(.5, .5, .5), float weight = 1.0 ) [[ anno::hidden() ]] { return base::blend_color_layers( layers: base::color_layer[]( base::color_layer( layer_color: color_2, weight: weight, mode: base::color_layer_multiply )), base: color_1 ); } base::texture_return add_colors( color color_1 = color(.5, .5, .5), color color_2 = color(.5, .5, .5), float weight = 1.0 ) [[ anno::hidden(), anno::unused() ]] { return base::blend_color_layers( layers: base::color_layer[]( base::color_layer( layer_color: color_2, weight: weight, mode: base::color_layer_add )), base: color_1 ); } base::texture_return blend_colors( color color_1 = color(1.0, 1.0, 1.0), color color_2 = color(.5, .5, .5), float weight = 1.0 ) [[ anno::hidden(), anno::unused() ]] { return base::blend_color_layers( layers: base::color_layer[]( base::color_layer( layer_color: color_2, weight: weight, mode: base::color_layer_blend )), base: color_1 ); } export material DrivesimPBR_Opacity( // -------------------- DIFFUSE REFLECTION ---------------------- uniform color diffuse_color_constant = color(0.2f) [[ anno::display_name("Albedo Base Color"), anno::description("The base albedo color to use if no texture is specified"), anno::in_group("Diffuse") ]], uniform texture_2d diffuse_texture = texture_2d() [[ anno::display_name("Albedo Map"), anno::description("The texture specifying the albedo value to use"), anno::in_group("Diffuse") ]], uniform color diffuse_tint = color(1.0f) [[ anno::display_name("Albedo Tint"), anno::description("This tints the albedo color or texture contant"), anno::in_group("Diffuse") ]], // -------------------- SPECULAR REFLECTION ---------------------- uniform float reflection_roughness_constant = 0.5f [[ anno::display_name("Roughness Amount"), anno::hard_range(0.0,1.), anno::description("Higher roughness values lead to more blurry reflections"), anno::in_group("Specular") ]], uniform float reflection_roughness_texture_influence = 0.0f [[ anno::display_name("Roughness Map Influence"), anno::hard_range(0.0, 1.), anno::description("Blends between the constant value and the lookup of the roughness texture"), anno::in_group("Specular") ]], uniform texture_2d reflectionroughness_texture = texture_2d() [[ anno::display_name("Roughness Map"), anno::in_group("Specular") ]], uniform float anisotropy_constant = 0.0f [[ anno::display_name("Anisotropy Amount"), anno::hard_range(-1.,1.), anno::description("0 for isotropic, extents of -1 to 1 for anisotropy"), anno::in_group("Specular") ]], uniform float anisotropy_texture_influence = 0.0f [[ anno::display_name("Anisotropy Map Influence"), anno::hard_range(0.0, 1.), anno::description("Blends between the constant value and the lookup of the anisotropy texture"), anno::in_group("Specular") ]], uniform texture_2d anisotropy_texture = texture_2d() [[ anno::display_name("Anisotropy Map"), anno::in_group("Specular") ]], uniform float metallic_constant = 0.f [[ anno::display_name("Metallic Amount"), anno::hard_range(0.0,1.), anno::description("Metallic Material"), anno::in_group("Specular") ]], uniform float metallic_texture_influence = 0.0f [[ anno::display_name("Metallic Map Influence"), anno::hard_range(0.0, 1.), anno::description("Blends between the constant value and the lookup of the metallic texture"), anno::in_group("Specular") ]], uniform texture_2d metallic_texture = texture_2d() [[ anno::display_name("Metallic Map"), anno::in_group("Specular") ]], // -------------------- ORM ---------------------- uniform bool enable_ORM_texture = true [[ anno::display_name("Enable ORM Texture"), anno::description("When True the ORM texture will be used to extract the Occlusion, Roughness and Metallic Map"), anno::in_group("Reflectivity") ]], uniform texture_2d ORM_texture = texture_2d() [[ anno::display_name("ORM Map"), anno::description("Texture that hae Occlusion, Roughness and Metallic map stored in the respective r, g and b channels"), anno::in_group("Reflectivity") ]], // -------------------- Clearcoat ---------------------- uniform bool enable_clearcoat = false [[ anno::display_name("Enable Clearcoat Layer"), anno::description("Adds a clearcoat layer on top of the material when enabled"), anno::in_group("Clearcoat") ]], color clearcoat_tint = color(1.0f) [[ anno::display_name("Clearcoat Tint"), anno::description("Clearcoat is tinted and affects the underlying material"), anno::in_group("Clearcoat") ]], float clearcoat_transparency = 1.0f [[ anno::display_name("Clearcoat Transparency"), anno::description("Adjusts the transparency of the clearcoat. Can be turned into a fully opaque clearcoat " "covering the underlying layer"), anno::in_group("Clearcoat") ]], float clearcoat_reflection_roughness = 0.0f [[ anno::display_name("Clearcoat Roughness"), anno::description("Higher roughness values lead to more blurry reflections"), anno::hard_range(0.0f, 1.0f), anno::in_group("Clearcoat") ]], float clearcoat_weight = 1.0f [[ anno::display_name("Clearcoat Weight"), anno::description("Sets the weight for clearcoat layer"), anno::hard_range(0.0f, 1.0f), anno::in_group("Clearcoat") ]], float clearcoat_flatten = 1.0f [[ anno::display_name("Clearcoat Flatten"), anno::description("Flattens the clearcoat to even out the underlying bump maps"), anno::hard_range(0.0f, 1.0f), anno::in_group("Clearcoat") ]], float clearcoat_ior = 1.56f [[ anno::display_name("Clearcoat IOR"), anno::description("Sets the Index of refraction for the clearcoat layer"), anno::soft_range(1.0f, 4.0f), anno::in_group("Clearcoat") ]], uniform float clearcoat_bump_factor = 1.f [[ anno::display_name("Clearcoat Normal Map Strength"), anno::description("Strength of normal map."), anno::in_group("Clearcoat") ]], uniform texture_2d clearcoat_normalmap_texture = texture_2d() [[ anno::display_name("Clearcoat Normal Map"), anno::description("Enables the usage of the normalmap texture"), anno::in_group("Clearcoat") ]], // -------------------- REFLECTIVITY ---------------------- uniform bool enable_retroreflection = false [[ anno::display_name("Enable Retroreflection"), anno::in_group("Reflectivity") ]], color retroreflection_color = color(.182,.800,.000) [[ anno::display_name("Retro-reflection color"), anno::description("The color of the retroreflection"), anno::in_group("Reflectivity") ]], uniform float normal_reflectivity = 0.5 [[ anno::display_name("Retro-reflection weight facing"), anno::hard_range(0.0,1.), anno::description("Reflectivity control for geometry facing the viewer"), anno::in_group("Reflectivity") ]], uniform float grazing_reflectivity = 1.0 [[ anno::display_name("Retro-reflection weight edge"), anno::hard_range(0.0,1.), anno::description("Reflectivity control for the reflectivity at geometry edges"), anno::in_group("Reflectivity") ]], // -------------------- AMBIENT OCCLUSION ---------------------- float ao_to_diffuse = 0.0 [[ anno::display_name("AO to Diffuse"), anno::description("Controls the amount of ambient occlusion multiplied into the diffuse color channel"), anno::in_group("AO") ]], uniform texture_2d ao_texture = texture_2d() [[ anno::display_name("Ambient Occlusion Map"), anno::description("The Ambient Occlusion texture for the material"), anno::in_group("AO") ]], // -------------------- EMISSIVE ---------------------- uniform bool enable_emission = false [[ anno::display_name("Enable Emission"), anno::description("Enables the emission of light from the material"), anno::in_group("Emissive") ]], uniform color emissive_color = color(1.0, 0.1, 0.1) [[ anno::enable_if("enable_emission == true"), anno::display_name("Emissive Color"), anno::description("The emission color"), anno::in_group("Emissive") ]], uniform texture_2d emissive_mask_texture = texture_2d() [[ anno::enable_if("enable_emission == true"), anno::display_name("Emissive Mask Map"), anno::description("The texture masking the emissive color"), anno::in_group("Emissive") ]], uniform float emissive_intensity = 40.f [[ anno::enable_if("enable_emission == true"), anno::display_name("Emissive Intensity"), anno::description("Intensity of the emission"), anno::in_group("Emissive") ]], uniform bool enable_emissive_flipbook = false [[ anno::display_name("Enable Flipbook for emission"), anno::description("Allows the use of animated emissive textures (e.g. video screens)"), anno::in_group("Emissive") ]], uniform int2 flipbook_dim = int2(1,1) [[ anno::enable_if("enable_emissive_flipbook == true"), anno::display_name("Flipbook Rows/Columns"), anno::description("How many rows and columns are in the flipbook?"), anno::in_group("Emissive") ]], uniform int target_fps = 1 [[ anno::enable_if("enable_emissive_flipbook == true"), anno::display_name("Flipbook Target FPS"), anno::description("Playback speed in frames per second"), anno::in_group("Emissive") ]], // -------------------- ALPHA ---------------------- uniform bool enable_alpha = true [[ anno::display_name("Enable Alpha"), anno::description("Enables or disables alpha functionality"), anno::in_group("Alpha") ]], uniform float alpha_constant = 1.0 [[ anno::display_name("Alpha Fallback Constant"), anno::description("The base alpha constant to use if no texture is specified"), anno::in_group("Alpha") ]], uniform texture_2d opacity_texture = texture_2d() [[ anno::display_name("Opacity Map"), anno::description("The texture specifying the opacity value to use"), anno::in_group("Alpha") ]], uniform bool enable_alpha_cutout = false [[ anno::display_name("Enable Alpha Cutout"), anno::description("Enables or disables alpha cutout functionality"), anno::in_group("Alpha") ]], uniform float alpha_cutout_cutoff = 1.f [[ anno::enable_if("enable_alpha_cutout == true"), anno::hard_range(0.0, 1.0), anno::display_name("Alpha Cutout Cutoff"), anno::description("The cutoff value to to render as transparent up to and opaque past"), anno::in_group("Alpha") ]], // -------------------- NORMAL ---------------------- uniform float bump_factor = 1.f [[ anno::display_name("Normal Map Strength"), anno::description("Strength of normal map."), anno::in_group("Normal") ]], uniform texture_2d normalmap_texture = texture_2d() [[ anno::display_name("Normal Map"), anno::in_group("Normal") ]], // -------------------- UV ADJUSTMENTS ---------------------- uniform bool project_uvw = false [[ anno::display_name("Enable Project UVW Coordinates"), anno::description("When enabled, UV coordinates will be generated by projecting them from a coordinate system"), anno::in_group("UV") ]], uniform bool world_or_object = false [[ anno::enable_if("project_uvw == true"), anno::display_name("Enable World Space"), anno::description("When set to 'true' uses world space for projection, when 'false' object space is used"), anno::in_group("UV") ]], uniform float2 texture_translate = float2(0.0f) [[ anno::display_name("Texture Translate"), anno::description("Controls position of texture."), anno::in_group("UV") ]], uniform float2 texture_scale = float2(1.0f) [[ anno::display_name("Texture Scale"), anno::description("Larger number increases size of texture."), anno::in_group("UV") ]], uniform float2 texture_speed = float2(0.0f) [[ anno::display_name("Texture Speed"), anno::description("Scrolling texture animation speed in UVs per sec."), anno::in_group("UV") ]] ) [[ anno::display_name("Drivesim PBR Opaque Alpha Cutout"), anno::description("Supports the opaque alpha cutout material model of the Drivesim Renderer"), anno::version( 1, 0, 0), anno::author("NVIDIA CORPORATION"), anno::key_words(string[]("Drivesim", "PBR", "opaque", "alpha", "cutout", "omniverse", "generic")) ]] = let { base::texture_coordinate_system the_system = world_or_object ? base::texture_coordinate_world : base::texture_coordinate_object; base::texture_coordinate_info uvw = project_uvw ? base::coordinate_projection( coordinate_system: the_system, texture_space: 0, projection_type: base::projection_cubic ) : base::coordinate_source( coordinate_system: base::texture_coordinate_uvw, texture_space: 0 ); // Need to use a small value so the compiler doesnt optimize out this var... float t = 0.00000001;//state::animation_time(); base::texture_coordinate_info transformed_uvw = base::transform_coordinate( transform: base::rotation_translation_scale( scaling: float3(texture_scale.x, texture_scale.y, 1.0), rotation: float3(0.0, 0.0, 0.0 ), translation: float3(texture_translate.x + t * texture_speed.x, texture_translate.y + t * texture_speed.y, 0.0)), coordinate: uvw ); // Diffuse Color Lookup and AO float4 base_lookup = tex::texture_isvalid(diffuse_texture) ? raw_file_texture(texture: diffuse_texture, uvw: transformed_uvw) : float4(1, 1, 1, 1); float opacityValue = tex::texture_isvalid(opacity_texture) ? raw_file_texture(texture: opacity_texture, uvw: transformed_uvw).x : alpha_constant; // Normal calculations float3 normal_lookup = tex::texture_isvalid(normalmap_texture) ? base::tangent_space_normal_texture( texture: normalmap_texture, factor: bump_factor, uvw: transformed_uvw ) : state::normal(); float3 clearcoat_normal = base::tangent_space_normal_texture( texture: clearcoat_normalmap_texture, factor: clearcoat_bump_factor, uvw: uvw ); float3 flattened_clearcoat_normal = ::math::lerp(normal_lookup, ::state::normal(), clearcoat_flatten); float3 final_clearcoat_normal = tex::texture_isvalid(clearcoat_normalmap_texture) ? clearcoat_normal : flattened_clearcoat_normal; float ao_lookup = tex::texture_isvalid(ao_texture) ? raw_file_texture(texture: ao_texture, uvw: transformed_uvw).x : 1.0f [[anno::unused("Currently unused in material, may be utilized in the future")]]; color diffuse_color = tex::texture_isvalid(diffuse_texture) ? color(base_lookup.x, base_lookup.y, base_lookup.z) : diffuse_color_constant; color base_color = multiply_colors(diffuse_color, diffuse_tint, 1.0).tint; float3 ORM_lookup = tex::lookup_float3( tex: ORM_texture, coord: float2(transformed_uvw.position.x, transformed_uvw.position.y) ); float roughness_lookup = tex::texture_isvalid(reflectionroughness_texture) ? raw_file_texture(texture: reflectionroughness_texture, uvw: transformed_uvw).x : reflection_roughness_constant; float anisotropy_lookup = tex::texture_isvalid(anisotropy_texture) ? (raw_file_texture(texture: anisotropy_texture, uvw: transformed_uvw).x * 2.0f - 1.0f) : anisotropy_constant; float metallic_lookup = tex::texture_isvalid(metallic_texture) ? raw_file_texture(texture: metallic_texture, uvw: transformed_uvw).x : metallic_constant; float roughness_selection = enable_ORM_texture ? ORM_lookup.y : roughness_lookup; float metallic_selection = enable_ORM_texture ? ORM_lookup.z : metallic_lookup; color ao_color = enable_ORM_texture ? color(ORM_lookup.x) : color(ao_lookup); color ao_weighted_base_color = multiply_colors(base_color, ao_color, ao_to_diffuse).tint; float reflection_roughness = math::lerp(reflection_roughness_constant, roughness_selection, reflection_roughness_texture_influence); float anisotropy = math::lerp(anisotropy_constant, anisotropy_lookup, anisotropy_texture_influence); float metallic = math::lerp(metallic_constant, metallic_selection, metallic_texture_influence); float squared_roughness = reflection_roughness * reflection_roughness; float roughness_u = squared_roughness * (1 + anisotropy); float roughness_v = squared_roughness * (1 - anisotropy); bsdf diffuse_bsdf = df::weighted_layer( weight: 1.0, layer: df::diffuse_reflection_bsdf( tint: ao_weighted_base_color, roughness: 0.f ), base: bsdf(), normal: enable_clearcoat ? normal_lookup : state::normal() ); bsdf ggx_smith_bsdf = df::microfacet_ggx_smith_bsdf( roughness_u: roughness_u, roughness_v: roughness_v, tint: color(1.0, 1.0, 1.0), mode: df::scatter_reflect ); bsdf custom_curve_layer_bsdf = df::custom_curve_layer( normal_reflectivity: 0.03, grazing_reflectivity: 1.0, exponent: 5.0, weight: float(1.0), layer: ggx_smith_bsdf, base: diffuse_bsdf, normal: enable_clearcoat ? normal_lookup : state::normal() ); // // Begin RETROREFLECTION SUPPORT // bsdf backscattering_glossy_bsdf = df::backscattering_glossy_reflection_bsdf( tint: retroreflection_color, roughness_u: reflection_roughness * reflection_roughness ); bsdf retroreflection_bsdf = df::custom_curve_layer( normal_reflectivity: 1.-normal_reflectivity, grazing_reflectivity: 1.-grazing_reflectivity, base: backscattering_glossy_bsdf, layer: diffuse_bsdf, normal: enable_clearcoat ? normal_lookup : state::normal() ); // // End RETROREFLECTION SUPPORT // bsdf directional_factor_bsdf = df::directional_factor( normal_tint: ao_weighted_base_color, grazing_tint: color(1.0, 1.0, 1.0), exponent: 5.0f, base: ggx_smith_bsdf ); // CLEARCOAT bsdf omni_PBR_bsdf = df::weighted_layer( weight: metallic, layer: directional_factor_bsdf, base: enable_retroreflection ? retroreflection_bsdf : custom_curve_layer_bsdf, normal: enable_clearcoat ? normal_lookup : state::normal() ); bsdf clearcoat_bsdf = df::microfacet_ggx_smith_bsdf( roughness_u: clearcoat_reflection_roughness * clearcoat_reflection_roughness, roughness_v: clearcoat_reflection_roughness * clearcoat_reflection_roughness, tint: color(1.0f), mode: df::scatter_reflect ); // bsdf omni_PBR_coated_bsdf = df::custom_curve_layer( // normal_reflectivity: clearcoat_reflectivity * 0.08, // grazing_reflectivity: 1.0, // weight: clearcoat_weight, // layer: clearcoat_bsdf, // base: omni_PBR_bsdf, // normal: final_clearcoat_normal // ); bsdf opaque_clearcoat = df::weighted_layer( weight: clearcoat_transparency, layer: ::df::tint( tint: clearcoat_tint, base: omni_PBR_bsdf), base: ::df::diffuse_reflection_bsdf( tint: clearcoat_tint) ); bsdf omni_PBR_coated_bsdf = df::fresnel_layer( ior: clearcoat_ior, weight: clearcoat_weight, layer: clearcoat_bsdf, base: opaque_clearcoat, normal: final_clearcoat_normal ); bsdf final_bsdf = enable_clearcoat ? omni_PBR_coated_bsdf : omni_PBR_bsdf; int rows = flipbook_dim.x; int columns = flipbook_dim.y; int numFrames = rows * columns; varying int frameIdx = int(state::animation_time() * target_fps) % numFrames; varying float2 baseUV = float2(transformed_uvw.position.x, transformed_uvw.position.y); varying float2 emissiveUV = enable_emissive_flipbook ? ((baseUV + float2(frameIdx % rows, frameIdx / rows)) / float2(rows, columns)) : baseUV; color emissive_mask = tex::texture_isvalid(emissive_mask_texture) ? tex::lookup_color(emissive_mask_texture, emissiveUV, tex::wrap_repeat, tex::wrap_repeat) : color(1.0); } in material( thin_walled: false, surface: material_surface( scattering: final_bsdf, emission: material_emission ( df::diffuse_edf(), intensity: enable_emission ? emissive_color * emissive_mask * color(emissive_intensity) : color(0) ) ), geometry: material_geometry( normal: enable_clearcoat ? state::normal() : normal_lookup, cutout_opacity: enable_alpha ? (enable_alpha_cutout ? (opacityValue < alpha_cutout_cutoff ? 0.0 : 1.0) : opacityValue) : 1.0 ) );
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/ds2_materials/drivable_surfaces/general/tb.mdl
mdl 1.4; import ::anno::*; export const string TRANSFORM_NONE = "NONE"; export const string TRANSFORM_UNORM_VECTOR = "UNORM_VECTOR"; export const string FORMAT_RGBA8_UNORM = "RGBA8_UNORM"; export const string FORMAT_R8_UNORM = "R8_UNORM"; export const string FORMAT_RGBA16_SFLOAT = "RGBA16_SFLOAT"; export const string BLEND_MODE_OPACITY = "opacity_blend"; export const string BLEND_MODE_REPLACE = "replace"; export annotation target_material_model(); export annotation target_material_rendering( string rendering_material_override = "" // if set, the baked material will be rendering using this material, // otherwise the target itself is used ); export annotation target_baked_argument( // the name of the baked texture parameter in the rendering material string baked_name, // the name of the constant parameter in the rendering material in case baking was not necessary string constant_name = "", // texture format to bake to string format = "", // transformations, like encoding normals into [0,1] range string transform = TRANSFORM_NONE, // blending, e.g., based on alpha or replace string blend_mode = BLEND_MODE_OPACITY );
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/ds2_materials/drivable_surfaces/general/RoadMaterial.mdl
mdl 1.3; import ::math::*; import ::state::*; import ::tex::*; import ::anno::*; using ..::OmniUe4Function import *; using ..::OmniUe4Base import *; export annotation sampler_color(); export annotation sampler_normal(); export annotation sampler_grayscale(); export annotation sampler_alpha(); export annotation sampler_masks(); export annotation sampler_distancefield(); export annotation dither_masked_off(); export annotation world_space_normal(); export material RoadMaterial( float WorldSpaceUVMult = 5000.0, float Set1Tile = 2.5, uniform texture_2d Set1SuperNormal = texture_2d("./RoadMaterial/set1supernormal.png",::tex::gamma_linear) [[sampler_color()]], float Set2Tile = 4.0, uniform texture_2d Set2SuperNormal = texture_2d("./RoadMaterial/set1supernormal.png",::tex::gamma_linear) [[sampler_color()]], float Set1Set2BlendNoiseTile = 1.0, uniform texture_2d Set1Set2BlendNoise = texture_2d("./RoadMaterial/T_Noise_D.png",::tex::gamma_srgb) [[sampler_color()]], float NormalConvert = 1.0, float NormalAmount = 0.2, float Puddle_NormalAmount = 0.0, float Puddle_NoiseTile = 0.5, uniform texture_2d PuddleNoise = texture_2d("./RoadMaterial/T_Noise01.png",::tex::gamma_srgb) [[sampler_color()]], float Puddle_NoiseBlend = 1.0, uniform texture_2d Set1SuperAlbedo = texture_2d("./RoadMaterial/set1superalbedo.png",::tex::gamma_srgb) [[sampler_color()]], uniform texture_2d Set2SuperAlbedo = texture_2d("./RoadMaterial/set1superalbedo.png",::tex::gamma_srgb) [[sampler_color()]], float AlbedoMult = 2.0, float Puddle_AlbedoMult = 1.0, float SpecularPow_Order1 = 1.0, float SpecularMult_Order2 = 1.0, float Puddle_SpecularPow_Order1 = 2.0, float Puddle_SpecularMult_Order2 = 0.32, float RoughnessPow_Order1 = 1.5, float RoughnessMult_Order2 = 1.0, float RoughnessOffset_Order3 = -0.085716, float Puddle_RoughnessPow_Order1 = 1.0, float Puddle_RoughnessMult_Order2 = 1.0, float Puddle_RoughnessOffset_Order3 = -1.0) = let { float3 WorldPositionOffset_mdl = float3(0.0,0.0,0.0); float3 Local0 = ((state::transform_point(state::coordinate_internal,state::coordinate_world,state::position())*state::meters_per_scene_unit()*100.0) / WorldSpaceUVMult); float2 Local1 = (float2(Local0.x,Local0.y) * Set1Tile); float4 Local2 = tex::lookup_float4(Set1SuperNormal,float2(Local1.x,1.0-Local1.y),tex::wrap_repeat,tex::wrap_repeat); float2 Local3 = (float2(Local0.x,Local0.y) * Set2Tile); float4 Local4 = tex::lookup_float4(Set2SuperNormal,float2(Local3.x,1.0-Local3.y),tex::wrap_repeat,tex::wrap_repeat); float2 Local5 = (float2(Local0.x,Local0.y) * Set1Set2BlendNoiseTile); float4 Local6 = tex::lookup_float4(Set1Set2BlendNoise,float2(Local5.x,1.0-Local5.y),tex::wrap_repeat,tex::wrap_repeat); float3 Local7 = math::lerp(float3(Local2.x,Local2.y,Local2.z),float3(Local4.x,Local4.y,Local4.z),Local6.x); float3 Local8 = (Local7 * 2.0); float3 Local9 = (Local8 - 1.0); float3 Local10 = math::lerp(Local7,Local9,NormalConvert); float3 Local11 = math::lerp(float3(0.0,0.0,1.0),Local10,NormalAmount); float3 Local12 = math::lerp(float3(0.0,0.0,1.0),Local10,Puddle_NormalAmount); float2 Local13 = (float2(Local0.x,Local0.y) * Puddle_NoiseTile); float4 Local14 = tex::lookup_float4(PuddleNoise,float2(Local13.x,1.0-Local13.y),tex::wrap_repeat,tex::wrap_repeat); float Local15 = (Local14.x * Puddle_NoiseBlend); float3 Local16 = math::lerp(Local11,Local12,Local15); float3 Normal_mdl = Local16; float4 Local17 = tex::lookup_float4(Set1SuperAlbedo,float2(Local1.x,1.0-Local1.y),tex::wrap_repeat,tex::wrap_repeat); float4 Local18 = tex::lookup_float4(Set2SuperAlbedo,float2(Local3.x,1.0-Local3.y),tex::wrap_repeat,tex::wrap_repeat); float3 Local19 = math::lerp(float3(float2(Local17.x,Local17.y).x,float2(Local17.x,Local17.y).y,Local17.z),float3(float2(Local18.x,Local18.y).x,float2(Local18.x,Local18.y).y,Local18.z),Local6.x); float3 Local20 = (Local19 * AlbedoMult); float3 Local21 = math::min(math::max(Local20,float3(0.0,0.0,0.0)),float3(1.0,1.0,1.0)); float3 Local22 = (Local19 * Puddle_AlbedoMult); float3 Local23 = math::min(math::max(Local22,float3(0.0,0.0,0.0)),float3(1.0,1.0,1.0)); float3 Local24 = math::lerp(Local21,Local23,Local15); float Local25 = math::lerp(Local17.w,Local18.w,Local6.x); float Local26 = math::pow(Local25,SpecularPow_Order1); float Local27 = (Local26 * SpecularMult_Order2); float Local28 = math::pow(Local25,Puddle_SpecularPow_Order1); float Local29 = (Local28 * Puddle_SpecularMult_Order2); float Local30 = math::lerp(Local27,Local29,Local15); float Local31 = math::lerp(Local2.w,Local4.w,Local6.x); float Local32 = math::pow(Local31,RoughnessPow_Order1); float Local33 = (Local32 * RoughnessMult_Order2); float Local34 = (Local33 + RoughnessOffset_Order3); float Local35 = math::pow(Local31,Puddle_RoughnessPow_Order1); float Local36 = (Local35 * Puddle_RoughnessMult_Order2); float Local37 = (Local36 + Puddle_RoughnessOffset_Order3); float Local38 = math::lerp(Local34,Local37,Local15); float3 EmissiveColor_mdl = float3(0.0,0.0,0.0); float OpacityMask_mdl = 1.0; float3 BaseColor_mdl = Local24; float Metallic_mdl = 0.0; float Specular_mdl = Local30; float Roughness_mdl = Local38; } in ::OmniUe4Base( base_color: BaseColor_mdl, metallic: Metallic_mdl, roughness: Roughness_mdl, specular: Specular_mdl, normal: Normal_mdl, opacity: OpacityMask_mdl, emissive_color: EmissiveColor_mdl, displacement: WorldPositionOffset_mdl, two_sided: false);
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/ds2_materials/drivable_surfaces/general/road/road_base_omniue4.mdl
mdl 1.3; import ::math::*; import ::state::*; import ::tex::*; import ::anno::*; using ..::..::..::OmniUe4Function import *; using ..::..::..::OmniUe4Base import *; export annotation sampler_color(); export annotation sampler_normal(); export annotation sampler_grayscale(); export annotation sampler_alpha(); export annotation sampler_masks(); export annotation sampler_distancefield(); export annotation dither_masked_off(); export annotation world_space_normal(); export material road_base( float WorldSpaceUVMult = 5000.0, float Set1Tile = 2.5, uniform texture_2d Set1SuperNormal = texture_2d("./road_base/set1supernormal.TGA",::tex::gamma_linear) [[sampler_color()]], float Set2Tile = 4.0, uniform texture_2d Set2SuperNormal = texture_2d("./road_base/set1supernormal.TGA",::tex::gamma_linear) [[sampler_color()]], float Set1Set2BlendNoiseTile = 1.0, uniform texture_2d Set1Set2BlendNoise = texture_2d("./road_base/t_noise_d.png",::tex::gamma_srgb) [[sampler_color()]], float NormalConvert = 1.0, float NormalAmount = 0.2, float Puddle_NormalAmount = 0.0, float Puddle_NoiseTile = 0.5, uniform texture_2d PuddleNoise = texture_2d("./road_base/t_noise01.png",::tex::gamma_srgb) [[sampler_color()]], float Puddle_NoiseBlend = 1.0, uniform texture_2d Set1SuperAlbedo = texture_2d("./road_base/set1superalbedo.TGA",::tex::gamma_srgb) [[sampler_color()]], uniform texture_2d Set2SuperAlbedo = texture_2d("./road_base/set1superalbedo.TGA",::tex::gamma_srgb) [[sampler_color()]], float AlbedoMult = 2.0, float Puddle_AlbedoMult = 1.0, float SpecularPow_Order1 = 1.0, float SpecularMult_Order2 = 1.0, float Puddle_SpecularPow_Order1 = 2.0, float Puddle_SpecularMult_Order2 = 0.32, float RoughnessPow_Order1 = 1.5, float RoughnessMult_Order2 = 1.0, float RoughnessOffset_Order3 = -0.085716, float Puddle_RoughnessPow_Order1 = 1.0, float Puddle_RoughnessMult_Order2 = 1.0, float Puddle_RoughnessOffset_Order3 = -1.0) = let { float3 WorldPositionOffset_mdl = float3(0.0,0.0,0.0); float3 Local0 = ((state::transform_point(state::coordinate_internal,state::coordinate_world,state::position())*state::meters_per_scene_unit()*100.0) / WorldSpaceUVMult); float2 Local1 = (float2(Local0.x,Local0.y) * Set1Tile); float4 Local2 = tex::lookup_float4(Set1SuperNormal,float2(Local1.x,1.0-Local1.y),tex::wrap_repeat,tex::wrap_repeat); float2 Local3 = (float2(Local0.x,Local0.y) * Set2Tile); float4 Local4 = tex::lookup_float4(Set2SuperNormal,float2(Local3.x,1.0-Local3.y),tex::wrap_repeat,tex::wrap_repeat); float2 Local5 = (float2(Local0.x,Local0.y) * Set1Set2BlendNoiseTile); float4 Local6 = tex::lookup_float4(Set1Set2BlendNoise,float2(Local5.x,1.0-Local5.y),tex::wrap_repeat,tex::wrap_repeat); float3 Local7 = math::lerp(float3(Local2.x,Local2.y,Local2.z),float3(Local4.x,Local4.y,Local4.z),Local6.x); float3 Local8 = (Local7 * 2.0); float3 Local9 = (Local8 - 1.0); float3 Local10 = math::lerp(Local7,Local9,NormalConvert); float3 Local11 = math::lerp(float3(0.0,0.0,1.0),Local10,NormalAmount); float3 Local12 = math::lerp(float3(0.0,0.0,1.0),Local10,Puddle_NormalAmount); float2 Local13 = (float2(Local0.x,Local0.y) * Puddle_NoiseTile); float4 Local14 = tex::lookup_float4(PuddleNoise,float2(Local13.x,1.0-Local13.y),tex::wrap_repeat,tex::wrap_repeat); float Local15 = (Local14.x * Puddle_NoiseBlend); float3 Local16 = math::lerp(Local11,Local12,Local15); float3 Normal_mdl = Local16; float4 Local17 = tex::lookup_float4(Set1SuperAlbedo,float2(Local1.x,1.0-Local1.y),tex::wrap_repeat,tex::wrap_repeat); float4 Local18 = tex::lookup_float4(Set2SuperAlbedo,float2(Local3.x,1.0-Local3.y),tex::wrap_repeat,tex::wrap_repeat); float3 Local19 = math::lerp(float3(float2(Local17.x,Local17.y).x,float2(Local17.x,Local17.y).y,Local17.z),float3(float2(Local18.x,Local18.y).x,float2(Local18.x,Local18.y).y,Local18.z),Local6.x); float3 Local20 = (Local19 * AlbedoMult); float3 Local21 = math::min(math::max(Local20,float3(0.0,0.0,0.0)),float3(1.0,1.0,1.0)); float3 Local22 = (Local19 * Puddle_AlbedoMult); float3 Local23 = math::min(math::max(Local22,float3(0.0,0.0,0.0)),float3(1.0,1.0,1.0)); float3 Local24 = math::lerp(Local21,Local23,Local15); float Local25 = math::lerp(Local17.w,Local18.w,Local6.x); float Local26 = math::pow(Local25,SpecularPow_Order1); float Local27 = (Local26 * SpecularMult_Order2); float Local28 = math::pow(Local25,Puddle_SpecularPow_Order1); float Local29 = (Local28 * Puddle_SpecularMult_Order2); float Local30 = math::lerp(Local27,Local29,Local15); float Local31 = math::lerp(Local2.w,Local4.w,Local6.x); float Local32 = math::pow(Local31,RoughnessPow_Order1); float Local33 = (Local32 * RoughnessMult_Order2); float Local34 = (Local33 + RoughnessOffset_Order3); float Local35 = math::pow(Local31,Puddle_RoughnessPow_Order1); float Local36 = (Local35 * Puddle_RoughnessMult_Order2); float Local37 = (Local36 + Puddle_RoughnessOffset_Order3); float Local38 = math::lerp(Local34,Local37,Local15); float3 EmissiveColor_mdl = float3(0.0,0.0,0.0); float OpacityMask_mdl = 1.0; float3 BaseColor_mdl = Local24; float Metallic_mdl = 0.0; float Specular_mdl = Local30; float Roughness_mdl = Local38; } in ::OmniUe4Base( base_color: BaseColor_mdl, metallic: Metallic_mdl, roughness: Roughness_mdl, specular: Specular_mdl, normal: Normal_mdl, opacity: OpacityMask_mdl, emissive_color: EmissiveColor_mdl, displacement: WorldPositionOffset_mdl, two_sided: false);
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/ds2_materials/drivable_surfaces/general/road/road_base.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (148.34604816491145, 148.34604816491355, 148.34604816490918) double3 target = (-1.8474111129762605e-12, 2.2737367544323206e-13, -3.950617610826157e-12) } dictionary Right = { double radius = 500 double3 target = (0, 0, 0) } dictionary Top = { double radius = 500 double3 target = (0, 0, 0) } string boundCamera = "/OmniverseKit_Persp" } dictionary renderSettings = { float "rtx:post:lensDistortion:cameraFocalLength" = 18.147562 } } defaultPrim = "road_base" endTimeCode = 100 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Material "road_base" { token outputs:mdl:displacement.connect = </road_base/Shader.outputs:out> token outputs:mdl:surface.connect = </road_base/Shader.outputs:out> token outputs:mdl:volume.connect = </road_base/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @./road_base.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "road_base" float inputs:AlbedoMult = 1.75 ( customData = { float default = 2 dictionary range = { float max = 100000 float min = -100000 } } ) float inputs:Puddle_NoiseBlend = 0.2 ( customData = { float default = 1 dictionary range = { float max = 100000 float min = -100000 } } ) asset inputs:PuddleNoise = @omniverse://drivesim-dev/Library/ds2_materials/drivable_surfaces/general/road/road_base/t_noise01.png@ ( colorSpace = "sRGB" customData = { asset default = @/Z18E_3A/ZB8material_2Dflattening_2Dassets/ds2_materials/drivable_surfaces/general/road/road_base/t_noise01.png@ } ) float inputs:RoughnessMult_Order2 = 0.5 ( customData = { float default = 1 dictionary range = { float max = 100000 float min = -100000 } } ) float inputs:RoughnessOffset_Order3 = 0 ( customData = { float default = -0.085716 dictionary range = { float max = 100000 float min = -100000 } } ) float inputs:RoughnessPow_Order1 = 0.5 ( customData = { float default = 1.5 dictionary range = { float max = 100000 float min = -100000 } } ) asset inputs:Set1Set2BlendNoise = @omniverse://drivesim-dev/Library/ds2_materials/drivable_surfaces/general/road/road_base/t_noise_d.png@ ( colorSpace = "sRGB" customData = { asset default = @/Z18E_3A/ZB8material_2Dflattening_2Dassets/ds2_materials/drivable_surfaces/general/road/road_base/t_noise_d.png@ } ) float inputs:Set1Tile = 4 ( customData = { float default = 2.5 dictionary range = { float max = 100000 float min = -100000 } } ) float inputs:Set2Tile = 8 ( customData = { float default = 4 dictionary range = { float max = 100000 float min = -100000 } } ) float inputs:SpecularMult_Order2 = 0.2 ( customData = { float default = 1 dictionary range = { float max = 100000 float min = -100000 } } ) float inputs:SpecularPow_Order1 = 0.3 ( customData = { float default = 1 dictionary range = { float max = 100000 float min = -100000 } } ) token outputs:out } }
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/ds2_materials/drivable_surfaces/general/road/road_base.mdl
mdl 1.3; import ::math::*; import ::state::*; import ::tex::*; import ::anno::*; using ..::..::..::OmniUe4Function import *; using ..::..::..::OmniUe4Base import *; export annotation sampler_color(); export annotation sampler_normal(); export annotation sampler_grayscale(); export annotation sampler_alpha(); export annotation sampler_masks(); export annotation sampler_distancefield(); export annotation dither_masked_off(); export annotation world_space_normal(); export material road_base( float WorldSpaceUVMult = 5000.0, float Set1Tile = 2.5, uniform texture_2d Set1SuperNormal = texture_2d("./road_base/set1supernormal.TGA",::tex::gamma_linear) [[sampler_color()]], float Set2Tile = 4.0, uniform texture_2d Set2SuperNormal = texture_2d("./road_base/set1supernormal.TGA",::tex::gamma_linear) [[sampler_color()]], float Set1Set2BlendNoiseTile = 1.0, uniform texture_2d Set1Set2BlendNoise = texture_2d("./road_base/t_noise_d.png",::tex::gamma_srgb) [[sampler_color()]], float NormalConvert = 1.0, float NormalAmount = 0.2, float Puddle_NormalAmount = 0.0, float Puddle_NoiseTile = 0.5, uniform texture_2d PuddleNoise = texture_2d("./road_base/t_noise01.png",::tex::gamma_srgb) [[sampler_color()]], float Puddle_NoiseBlend = 1.0, uniform texture_2d Set1SuperAlbedo = texture_2d("./road_base/set1superalbedo.TGA",::tex::gamma_srgb) [[sampler_color()]], uniform texture_2d Set2SuperAlbedo = texture_2d("./road_base/set1superalbedo.TGA",::tex::gamma_srgb) [[sampler_color()]], float AlbedoMult = 2.0, float Puddle_AlbedoMult = 1.0, float SpecularPow_Order1 = 1.0, float SpecularMult_Order2 = 1.0, float Puddle_SpecularPow_Order1 = 2.0, float Puddle_SpecularMult_Order2 = 0.32, float RoughnessPow_Order1 = 1.5, float RoughnessMult_Order2 = 1.0, float RoughnessOffset_Order3 = -0.085716, float Puddle_RoughnessPow_Order1 = 1.0, float Puddle_RoughnessMult_Order2 = 1.0, float Puddle_RoughnessOffset_Order3 = -1.0) = let { float3 WorldPositionOffset_mdl = float3(0.0,0.0,0.0); float3 Local0 = ((state::transform_point(state::coordinate_internal,state::coordinate_world,state::position())*state::meters_per_scene_unit()*100.0) / WorldSpaceUVMult); float2 Local1 = (float2(Local0.x,Local0.y) * Set1Tile); float4 Local2 = tex::lookup_float4(Set1SuperNormal,float2(Local1.x,1.0-Local1.y),tex::wrap_repeat,tex::wrap_repeat); float2 Local3 = (float2(Local0.x,Local0.y) * Set2Tile); float4 Local4 = tex::lookup_float4(Set2SuperNormal,float2(Local3.x,1.0-Local3.y),tex::wrap_repeat,tex::wrap_repeat); float2 Local5 = (float2(Local0.x,Local0.y) * Set1Set2BlendNoiseTile); float4 Local6 = tex::lookup_float4(Set1Set2BlendNoise,float2(Local5.x,1.0-Local5.y),tex::wrap_repeat,tex::wrap_repeat); float3 Local7 = math::lerp(float3(Local2.x,Local2.y,Local2.z),float3(Local4.x,Local4.y,Local4.z),Local6.x); float3 Local8 = (Local7 * 2.0); float3 Local9 = (Local8 - 1.0); float3 Local10 = math::lerp(Local7,Local9,NormalConvert); float3 Local11 = math::lerp(float3(0.0,0.0,1.0),Local10,NormalAmount); float3 Local12 = math::lerp(float3(0.0,0.0,1.0),Local10,Puddle_NormalAmount); float2 Local13 = (float2(Local0.x,Local0.y) * Puddle_NoiseTile); float4 Local14 = tex::lookup_float4(PuddleNoise,float2(Local13.x,1.0-Local13.y),tex::wrap_repeat,tex::wrap_repeat); float Local15 = (Local14.x * Puddle_NoiseBlend); float3 Local16 = math::lerp(Local11,Local12,Local15); float3 Normal_mdl = Local16; float4 Local17 = tex::lookup_float4(Set1SuperAlbedo,float2(Local1.x,1.0-Local1.y),tex::wrap_repeat,tex::wrap_repeat); float4 Local18 = tex::lookup_float4(Set2SuperAlbedo,float2(Local3.x,1.0-Local3.y),tex::wrap_repeat,tex::wrap_repeat); float3 Local19 = math::lerp(float3(float2(Local17.x,Local17.y).x,float2(Local17.x,Local17.y).y,Local17.z),float3(float2(Local18.x,Local18.y).x,float2(Local18.x,Local18.y).y,Local18.z),Local6.x); float3 Local20 = (Local19 * AlbedoMult); float3 Local21 = math::min(math::max(Local20,float3(0.0,0.0,0.0)),float3(1.0,1.0,1.0)); float3 Local22 = (Local19 * Puddle_AlbedoMult); float3 Local23 = math::min(math::max(Local22,float3(0.0,0.0,0.0)),float3(1.0,1.0,1.0)); float3 Local24 = math::lerp(Local21,Local23,Local15); float Local25 = math::lerp(Local17.w,Local18.w,Local6.x); float Local26 = math::pow(Local25,SpecularPow_Order1); float Local27 = (Local26 * SpecularMult_Order2); float Local28 = math::pow(Local25,Puddle_SpecularPow_Order1); float Local29 = (Local28 * Puddle_SpecularMult_Order2); float Local30 = math::lerp(Local27,Local29,Local15); float Local31 = math::lerp(Local2.w,Local4.w,Local6.x); float Local32 = math::pow(Local31,RoughnessPow_Order1); float Local33 = (Local32 * RoughnessMult_Order2); float Local34 = (Local33 + RoughnessOffset_Order3); float Local35 = math::pow(Local31,Puddle_RoughnessPow_Order1); float Local36 = (Local35 * Puddle_RoughnessMult_Order2); float Local37 = (Local36 + Puddle_RoughnessOffset_Order3); float Local38 = math::lerp(Local34,Local37,Local15); float3 EmissiveColor_mdl = float3(0.0,0.0,0.0); float OpacityMask_mdl = 1.0; float3 BaseColor_mdl = Local24; float Metallic_mdl = 0.0; float Specular_mdl = Local30; float Roughness_mdl = Local38; } in ::OmniUe4Base( base_color: BaseColor_mdl, metallic: Metallic_mdl, roughness: Roughness_mdl, specular: Specular_mdl, normal: Normal_mdl, opacity: OpacityMask_mdl, emissive_color: EmissiveColor_mdl, displacement: WorldPositionOffset_mdl, two_sided: false);
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/ds2_materials/drivable_surfaces/general/road/test.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (66.02389126296029, 66.02389126296092, 66.02389126296009) double3 target = (-5.044853423896711e-13, 1.1368683772161603e-13, -6.181721801112872e-13) } dictionary Right = { double radius = 500 double3 target = (0, 0, 0) } dictionary Top = { double radius = 500 double3 target = (0, 0, 0) } string boundCamera = "/OmniverseKit_Persp" } dictionary renderSettings = { token "rtx:materialflattener:planarProjectionPlaneAxes" = "xz" float "rtx:post:lensDistortion:cameraFocalLength" = 18.147562 } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def DistantLight "defaultLight" ( prepend apiSchemas = ["ShapingAPI"] ) { float angle = 1 float intensity = 3000 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file double3 xformOp:rotateXYZ = (315, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Mesh "Plane" { int[] faceVertexCounts = [4] int[] faceVertexIndices = [0, 2, 3, 1] rel material:binding = </World/road_base> ( bindMaterialAs = "weakerThanDescendants" ) normal3f[] normals = [(0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(-50, 0, -50), (50, 0, -50), (-50, 0, 50), (50, 0, 50)] string primvars:materialFlattener_targetMaterial = "simple_diffuse" float2[] primvars:st = [(1, 0), (1, 1), (0, 1), (0, 0)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def "road_base" ( prepend references = @road_base.usda@ ) { } }
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/ds2_materials/drivable_surfaces/general/lanemarkings/retroreflective__base.mdl
/***************************************************************************** * Copyright 1986-2020 NVIDIA Corporation. All rights reserved. ****************************************************************************** MDL MATERIALS ARE PROVIDED PURSUANT TO AN END USER LICENSE AGREEMENT, WHICH WAS ACCEPTED IN ORDER TO GAIN ACCESS TO THIS FILE. IN PARTICULAR, THE MDL MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL NVIDIA CORPORATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE MDL MATERIALS OR FROM OTHER DEALINGS IN THE MDL MATERIALS. */ /* //fixes: customIOR, AO mapping JIC, added bsdf dropdown //fixes 10/12/2018 - converted metallic Bool into float for map. //jjordan 10/18: disabled bsdf_type. imho makes material complicated without real benefit, but final call is for Daniela since she knows feedback //jjordan 10/18: removed all ternaries on material structs and substituted with ternaries on bsdf. this works around https://moskito.nvidia-arc.com/show_bug.cgi?id=18719 but at the same time is shorter then original code //danielaf 10/24/18: replacing ifm annotation with updated 1.4 anno for parameter ui grouping //danielaf 10/24/18: removing all Booleans and using floats instead for dynamic material in RTX_OV //ddanielaf 10/24/18: adding explicit texture input parameter and texture enable parameters for RTX_OV OMN-812 - unless tex::texture_isvalid implemented in RTX_OV //danielaf 10/24/18: removed anisotropy,backscatter, thinfilms, custom_bsdf, abbe_number(things that don't seem to have any effect in RTX_OV ATM) //danielaf 11/2/2018: omni flex trimmed way down //danielaf 11/06/2018: switch enables to bool! :D //switched back to 1.3, getting "mdl 1.4 not supported" from my iviewer version 2017 1.4 296300.6298 //switched to 1.2 - getting normalmap_texture parameter type error when switching to 1.4 - still troubleshooting //azoellner 1/18/19 - promoting staging to the real material, removed "Staging" from all names //azoellner 2/11/19 modified display name sand group names to match up with known Sol master //rraab 28/2/19 Changed surface reflectance behavior to match the UE4 model //rraab 11/4/19 Changed material name from SolPBR_Master to Advanced PBR, // Adding keywords and removing //tmosier 12/4/19 Cleaned up display names //azoellner on behave of Ignacio - 8-9-2019 - added advancedPBR_Cutouts.mdl to improve class comiplation on Kit. //azoellner 10/30/19 changing to omniPBR. adding use base texture bool, base color, and so its not required to use emmissive mask. //rraab 2/3/20 Adding clearcloat layer feature to material (IOR based) //azoellner 2/4/2020 set default clearcoat to false //rraab 3/9/2020 Metallix material now bumps correctly. Used tint operation for 'directional_factor_bsdf' which is delivers the same result but is simpler. //azoellner 5/6/2020 Updated to import :: //fpliu 5/27/2020 Rename OmniPBR_Opacity.mdl OmniPBR_ClearCoat_Opacity.mdl //akanani 7/8/2020 Fixed the issue related to material.geometry.normal not being set correctly. //fpliu 9/4/2020 Added mono_mode opacity //fpliu 9/8/2020 Update softrange for clearcoat IOR */ mdl 1.4; import ::df::*; import ::state::*; import ::math::*; import ::base::*; import ::tex::*; import ::anno::*; import ::nvidia::core_definitions::file_texture; import ::nvidia::core_definitions::normalmap_texture; uniform float4x4 rotation_translation_scale( uniform float3 rotation = float3(0.) [[ anno::description("Rotation applied to every UVW coordinate") ]], uniform float3 translation = float3(0.) [[ anno::description("Offset applied to every UVW coordinate") ]], uniform float3 scaling = float3(1.) [[ anno::description("Scale applied to every UVW coordinate") ]] ) [[ anno::description("Construct transformation matrix from Euler rotation, translation and scale"), anno::hidden() ]] { float4x4 scale = float4x4(scaling.x , 0. , 0. , 0., 0. , scaling.y , 0. , 0., 0. , 0. , scaling.z , 0., translation.x, translation.y, translation.z, 1.); float3 s = math::sin(rotation); float3 c = math::cos(rotation); float4x4 rotate = float4x4( c.y*c.z , -c.x*s.z + s.x*s.y*c.z , s.x*s.z + c.x*s.y*c.z , 0.0, c.y*s.z , c.x*c.z + s.x*s.y*s.z , -s.x*c.z + c.x*s.y*s.z , 0.0, -s.y , s.x*c.y , c.x*c.y , 0.0, 0. , 0 , 0 , 1.); return scale*rotate; } // Returns the normal n in tangent space, given n is in internal space. float3 transform_internal_to_tangent(float3 n) { return n.x* float3(state::texture_tangent_u(0).x,state::texture_tangent_v(0).x,state::normal().x)+ n.y* float3(state::texture_tangent_u(0).y,state::texture_tangent_v(0).y,state::normal().y)+ n.z* float3(state::texture_tangent_u(0).z,state::texture_tangent_v(0).z,state::normal().z); } // Returns the normal n in internal space, given n is in tangent space. float3 transform_tangent_to_internal(float3 n) { return state::texture_tangent_u(0) * n.x + state::texture_tangent_v(0) * n.y + state::normal() * n.z ; } // Returns a normal by adding a detail normal to a global normal. export float3 add_detail_normal(float3 nd = state::normal(), float3 n = state::normal()) { // http://blog.selfshadow.com/publications/blending-in-detail/ float3 n_t = transform_internal_to_tangent(n); float3 nd_t = transform_internal_to_tangent(nd); n_t=n_t + float3(0.,0.,1.); nd_t = nd_t * float3(-1.,-1.,1.); n = n_t*math::dot(n_t, nd_t)/n_t.z - nd_t; return math::normalize(transform_tangent_to_internal(n)); } base::texture_return multiply_colors( color color_1 = color(1.0, 1.0, 1.0), color color_2 = color(.5, .5, .5), float weight = 1.0 ) [[ anno::hidden() ]] { return base::blend_color_layers( layers: base::color_layer[]( base::color_layer( layer_color: color_2, weight: weight, mode: base::color_layer_multiply )), base: color_1 ); } base::texture_return add_colors( color color_1 = color(.5, .5, .5), color color_2 = color(.5, .5, .5), float weight = 1.0 ) [[ anno::hidden(), anno::unused() ]] { return base::blend_color_layers( layers: base::color_layer[]( base::color_layer( layer_color: color_2, weight: weight, mode: base::color_layer_add )), base: color_1 ); } base::texture_return blend_colors( color color_1 = color(1.0, 1.0, 1.0), color color_2 = color(.5, .5, .5), float weight = 1.0 ) [[ anno::hidden(), anno::unused() ]] { return base::blend_color_layers( layers: base::color_layer[]( base::color_layer( layer_color: color_2, weight: weight, mode: base::color_layer_blend )), base: color_1 ); } export material OmniPBR_RR_ClearCoat_Opacity( color diffuse_color_constant = color(0.2f) [[ anno::display_name("Base Color"), anno::description("This is the base color"), anno::in_group("Albedo") ]], uniform texture_2d diffuse_texture = texture_2d() [[ anno::display_name("Albedo Map"), anno::in_group("Albedo") ]], float albedo_desaturation = float(0.0) [[ anno::display_name("Albedo Desaturation"), anno::soft_range(float(0.0f), float(1.0f)), anno::description("Desaturates the diffuse color"), anno::in_group("Albedo") ]], float albedo_add = float(0.0) [[ anno::display_name("Albedo Add"), anno::soft_range(float(-1.0f), float(1.0f)), anno::description("Adds a constant value to the diffuse color "), anno::in_group("Albedo") ]], float albedo_brightness = float(1.0) [[ anno::display_name("Albedo Brightness"), anno::soft_range(float(0.0f), float(1.0f)), anno::description("Multiplier for the diffuse color "), anno::in_group("Albedo") ]], color diffuse_tint = color(1.0f) [[ anno::display_name("Color Tint"), anno::description("When enabled, this color value is multiplied over the final albedo color"), anno::in_group("Albedo") ]], // -------------------- REFLECTIVITY ---------------------- uniform bool enable_retroreflection = true [[ anno::display_name("Enable Retroreflection"), anno::in_group("Reflectivity") ]], color retroreflection_color = color(.182,.800,.000) [[ anno::display_name("Retro-reflection color"), anno::description("The color of the retroreflection"), anno::in_group("Reflectivity") ]], uniform float normal_reflectivity = 0.5 [[ anno::display_name("Retro-reflection weight facing"), anno::hard_range(0.0,1.), anno::description("Reflectivity control for geometry facing the viewer"), anno::in_group("Reflectivity") ]], uniform float grazing_reflectivity = 1.0 [[ anno::display_name("Retro-reflection weight edge"), anno::hard_range(0.0,1.), anno::description("Reflectivity control for the reflectivity at geometry edges"), anno::in_group("Reflectivity") ]], float reflection_roughness_constant = 0.685f [[ anno::display_name("Roughness Amount"), anno::hard_range(0.0,1.), anno::description("Higher roughness values lead to more blurry reflections"), anno::in_group("Reflectivity") ]], float reflection_roughness_texture_influence = 0.0f [[ anno::display_name("Roughness Map Influence"), anno::hard_range(0.0, 1.), anno::description("Blends between the constant value and the lookup of the roughness texture"), anno::in_group("Reflectivity") ]], uniform texture_2d reflectionroughness_texture = texture_2d() [[ anno::display_name("Roughness Map"), anno::in_group("Reflectivity") ]], float metallic_constant = 0.f [[ anno::display_name("Metallic Amount"), anno::hard_range(0.0,1.), anno::description("Metallic Material"), anno::in_group("Reflectivity") ]], float metallic_texture_influence = 0.0f [[ anno::display_name("Metallic Map Influence"), anno::hard_range(0.0, 1.), anno::description("Blends between the constant value and the lookup of the metallic texture"), anno::in_group("Reflectivity") ]], uniform texture_2d metallic_texture = texture_2d() [[ anno::display_name("Metallic Map"), anno::in_group("Reflectivity") ]], float specular_level = float(0.5) [[ anno::display_name("Specular"), anno::soft_range(float(0.0f), float(1.0f)), anno::description("The specular level (intensity) of the material"), anno::in_group("Reflectivity") ]], // -------------------- ORM ---------------------- uniform bool enable_ORM_texture = false [[ anno::display_name("Enable ORM Texture"), anno::description("When True the ORM texture will be used to extract the Occlusion, Roughness and Metallic Map"), anno::in_group("Reflectivity") ]], uniform texture_2d ORM_texture = texture_2d() [[ anno::display_name("ORM Map"), anno::description("Texture that hae Occlusion, Roughness and Metallic map stored in the respective r, g and b channels"), anno::in_group("Reflectivity") ]], // -------------------- AO Group ---------------------- float ao_to_diffuse = 0.0 [[ anno::display_name("AO to Diffuse"), anno::description("Controls the amount of ambient occlusion multiplied into the diffuse color channel"), anno::in_group("AO") ]], uniform texture_2d ao_texture = texture_2d() [[ anno::display_name("Ambient Occlusion Map"), anno::description("The Ambient Occlusion texture for the material"), anno::in_group("AO") ]], // -------------------- EMISSIVE ---------------------- uniform bool enable_emission = false [[ anno::display_name("Enable Emission"), anno::description("Enables the emission of light from the material"), anno::in_group("Emissive") ]], color emissive_color = color(1.0, 0.1, 0.1) [[ anno::enable_if("enable_emission == true"), anno::display_name("Emissive Color"), anno::description("The emission color"), anno::in_group("Emissive") ]], uniform texture_2d emissive_mask_texture = texture_2d() [[ anno::enable_if("enable_emission == true"), anno::display_name("Emissive Mask map"), anno::description("The texture masking the emissive color"), anno::in_group("Emissive") ]], uniform float emissive_intensity = 40.f [[ anno::enable_if("enable_emission == true"), anno::display_name("Emissive Intensity"), anno::description("Intensity of the emission"), anno::in_group("Emissive") ]], // Opacity Map uniform bool enable_opacity_texture = false [[ anno::display_name("Enable Opacity"), anno::description("Enables or disbales the usage of the opacity texture map"), anno::in_group("Opacity") ]], uniform float opacity_constant = 1.f [[ anno::enable_if("enable_opacity_texture == true"), anno::hard_range(0.0, 1.0), anno::display_name("Opacity Amount"), anno::description("Amount of Opacity"), anno::in_group("Opacity") ]], uniform texture_2d opacity_texture = texture_2d() [[ anno::enable_if("enable_opacity_texture==true"), anno::display_name("Opacity Map"), anno::in_group("Opacity") ]], uniform base::mono_mode opacity_mode = base::mono_average [[ anno::display_name("Opacity Mono Source"), anno::in_group("Opacity"), anno::description("Determines how to lookup opacity from the supplied texture. mono_alpha, mono_average, mono_luminance, mono_maximum") ]], // -------------------- Clearcoat ---------------------- uniform bool enable_clearcoat = false [[ anno::display_name("Enable Clearcoat Layer"), anno::description("Adds a clearcoat layer on top of the material when enabled"), anno::enable_if("enable_opacity_texture==true"), anno::in_group("Clearcoat") ]], color clearcoat_tint = color(1.0f) [[ anno::display_name("Clearcoat Tint"), anno::description("Clearcoat is tinted and affects the underlying material"), anno::in_group("Clearcoat") ]], float clearcoat_transparency = 1.0f [[ anno::display_name("Clearcoat Transparency"), anno::description("Adjusts the transparency of the clearcoat. Can be turned into a fully opaque clearcoat " "covering the underlying layer"), anno::in_group("Clearcoat") ]], float clearcoat_reflection_roughness = 0.0f [[ anno::display_name("Clearcoat Roughness"), anno::description("Higher roughness values lead to more blurry reflections"), anno::hard_range(0.0f, 1.0f), anno::in_group("Clearcoat") ]], float clearcoat_weight = 1.0f [[ anno::display_name("Clearcoat Weight"), anno::description("Sets the weight for clearcoat layer"), anno::hard_range(0.0f, 1.0f), anno::in_group("Clearcoat") ]], float clearcoat_flatten = 1.0f [[ anno::display_name("Clearcoat Flatten"), anno::description("Flattens the clearcoat to even out the underlying bump maps"), anno::hard_range(0.0f, 1.0f), anno::in_group("Clearcoat") ]], float clearcoat_ior = 1.56f [[ anno::display_name("Clearcoat IOR"), anno::description("Sets the Index of refraction for the clearcoat layer"), anno::soft_range(1.0f, 4.0f), anno::in_group("Clearcoat") ]], uniform float clearcoat_bump_factor = 1.f [[ anno::display_name("Clearcoat Normal Map Strength"), anno::description("Strength of normal map."), anno::in_group("Clearcoat") ]], uniform texture_2d clearcoat_normalmap_texture = texture_2d() [[ anno::display_name("Clearcoat Normal Map"), anno::description("Enables the usage of the normalmap texture"), anno::in_group("Clearcoat") ]], // -------------------- Normal ---------------------- /* uniform bool enable_normalmap_texture = false [[ anno::display_name("Enable Normal Texture"), anno::description("Enables the usage of the normalmap texture"), anno::in_group("Features") ]], */ uniform float bump_factor = 1.f [[ anno::display_name("Normal Map Strength"), anno::description("Strength of normal map."), anno::in_group("Normal") ]], uniform texture_2d normalmap_texture = texture_2d() [[ anno::display_name("Normal Map"), anno::description("Enables the usage of the normalmap texture"), anno::in_group("Normal") ]], /* uniform bool enable_detail_normalmap_texture = false [[ anno::display_name("Enable Detail Normal Texture"), anno::in_group("Features"), anno::description("Enables the usage of the detail normalmap texture") ]], */ uniform float detail_bump_factor = .3f [[ anno::display_name("Detail Normal Strength"), anno::in_group("Normal"), anno::description("Strength of the detail normal") ]], uniform texture_2d detail_normalmap_texture = texture_2d() [[ anno::display_name("Detail Normal Map"), anno::in_group("Normal") ]], // UV Projection Group uniform bool project_uvw = false [[ anno::display_name("Enable Project UVW Coordinates"), anno::description("When enabled, UV coordinates will be generated by projecting them from a coordinate system"), anno::in_group("UV") ]], uniform bool world_or_object = false [[ anno::enable_if("project_uvw == true"), anno::display_name("Enable World Space"), anno::description("When set to 'true' uses world space for projection, when 'false' object space is used"), anno::in_group("UV") ]], uniform int uv_space_index = 0 [[ anno::enable_if("project_uvw == true"), anno::display_name("UV Space Index"), anno::description("UV Space Index."), anno::in_group("UV"), anno::hard_range(0, 3) ]], // Adjustments Group uniform float2 texture_translate = float2(0.0f) [[ anno::enable_if("project_uvw == true"), anno::display_name("Texture Translate"), anno::description("Controls position of texture."), anno::in_group("UV") ]], uniform float texture_rotate = 0.f [[ anno::enable_if("project_uvw == true"), anno::display_name("Texture Rotate"), anno::description("Rotates angle of texture in degrees."), anno::in_group("UV") ]], uniform float2 texture_scale = float2(1.0f) [[ anno::enable_if("project_uvw == true"), anno::display_name("Texture Scale"), anno::description("Larger number increases size of texture."), anno::in_group("UV") ]], uniform float2 detail_texture_translate = float2(0.0f) [[ anno::enable_if("project_uvw == true"), anno::display_name("Detail Texture Translate"), anno::description("Controls the position of the detail texture."), anno::in_group("UV") ]], uniform float detail_texture_rotate = 0.f [[ anno::enable_if("project_uvw == true"), anno::display_name("Detail Texture Rotate"), anno::description("Rotates angle of the detail texture in degrees."), anno::in_group("UV") ]], uniform float2 detail_texture_scale = float2(1.0f) [[ anno::enable_if("project_uvw == true"), anno::display_name("Detail Texture Scale"), anno::description("Larger numbers increase the size of the detail texture"), anno::in_group("UV") ]], uniform float2 clearcoat_texture_translate = float2(0.0f) [[ anno::display_name("Clearcoat Texture Translate"), anno::description("Controls the position of the detail texture."), anno::in_group("UV") ]], uniform float clearcoat_texture_rotate = 0.f [[ anno::display_name("Clearcoat Texture Rotate"), anno::description("Rotates angle of the detail texture in degrees."), anno::in_group("UV") ]], uniform float2 clearcoat_texture_scale = float2(1.0f) [[ anno::display_name("Clearcoat Texture Scale"), anno::description("Larger numbers increase the size of the detail texture"), anno::in_group("UV") ]] ) [[ anno::display_name("OmniPBR ClearCoat Opacity"), anno::description("OmniPBR with ClearCoat. Supports opacity and ORM textures."), anno::version( 2, 1, 0), anno::author("NVIDIA CORPORATION"), anno::key_words(string[]("omni", "PBR", "opacity", "omniverse", "generic")) ]] = let{ // UVW lookup and transformation base::texture_coordinate_system the_system = world_or_object ? base::texture_coordinate_world : base::texture_coordinate_object; base::texture_coordinate_info uvw = project_uvw ? base::coordinate_projection( coordinate_system: the_system, texture_space: uv_space_index, projection_type: base::projection_cubic ) : base::coordinate_source( coordinate_system: base::texture_coordinate_uvw, texture_space: uv_space_index ); base::texture_coordinate_info transformed_uvw = base::transform_coordinate( transform: rotation_translation_scale( scaling: float3(texture_scale.x, texture_scale.y, 1.0), rotation: float3(0.0, 0.0, texture_rotate/180.*math::PI ), translation: float3(texture_translate.x, texture_translate.y, 0.0) ), coordinate: uvw ); base::texture_coordinate_info detail_transformed_uvw = base::transform_coordinate( transform: rotation_translation_scale( scaling: float3(detail_texture_scale.x, detail_texture_scale.y, 1.0), rotation: float3(0.0, 0.0, detail_texture_rotate/180.*math::PI ), translation: float3(detail_texture_translate.x, detail_texture_translate.y, 0.0) ), coordinate: uvw ); base::texture_coordinate_info clearcoat_transformed_uvw = base::transform_coordinate( transform: rotation_translation_scale( scaling: float3(clearcoat_texture_scale.x, clearcoat_texture_scale.y, 1.0), rotation: float3(0.0, 0.0, clearcoat_texture_rotate/180.*math::PI ), translation: float3(clearcoat_texture_translate.x, clearcoat_texture_translate.y, 0.f) ), coordinate: uvw ); // Normal calculations float3 the_normal = tex::texture_isvalid(normalmap_texture) ? base::tangent_space_normal_texture( texture: normalmap_texture, factor: bump_factor, uvw: transformed_uvw ): state::normal() ; float3 detail_normal = tex::texture_isvalid(detail_normalmap_texture) ? base::tangent_space_normal_texture( texture: detail_normalmap_texture, factor: detail_bump_factor, uvw: detail_transformed_uvw ): state::normal() ; float3 clearcoat_normal = base::tangent_space_normal_texture( texture: clearcoat_normalmap_texture, factor: clearcoat_bump_factor, uvw: clearcoat_transformed_uvw ); float3 diffuse_gloss_normal = tex::texture_isvalid(detail_normalmap_texture) ? add_detail_normal(detail_normal, the_normal) : the_normal; float3 flattened_clearcoat_normal = ::math::lerp(diffuse_gloss_normal, ::state::normal(), clearcoat_flatten); float3 final_clearcoat_normal = tex::texture_isvalid(clearcoat_normalmap_texture) ? add_detail_normal(flattened_clearcoat_normal, clearcoat_normal) : flattened_clearcoat_normal; // -------------------- ORM Handling -------------------- float3 ORM_lookup = tex::lookup_float3( tex: ORM_texture, coord: float2(transformed_uvw.position.x, transformed_uvw.position.y) ); base::texture_return roughness_lookup = base::file_texture( texture: reflectionroughness_texture, mono_source: base::mono_average, uvw: transformed_uvw, clip: false ); float roughness_selection = enable_ORM_texture ? ORM_lookup.y : roughness_lookup.mono; float reflection_roughness_1 = math::lerp(reflection_roughness_constant, roughness_selection, reflection_roughness_texture_influence); // Diffuse Color Lookup and AO base::texture_return base_lookup = base::file_texture( texture: diffuse_texture, color_offset: color(albedo_add), color_scale: color(albedo_brightness), mono_source: base::mono_luminance, uvw: transformed_uvw, clip: false ); base::texture_return ao_lookup = base::file_texture( texture: ao_texture, color_offset: color(0.0, 0.0, 0.0), color_scale: color(1.0, 1.0, 1.0), mono_source: base::mono_average, uvw: transformed_uvw, clip: false ); // checking whether the ORM texture or the AO texture is supposed to be used color ao_color = enable_ORM_texture ? color(ORM_lookup.x) : ao_lookup.tint; color desaturated_base = math::lerp(base_lookup.tint, color(base_lookup.mono), albedo_desaturation); color diffuse_color = tex::texture_isvalid(diffuse_texture)? desaturated_base : diffuse_color_constant; //color diffuse_color = desaturated_base ; color tinted_diffuse_color = multiply_colors(diffuse_color, diffuse_tint, 1.0).tint ; color base_color = multiply_colors( color_1: tinted_diffuse_color, color_2: ao_color, weight: ao_to_diffuse ).tint; base::texture_return metallic_lookup = base::file_texture( texture: metallic_texture, color_offset: color(0.0, 0.0, 0.0), color_scale: color(1.0, 1.0, 1.0), mono_source: base::mono_average, uvw: transformed_uvw, clip: false ); // Choose between ORM or metallic map float metallic_selection = enable_ORM_texture ? ORM_lookup.z : metallic_lookup.mono; // blend between the constant metallic value and the map lookup float metallic = math::lerp(metallic_constant, metallic_selection, metallic_texture_influence); bsdf diffuse_bsdf = df::weighted_layer( weight: 1.0, layer: df::diffuse_reflection_bsdf( tint: base_color, roughness: 0.f ), base: bsdf(), normal: enable_clearcoat ? diffuse_gloss_normal : state::normal() ); // The glossy reflection BSDF bsdf ggx_smith_bsdf = df::microfacet_ggx_smith_bsdf( roughness_u:reflection_roughness_1 * reflection_roughness_1, roughness_v:reflection_roughness_1 * reflection_roughness_1, tint: color(1.0, 1.0, 1.0), mode: df::scatter_reflect ); bsdf custom_curve_layer_bsdf = df::custom_curve_layer( normal_reflectivity: 0.08, grazing_reflectivity: 1.0, exponent: 5.0, weight: specular_level, layer: ggx_smith_bsdf, base: diffuse_bsdf, normal: enable_clearcoat ? diffuse_gloss_normal : state::normal() ); // // Begin RETROREFLECTION SUPPORT // bsdf backscattering_glossy_bsdf = df::backscattering_glossy_reflection_bsdf( tint: retroreflection_color, roughness_u: reflection_roughness_1 * reflection_roughness_1 ); bsdf retroreflection_bsdf = df::custom_curve_layer( normal_reflectivity: 1.-normal_reflectivity, grazing_reflectivity: 1.-grazing_reflectivity, base: backscattering_glossy_bsdf, layer: diffuse_bsdf, normal: enable_clearcoat ? diffuse_gloss_normal : state::normal() ); // // End RETROREFLECTION SUPPORT // // Replaced by tinting as this reproduces the UE4 behavior more faithfully // bsdf directional_factor_bsdf = df::directional_factor( // normal_tint: base_color, // grazing_tint: base_color, //color(1.0, 1.0, 1.0), // exponent: 3.0f, // base: ggx_smith_bsdf // ); bsdf directional_factor_bsdf = df::tint(base_color, ggx_smith_bsdf); // CLEARCOAT bsdf omni_PBR_bsdf = df::weighted_layer( weight: metallic, layer: directional_factor_bsdf, base: enable_retroreflection ? retroreflection_bsdf : custom_curve_layer_bsdf, normal: enable_clearcoat ? diffuse_gloss_normal : state::normal() ); bsdf clearcoat_bsdf = df::microfacet_ggx_smith_bsdf( roughness_u: clearcoat_reflection_roughness * clearcoat_reflection_roughness, roughness_v: clearcoat_reflection_roughness * clearcoat_reflection_roughness, tint: color(1.0f), mode: df::scatter_reflect ); // bsdf omni_PBR_coated_bsdf = df::custom_curve_layer( // normal_reflectivity: clearcoat_reflectivity * 0.08, // grazing_reflectivity: 1.0, // weight: clearcoat_weight, // layer: clearcoat_bsdf, // base: omni_PBR_bsdf, // normal: final_clearcoat_normal // ); bsdf opaque_clearcoat = df::weighted_layer( weight: clearcoat_transparency, layer: ::df::tint( tint: clearcoat_tint, base: omni_PBR_bsdf), base: ::df::diffuse_reflection_bsdf( tint: clearcoat_tint) ); bsdf omni_PBR_coated_bsdf = df::fresnel_layer( ior: clearcoat_ior, weight: clearcoat_weight, layer: clearcoat_bsdf, base: opaque_clearcoat, normal: final_clearcoat_normal ); bsdf final_bsdf = enable_clearcoat ? omni_PBR_coated_bsdf : omni_PBR_bsdf; // Emission /*color emissive_mask = base::file_texture( texture: emissive_mask_texture, color_offset: color(0.0, 0.0, 0.0), color_scale: color(1.0, 1.0, 1.0), mono_source: base::mono_average, uvw: transformed_uvw, clip: false ).tint; */ color emissive_mask = tex::texture_isvalid(emissive_mask_texture) ? base::file_texture( texture: emissive_mask_texture, color_offset: color(0.0, 0.0, 0.0), color_scale: color(1.0, 1.0, 1.0), mono_source: base::mono_average, uvw: transformed_uvw, clip: false ).tint : color(1.0); // Opacity Map float opacity_value = enable_opacity_texture ? base::file_texture( texture: opacity_texture, mono_source: opacity_mode, uvw: transformed_uvw ).mono : opacity_constant; } in material( surface: material_surface( scattering: final_bsdf, emission: material_emission ( df::diffuse_edf(), intensity: enable_emission? emissive_color * emissive_mask * color(emissive_intensity) : color(0) ) ), geometry: material_geometry( normal: enable_clearcoat ? state::normal() : diffuse_gloss_normal, cutout_opacity: opacity_value ) );
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/omni/syntheticdata/tests/data/ds2_materials/drivable_surfaces/general/lanemarkings/lanemark_base.usda
#usda 1.0 ( customLayerData = { dictionary audioSettings = { double dopplerLimit = 2 double dopplerScale = 1 double nonSpatialTimeScale = 1 double spatialTimeScale = 1 double speedOfSound = 340 } dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (-6935.239931790033, -19547.074794813692, 5089.919351828601) double radius = 22297.085322303585 double3 target = (-6429.73102943551, -448.8277460206591, -6406.229319922064) } dictionary Right = { double3 position = (-50000, 0, -1.1102230246251565e-11) double radius = 500 double3 target = (0, 0, 0) } dictionary Top = { double3 position = (-6.494670421766199e-12, 50000, 1.1102230246251565e-11) double radius = 500 double3 target = (0, 0, 0) } string boundCamera = "/OmniverseKit_Persp" } dictionary renderSettings = { float "rtx:post:lensDistortion:cameraFocalLength" = 18.147562 } } defaultPrim = "M_Road_Lane_Lines" endTimeCode = 100 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Material "M_Road_Lane_Lines" { token outputs:mdl:displacement.connect = </M_Road_Lane_Lines/Shader.outputs:out> token outputs:mdl:surface.connect = </M_Road_Lane_Lines/Shader.outputs:out> token outputs:mdl:volume.connect = </M_Road_Lane_Lines/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @..\..\..\..\..\Projects\DS2-Content\USA\NV_SJ_AirportLoop\USD\materials\M_Road_Cracks.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "M_Road_Cracks" asset inputs:Albedo = @omniverse://drivesim-dev.ov.nvidia.com/Users/.derived/compressedTextures/Projects/DS2-Content/USA/NV_SJ_AirportLoop/USD/materials/M_Lane_Lines/ui0ndfjn_2K_Albedo.png.dds@ ( colorSpace = "sRGB" customData = { asset default = @omniverse://drivesim-dev/Projects/DS2-Content/USA/NV_SJ_AirportLoop/USD/materials/M_Road_Cracks/asphalt_crack_01_a_bc_ms.png@ } ) asset inputs:Asphault_Variation_Noise_A = @omniverse://drivesim-dev.ov.nvidia.com/Users/.derived/compressedTextures/Projects/DS2-Content/USA/NV_SJ_AirportLoop/USD/materials/M_Road_Cracks/blend_noise_a.png.dds@ ( colorSpace = "raw" customData = { asset default = @omniverse://drivesim-dev/Projects/DS2-Content/USA/NV_SJ_AirportLoop/USD/materials/M_Road_Cracks/blend_noise_a.png@ } ) asset inputs:Asphault_Variation_Noise_B = @omniverse://drivesim-dev.ov.nvidia.com/Users/.derived/compressedTextures/Projects/DS2-Content/USA/NV_SJ_AirportLoop/USD/materials/M_Road_Cracks/blend_noise_b.png.dds@ ( colorSpace = "raw" customData = { asset default = @omniverse://drivesim-dev/Projects/DS2-Content/USA/NV_SJ_AirportLoop/USD/materials/M_Road_Cracks/blend_noise_b.png@ } ) float inputs:Crack_Normal_Intensity = 1.25 ( customData = { float default = 1 dictionary range = { float max = 100000 float min = -100000 } } ) asset inputs:Normal = @omniverse://drivesim-dev.ov.nvidia.com/Users/.derived/compressedTextures/Projects/DS2-Content/USA/NV_SJ_AirportLoop/USD/materials/M_Lane_Lines/ui0ndfjn_2K_Normal.png.dds@ ( colorSpace = "raw" customData = { asset default = @omniverse://drivesim-dev/Projects/DS2-Content/USA/NV_SJ_AirportLoop/USD/materials/M_Road_Cracks/asphalt_crack_01_a_n_ms.png@ } ) asset inputs:Oil_Streaks_Overlay = @omniverse://drivesim-dev.ov.nvidia.com/Users/.derived/compressedTextures/Projects/DS2-Content/USA/NV_SJ_AirportLoop/USD/materials/M_Road_Cracks/oil_marks_.png.dds@ ( colorSpace = "raw" customData = { asset default = @omniverse://drivesim-dev/Projects/DS2-Content/USA/NV_SJ_AirportLoop/USD/materials/M_Road_Cracks/oil_marks_.png@ } ) asset inputs:Opacity = @omniverse://drivesim-dev.ov.nvidia.com/Users/.derived/compressedTextures/Projects/DS2-Content/USA/NV_SJ_AirportLoop/USD/materials/M_Lane_Lines/ui0ndfjn_2K_Opacity.png.dds@ ( colorSpace = "raw" customData = { asset default = @omniverse://drivesim-dev/Projects/DS2-Content/USA/NV_SJ_AirportLoop/USD/materials/M_Road_Cracks/asphalt_crack_01_a_opacity.png@ } ) float inputs:Opacity_Adjust = 0.425 ( customData = { float default = 1 dictionary range = { float max = 100000 float min = -100000 } } ) asset inputs:ORM = @omniverse://drivesim-dev.ov.nvidia.com/Users/.derived/compressedTextures/Projects/DS2-Content/USA/NV_SJ_AirportLoop/USD/materials/M_Lane_Lines/ui0ndfjn_2K_ORM.png.dds@ ( colorSpace = "raw" customData = { asset default = @omniverse://drivesim-dev/Projects/DS2-Content/USA/NV_SJ_AirportLoop/USD/materials/M_Road_Cracks/asphalt_crack_01_a_orm_ms.png@ } ) asset inputs:Puddle_Blend = @omniverse://drivesim-dev.ov.nvidia.com/Users/.derived/compressedTextures/Projects/DS2-Content/USA/NV_SJ_AirportLoop/USD/materials/M_Road_Cracks/blend_noise_a.png.dds@ ( colorSpace = "raw" customData = { asset default = @omniverse://drivesim-dev/Projects/DS2-Content/USA/NV_SJ_AirportLoop/USD/materials/M_Road_Cracks/blend_noise_a.png@ } ) float inputs:Road_Crack_WORLD_UV = 1 ( customData = { float default = 0 dictionary range = { float max = 100000 float min = -100000 } } ) token outputs:out } }
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/docs/CHANGELOG.md
# Changelog The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [0.2.4] - 2022-09-22 ### Changed - Update icon to match Viewport 2.0 style ## [0.2.3] - 2021-08-16 ### Fixed - Call dict.discard instead of non extistant dict.remove. ## [0.2.2] - 2021-05-18 ### Changed - Add dependency on omni.kit.viewport.utility ## [0.2.1] - 2022-03-23 ### Changed - Support Legacy and Modern Viewport ## [0.1.8] - 2021-12-10 ### Changed - Deprecated Depth and DepthLinear sensors and added DistanceToImagePlane and DistanceToCamera ### Added - Cross Correspondence Sensor ## [0.1.7] - 2021-10-16 ### Changed - Move synthetic data sensors to AOV outputs that can be specified in USD and used in OmniGraph nodes ## [0.1.6] - 2021-06-18 ### Fixed - Instance Segmentation is now always returned as uint32 - Fixed parsed segmentation mode - Fixed Pinhole projection which incorrectly used the camera's local transform instead of its world transform ### Added - Linear depth sensor mode ## [0.1.5] - 2021-03-11 ### Added - Motion Vector visualization and helper function ### Changed - BBox3D corners axis order to be Y-Up for consistency with USD API - All parsed data return uniqueId field, along with list of instanceIds - `instanceId` field removed from parsed output to avoid confusion with renderer instanceId - Add `get_instance` function to extension - Improve returned data of `get_occlusion_quadrant` for consistency with other sensors ### Fixed - Fix BBox3D parsed mode when dealing with nested transforms - Fix BBox3D camera_frame mode, previously returned incorrect values - Use seeded random generator for shuffling colours during visualization ## [0.1.4] - 2021-02-10 ### Changed - Moved to internal extension - Minor bug fixes ## [0.1.3] - 2021-02-05 ### Added - Python 3.7 support ### Changed - Bug fixes ## [0.1.2] - 2021-01-28 ### Added - Occlusion Quadrant Sensor - Metadata Sensor ### Changed - Metadata (SemanticSchemas of Type != 'class') added to sensor outputs - UI changed to better suit multi-viewport scenarios - Misc. sensor fixes and improvements ## [0.1.1] - 2021-01-25 - Linux support ## [0.1.0] - 2021-01-18 - Initial version
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/docs/README.md
# omni.syntheticdata ## Introduction This extension provides low level OmniGraph nodes for preparing synthetic data AOVs and annotator outputs for the higher level Omniverse Replicator extension. End user applications should use the Replicator APIs, rather than using this extension directly. The extension also includes support for older deprecated Omniverse Synthetic Data APIs. If you are currently using these older APIs, we suggest reviewing the newer Replicator APIs and switching to these. A preview visualization component is also included - this is accessible from the viewport synthetic data icon when the extension is installed.
eliabntt/GRADE-RR/isaac_internals/kit/extscore/omni.syntheticdata/docs/index.rst
omni.syntheticdata //////////////////////////# Introduction ************ This extension provides both C++ and python bindings that allow users to extract ground truth data from scenes loaded and rendered in Omniverse Kit and use it for DL/RL training purposes. Data can be accessed either in host memory or directly on device memory to provide high performance training. The scene data is provided by generating USD data that can be rendered through the Kit renderer. Core Concepts ************* Sensor ====== Ground truth data is accessed through various sensors that are associated with a view in the renderer. The sensors generally provide access to synthetic data and are either represented as images or buffers of attribute data. Attribute data elements are usually associated with a particular instance in a scene, which is usually represented by a mesh specified in the USD data. Sensors are objects that are managed by the user either through the API or the UI. Synthetic Image Data ==================== Synthetic image data is represented by sensors as a 2D image. Examples of synthetic image data include RGB data, depth data, and segmentation data. The data can be in any valid image format supported by the renderer. Synthetic Attribute Data ======================== Synthetic attribute data is represented by sensors as raw structured data that can be accessed as an array. The data structures used to store array elements depend on the type of sensor. Examples of synthetic attribute data include bounding boxes. See the data structures defined below to see how various attribute data arrays define their data. Instance ======== An instance is a single segmentation unit in a scene that is usually represented as a mesh. An instance is usually represented in sensor data as a unique unsigned integer ID. The renderer currently limits scenes to having 2^24 unique instances. Semantic Class ============== A semantic class is a classification given to a scene instance that can be used for training purposes. It is provided as a unique string and is usually represented in sensor data as a unique unsigned integer ID. Semantic class strings can be anything that will be used to identify scene instances, such as "car", "tree", "large", "broken", etc. The renderer currently limits scenes to having 2^16 unique semantic classes. Semantic class data is specified inside the USD scene data through the Semantic API schema. Segmentation ============ Segmentation data is usually represented by sensors as synthetic image data and is used to segment image data within a view. Examples include instance segmentation which will represent each pixel in the image data with an instance ID and semantic segmentation which will represent each pixel in the image data with a semantic ID. Accessing Data on Device Memory =============================== Device Memory is usually GPU memory. Synthetic data can be accessed directly on device memory with python by using PyTorch tensors. Accessing Data on Host Memory ============================= Device Memory is usually system memory. Synthetic data can be accessed directly on host memory with python through numpy arrays. Data Structures *************** Below are the various data structures specified by the C++ API and accessed through python using pybind. SensorType ========== .. code:: enum class SensorType : uint32_t { // These sensors represent image data eRgb = 0, ///< RGB data eDepth, ///< depth data eDepthLinear, ///< linear depth data (in meters) eInstanceSegmentation, ///< instance segmentation data eSemanticSegmentation, ///< semantic segmentation data eNormal, ///< normal vector data eMotionVector, ///< motion vector data // These sensors represent instance attribute data eBoundingBox2DTight, ///< tight 2D bounding box data, only contains non-occluded pixels eBoundingBox2DLoose, ///< loose 2D bounding box data, also contains occluded pixels eBoundingBox3D, ///< 3D view space bounding box data eOcclusion, ///< occlusion data eTruncation, ///< truncation data }; SensorResourceType ================== .. code:: enum class SensorResourceType { eTexture, ///< image data sensors eBuffer ///< attribute data sensors }; SensorInfo ========== .. code:: struct SensorInfo { SensorType type; ///< sensor type SensorResourceType resType; ///< sensor resource type union { struct { uint32_t width; ///< sensor width of texture sensors uint32_t height; ///< sensor height of texture sensors uint32_t bpp; ///< bytes per pixel stored for texture sensors uint32_t rowSize; ///< texture row stride in bytes } tex; struct { size_t size; ///< size in bytes of buffer sensors } buff; }; ///< sensor parameters }; BoundingBox2DValues =================== .. code:: struct BoundingBox2DValues { uint32_t instanceId; ///< instance ID uint32_t semanticId; ///< semantic ID int32_t x_min; ///< left extent int32_t y_min; ///< top extent int32_t x_max; ///< right extent int32_t y_max; ///< bottom extent }; BoundingBox3DValues =================== .. code:: struct BoundingBox3DValues { uint32_t instanceId; ///< instance ID uint32_t semanticId; ///< semantic ID float x_min; ///< left extent float y_min; ///< top extent float z_min; ///< front extent float x_max; ///< right extent float y_max; ///< bottom extent float z_max; ///< back extent }; OcclusionValues =============== .. code:: struct OcclusionValues { uint32_t instanceId; ///< instance ID uint32_t semanticId; ///< semantic ID float occlusionRatio; ///< ratio of instance that is occluded }; TruncationValues ================ .. code:: struct TruncationValues { uint32_t instanceId; ///< instance ID uint32_t semanticId; ///< semantic ID float truncationRatio; ///< ratio of instance that is truncated }; Python API Docs **************** Pybind API ========== .. code:: // Creates a sensor of specified type if none exist otherwise return the existing sensor. // // Args: // // arg0 (type): The sensor type to return create_sensor(sensors::SensorType type) .. code:: // Destroys the specified sensor. // // Args: // // arg0 (type): The sensor type to destroy destroy_sensor(sensors::SensorType type) .. code:: // Returns the width of the specified image sensor. // // Args: // // arg0 (type): The sensor to retrieve the width for get_sensor_width(carb::sensors::SensorType type) .. code:: // Returns the height of the specified image sensor. // // Args: // // arg0 (type): The sensor to retrieve the height for get_sensor_height(carb::sensors::SensorType type) .. code:: // Returns the bytes per pixel of the specified image sensor. // // Args: // // arg0 (type): The sensor to retrieve the bytes per pixel for get_sensor_bpp(carb::sensors::SensorType type) .. code:: // Returns the row size in bytes of the specified image sensor. // // Args: // // arg0 (type): The sensor to retrieve the row size for get_sensor_row_size(carb::sensors::SensorType type) .. code:: // Returns the size in bytes of the specified attribute sensor. // // Args: // // arg0 (type): The sensor to retrieve the size for get_sensor_size(carb::sensors::SensorType type) .. code:: // Returns a pointer to the sensor's data on device memory // // Args: // // arg0 (type): The sensor to retrieve the data for get_sensor_device_data(carb::sensors::SensorType type) .. code:: // Returns a pointer to the sensor's data on host memory // // Args: // // arg0 (type): The sensor to retrieve the host data for get_sensor_host_data(carb::sensors::SensorType type) .. code:: // Returns floating point tensor data of the image sensor on device memory // // Args: // // arg0 (type): The image sensor to retrieve the tensor data for // // arg1 (width): The width of the image sensor // // arg2 (height): The height of the image sensor // // arg3 (rowSize): The row size in bytes of the image sensor get_sensor_device_float_2d_tensor(carb::sensors::SensorType type, size_t width, size_t height, size_t rowSize) .. code:: // Returns 32-bit integer tensor data of the image sensor on device memory // // Args: // // arg0 (type): The image sensor to retrieve the tensor data for // // arg1 (width): The width of the image sensor // // arg2 (height): The height of the image sensor // // arg3 (rowSize): The row size in bytes of the image sensor get_sensor_device_int32_2d_tensor(carb::sensors::SensorType type, size_t width, size_t height, size_t rowSize) .. code:: // Returns 8-bit integer vector tensor data of the image sensor on device memory // // Args: // // arg0 (type): The image sensor to retrieve the tensor data for // // arg1 (width): The width of the image sensor // // arg2 (height): The height of the image sensor // // arg3 (rowSize): The row size in bytes of the image sensor get_sensor_device_uint8_3d_tensor(carb::sensors::SensorType type, size_t width, size_t height, size_t rowSize) .. code:: // Returns 32-bit integer numpy array data of the image sensor on host memory // // Args: // // arg0 (type): The image sensor to retrieve the numpy data for // // arg1 (width): The width of the image sensor // // arg2 (height): The height of the image sensor // // arg3 (rowSize): The row size in bytes of the image sensor get_sensor_host_uint32_texture_array(carb::sensors::SensorType type, size_t width, size_t height, size_t rowSize) .. code:: // Returns floating point numpy array data of the image sensor on host memory // // Args: // // arg0 (type): The image sensor to retrieve the numpy data for // // arg1 (width): The width of the image sensor // // arg2 (height): The height of the image sensor // // arg3 (rowSize): The row size in bytes of the image sensor get_sensor_host_float_texture_array(carb::sensors::SensorType type, size_t width, size_t height, size_t rowSize) .. code:: // Returns floating point numpy array data of the attribute sensor on host memory // // Args: // // arg0 (type): The attribute sensor to retrieve the numpy data for // // arg1 (size): The size of the attribute sensor in bytes get_sensor_host_float_buffer_array(carb::sensors::SensorType type, size_t size) .. code:: // Returns 32-bit unsigned integer numpy array data of the attribute sensor on host memory // // Args: // // arg0 (type): The attribute sensor to retrieve the numpy data for // // arg1 (size): The size of the attribute sensor in bytes get_sensor_host_uint32_buffer_array(carb::sensors::SensorType type, size_t size) .. code:: // Returns 32-bit signed integer numpy array data of the attribute sensor on host memory // // Args: // // arg0 (type): The attribute sensor to retrieve the numpy data for // // arg1 (size): The size of the attribute sensor in bytes get_sensor_host_int32_buffer_array(carb::sensors::SensorType type, size_t size) .. code:: // Returns a numpy array of BoundingBox2DValues data for the attribute sensor on host memory // // Args: // // arg0 (type): The attribute sensor to retrieve the numpy data for // // arg1 (size): The size of the attribute sensor in bytes get_sensor_host_bounding_box_2d_buffer_array(carb::sensors::SensorType type, size_t size) .. code:: // Returns a numpy array of BoundingBox3DValues data for the attribute sensor on host memory // // Args: // // arg0 (type): The attribute sensor to retrieve the numpy data for // // arg1 (size): The size of the attribute sensor in bytes get_sensor_host_bounding_box_3d_buffer_array(carb::sensors::SensorType type, size_t size) .. code:: // Returns a numpy array of OcclusionValues data for the attribute sensor on host memory // // Args: // // arg0 (type): The attribute sensor to retrieve the numpy data for // // arg1 (size): The size of the attribute sensor in bytes get_sensor_host_occlusion_buffer_array(carb::sensors::SensorType type, size_t size) .. code:: // Returns a numpy array of TruncationValues data for the attribute sensor on host memory (TODO) // // Args: // // arg0 (type): The attribute sensor to retrieve the numpy data for // // arg1 (size): The size of the attribute sensor in bytes get_sensor_host_truncation_buffer_array(carb::sensors::SensorType type, size_t size) .. code:: // Returns the instance ID of the specified mesh as represented by sensor data // // Args: // // arg0 (uri): The representation of the mesh in the USD scene get_instance_segmentation_id(const char* uri) .. code:: // Returns the semantic ID of the specified name and type as represented by sensor data // // Args: // // arg0 (type): The semantic type name // // arg1 (data): The semantic data name get_semantic_segmentation_id_from_data(const char* type, const char* data) .. code:: // Returns the semantic class name of the semantic ID represented by sensor data // // Args: // // arg0 (semanticId): The semantic ID get_semantic_segmentation_data_from_id(uint16_t semanticId) .. code:: // Specify which semantic classes to retrieve bounding boxes for // // Args: // // arg0 (semanticId): The semantic ID to retrieve bounding boxes for set_bounding_box_semantic_segmentation_id(uint16_t semanticId) .. code:: // Specify which semantic classes to retrieve bounding boxes for // // Args: // // arg0 (data): The semantic data class name to retrieve bounding boxes for set_bounding_box_semantic_segmentation_data(std::string data)
zhehuazhou/ai-cps-robotics-benchmark/README.md
# Towards Building AI-CPS with NVIDIA Isaac Sim: An Industrial Benchmark and Case Study for Robotics Manipulation This folder contains all revelant code for the paper "Towards Building AI-CPS with NVIDIA Isaac Sim: An Industrial Benchmark and Case Study for Robotics Manipulation". ## Benchmark of Robotics Manipulation ### Requirements: 1. Install Omniverse Isaac Sim: https://docs.omniverse.nvidia.com/app_isaacsim/app_isaacsim/install_basic.html 2. Add Isaac Sim to PYTHON_PATH (with default installation location of ISAAC SIM) ``` alias PYTHON_PATH=~/.local/share/ov/pkg/isaac_sim-*/python.sh ``` 2. Install Omniverse Isaac GYM Envs: https://github.com/NVIDIA-Omniverse/OmniIsaacGymEnvs 3. Install SKRL, RTAMT, and Scipy in the Isaac Sim Python environment (the latter two are used for falsification): go to the Isaac folder, and run ``` ./python.sh -m pip install skrl rtamt scipy ``` ### Run the learning process: To run SKRL with provided task environments (example): ``` cd Gym_Envs/ PYTHON_PATH skrl_train_PPO.py task=FrankaBallBalancing num_envs=16 headless=False ``` To launch Tensorboard: ``` PYTHON_PATH -m tensorboard.main --logdir runs/FrankaBallBalancing/summaries/ ``` ## Falsification Tool To run the falsification test for pre-trained agent, run: ``` cd Falsification_Tool/ PYTHON_PATH manipulator_testing.py headless=False ``` ## Performance Evaluation The performance evaluation uses the same framework as the falsification tool, but with the optimizer set to "random": ``` cd Evaluation/ PYTHON_PATH manipulator_eval.py headless=False ```
zhehuazhou/ai-cps-robotics-benchmark/Evaluation/manipulator_eval.py
from eval_model.skrl_oige_model import skrl_oige_model from eval_monitor.stl_dense_offline import stl_dense_offline_monitor from eval_optimizer.optimizer import Optimizer import os if __name__ == "__main__": # Config inputs agent_type = "PPO" # TRPO, PPO omniisaacgymenvs_path = os.path.realpath( os.path.join(os.path.realpath(__file__), "../../Gym_Envs") ) agent_path = ( omniisaacgymenvs_path + "/Final_Policy/BallBalancing/BallBalancing_skrl_" + agent_type + "/checkpoints/best_agent.pt" ) # Task choice: PointReaching, PegInHole, DoorOpen, # BallBalancing, BallPushing, BallCatching # CubeStacking, ClothPlacing task_name = "FrankaBallBalancing" simulation_max_steps = 300 num_envs = 1 opt_types = ["random"] global_budget = 1 local_budget = 100 # Load model under test (drl agent + oige env) is_action_noise = True test_model = skrl_oige_model( agent_path=agent_path, agent_type=agent_type, task_name=task_name, num_envs=num_envs, timesteps=simulation_max_steps, is_action_noise= is_action_noise ) for opt_type in opt_types: # Load STL monitor based on task monitor = stl_dense_offline_monitor(task_name=task_name, agent_type=agent_type) # global search for i in range(global_budget): # print("Global trial: " + str(i)) # Create optimizer optimizer = Optimizer( task_name, test_model, monitor, opt_type=opt_type, budget_size=local_budget, ) # local search results = optimizer.optimize() print(results) # close simulation environment test_model.close_env()
zhehuazhou/ai-cps-robotics-benchmark/Evaluation/eval_monitor/stl_dense_offline.py
from rtamt import STLDenseTimeSpecification from typing import Optional import sys class stl_dense_offline_monitor(object): """STL dense time offline monitor based rtamt agent_path: the path to the agent parameters (checkpoint) oige_path: path to the OIGE environment; agent_type: type of DRL agent (PPO, DDPG, TRPO) task_name: the name of the task num_envs: the number of parallel running environments """ def __init__( self, task_name: Optional[str] = None, agent_type: Optional[str] = None, oige_path: Optional[str] = None, ): if task_name is not None: self.task_name = task_name else: self.task_name = "FrankaBallPushing" self.agent_type = agent_type self.generate_spec() # generate specification based on task name def generate_spec(self): # Initialization self.spec = STLDenseTimeSpecification() self.spec.name = "STL Dense-time Offline Monitor" ############################################### # Specification according to task # Ball Pushing if self.task_name is "FrankaBallPushing": self.spec.declare_var("distance_ball_hole", "float") self.spec.spec = "eventually[1:299](distance_ball_hole <= 0.3) " # Ball Balancing elif self.task_name is "FrankaBallBalancing": self.spec.declare_var("distance_ball_tool", "float") self.spec.spec = "always[50:200]( distance_ball_tool <= 0.25)" # Ball Catching elif self.task_name is "FrankaBallCatching": self.spec.declare_var("distance_ball_tool", "float") self.spec.spec = "always[50:299]( distance_ball_tool <= 0.1)" # Cube Stacking elif self.task_name is "FrankaCubeStacking": self.spec.declare_var("distance_cube", "float") self.spec.declare_var("z_cube_distance", "float") self.spec.spec = ( "eventually[1:299]((distance_cube<= 0.024) and (z_cube_distance>0) )" ) # Door Open elif self.task_name is "FrankaDoorOpen": self.spec.declare_var("yaw_door", "float") self.spec.spec = "eventually[1:299]( yaw_door >= 20)" # Peg In Hole elif self.task_name is "FrankaPegInHole": self.spec.declare_var("distance_tool_hole", "float") self.spec.spec = "always[250:299]( distance_tool_hole <= 0.1)" # Point Reaching elif self.task_name is "FrankaPointReaching": self.spec.declare_var("distance_finger_target", "float") self.spec.spec = "always[50:299]( distance_finger_target <= 0.12)" # fixed # Cloth Placing elif self.task_name is "FrankaClothPlacing": self.spec.declare_var("distance_cloth_target", "float") self.spec.declare_var("cloth_height", "float") self.spec.spec = "eventually[1:299]( (distance_cloth_target <= 0.25))" # and (cloth_height > 0.1) )" else: raise ValueError("Task name unknown for defining the specification") ################################################ # Load specification try: self.spec.parse() except rtamt.STLParseException as err: print("STL Parse Exception: {}".format(err)) sys.exit() # Compute the robustness given trace def compute_robustness(self, trace): if self.task_name is "FrankaBallPushing": # print(trace) robustness = self.spec.evaluate(["distance_ball_hole", trace]) # print(robustness) elif self.task_name is "FrankaBallBalancing": robustness = self.spec.evaluate(["distance_ball_tool", trace]) elif self.task_name is "FrankaBallCatching": robustness = self.spec.evaluate(["distance_ball_tool", trace]) elif self.task_name is "FrankaCubeStacking": distance_cube = trace["distance_cube"] z_cube_distance = trace["z_cube_distance"] robustness = self.spec.evaluate( ["distance_cube", distance_cube], ["z_cube_distance", z_cube_distance] ) elif self.task_name is "FrankaDoorOpen": robustness = self.spec.evaluate(["yaw_door", trace]) elif self.task_name is "FrankaPegInHole": robustness = self.spec.evaluate(["distance_tool_hole", trace]) elif self.task_name is "FrankaPointReaching": robustness = self.spec.evaluate(["distance_finger_target", trace]) elif self.task_name is "FrankaClothPlacing": distance_cloth_target = trace["distance_cloth_target"] cloth_height = trace["cloth_height"] # print("distance") # print(distance_cloth_target) # print(cloth_height) robustness = self.spec.evaluate( ["distance_cloth_target", distance_cloth_target]#, ["cloth_height", cloth_height] ) # print("rob: ") # print(robustness) else: raise ValueError("Task name unknown for defining the specification") return robustness
zhehuazhou/ai-cps-robotics-benchmark/Evaluation/eval_model/skrl_oige_model.py
import os import torch from typing import Optional from .load_oige import load_oige_test_env from .agent.PPO_agent import create_skrl_ppo_agent from .agent.TRPO_agent import create_skrl_trpo_agent from skrl.envs.torch import wrap_env class skrl_oige_model(object): """Testing environment model based on SKRL and Omniverse Isaac Gym Environments (OIGE) agent_path: the path to the agent parameters (checkpoint) oige_path: path to the OIGE environment; agent_type: type of DRL agent (PPO, DDPG, TRPO) task_name: the name of the task num_envs: the number of parallel running environments """ def __init__( self, agent_path: str, oige_path: Optional[str] = None, agent_type: Optional[str] = None, task_name: Optional[str] = None, timesteps: Optional[int] = 10000, num_envs: Optional[int] = 1, headless: Optional[bool] = False, is_action_noise: Optional[bool] = False, ): # setup if oige_path is not None: self.oige_path = oige_path else: self.oige_path = os.path.realpath( os.path.join(os.path.realpath(__file__), "../../../Gym_Envs") ) if agent_type is not None: self.agent_type = agent_type else: self.agent_type = "PPO" if task_name is not None: self.task_name = task_name else: self.task_name = "FrankaBallPushing" self.agent_path = agent_path self.timesteps = timesteps self.headless = headless # Load OIGE env with skrl wrapper self.num_envs = num_envs # for testing, we use only 1 env for now env = load_oige_test_env( task_name=self.task_name, omniisaacgymenvs_path=self.oige_path, num_envs=self.num_envs, ) self.env = wrap_env(env) self.env._env.set_as_test() # if action noise is required if is_action_noise is True: self.env._env.set_action_noise() # Load agent if self.agent_type is "PPO": self.agent = create_skrl_ppo_agent(self.env, self.agent_path) elif self.agent_type is "TRPO": self.agent = create_skrl_trpo_agent(self.env, self.agent_path) else: raise ValueError("Agent type unknown.") # Initialize agent # cfg_trainer = {"timesteps": self.timesteps, "headless": self.headless} self.agent.init() if self.num_envs == 1: self.agent.set_running_mode("eval") else: raise ValueError("Currently only one environment (agent) is supported") # close env def close_env(self): self.env.close() # Compute the trace w.r.t a given initial condition def compute_trace(self, initial_value): # set initial configuration self.env._env.set_initial_test_value(initial_value) # reset env states, infos = self.env.reset() # initialize trace trace = states # simulation loop for timestep in range(self.timesteps): # compute actions with torch.no_grad(): actions = self.agent.act( states, timestep=timestep, timesteps=self.timesteps )[0] # step the environments next_states, rewards, terminated, truncated, infos = self.env.step(actions) # render scene if not self.headless: self.env.render() # record trace states.copy_(next_states) trace = torch.vstack([trace, states]) # terminate simulation with torch.no_grad(): if terminated.any() or truncated.any(): break return trace # Merge trace based on the task type def merge_trace(self, trace): if self.task_name is "FrankaBallPushing": # Ball hole distance ball_hole_distance = trace[:, 24:27].detach().cpu() ball_hole_distance = torch.norm(ball_hole_distance, p=2, dim=-1) ball_Z_pos = trace[:, 29].detach().cpu() # create index trace_length = list(ball_hole_distance.size())[0] times = torch.linspace(1, trace_length, steps=trace_length) # convert to list for computing robustness indexed_trace = torch.vstack((times, ball_hole_distance)) indexed_trace = torch.transpose(indexed_trace, 0, 1).tolist() elif self.task_name is "FrankaBallBalancing": # Ball tool distance ball_tool_distance = trace[:, 21:23].detach().cpu() ball_tool_distance = torch.norm(ball_tool_distance, p=2, dim=-1) # create index trace_length = list(ball_tool_distance.size())[0] times = torch.linspace(1, trace_length, steps=trace_length) # convert to list for computing robustness indexed_trace = torch.vstack((times, ball_tool_distance)) indexed_trace = torch.transpose(indexed_trace, 0, 1).tolist() elif self.task_name is "FrankaBallCatching": # Ball tool distance ball_tool_distance = trace[:, 21:23].detach().cpu() ball_tool_distance = torch.norm(ball_tool_distance, p=2, dim=-1) # create index trace_length = list(ball_tool_distance.size())[0] times = torch.linspace(1, trace_length, steps=trace_length) # convert to list for computing robustness indexed_trace = torch.vstack((times, ball_tool_distance)) indexed_trace = torch.transpose(indexed_trace, 0, 1).tolist() elif self.task_name is "FrankaCubeStacking": # Cube distance cube_distance = trace[:, 25:27].detach().cpu() cube_distance = torch.norm(cube_distance, p=2, dim=-1) # Cube height cube_height_distance = trace[:, 27].detach().cpu() # create index trace_length = list(cube_distance.size())[0] times = torch.linspace(1, trace_length, steps=trace_length) # convert to list for computing robustness indexed_cube_distance = torch.vstack((times, cube_distance)) indexed_cube_distance = torch.transpose( indexed_cube_distance, 0, 1 ).tolist() indexed_cube_height_distance = torch.vstack((times, cube_height_distance)) indexed_cube_height_distance = torch.transpose( indexed_cube_height_distance, 0, 1 ).tolist() indexed_trace = { "distance_cube": indexed_cube_distance, "z_cube_distance": indexed_cube_height_distance, } elif self.task_name is "FrankaDoorOpen": # Ball tool distance handle_rot = trace[:, 21:25].detach().cpu() handle_yaw = torch.atan2( 2.0 * ( handle_rot[:, 0] * handle_rot[:, 3] + handle_rot[:, 1] * handle_rot[:, 2] ), 1.0 - 2.0 * ( handle_rot[:, 2] * handle_rot[:, 2] + handle_rot[:, 3] * handle_rot[:, 3] ), ) handle_yaw = torch.rad2deg(handle_yaw) # create index trace_length = list(handle_yaw.size())[0] times = torch.linspace(1, trace_length, steps=trace_length) # convert to list for computing robustness indexed_trace = torch.vstack((times, handle_yaw)) indexed_trace = torch.transpose(indexed_trace, 0, 1).tolist() elif self.task_name is "FrankaPegInHole": # Ball tool distance tool_hole_distance = trace[:, 25:27].detach().cpu() tool_hole_distance = torch.norm(tool_hole_distance, p=2, dim=-1) # print(tool_hole_distance) # create index trace_length = list(tool_hole_distance.size())[0] times = torch.linspace(1, trace_length, steps=trace_length) # convert to list for computing robustness indexed_trace = torch.vstack((times, tool_hole_distance)) indexed_trace = torch.transpose(indexed_trace, 0, 1).tolist() elif self.task_name is "FrankaPointReaching": # Ball tool distance finger_target_distance = trace[:, 24:27].detach().cpu() finger_target_distance = torch.norm(finger_target_distance, p=2, dim=-1) # create index trace_length = list(finger_target_distance.size())[0] times = torch.linspace(1, trace_length, steps=trace_length) # convert to list for computing robustness indexed_trace = torch.vstack((times, finger_target_distance)) indexed_trace = torch.transpose(indexed_trace, 0, 1).tolist() elif self.task_name is "FrankaClothPlacing": # Cube distance cloth_target_distance = trace[:, 21:24].detach().cpu() cloth_target_distance = torch.norm(cloth_target_distance, p=2, dim=-1) # Cube height cloth_height = trace[:, 20].detach().cpu() # create index trace_length = list(cloth_target_distance.size())[0] times = torch.linspace(1, trace_length, steps=trace_length) # convert to list for computing robustness indexed_distance_cloth_target = torch.vstack((times, cloth_target_distance)) indexed_distance_cloth_target = torch.transpose( indexed_distance_cloth_target, 0, 1 ).tolist() indexed_cloth_height = torch.vstack((times, cloth_height)) indexed_cloth_height = torch.transpose( indexed_cloth_height, 0, 1 ).tolist() indexed_trace = { "distance_cloth_target": indexed_distance_cloth_target, "cloth_height": indexed_cloth_height, } else: raise ValueError("Task name unknown for merging the trace") return indexed_trace
zhehuazhou/ai-cps-robotics-benchmark/Evaluation/eval_model/load_oige.py
""" This is a copy from SKRL's implementation of loading oige environment, with modifications for generating testing oige environment """ import sys import os from contextlib import contextmanager def _omegaconf_to_dict(config) -> dict: """Convert OmegaConf config to dict :param config: The OmegaConf config :type config: OmegaConf.Config :return: The config as dict :rtype: dict """ # return config.to_container(dict) from omegaconf import DictConfig d = {} for k, v in config.items(): d[k] = _omegaconf_to_dict(v) if isinstance(v, DictConfig) else v return d def _print_cfg(d, indent=0) -> None: """Print the environment configuration :param d: The dictionary to print :type d: dict :param indent: The indentation level (default: 0) :type indent: int, optional """ for key, value in d.items(): if isinstance(value, dict): _print_cfg(value, indent + 1) else: print(' | ' * indent + " |-- {}: {}".format(key, value)) def load_oige_test_env(task_name: str = "", omniisaacgymenvs_path: str = "", num_envs: int = 1, show_cfg: bool = True, timeout: int = 30): """Load an Omniverse Isaac Gym environment, this is a slight modification of SKRL's implementation :param task_name: The name of the task (default: ""). If not specified, the task name is taken from the command line argument (``task=TASK_NAME``). Command line argument has priority over function parameter if both are specified :type task_name: str, optional :param omniisaacgymenvs_path: The path to the ``omniisaacgymenvs`` directory (default: ""). If empty, the path will obtained from omniisaacgymenvs package metadata :type omniisaacgymenvs_path: str, optional :param show_cfg: Whether to print the configuration (default: True) :type show_cfg: bool, optional :param timeout: Seconds to wait for data when queue is empty in multi-threaded environment (default: 30) :type timeout: int, optional :raises ValueError: The task name has not been defined, neither by the function parameter nor by the command line arguments :raises RuntimeError: The omniisaacgymenvs package is not installed or the path is wrong :return: Omniverse Isaac Gym environment :rtype: omni.isaac.gym.vec_env.vec_env_base.VecEnvBase or omni.isaac.gym.vec_env.vec_env_mt.VecEnvMT """ import torch from hydra.types import RunMode from hydra._internal.hydra import Hydra from hydra._internal.utils import create_automatic_config_search_path, get_args_parser from omegaconf import OmegaConf from omni.isaac.gym.vec_env import VecEnvBase, TaskStopException import omniisaacgymenvs sys.argv.append("task={}".format(task_name)) sys.argv.append("num_envs={}".format(num_envs)) # get omniisaacgymenvs path from omniisaacgymenvs package metadata if omniisaacgymenvs_path == "": if not hasattr(omniisaacgymenvs, "__path__"): raise RuntimeError("omniisaacgymenvs package is not installed") omniisaacgymenvs_path = list(omniisaacgymenvs.__path__)[0] config_path = os.path.join(omniisaacgymenvs_path, "cfg") # set omegaconf resolvers OmegaConf.register_new_resolver('eq', lambda x, y: x.lower() == y.lower()) OmegaConf.register_new_resolver('contains', lambda x, y: x.lower() in y.lower()) OmegaConf.register_new_resolver('if', lambda condition, a, b: a if condition else b) OmegaConf.register_new_resolver('resolve_default', lambda default, arg: default if arg == '' else arg) # get hydra config without use @hydra.main config_file = "config" args = get_args_parser().parse_args() search_path = create_automatic_config_search_path(config_file, None, config_path) hydra_object = Hydra.create_main_hydra2(task_name='load_omniisaacgymenv', config_search_path=search_path) config = hydra_object.compose_config(config_file, args.overrides, run_mode=RunMode.RUN) cfg = {} cfg["task"] = _omegaconf_to_dict(config.task) cfg["task_name"] = config.task_name cfg["experiment"] = config.experiment cfg["num_envs"] = config.num_envs cfg["seed"] = config.seed cfg["torch_deterministic"] = config.torch_deterministic cfg["max_iterations"] = config.max_iterations cfg["physics_engine"] = config.physics_engine cfg["pipeline"] = config.pipeline cfg["sim_device"] = config.sim_device cfg["device_id"] = config.device_id cfg["rl_device"] = config.rl_device cfg["num_threads"] = config.num_threads cfg["solver_type"] = config.solver_type cfg["test"] = config.test cfg["checkpoint"] = config.checkpoint cfg["headless"] = config.headless # print config if show_cfg: print("\nOmniverse Isaac Gym environment ({})".format(config.task.name)) _print_cfg(cfg) # internal classes class _OmniIsaacGymVecEnv(VecEnvBase): def step(self, actions): actions = torch.clamp(actions, -self._task.clip_actions, self._task.clip_actions).to(self._task.device).clone() self._task.pre_physics_step(actions) for _ in range(self._task.control_frequency_inv): self._world.step(render=self._render) self.sim_frame_count += 1 observations, rewards, dones, info = self._task.post_physics_step() return {"obs": torch.clamp(observations, -self._task.clip_obs, self._task.clip_obs).to(self._task.rl_device).clone()}, \ rewards.to(self._task.rl_device).clone(), dones.to(self._task.rl_device).clone(), info.copy() def set_as_test(self): self._task.set_as_test() def set_action_noise(self): self._task.set_action_noise() def set_initial_test_value(self, value): self._task.set_initial_test_value(value) def reset(self): self._task.reset() actions = torch.zeros((self.num_envs, self._task.num_actions), device=self._task.device) return self.step(actions)[0] # load environment sys.path.append(omniisaacgymenvs_path) from utils.task_util import initialize_task env = _OmniIsaacGymVecEnv(headless=config.headless) task = initialize_task(cfg, env, init_sim=True) return env
zhehuazhou/ai-cps-robotics-benchmark/Evaluation/eval_model/agent/TRPO_agent.py
""" Create PPO agent based on SKRL implementation """ import torch.nn as nn import torch from skrl.models.torch import Model, GaussianMixin, DeterministicMixin from skrl.agents.torch.trpo import TRPO, TRPO_DEFAULT_CONFIG from skrl.resources.preprocessors.torch import RunningStandardScaler # Define the models (stochastic and deterministic models) for the agent using mixins. # - Policy: takes as input the environment's observation/state and returns an action # - Value: takes the state as input and provides a value to guide the policy class Policy_2_Layers(GaussianMixin, Model): def __init__(self, observation_space, action_space, device, clip_actions=False, clip_log_std=True, min_log_std=-20, max_log_std=2): Model.__init__(self, observation_space, action_space, device) GaussianMixin.__init__(self, clip_actions, clip_log_std, min_log_std, max_log_std) self.net = nn.Sequential(nn.Linear(self.num_observations, 512), nn.ELU(), nn.Linear(512, 256), nn.ELU(), nn.Linear(256, self.num_actions)) self.log_std_parameter = nn.Parameter(torch.zeros(self.num_actions)) def compute(self, inputs, role): return self.net(inputs["states"]), self.log_std_parameter, {} class Policy_3_Layers(GaussianMixin, Model): def __init__(self, observation_space, action_space, device, clip_actions=False, clip_log_std=True, min_log_std=-20, max_log_std=2): Model.__init__(self, observation_space, action_space, device) GaussianMixin.__init__(self, clip_actions, clip_log_std, min_log_std, max_log_std) self.net = nn.Sequential(nn.Linear(self.num_observations, 512), nn.ELU(), nn.Linear(512, 256), nn.ELU(), nn.Linear(256, 128), nn.ELU(), nn.Linear(128, self.num_actions)) self.log_std_parameter = nn.Parameter(torch.zeros(self.num_actions)) def compute(self, inputs, role): return self.net(inputs["states"]), self.log_std_parameter, {} class Value_2_Layers(DeterministicMixin, Model): def __init__(self, observation_space, action_space, device, clip_actions=False): Model.__init__(self, observation_space, action_space, device) DeterministicMixin.__init__(self, clip_actions) self.net = nn.Sequential(nn.Linear(self.num_observations, 512), nn.ELU(), nn.Linear(512, 256), nn.ELU(), nn.Linear(256, 1)) def compute(self, inputs, role): return self.net(inputs["states"]), {} class Value_3_Layers(DeterministicMixin, Model): def __init__(self, observation_space, action_space, device, clip_actions=False): Model.__init__(self, observation_space, action_space, device) DeterministicMixin.__init__(self, clip_actions) self.net = nn.Sequential(nn.Linear(self.num_observations, 512), nn.ELU(), nn.Linear(512, 256), nn.ELU(), nn.Linear(256, 128), nn.ELU(), nn.Linear(128, 1)) def compute(self, inputs, role): return self.net(inputs["states"]), {} # Create SKRL PPO agent def create_skrl_trpo_agent(env, agent_path): device = env.device models_trpo_2_layer = {} models_trpo_2_layer["policy"] = Policy_2_Layers(env.observation_space, env.action_space, device) models_trpo_2_layer["value"] = Value_2_Layers(env.observation_space, env.action_space, device) models_trpo_3_layer = {} models_trpo_3_layer["policy"] = Policy_3_Layers(env.observation_space, env.action_space, device) models_trpo_3_layer["value"] = Value_3_Layers(env.observation_space, env.action_space, device) # Configs cfg_trpo = TRPO_DEFAULT_CONFIG.copy() cfg_trpo["state_preprocessor"] = RunningStandardScaler cfg_trpo["state_preprocessor_kwargs"] = {"size": env.observation_space, "device": device} cfg_trpo["value_preprocessor"] = RunningStandardScaler cfg_trpo["value_preprocessor_kwargs"] = {"size": 1, "device": device} # no log to TensorBoard and write checkpoints cfg_trpo["experiment"]["write_interval"] = 0 cfg_trpo["experiment"]["checkpoint_interval"] = 0 try: # Initialize and load agent with 2 layers agent = TRPO(models=models_trpo_2_layer, memory=None, cfg=cfg_trpo, observation_space=env.observation_space, action_space=env.action_space, device=device) agent.load(agent_path) except: # Initialize and load agent with 3 layers agent = TRPO(models=models_trpo_3_layer, memory=None, cfg=cfg_trpo, observation_space=env.observation_space, action_space=env.action_space, device=device) agent.load(agent_path) return agent
zhehuazhou/ai-cps-robotics-benchmark/Evaluation/eval_model/agent/PPO_agent.py
""" Create PPO agent based on SKRL implementation """ import torch.nn as nn import torch from skrl.models.torch import Model, GaussianMixin, DeterministicMixin from skrl.agents.torch.ppo import PPO, PPO_DEFAULT_CONFIG from skrl.resources.preprocessors.torch import RunningStandardScaler # Define the shared model (stochastic and deterministic models) for the agent using mixins. class Shared(GaussianMixin, DeterministicMixin, Model): def __init__(self, observation_space, action_space, device, clip_actions=False, clip_log_std=True, min_log_std=-20, max_log_std=2, reduction="sum"): Model.__init__(self, observation_space, action_space, device) GaussianMixin.__init__(self, clip_actions, clip_log_std, min_log_std, max_log_std, reduction) DeterministicMixin.__init__(self, clip_actions) self.net = nn.Sequential(nn.Linear(self.num_observations, 512), nn.ELU(), nn.Linear(512, 256), nn.ELU(), nn.Linear(256, 128), nn.ELU()) self.mean_layer = nn.Linear(128, self.num_actions) self.log_std_parameter = nn.Parameter(torch.zeros(self.num_actions)) self.value_layer = nn.Linear(128, 1) def act(self, inputs, role): if role == "policy": return GaussianMixin.act(self, inputs, role) elif role == "value": return DeterministicMixin.act(self, inputs, role) def compute(self, inputs, role): if role == "policy": return self.mean_layer(self.net(inputs["states"])), self.log_std_parameter, {} elif role == "value": return self.value_layer(self.net(inputs["states"])), {} # Create SKRL PPO agent def create_skrl_ppo_agent(env, agent_path): device = env.device models_ppo = {} models_ppo["policy"] = Shared(env.observation_space, env.action_space, device) models_ppo["value"] = models_ppo["policy"] # same instance: shared model # Configs cfg_ppo = PPO_DEFAULT_CONFIG.copy() cfg_ppo["state_preprocessor"] = RunningStandardScaler cfg_ppo["state_preprocessor_kwargs"] = {"size": env.observation_space, "device": device} cfg_ppo["value_preprocessor"] = RunningStandardScaler cfg_ppo["value_preprocessor_kwargs"] = {"size": 1, "device": device} # logging to TensorBoard each 100 timesteps and ignore checkpoints cfg_ppo["experiment"]["write_interval"] = 0 cfg_ppo["experiment"]["checkpoint_interval"] = 0 # Initialize and load agent agent = PPO(models=models_ppo, memory=None, cfg=cfg_ppo, observation_space=env.observation_space, action_space=env.action_space, device=device) agent.load(agent_path) return agent
zhehuazhou/ai-cps-robotics-benchmark/Evaluation/eval_optimizer/optimizer.py
from typing import Optional import sys import numpy as np import torch import time from scipy.optimize import minimize from scipy.optimize import dual_annealing class Optimizer(object): """Optimizer class for testing task_name: the task name of environment test_model: the model under test monitor: the monitor for the STL specification """ def __init__( self, task_name, test_model, monitor, opt_type: Optional[str] = "random", budget_size: Optional[int] = 1000, ): self.task_name = task_name self.test_model = test_model self.monitor = monitor self.opt_type = opt_type self.budget_size = budget_size self.fal_succ = False self.start_time = time.time() self.fal_time = 0 self.fal_sim = 0 self.worst_rob = 1000 # generate initial values based on the task type def generate_initial(self): if self.task_name is "FrankaBallPushing": # ball inside an area x:[-0.1,0.1], y:[-0.1,0.1] value_1 = np.random.rand(1) * (0.1 + 0.1) - 0.1 value_2 = np.random.rand(1) * (0.1 + 0.1) - 0.1 initial_value = np.hstack((value_1, value_2)) elif self.task_name is "FrankaBallBalancing": # ball inside an area x:[-0.15,0.15], y:[-0.15,0.15] value_1 = np.random.rand(1) * (0.15 + 0.15) - 0.15 value_2 = np.random.rand(1) * (0.15 + 0.15) - 0.15 initial_value = np.hstack((value_1, value_2)) elif self.task_name is "FrankaBallCatching": # ball inside an area x:[-0.1,0.1], y:[-0.1,0.1] # ball velociry: vx: [1.0,1.5], vy: [0.0,0.2] value_1 = np.random.rand(1) * (0.05 + 0.05) - 0.05 value_2 = np.random.rand(1) * (0.05 + 0.05) - 0.05 value_3 = np.random.rand(1) * (1.0 - 1.0) + 1.0 value_4 = np.random.rand(1) * (0.0 + 0.0) + 0.0 initial_value = np.hstack((value_1, value_2, value_3, value_4)) elif self.task_name is "FrankaCubeStacking": # target cube inside an area x:[-0.2,0.2], y:[-0.2,0.2] value_1 = np.random.rand(1) * (0.2 + 0.2) - 0.2 value_2 = np.random.rand(1) * (0.2 + 0.2) - 0.2 initial_value = np.hstack((value_1, value_2)) elif self.task_name is "FrankaDoorOpen": # target inside an area x:[-0.1,0.1], y:[-0.4,0.4] value_1 = np.random.rand(1) * (0.005 + 0.005) - 0.005 value_2 = np.random.rand(1) * (0.025 + 0.025) - 0.025 initial_value = np.hstack((value_1, value_2)) elif self.task_name is "FrankaPegInHole": # target inside an area x:[-0.2,0.2], y:[-0.2,0.2] value_1 = np.random.rand(1) * (0.1 + 0.1) - 0.1 value_2 = np.random.rand(1) * (0.1 + 0.1) - 0.1 initial_value = np.hstack((value_1, value_2)) elif self.task_name is "FrankaPointReaching": # target inside an area x:[-0.2,0.2], y:[-0.4,0.4], z:[-0.2,0.2] value_1 = np.random.rand(1) * (0.2 + 0.2) - 0.2 value_2 = np.random.rand(1) * (0.4 + 0.4) - 0.4 value_3 = np.random.rand(1) * (0.2 + 0.2) - 0.2 initial_value = np.hstack((value_1, value_2, value_3)) elif self.task_name is "FrankaClothPlacing": # target inside an area x:[-0.1,0.2], y:[-0.35,0.35] value_1 = np.random.rand(1) * (0.2 + 0.1) - 0.1 value_2 = np.random.rand(1) * (0.35 + 0.35) - 0.35 initial_value = np.hstack((value_1, value_2)) else: raise ValueError("Task name unknown for generating the initial values") return initial_value # Generate one function (input: initial values, output: robustness) for testing algorithms def robustness_function(self, initial_value): # print("Initial Value:", initial_value) # Get trace trace = self.test_model.compute_trace(initial_value) indexed_trace = self.test_model.merge_trace(trace) # compute robustness rob_sequence = self.monitor.compute_robustness(indexed_trace) rob_sequence = np.array(rob_sequence) # RTAMT is for monitoring, so for eventually, the robustness computed from the current timepoint to the end # workaround to compute the maximum if ( self.task_name is "FrankaBallPushing" or self.task_name is "FrankaCubeStacking" or self.task_name is "FrankaDoorOpen" or self.task_name is "FrankaPegInHole" or self.task_name is "FrankaClothPlacing" ): min_rob = np.max(rob_sequence[:, 1]) else: min_rob = np.min(rob_sequence[:, 1]) # print("Min Robustness:", min_rob) if min_rob < self.worst_rob: self.worst_rob = min_rob if min_rob < 0 and self.fal_succ == False: self.fal_succ = True self.fal_time = time.time() - self.start_time elif self.fal_succ == False: self.fal_sim += 1 return min_rob, rob_sequence, indexed_trace # optimization based on the optimizer type def optimize(self): if self.opt_type is "random": results = self.optimize_random() return results else: raise ValueError("Optimizer type undefined!") # Random optimization def optimize_random(self): success_count = 0 # num success trail/ num total trail dangerous_rate = list() # num dangerous steps/ num total trail w.r.t each trail completion_time = list() # the step that indicates the task is completed # Random optimizer for i in range(self.budget_size): print("trail ",i) # random initial value initial_value = self.generate_initial() # compute robustness and its sequence min_rob, rob_sequence, indexed_trace = self.robustness_function(initial_value) # compute dangerous_rate, completion_time w.r.t tasks if self.task_name == "FrankaCubeStacking": # info extraction cube_dist = np.array(indexed_trace["distance_cube"])[:,1] cube_z_dist = np.array(indexed_trace["z_cube_distance"])[:,1] # dangerous rate: cube_too_far = cube_dist >= 0.35 cube_fall_ground = cube_z_dist < 0.02 dangerous_rate.append(np.sum(np.logical_or(cube_too_far, cube_fall_ground))/len(cube_dist)) # completation step if_complete = (np.logical_and(cube_dist<=0.024, cube_z_dist>0)) complete_Step = np.where(if_complete == True)[0] if len(complete_Step) > 0: completion_time.append(complete_Step[0]) elif self.task_name == "FrankaDoorOpen": handle_yaw = np.array(indexed_trace)[:,1] # dangerous rate: dangerous_rate.append(np.sum(handle_yaw<0.1)/len(handle_yaw)) # completation step if_complete = (handle_yaw>=20) complete_Step = np.where(if_complete == True)[0] if len(complete_Step) > 0: completion_time.append(complete_Step[0]) elif self.task_name == "FrankaPegInHole": tool_hole_distance = np.array(indexed_trace)[:,1] # dangerous rate: dangerous_rate.append(np.sum(tool_hole_distance>0.37)/len(tool_hole_distance)) # completation step if_complete = (tool_hole_distance<=0.1) complete_Step = np.where(if_complete == True)[0] if len(complete_Step) > 0: completion_time.append(complete_Step[0]) elif self.task_name == "FrankaBallCatching": ball_tool_distance = np.array(indexed_trace)[:,1] # dangerous rate: dangerous_rate.append(np.sum(ball_tool_distance>0.2)/len(ball_tool_distance)) # completation step if_complete = (ball_tool_distance<=0.1) complete_interval = np.zeros(len(if_complete)-5) # spec satisified holds within a 3-step interval for i in range(0, int(len(if_complete)-5)): complete_interval[i] = np.all(if_complete[i:i+5]) complete_Step = np.where(complete_interval == True)[0] if len(complete_Step) > 0: completion_time.append(complete_Step[0]) elif self.task_name == "FrankaBallBalancing": ball_tool_distance = np.array(indexed_trace)[:,1] # dangerous rate: dangerous_rate.append(np.sum(ball_tool_distance>0.2)/len(ball_tool_distance)) # completation step if_complete = (ball_tool_distance<=0.1) complete_interval = np.zeros(len(if_complete)-5) # spec satisified holds within a 3-step interval for i in range(0, int(len(if_complete)-5)): complete_interval[i] = np.all(if_complete[i:i+5]) complete_Step = np.where(complete_interval == True)[0] if len(complete_Step) > 0: completion_time.append(complete_Step[0]) elif self.task_name == "FrankaBallPushing": ball_hole_distance = np.array(indexed_trace)[:,1] # dangerous rate: dangerous_rate.append(np.sum(ball_hole_distance>0.5)/len(ball_hole_distance)) # completation step if_complete = (ball_hole_distance<=0.3) complete_interval = np.zeros(len(if_complete)-5) # spec satisified holds within a 3-step interval for i in range(0, int(len(if_complete)-5)): complete_interval[i] = np.all(if_complete[i:i+5]) complete_Step = np.where(complete_interval == True)[0] if len(complete_Step) > 0: completion_time.append(complete_Step[0]) elif self.task_name == "FrankaPointReaching": finger_target_distance = np.array(indexed_trace)[:,1] # dangerous rate: dangerous_rate.append(np.sum(finger_target_distance>=0.6)/len(finger_target_distance)) # completation step if_complete = (finger_target_distance<=0.12) complete_Step = np.where(if_complete == True)[0] if len(complete_Step) > 0: completion_time.append(complete_Step[0]) elif self.task_name == "FrankaClothPlacing": # info extraction cloth_target_dist = np.array(indexed_trace["distance_cloth_target"])[:,1] cloth_z_pos = np.array(indexed_trace["cloth_height"])[:,1] # dangerous rate: cloth_too_far = cloth_target_dist >= 0.3 cloth_fall_ground = cloth_z_pos < 0.1 dangerous_rate.append(np.sum(np.logical_or(cloth_too_far, cloth_fall_ground))/len(cloth_target_dist)) # completation step if_complete = cloth_target_dist<=0.25 complete_Step = np.where(if_complete == True)[0] if len(complete_Step) > 0: completion_time.append(complete_Step[0]) # print(indexed_trace) else: print("Invalid Task") break # perform evaluation: # success rate if min_rob > 0: success_count += 1 # dangerous behavior: change the STL specification and use rob_sequence? # completion time: check first satisfication in index_trace? # if i == 0: # break if len(dangerous_rate) == 0: dangerous_rate = 0 results = {"success_count": success_count/self.budget_size, "dangerous_rate": np.mean(dangerous_rate), "completion_time": np.mean(completion_time)} return results
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/skrl_train_SAC.py
import torch import os import torch.nn as nn import torch.nn.functional as F # Import the skrl components to build the RL system from skrl.models.torch import Model, GaussianMixin, DeterministicMixin from skrl.memories.torch import RandomMemory from skrl.agents.torch.sac import SAC, SAC_DEFAULT_CONFIG from skrl.resources.schedulers.torch import KLAdaptiveRL from skrl.resources.noises.torch import OrnsteinUhlenbeckNoise from skrl.resources.preprocessors.torch import RunningStandardScaler from skrl.trainers.torch import SequentialTrainer from skrl.envs.torch import wrap_env from skrl.envs.torch import load_omniverse_isaacgym_env from skrl.utils import set_seed # set the seed for reproducibility set_seed(42) # Define the models (stochastic and deterministic models) for the SAC agent using the mixins. # - StochasticActor (policy): takes as input the environment's observation/state and returns an action # - Critic: takes the state and action as input and provides a value to guide the policy class Policy(GaussianMixin, Model): def __init__(self, observation_space, action_space, device, clip_actions=True, clip_log_std=True, min_log_std=-20, max_log_std=2, reduction="sum"): Model.__init__(self, observation_space, action_space, device) GaussianMixin.__init__(self, clip_actions, clip_log_std, min_log_std, max_log_std, reduction) self.net = nn.Sequential(nn.Linear(self.num_observations, 512), nn.ELU(), nn.Linear(512, 256), nn.ELU(), nn.Linear(256, self.num_actions),) # nn.Tanh()) self.log_std_parameter = nn.Parameter(torch.zeros(self.num_actions)) def compute(self, inputs, role): return self.net(inputs["states"]), self.log_std_parameter, {} class Critic(DeterministicMixin, Model): def __init__(self, observation_space, action_space, device, clip_actions=False): Model.__init__(self, observation_space, action_space, device) DeterministicMixin.__init__(self, clip_actions) self.net = nn.Sequential(nn.Linear(self.num_observations + self.num_actions, 512), nn.ELU(), nn.Linear(512, 256), nn.ELU(), nn.Linear(256, 1)) def compute(self, inputs, role): return self.net(torch.cat([inputs["states"], inputs["taken_actions"]], dim=1)), {} # Load and wrap the Omniverse Isaac Gym environment] omniisaacgymenvs_path = os.path.realpath( os.path.join(os.path.realpath(__file__), "..") ) env = load_omniverse_isaacgym_env(task_name="FrankaCatching", omniisaacgymenvs_path = omniisaacgymenvs_path) env = wrap_env(env) device = env.device # Instantiate a RandomMemory as rollout buffer (any memory can be used for this) memory = RandomMemory(memory_size=128, num_envs=env.num_envs, device=device, replacement=True) # Instantiate the agent's models (function approximators). # SAC requires 5 models, visit its documentation for more details # https://skrl.readthedocs.io/en/latest/modules/skrl.agents.sac.html#spaces-and-models models_sac = {} models_sac["policy"] = Policy(env.observation_space, env.action_space, device) models_sac["critic_1"] = Critic(env.observation_space, env.action_space, device) models_sac["critic_2"] = Critic(env.observation_space, env.action_space, device) models_sac["target_critic_1"] = Critic(env.observation_space, env.action_space, device) models_sac["target_critic_2"] = Critic(env.observation_space, env.action_space, device) # Initialize the models' parameters (weights and biases) using a Gaussian distribution for model in models_sac.values(): model.init_parameters(method_name="normal_", mean=0.0, std=0.1) # Configure and instantiate the agent. # Only modify some of the default configuration, visit its documentation to see all the options # https://skrl.readthedocs.io/en/latest/modules/skrl.agents.sac.html#configuration-and-hyperparameters cfg_sac = SAC_DEFAULT_CONFIG.copy() cfg_sac["gradient_steps"] = 1 cfg_sac["batch_size"] = 128 cfg_sac["random_timesteps"] = 10 cfg_sac["learning_starts"] = 0 cfg_sac["actor_learning_rate"]: 5e-4 # actor learning rate cfg_sac["critic_learning_rate"]: 5e-3 # critic learning rate cfg_sac["learn_entropy"] = True cfg_sac["entropy_learning_rate"]: 1e-3 # entropy learning rate cfg_sac["initial_entropy_value"]: 0.2 # initial entropy value # logging to TensorBoard and write checkpoints each 1000 and 1000 timesteps respectively cfg_sac["experiment"]["write_interval"] = 100 cfg_sac["experiment"]["checkpoint_interval"] = 1000 agent= SAC(models=models_sac, memory=memory, cfg=cfg_sac, observation_space=env.observation_space, action_space=env.action_space, device=device) # Configure and instantiate the RL trainer cfg_trainer = {"timesteps": 320000, "headless": True} trainer = SequentialTrainer(cfg=cfg_trainer, env=env, agents=agent) # start training trainer.train()
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/skrl_train_TD3.py
import torch import os import torch.nn as nn import torch.nn.functional as F # Import the skrl components to build the RL system from skrl.models.torch import Model, GaussianMixin, DeterministicMixin from skrl.memories.torch import RandomMemory from skrl.agents.torch.td3 import TD3, TD3_DEFAULT_CONFIG from skrl.resources.schedulers.torch import KLAdaptiveRL from skrl.resources.preprocessors.torch import RunningStandardScaler from skrl.trainers.torch import SequentialTrainer from skrl.envs.torch import wrap_env from skrl.envs.torch import load_omniverse_isaacgym_env from skrl.utils import set_seed from skrl.resources.noises.torch import GaussianNoise # set the seed for reproducibility set_seed(42) # Define the models (deterministic models) for the TD3 agent using mixins # and programming with two approaches (torch functional and torch.nn.Sequential class). # - Actor (policy): takes as input the environment's observation/state and returns an action # - Critic: takes the state and action as input and provides a value to guide the policy class DeterministicActor(DeterministicMixin, Model): def __init__(self, observation_space, action_space, device, clip_actions=True): Model.__init__(self, observation_space, action_space, device) DeterministicMixin.__init__(self, clip_actions) self.net = nn.Sequential(nn.Linear(self.num_observations, 512), nn.ELU(), nn.Linear(512, 256), nn.ELU(), nn.Linear(256, self.num_actions), nn.Tanh()) def compute(self, inputs, role): # x = F.relu(self.linear_layer_1(inputs["states"])) # x = F.relu(self.linear_layer_2(x)) return self.net(inputs["states"]), {} class DeterministicCritic(DeterministicMixin, Model): def __init__(self, observation_space, action_space, device, clip_actions=False): Model.__init__(self, observation_space, action_space, device) DeterministicMixin.__init__(self, clip_actions) self.net = nn.Sequential(nn.Linear(self.num_observations + self.num_actions, 400), nn.ReLU(), nn.Linear(400, 300), nn.ReLU(), nn.Linear(300, 1)) def compute(self, inputs, role): return self.net(torch.cat([inputs["states"], inputs["taken_actions"]], dim=1)), {} # Load and wrap the Omniverse Isaac Gym environment] omniisaacgymenvs_path = os.path.realpath( os.path.join(os.path.realpath(__file__), "..") ) env = load_omniverse_isaacgym_env(task_name="FrankaBallCatching", omniisaacgymenvs_path = omniisaacgymenvs_path) env = wrap_env(env) device = env.device # Instantiate a RandomMemory as rollout buffer (any memory can be used for this) memory = RandomMemory(memory_size=2500, num_envs=env.num_envs, device=device) # Instantiate the agent's models (function approximators). # TRPO requires 2 models, visit its documentation for more details # https://skrl.readthedocs.io/en/latest/modules/skrl.agents.trpo.html#spaces-and-models # Instantiate the agent's models (function approximators). # TD3 requires 6 models, visit its documentation for more details # https://skrl.readthedocs.io/en/latest/modules/skrl.agents.td3.html#spaces-and-models models = {} models["policy"] = DeterministicActor(env.observation_space, env.action_space, device) models["target_policy"] = DeterministicActor(env.observation_space, env.action_space, device) models["critic_1"] = DeterministicCritic(env.observation_space, env.action_space, device) models["critic_2"] = DeterministicCritic(env.observation_space, env.action_space, device) models["target_critic_1"] = DeterministicCritic(env.observation_space, env.action_space, device) models["target_critic_2"] = DeterministicCritic(env.observation_space, env.action_space, device) # Configure and instantiate the agent. # Only modify some of the default configuration, visit its documentation to see all the options # https://skrl.readthedocs.io/en/latest/modules/skrl.agents.trpo.html#configuration-and-hyperparameters cfg_td3 = TD3_DEFAULT_CONFIG.copy() cfg_td3["exploration"]["noise"] = GaussianNoise(0, 0.1, device=device) cfg_td3["smooth_regularization_noise"] = GaussianNoise(0, 0.2, device=device) cfg_td3["smooth_regularization_clip"] = 0.5 cfg_td3["batch_size"] = 16 cfg_td3["random_timesteps"] = 0 cfg_td3["learning_starts"] = 0 # logging to TensorBoard and write checkpoints each 16 and 80 timesteps respectively cfg_td3["experiment"]["write_interval"] = 100 cfg_td3["experiment"]["checkpoint_interval"] = 1000 agent = TD3(models=models, memory=memory, cfg=cfg_td3, observation_space=env.observation_space, action_space=env.action_space, device=device) # Configure and instantiate the RL trainer cfg_trainer = {"timesteps": 320000, "headless": True} trainer = SequentialTrainer(cfg=cfg_trainer, env=env, agents=agent) # start training trainer.train()
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/skrl_train_DDPG.py
import torch import os import torch.nn as nn import torch.nn.functional as F # Import the skrl components to build the RL system from skrl.models.torch import Model, GaussianMixin, DeterministicMixin from skrl.memories.torch import RandomMemory from skrl.agents.torch.ddpg import DDPG, DDPG_DEFAULT_CONFIG from skrl.resources.schedulers.torch import KLAdaptiveRL from skrl.resources.noises.torch import OrnsteinUhlenbeckNoise from skrl.resources.preprocessors.torch import RunningStandardScaler from skrl.trainers.torch import SequentialTrainer from skrl.envs.torch import wrap_env from skrl.envs.torch import load_omniverse_isaacgym_env from skrl.utils import set_seed # set the seed for reproducibility set_seed(42) # Define the models (deterministic models) for the DDPG agent using mixins # and programming with two approaches (torch functional and torch.nn.Sequential class). # - Actor (policy): takes as input the environment's observation/state and returns an action # - Critic: takes the state and action as input and provides a value to guide the policy class DeterministicActor(DeterministicMixin, Model): def __init__(self, observation_space, action_space, device, clip_actions=True): Model.__init__(self, observation_space, action_space, device) DeterministicMixin.__init__(self, clip_actions) self.net = nn.Sequential(nn.Linear(self.num_observations, 512), nn.ELU(), nn.Linear(512, 256), nn.ELU(), nn.Linear(256, self.num_actions), nn.Tanh()) def compute(self, inputs, role): # x = F.relu(self.linear_layer_1(inputs["states"])) # x = F.relu(self.linear_layer_2(x)) return self.net(inputs["states"]), {} class DeterministicCritic(DeterministicMixin, Model): def __init__(self, observation_space, action_space, device, clip_actions=False): Model.__init__(self, observation_space, action_space, device) DeterministicMixin.__init__(self, clip_actions) self.net = nn.Sequential(nn.Linear(self.num_observations + self.num_actions, 512), nn.ELU(), nn.Linear(512, 256), nn.ELU(), nn.Linear(256, 1)) def compute(self, inputs, role): # x = F.relu(self.linear_layer_1(torch.cat([inputs["states"], inputs["taken_actions"]], dim=1))) # x = F.relu(self.linear_layer_2(x)) # return torch.tanh(self.action_layer(x)), {} return self.net(torch.cat([inputs["states"], inputs["taken_actions"]], dim=1)), {} # Load and wrap the Omniverse Isaac Gym environment] omniisaacgymenvs_path = os.path.realpath( os.path.join(os.path.realpath(__file__), "..") ) env = load_omniverse_isaacgym_env(task_name="FrankaCatching", omniisaacgymenvs_path = omniisaacgymenvs_path) env = wrap_env(env) device = env.device # Instantiate a RandomMemory as rollout buffer (any memory can be used for this) memory = RandomMemory(memory_size=16, num_envs=env.num_envs, device=device, replacement=False) # Instantiate the agent's models (function approximators). # DDPG requires 4 models, visit its documentation for more details # https://skrl.readthedocs.io/en/latest/modules/skrl.agents.ddpg.html#spaces-and-models models_ddpg = {} models_ddpg["policy"] = DeterministicActor(env.observation_space, env.action_space, device) models_ddpg["target_policy"] = DeterministicActor(env.observation_space, env.action_space, device) models_ddpg["critic"] = DeterministicCritic(env.observation_space, env.action_space, device) models_ddpg["target_critic"] = DeterministicCritic(env.observation_space, env.action_space, device) # Initialize the models' parameters (weights and biases) using a Gaussian distribution for model in models_ddpg.values(): model.init_parameters(method_name="normal_", mean=0.0, std=0.5) # Configure and instantiate the agent. # Only modify some of the default configuration, visit its documentation to see all the options # https://skrl.readthedocs.io/en/latest/modules/skrl.agents.ddpg.html#configuration-and-hyperparameters cfg_ddpg = DDPG_DEFAULT_CONFIG.copy() # cfg_ddpg["exploration"]["noise"] = OrnsteinUhlenbeckNoise(theta=0.15, sigma=0.1, base_scale=1.0, device=device) cfg_ddpg["gradient_steps"] = 1 # gradient steps cfg_ddpg["batch_size"] = 32 # training batch size cfg_ddpg["polyak"] = 0.005 # soft update hyperparameter (tau) cfg_ddpg["discount_factor"] = 0.99 # discount factor (gamma) cfg_ddpg["random_timesteps"] = 0 # random exploration steps cfg_ddpg["learning_starts"] = 0 # learning starts after this many steps cfg_ddpg["actor_learning_rate"] = 1e-3 cfg_ddpg["critic_learning_rate"] = 5e-3 # cfg_ddpg["rewards_shaper"] = lambda rewards, timestep, timesteps: rewards * 0.01 # rewards shaping function: Callable(reward, timestep, timesteps) -> reward # logging to TensorBoard and write checkpoints each 1000 and 5000 timesteps respectively cfg_ddpg["experiment"]["write_interval"] = 100 cfg_ddpg["experiment"]["checkpoint_interval"] = 1000 # cfg_ddpg["experiment"]["experiment_name"] = "" agent = DDPG(models=models_ddpg, memory=memory, cfg=cfg_ddpg, observation_space=env.observation_space, action_space=env.action_space, device=device) # Configure and instantiate the RL trainer cfg_trainer = {"timesteps": 320000, "headless": True} trainer = SequentialTrainer(cfg=cfg_trainer, env=env, agents=agent) # start training trainer.train()
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/skrl_train_PPO.py
import torch import os import torch.nn as nn # Import the skrl components to build the RL system from skrl.models.torch import Model, GaussianMixin, DeterministicMixin from skrl.memories.torch import RandomMemory from skrl.agents.torch.ppo import PPO, PPO_DEFAULT_CONFIG from skrl.resources.schedulers.torch import KLAdaptiveRL from skrl.resources.preprocessors.torch import RunningStandardScaler from skrl.trainers.torch import SequentialTrainer from skrl.envs.torch import wrap_env from skrl.envs.torch import load_omniverse_isaacgym_env from skrl.utils import set_seed # set the seed for reproducibility set_seed(42) # Define the shared model (stochastic and deterministic models) for the agent using mixins. class Shared(GaussianMixin, DeterministicMixin, Model): def __init__(self, observation_space, action_space, device, clip_actions=False, clip_log_std=True, min_log_std=-20, max_log_std=2, reduction="sum"): Model.__init__(self, observation_space, action_space, device) GaussianMixin.__init__(self, clip_actions, clip_log_std, min_log_std, max_log_std, reduction) DeterministicMixin.__init__(self, clip_actions) self.net = nn.Sequential(nn.Linear(self.num_observations, 512), nn.ELU(), nn.Linear(512, 256), nn.ELU(), nn.Linear(256, 128), nn.ELU()) self.mean_layer = nn.Linear(128, self.num_actions) self.log_std_parameter = nn.Parameter(torch.zeros(self.num_actions)) self.value_layer = nn.Linear(128, 1) def act(self, inputs, role): if role == "policy": return GaussianMixin.act(self, inputs, role) elif role == "value": return DeterministicMixin.act(self, inputs, role) def compute(self, inputs, role): if role == "policy": return self.mean_layer(self.net(inputs["states"])), self.log_std_parameter, {} elif role == "value": return self.value_layer(self.net(inputs["states"])), {} # Load and wrap the Omniverse Isaac Gym environment] omniisaacgymenvs_path = os.path.realpath( os.path.join(os.path.realpath(__file__), "..") ) env = load_omniverse_isaacgym_env(task_name="FrankaPegInHole", omniisaacgymenvs_path = omniisaacgymenvs_path) env = wrap_env(env) device = env.device # Instantiate a RandomMemory as rollout buffer (any memory can be used for this) memory = RandomMemory(memory_size=32, num_envs=env.num_envs, device=device) # Instantiate the agent's models (function approximators). # PPO requires 2 models, visit its documentation for more details # https://skrl.readthedocs.io/en/latest/modules/skrl.agents.ppo.html#spaces-and-models models_ppo = {} models_ppo["policy"] = Shared(env.observation_space, env.action_space, device) models_ppo["value"] = models_ppo["policy"] # same instance: shared model # Configure and instantiate the agent. # Only modify some of the default configuration, visit its documentation to see all the options # https://skrl.readthedocs.io/en/latest/modules/skrl.agents.ppo.html#configuration-and-hyperparameters cfg_ppo = PPO_DEFAULT_CONFIG.copy() cfg_ppo["rollouts"] = 32 # memory_size cfg_ppo["learning_epochs"] = 16 cfg_ppo["mini_batches"] = 8 # 16 * 8192 / 32768 cfg_ppo["discount_factor"] = 0.99 cfg_ppo["lambda"] = 0.95 cfg_ppo["learning_rate"] = 5e-4 cfg_ppo["learning_rate_scheduler"] = KLAdaptiveRL cfg_ppo["learning_rate_scheduler_kwargs"] = {"kl_threshold": 0.02} cfg_ppo["random_timesteps"] = 0 cfg_ppo["learning_starts"] = 0 cfg_ppo["grad_norm_clip"] = 1.0 cfg_ppo["ratio_clip"] = 0.2 cfg_ppo["value_clip"] = 0.2 cfg_ppo["clip_predicted_values"] = True cfg_ppo["entropy_loss_scale"] = 0.0 cfg_ppo["value_loss_scale"] = 2.0 cfg_ppo["kl_threshold"] = 0 # cfg_ppo["rewards_shaper"] = lambda rewards, timestep, timesteps: rewards * 0.01 cfg_ppo["state_preprocessor"] = RunningStandardScaler cfg_ppo["state_preprocessor_kwargs"] = {"size": env.observation_space, "device": device} cfg_ppo["value_preprocessor"] = RunningStandardScaler cfg_ppo["value_preprocessor_kwargs"] = {"size": 1, "device": device} # logging to TensorBoard and write checkpoints each 800 and 8000 timesteps respectively cfg_ppo["experiment"]["write_interval"] = 100 cfg_ppo["experiment"]["checkpoint_interval"] = 1000 agent = PPO(models=models_ppo, memory=memory, cfg=cfg_ppo, observation_space=env.observation_space, action_space=env.action_space, device=device) # Configure and instantiate the RL trainer cfg_trainer = {"timesteps": 1000000, "headless": True} trainer = SequentialTrainer(cfg=cfg_trainer, env=env, agents=agent) # start training trainer.train()
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/skrl_train_TRPO.py
import torch import os import torch.nn as nn # Import the skrl components to build the RL system from skrl.models.torch import Model, GaussianMixin, DeterministicMixin from skrl.memories.torch import RandomMemory from skrl.agents.torch.trpo import TRPO, TRPO_DEFAULT_CONFIG from skrl.resources.schedulers.torch import KLAdaptiveRL from skrl.resources.preprocessors.torch import RunningStandardScaler from skrl.trainers.torch import SequentialTrainer from skrl.envs.torch import wrap_env from skrl.envs.torch import load_omniverse_isaacgym_env from skrl.utils import set_seed # set the seed for reproducibility set_seed(42) # Define the models (stochastic and deterministic models) for the agent using mixins. # - Policy: takes as input the environment's observation/state and returns an action # - Value: takes the state as input and provides a value to guide the policy class Policy(GaussianMixin, Model): def __init__(self, observation_space, action_space, device, clip_actions=False, clip_log_std=True, min_log_std=-20, max_log_std=2): Model.__init__(self, observation_space, action_space, device) GaussianMixin.__init__(self, clip_actions, clip_log_std, min_log_std, max_log_std) # self.net = nn.Sequential(nn.Linear(self.num_observations, 512), # nn.ELU(), # nn.Linear(512, 256), # nn.ELU(), # nn.Linear(256, self.num_actions)) self.net = nn.Sequential(nn.Linear(self.num_observations, 512), nn.ELU(), nn.Linear(512, 256), nn.ELU(), nn.Linear(256, 128), nn.ELU(), nn.Linear(128, self.num_actions)) self.log_std_parameter = nn.Parameter(torch.zeros(self.num_actions)) def compute(self, inputs, role): return self.net(inputs["states"]), self.log_std_parameter, {} class Value(DeterministicMixin, Model): def __init__(self, observation_space, action_space, device, clip_actions=False): Model.__init__(self, observation_space, action_space, device) DeterministicMixin.__init__(self, clip_actions) # self.net = nn.Sequential(nn.Linear(self.num_observations, 512), # nn.ELU(), # nn.Linear(512, 256), # nn.ELU(), # nn.Linear(256, 1)) self.net = nn.Sequential(nn.Linear(self.num_observations, 512), nn.ELU(), nn.Linear(512, 256), nn.ELU(), nn.Linear(256, 128), nn.ELU(), nn.Linear(128, 1)) def compute(self, inputs, role): return self.net(inputs["states"]), {} # Load and wrap the Omniverse Isaac Gym environment] omniisaacgymenvs_path = os.path.realpath( os.path.join(os.path.realpath(__file__), "..") ) env = load_omniverse_isaacgym_env(task_name="FrankaPegInHole", omniisaacgymenvs_path = omniisaacgymenvs_path) env = wrap_env(env) device = env.device # Instantiate a RandomMemory as rollout buffer (any memory can be used for this) memory = RandomMemory(memory_size=32, num_envs=env.num_envs, device=device) # Instantiate the agent's models (function approximators). # TRPO requires 2 models, visit its documentation for more details # https://skrl.readthedocs.io/en/latest/modules/skrl.agents.trpo.html#spaces-and-models models_trpo = {} models_trpo["policy"] = Policy(env.observation_space, env.action_space, device) models_trpo["value"] = Value(env.observation_space, env.action_space, device) # Configure and instantiate the agent. # Only modify some of the default configuration, visit its documentation to see all the options # https://skrl.readthedocs.io/en/latest/modules/skrl.agents.trpo.html#configuration-and-hyperparameters cfg_trpo = TRPO_DEFAULT_CONFIG.copy() cfg_trpo["rollouts"] = 32 # memory_size cfg_trpo["learning_epochs"] = 16 cfg_trpo["mini_batches"] = 8 cfg_trpo["discount_factor"] = 0.99 cfg_trpo["lambda"] = 0.95 cfg_trpo["learning_rate"] = 5e-4 cfg_trpo["grad_norm_clip"] = 1.0 cfg_trpo["value_loss_scale"] = 2.0 cfg_trpo["state_preprocessor"] = RunningStandardScaler cfg_trpo["state_preprocessor_kwargs"] = {"size": env.observation_space, "device": device} cfg_trpo["value_preprocessor"] = RunningStandardScaler cfg_trpo["value_preprocessor_kwargs"] = {"size": 1, "device": device} # logging to TensorBoard and write checkpoints each 16 and 80 timesteps respectively cfg_trpo["experiment"]["write_interval"] = 100 cfg_trpo["experiment"]["checkpoint_interval"] = 1000 agent = TRPO(models=models_trpo, memory=memory, cfg=cfg_trpo, observation_space=env.observation_space, action_space=env.action_space, device=device) # Configure and instantiate the RL trainer cfg_trainer = {"timesteps": 320000, "headless": True} trainer = SequentialTrainer(cfg=cfg_trainer, env=env, agents=agent) # start training trainer.train()
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/Models/Franka/Franka.py
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # import os from typing import Optional import math import numpy as np import torch from omni.isaac.core.robots.robot import Robot from omni.isaac.core.utils.nucleus import get_assets_root_path from omni.isaac.core.utils.stage import add_reference_to_stage from omniisaacgymenvs.tasks.utils.usd_utils import set_drive from omni.isaac.core.utils.prims import get_prim_at_path from pxr import PhysxSchema class Franka(Robot): def __init__( self, prim_path: str, name: Optional[str] = "franka", usd_path: Optional[str] = None, translation: Optional[torch.tensor] = None, orientation: Optional[torch.tensor] = None, use_modified_collision: Optional[bool] = False, ) -> None: """[summary] """ self._usd_path = usd_path self._name = name self._position = torch.tensor([1.0, 0.0, 0.0]) if translation is None else translation self._orientation = torch.tensor([0.0, 0.0, 0.0, 1.0]) if orientation is None else orientation if use_modified_collision is True: print("Load modified franka model") self._usd_path = os.path.realpath( os.path.join(os.path.realpath(__file__), "..") ) + "/franka_instanceable.usd" elif self._usd_path is None: assets_root_path = get_assets_root_path() if assets_root_path is None: carb.log_error("Could not find Isaac Sim assets folder") self._usd_path = assets_root_path + "/Isaac/Robots/Franka/franka_instanceable.usd" add_reference_to_stage(self._usd_path, prim_path) super().__init__( prim_path=prim_path, name=name, translation=self._position, orientation=self._orientation, articulation_controller=None, ) dof_paths = [ "panda_link0/panda_joint1", "panda_link1/panda_joint2", "panda_link2/panda_joint3", "panda_link3/panda_joint4", "panda_link4/panda_joint5", "panda_link5/panda_joint6", "panda_link6/panda_joint7", "panda_hand/panda_finger_joint1", "panda_hand/panda_finger_joint2" ] drive_type = ["angular"] * 7 + ["linear"] * 2 default_dof_pos = [math.degrees(x) for x in [0.0, -1.0, 0.0, -2.2, 0.0, 2.4, 0.8]] + [0.02, 0.02] stiffness = [400*np.pi/180] * 7 + [10000] * 2 damping = [80*np.pi/180] * 7 + [100] * 2 max_force = [87, 87, 87, 87, 12, 12, 12, 200, 200] max_velocity = [math.degrees(x) for x in [2.175, 2.175, 2.175, 2.175, 2.61, 2.61, 2.61]] + [0.2, 0.2] for i, dof in enumerate(dof_paths): set_drive( prim_path=f"{self.prim_path}/{dof}", drive_type=drive_type[i], target_type="position", target_value=default_dof_pos[i], stiffness=stiffness[i], damping=damping[i], max_force=max_force[i] ) PhysxSchema.PhysxJointAPI(get_prim_at_path(f"{self.prim_path}/{dof}")).CreateMaxJointVelocityAttr().Set(max_velocity[i])
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/Models/Franka/Franka_view.py
from typing import Optional from omni.isaac.core.articulations import ArticulationView from omni.isaac.core.prims import RigidPrimView class FrankaView(ArticulationView): def __init__( self, prim_paths_expr: str, name: Optional[str] = "FrankaView", ) -> None: """[summary] """ super().__init__( prim_paths_expr=prim_paths_expr, name=name, reset_xform_properties=False ) self._hands = RigidPrimView(prim_paths_expr=prim_paths_expr + "/panda_link7", name="hands_view", reset_xform_properties=False) self._lfingers = RigidPrimView(prim_paths_expr=prim_paths_expr + "/panda_leftfinger", name="lfingers_view", reset_xform_properties=False) self._rfingers = RigidPrimView(prim_paths_expr=prim_paths_expr + "/panda_rightfinger", name="rfingers_view", reset_xform_properties=False) def initialize(self, physics_sim_view): super().initialize(physics_sim_view) self._gripper_indices = [self.get_dof_index("panda_finger_joint1"), self.get_dof_index("panda_finger_joint2")] @property def gripper_indices(self): return self._gripper_indices
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/Models/ball_catching/tool.py
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # from typing import Optional from omni.isaac.core.robots.robot import Robot from omni.isaac.core.utils.nucleus import get_assets_root_path from omni.isaac.core.utils.stage import add_reference_to_stage import numpy as np import torch import os class Tool(Robot): def __init__( self, prim_path: str, name: Optional[str] = "tool", usd_path: Optional[str] = None, translation: Optional[torch.tensor] = None, orientation: Optional[torch.tensor] = None, ) -> None: """[summary] """ self._name = name self._usd_path = os.path.realpath( os.path.join(os.path.realpath(__file__), "..") ) + "/tool.usd" add_reference_to_stage(self._usd_path, prim_path) self._position = torch.tensor([-0.05, 0.0, 0.88]) if translation is None else translation self._orientation = torch.tensor([1, 0.0, 0.0, 0.0]) if orientation is None else orientation super().__init__( prim_path=prim_path, name=name, translation=self._position, orientation=self._orientation, articulation_controller=None, )
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/Models/ball_balancing/tool.py
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # from typing import Optional from omni.isaac.core.robots.robot import Robot from omni.isaac.core.utils.nucleus import get_assets_root_path from omni.isaac.core.utils.stage import add_reference_to_stage import numpy as np import torch import os class Tool(Robot): def __init__( self, prim_path: str, name: Optional[str] = "tool", usd_path: Optional[str] = None, translation: Optional[torch.tensor] = None, orientation: Optional[torch.tensor] = None, ) -> None: """[summary] """ self._name = name self._usd_path = os.path.realpath( os.path.join(os.path.realpath(__file__), "..") ) + "/tool.usd" add_reference_to_stage(self._usd_path, prim_path) self._position = torch.tensor([0.008, 0.0, 1.0]) if translation is None else translation self._orientation = torch.tensor([1, 0.0, 0.0, 0.0]) if orientation is None else orientation super().__init__( prim_path=prim_path, name=name, translation=self._position, orientation=self._orientation, articulation_controller=None, )
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/Models/door_open/door_view.py
from typing import Optional from omni.isaac.core.articulations import ArticulationView from omni.isaac.core.prims import RigidPrimView class DoorView(ArticulationView): def __init__( self, prim_paths_expr: str, name: Optional[str] = "DoorView", ) -> None: """[summary] """ super().__init__( prim_paths_expr=prim_paths_expr, name=name, reset_xform_properties=False ) self._handle = RigidPrimView(prim_paths_expr="/World/envs/.*/door/door/handle_point", name="handle_view", reset_xform_properties=False)
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/Models/door_open/door.py
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # from typing import Optional from omni.isaac.core.robots.robot import Robot from omni.isaac.core.utils.nucleus import get_assets_root_path from omni.isaac.core.utils.stage import add_reference_to_stage import numpy as np import torch import os class Door(Robot): def __init__( self, prim_path: str, name: Optional[str] = "door", usd_path: Optional[str] = None, translation: Optional[torch.tensor] = None, orientation: Optional[torch.tensor] = None, ) -> None: """[summary] """ self._name = name self._usd_path = os.path.realpath( os.path.join(os.path.realpath(__file__), "..") ) + "/free_door_point_pull.usd" add_reference_to_stage(self._usd_path, prim_path) self._position = torch.tensor([-0.3, 0.0, 0.0]) if translation is None else translation self._orientation = torch.tensor([1, 0.0, 0.0, 0.0]) if orientation is None else orientation super().__init__( prim_path=prim_path, name=name, translation=self._position, orientation=self._orientation, articulation_controller=None, )
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/Models/ball_pushing/table_view.py
from typing import Optional from omni.isaac.core.articulations import ArticulationView from omni.isaac.core.prims import RigidPrimView class DoorView(ArticulationView): def __init__( self, prim_paths_expr: str, name: Optional[str] = "TableView", ) -> None: """[summary] """ super().__init__( prim_paths_expr=prim_paths_expr, name=name, reset_xform_properties=False ) self._table = RigidPrimView(prim_paths_expr="/World/envs/.*/table/table", name="table_view", reset_xform_properties=False)
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/Models/ball_pushing/table.py
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # from typing import Optional from omni.isaac.core.robots.robot import Robot from omni.isaac.core.utils.nucleus import get_assets_root_path from omni.isaac.core.utils.stage import add_reference_to_stage import numpy as np import torch import os class Table(Robot): def __init__( self, prim_path: str, name: Optional[str] = "table", usd_path: Optional[str] = None, translation: Optional[torch.tensor] = None, orientation: Optional[torch.tensor] = None, ) -> None: """[summary] """ self._name = name self._usd_path = os.path.realpath( os.path.join(os.path.realpath(__file__), "..") ) + "/table.usd" add_reference_to_stage(self._usd_path, prim_path) self._position = torch.tensor([0.0, 0.0, 0.0]) if translation is None else translation self._orientation = torch.tensor([1, 0.0, 0.0, 0.0]) if orientation is None else orientation super().__init__( prim_path=prim_path, name=name, translation=self._position, orientation=self._orientation, articulation_controller=None, )
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/Models/peg_in_hole/table_view.py
from typing import Optional from omni.isaac.core.articulations import ArticulationView from omni.isaac.core.prims import RigidPrimView class TableView(ArticulationView): def __init__( self, prim_paths_expr: str, name: Optional[str] = "TableView", ) -> None: """[summary] """ super().__init__( prim_paths_expr=prim_paths_expr, name=name, reset_xform_properties=False ) self._location_ball = RigidPrimView(prim_paths_expr="/World/envs/.*/table/table/location_ball", name="location_ball_view", reset_xform_properties=False)
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/Models/peg_in_hole/table.py
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # from typing import Optional from omni.isaac.core.robots.robot import Robot from omni.isaac.core.utils.nucleus import get_assets_root_path from omni.isaac.core.utils.stage import add_reference_to_stage import numpy as np import torch import os class Table(Robot): def __init__( self, prim_path: str, name: Optional[str] = "table", usd_path: Optional[str] = None, translation: Optional[torch.tensor] = None, orientation: Optional[torch.tensor] = None, ) -> None: """[summary] """ self._name = name self._usd_path = os.path.realpath( os.path.join(os.path.realpath(__file__), "..") ) + "/table.usd" add_reference_to_stage(self._usd_path, prim_path) self._position = torch.tensor([0.0, 0.0, 0.0]) if translation is None else translation self._orientation = torch.tensor([1, 0.0, 0.0, 0.0]) if orientation is None else orientation super().__init__( prim_path=prim_path, name=name, translation=self._position, orientation=self._orientation, articulation_controller=None, )
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/Models/peg_in_hole/tool.py
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # from typing import Optional from omni.isaac.core.robots.robot import Robot from omni.isaac.core.utils.nucleus import get_assets_root_path from omni.isaac.core.utils.stage import add_reference_to_stage import numpy as np import torch import os class Tool(Robot): def __init__( self, prim_path: str, name: Optional[str] = "tool", usd_path: Optional[str] = None, translation: Optional[torch.tensor] = None, orientation: Optional[torch.tensor] = None, ) -> None: """[summary] """ self._name = name self._usd_path = os.path.realpath( os.path.join(os.path.realpath(__file__), "..") ) + "/tool.usd" add_reference_to_stage(self._usd_path, prim_path) self._position = torch.tensor([0.391, 0, 0.786]) if translation is None else translation self._orientation = torch.tensor([0, 0.0, 0.0, 0.0]) if orientation is None else orientation super().__init__( prim_path=prim_path, name=name, translation=self._position, orientation=self._orientation, articulation_controller=None, )
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/Models/point_reaching/target_ball.py
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # from typing import Optional from omni.isaac.core.robots.robot import Robot from omni.isaac.core.utils.nucleus import get_assets_root_path from omni.isaac.core.utils.stage import add_reference_to_stage import numpy as np import torch import os class TargetBall(Robot): def __init__( self, prim_path: str, name: Optional[str] = "target_ball", usd_path: Optional[str] = None, translation: Optional[torch.tensor] = None, orientation: Optional[torch.tensor] = None, ) -> None: """[summary] """ self._name = name self._usd_path = os.path.realpath( os.path.join(os.path.realpath(__file__), "..") ) + "/target_ball.usd" add_reference_to_stage(self._usd_path, prim_path) self._position = torch.tensor([-0.2, 0.0, 0.6]) if translation is None else translation self._orientation = torch.tensor([1, 0.0, 0.0, 0.0]) if orientation is None else orientation super().__init__( prim_path=prim_path, name=name, translation=self._position, orientation=self._orientation, articulation_controller=None, )
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/Models/cloth_placing/target_table.py
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # from typing import Optional from omni.isaac.core.robots.robot import Robot from omni.isaac.core.utils.nucleus import get_assets_root_path from omni.isaac.core.utils.stage import add_reference_to_stage import numpy as np import torch import os class TargetTable(Robot): def __init__( self, prim_path: str, name: Optional[str] = "target_table", usd_path: Optional[str] = None, translation: Optional[torch.tensor] = None, orientation: Optional[torch.tensor] = None, ) -> None: """[summary] """ self._name = name self._usd_path = os.path.realpath( os.path.join(os.path.realpath(__file__), "..") ) + "/target_table.usd" add_reference_to_stage(self._usd_path, prim_path) self._position = torch.tensor([-0.25, 0.0, 0.0]) if translation is None else translation self._orientation = torch.tensor([1, 0.0, 0.0, 0.0]) if orientation is None else orientation super().__init__( prim_path=prim_path, name=name, translation=self._position, orientation=self._orientation, articulation_controller=None, )
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/cfg/config.yaml
# Task name - used to pick the class to load task_name: ${task.name} # experiment name. defaults to name of training config experiment: '' # if set to positive integer, overrides the default number of environments num_envs: '' # seed - set to -1 to choose random seed seed: 0 # set to True for deterministic performance torch_deterministic: False # set the maximum number of learning iterations to train for. overrides default per-environment setting max_iterations: '' ## Device config physics_engine: 'physx' # whether to use cpu or gpu pipeline pipeline: 'gpu' # whether to use cpu or gpu physx sim_device: 'gpu' # used for gpu simulation only - device id for running sim and task if pipeline=gpu device_id: 0 # device to run RL rl_device: 'cuda:0' ## PhysX arguments num_threads: 4 # Number of worker threads per scene used by PhysX - for CPU PhysX only. solver_type: 1 # 0: pgs, 1: tgs # RLGames Arguments # test - if set, run policy in inference mode (requires setting checkpoint to load) test: False # used to set checkpoint path checkpoint: '' # disables rendering headless: False # timeout for MT script mt_timeout: 30 wandb_activate: False wandb_group: '' wandb_name: ${train.params.config.name} wandb_entity: '' wandb_project: 'omniisaacgymenvs' # set default task and default training config based on task defaults: - task: FrankaBallPushing - train: ${task}PPO - hydra/job_logging: disabled # set the directory where the output files get saved hydra: output_subdir: null run: dir: .
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/cfg/task/FrankaDoorOpen.yaml
# used to create the object name: FrankaDoorOpen physics_engine: ${..physics_engine} # if given, will override the device setting in gym. env: numEnvs: ${resolve_default:16,${...num_envs}} envSpacing: 3.0 episodeLength: 300 enableDebugVis: False clipObservations: 5.0 clipActions: 1.0 controlFrequencyInv: 2 # 60 Hz startPositionNoise: 0.0 startRotationNoise: 0.0 aggregateMode: 3 actionScale: 7.5 dofVelocityScale: 0.1 distRewardScale: 2.0 rotRewardScale: 0.5 aroundHandleRewardScale: 10.0 openRewardScale: 7.5 fingerDistRewardScale: 100.0 actionPenaltyScale: 0.01 fingerCloseRewardScale: 10.0 sim: dt: 0.0083 # 1/120 s use_gpu_pipeline: ${eq:${...pipeline},"gpu"} gravity: [0.0, 0.0, -9.81] add_ground_plane: True use_flatcache: True enable_scene_query_support: False disable_contact_processing: False # set to True if you use camera sensors in the environment enable_cameras: False default_physics_material: static_friction: 1.0 dynamic_friction: 1.0 restitution: 0.0 physx: worker_thread_count: ${....num_threads} solver_type: ${....solver_type} use_gpu: ${eq:${....sim_device},"gpu"} # set to False to run on CPU solver_position_iteration_count: 12 solver_velocity_iteration_count: 1 contact_offset: 0.005 rest_offset: 0.0 bounce_threshold_velocity: 0.2 friction_offset_threshold: 0.04 friction_correlation_distance: 0.025 enable_sleeping: True enable_stabilization: True max_depenetration_velocity: 1000.0 # GPU buffers gpu_max_rigid_contact_count: 524288 gpu_max_rigid_patch_count: 33554432 gpu_found_lost_pairs_capacity: 524288 gpu_found_lost_aggregate_pairs_capacity: 262144 gpu_total_aggregate_pairs_capacity: 1048576 gpu_max_soft_body_contacts: 1048576 gpu_max_particle_contacts: 1048576 gpu_heap_capacity: 33554432 gpu_temp_buffer_capacity: 16777216 gpu_max_num_partitions: 8 franka: # -1 to use default values override_usd_defaults: False enable_self_collisions: True enable_gyroscopic_forces: True # also in stage params # per-actor solver_position_iteration_count: 12 solver_velocity_iteration_count: 1 sleep_threshold: 0.005 stabilization_threshold: 0.001 # per-body density: -1 max_depenetration_velocity: 1000.0 # per-shape contact_offset: 0.005 rest_offset: 0.0 door: # -1 to use default values override_usd_defaults: False enable_self_collisions: False enable_gyroscopic_forces: True # also in stage params # per-actor solver_position_iteration_count: 12 solver_velocity_iteration_count: 1 sleep_threshold: 0.0 stabilization_threshold: 0.001 # per-body density: -1 max_depenetration_velocity: 1000.0 # per-shape contact_offset: 0.005 rest_offset: 0.0
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/cfg/task/FrankaBallCatching.yaml
# used to create the object name: FrankaBallCatching physics_engine: ${..physics_engine} # if given, will override the device setting in gym. env: numEnvs: ${resolve_default:4,${...num_envs}} envSpacing: 3.0 episodeLength: 300 enableDebugVis: False clipObservations: 5.0 clipActions: 1.0 controlFrequencyInv: 2 # 60 Hz startPositionNoise: 0.0 startRotationNoise: 0.0 aggregateMode: 3 actionScale: 7.5 dofVelocityScale: 0.1 distRewardScale: 2.0 rotRewardScale: 0.5 aroundHandleRewardScale: 10.0 openRewardScale: 7.5 fingerDistRewardScale: 100.0 actionPenaltyScale: 0.01 fingerCloseRewardScale: 10.0 sim: dt: 0.0083 # 1/120 s use_gpu_pipeline: ${eq:${...pipeline},"gpu"} gravity: [0.0, 0.0, -9.81] add_ground_plane: True use_flatcache: True enable_scene_query_support: False disable_contact_processing: False # set to True if you use camera sensors in the environment enable_cameras: False default_physics_material: static_friction: 1.0 dynamic_friction: 1.0 restitution: 0.0 physx: worker_thread_count: ${....num_threads} solver_type: ${....solver_type} use_gpu: ${eq:${....sim_device},"gpu"} # set to False to run on CPU solver_position_iteration_count: 12 solver_velocity_iteration_count: 1 contact_offset: 0.005 rest_offset: 0.0 bounce_threshold_velocity: 0.2 friction_offset_threshold: 0.04 friction_correlation_distance: 0.025 enable_sleeping: True enable_stabilization: True max_depenetration_velocity: 1000.0 # GPU buffers gpu_max_rigid_contact_count: 624288 gpu_max_rigid_patch_count: 33554432 gpu_found_lost_pairs_capacity: 524288 gpu_found_lost_aggregate_pairs_capacity: 262144 gpu_total_aggregate_pairs_capacity: 1048576 gpu_max_soft_body_contacts: 1048576 gpu_max_particle_contacts: 1048576 gpu_heap_capacity: 33554432 gpu_temp_buffer_capacity: 16777216 gpu_max_num_partitions: 8 franka: # -1 to use default values override_usd_defaults: False enable_self_collisions: True enable_gyroscopic_forces: True # also in stage params # per-actor solver_position_iteration_count: 12 solver_velocity_iteration_count: 1 sleep_threshold: 0.005 stabilization_threshold: 0.001 # per-body density: -1 max_depenetration_velocity: 1000.0 # per-shape contact_offset: 0.005 rest_offset: 0.0 tool: # -1 to use default values override_usd_defaults: False enable_self_collisions: False enable_gyroscopic_forces: True # also in stage params # per-actor solver_position_iteration_count: 12 solver_velocity_iteration_count: 1 sleep_threshold: 0.0 stabilization_threshold: 0.001 # per-body density: -1 max_depenetration_velocity: 1000.0 # per-shape contact_offset: 0.005 rest_offset: 0.0
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/cfg/task/FrankaBallBalancing.yaml
# used to create the object name: FrankaBallBalancing physics_engine: ${..physics_engine} # if given, will override the device setting in gym. env: numEnvs: ${resolve_default:2048,${...num_envs}} envSpacing: 3.0 episodeLength: 300 enableDebugVis: False clipObservations: 5.0 clipActions: 1.0 controlFrequencyInv: 2 # 60 Hz startPositionNoise: 0.0 startRotationNoise: 0.0 aggregateMode: 3 actionScale: 7.5 dofVelocityScale: 0.1 distRewardScale: 2.0 rotRewardScale: 0.5 aroundHandleRewardScale: 10.0 openRewardScale: 7.5 fingerDistRewardScale: 100.0 actionPenaltyScale: 0.01 fingerCloseRewardScale: 10.0 ballRadius: 0.02 ballInitialPosition: [0.008, 0, 1.1] ballInitialOrientation: [1, 0, 0, 0] sim: dt: 0.0083 # 1/120 s use_gpu_pipeline: ${eq:${...pipeline},"gpu"} gravity: [0.0, 0.0, -9.81] add_ground_plane: True use_flatcache: True enable_scene_query_support: False disable_contact_processing: False # set to True if you use camera sensors in the environment enable_cameras: False default_physics_material: static_friction: 1.0 dynamic_friction: 1.0 restitution: 0.0 physx: worker_thread_count: ${....num_threads} solver_type: ${....solver_type} use_gpu: ${eq:${....sim_device},"gpu"} # set to False to run on CPU solver_position_iteration_count: 12 solver_velocity_iteration_count: 1 contact_offset: 0.005 rest_offset: 0.0 bounce_threshold_velocity: 0.2 friction_offset_threshold: 0.04 friction_correlation_distance: 0.025 enable_sleeping: True enable_stabilization: True max_depenetration_velocity: 1000.0 # GPU buffers gpu_max_rigid_contact_count: 524288 gpu_max_rigid_patch_count: 33554432 gpu_found_lost_pairs_capacity: 524288 gpu_found_lost_aggregate_pairs_capacity: 262144 gpu_total_aggregate_pairs_capacity: 1048576 gpu_max_soft_body_contacts: 1048576 gpu_max_particle_contacts: 1048576 gpu_heap_capacity: 33554432 gpu_temp_buffer_capacity: 16777216 gpu_max_num_partitions: 8 franka: # -1 to use default values override_usd_defaults: False enable_self_collisions: True enable_gyroscopic_forces: True # also in stage params # per-actor solver_position_iteration_count: 12 solver_velocity_iteration_count: 1 sleep_threshold: 0.005 stabilization_threshold: 0.001 # per-body density: -1 max_depenetration_velocity: 1000.0 # per-shape contact_offset: 0.005 rest_offset: 0.0 tool: # -1 to use default values override_usd_defaults: False enable_self_collisions: False enable_gyroscopic_forces: True # also in stage params # per-actor solver_position_iteration_count: 12 solver_velocity_iteration_count: 1 sleep_threshold: 0.0 stabilization_threshold: 0.001 # per-body density: -1 max_depenetration_velocity: 1000.0 # per-shape contact_offset: 0.005 rest_offset: 0.0 ball: # -1 to use default values override_usd_defaults: False fixed_base: False enable_self_collisions: False enable_gyroscopic_forces: True # also in stage params # per-actor solver_position_iteration_count: 12 solver_velocity_iteration_count: 1 sleep_threshold: 0.0 stabilization_threshold: 0.001 # per-body density: -1 max_depenetration_velocity: 1000.0 # per-shape contact_offset: 0.005 rest_offset: 0.0
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/cfg/task/FrankaCubeStacking.yaml
# used to create the object name: FrankaCubeStacking physics_engine: ${..physics_engine} # if given, will override the device setting in gym. env: numEnvs: ${resolve_default:4,${...num_envs}} envSpacing: 3.0 episodeLength: 300 enableDebugVis: False clipObservations: 5.0 clipActions: 1.0 controlFrequencyInv: 2 # 60 Hz startPositionNoise: 0.0 startRotationNoise: 0.0 aggregateMode: 3 actionScale: 7.5 dofVelocityScale: 0.1 distRewardScale: 2.0 rotRewardScale: 0.5 aroundHandleRewardScale: 10.0 openRewardScale: 7.5 fingerDistRewardScale: 100.0 actionPenaltyScale: 0.01 fingerCloseRewardScale: 10.0 sim: dt: 0.0083 # 1/120 s use_gpu_pipeline: ${eq:${...pipeline},"gpu"} gravity: [0.0, 0.0, -9.81] add_ground_plane: True use_flatcache: True enable_scene_query_support: False disable_contact_processing: False # set to True if you use camera sensors in the environment enable_cameras: False default_physics_material: static_friction: 1.0 dynamic_friction: 1.0 restitution: 0.0 physx: worker_thread_count: ${....num_threads} solver_type: ${....solver_type} use_gpu: ${eq:${....sim_device},"gpu"} # set to False to run on CPU solver_position_iteration_count: 12 solver_velocity_iteration_count: 1 contact_offset: 0.005 rest_offset: 0.0 bounce_threshold_velocity: 0.2 friction_offset_threshold: 0.04 friction_correlation_distance: 0.025 enable_sleeping: True enable_stabilization: True max_depenetration_velocity: 1000.0 # GPU buffers gpu_max_rigid_contact_count: 524288 gpu_max_rigid_patch_count: 33554432 gpu_found_lost_pairs_capacity: 524288 gpu_found_lost_aggregate_pairs_capacity: 262144 gpu_total_aggregate_pairs_capacity: 1048576 gpu_max_soft_body_contacts: 1048576 gpu_max_particle_contacts: 1048576 gpu_heap_capacity: 33554432 gpu_temp_buffer_capacity: 16777216 gpu_max_num_partitions: 8 franka: # -1 to use default values override_usd_defaults: False enable_self_collisions: True enable_gyroscopic_forces: True # also in stage params # per-actor solver_position_iteration_count: 12 solver_velocity_iteration_count: 1 sleep_threshold: 0.005 stabilization_threshold: 0.001 # per-body density: -1 max_depenetration_velocity: 1000.0 # per-shape contact_offset: 0.005 rest_offset: 0.0
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/cfg/task/FrankaPegInHole.yaml
# used to create the object name: FrankaPegInHole physics_engine: ${..physics_engine} # if given, will override the device setting in gym. env: numEnvs: ${resolve_default:16,${...num_envs}} envSpacing: 3.0 episodeLength: 300 enableDebugVis: False clipObservations: 5.0 clipActions: 1.0 controlFrequencyInv: 2 # 60 Hz startPositionNoise: 0.0 startRotationNoise: 0.0 aggregateMode: 3 actionScale: 7.5 dofVelocityScale: 0.02 distRewardScale: 2.0 rotRewardScale: 0.5 aroundHandleRewardScale: 10.0 openRewardScale: 7.5 fingerDistRewardScale: 100.0 actionPenaltyScale: 0.01 fingerCloseRewardScale: 10.0 locationBallRadius: 0.0001 locationBallPosition: [0.0, 0.0, 0.0] locationBallInitialOrientation: [1, 0, 0, 0] sim: dt: 0.0083 # 1/120 s use_gpu_pipeline: ${eq:${...pipeline},"gpu"} gravity: [0.0, 0.0, -9.81] add_ground_plane: True use_flatcache: True enable_scene_query_support: False disable_contact_processing: False # set to True if you use camera sensors in the environment enable_cameras: False default_physics_material: static_friction: 1.0 dynamic_friction: 1.0 restitution: 0.0 physx: worker_thread_count: ${....num_threads} solver_type: ${....solver_type} use_gpu: ${eq:${....sim_device},"gpu"} # set to False to run on CPU solver_position_iteration_count: 12 solver_velocity_iteration_count: 1 contact_offset: 0.005 rest_offset: 0.0 bounce_threshold_velocity: 0.2 friction_offset_threshold: 0.04 friction_correlation_distance: 0.025 enable_sleeping: True enable_stabilization: True max_depenetration_velocity: 1000.0 # GPU buffers gpu_max_rigid_contact_count: 524288 gpu_max_rigid_patch_count: 33554432 gpu_found_lost_pairs_capacity: 524288 gpu_found_lost_aggregate_pairs_capacity: 262144 gpu_total_aggregate_pairs_capacity: 1048576 gpu_max_soft_body_contacts: 1048576 gpu_max_particle_contacts: 1048576 gpu_heap_capacity: 33554432 gpu_temp_buffer_capacity: 16777216 gpu_max_num_partitions: 8 franka: # -1 to use default values override_usd_defaults: False enable_self_collisions: True enable_gyroscopic_forces: True # also in stage params # per-actor solver_position_iteration_count: 12 solver_velocity_iteration_count: 1 sleep_threshold: 0.005 stabilization_threshold: 0.001 # per-body density: -1 max_depenetration_velocity: 1000.0 # per-shape contact_offset: 0.005 rest_offset: 0.0 table: # -1 to use default values override_usd_defaults: False enable_self_collisions: False enable_gyroscopic_forces: True # also in stage params # per-actor solver_position_iteration_count: 12 solver_velocity_iteration_count: 1 sleep_threshold: 0.0 stabilization_threshold: 0.001 # per-body density: -1 max_depenetration_velocity: 1000.0 # per-shape contact_offset: 0.005 rest_offset: 0.0 tool: # -1 to use default values override_usd_defaults: False fixed_base: False enable_self_collisions: False enable_gyroscopic_forces: True # also in stage params # per-actor solver_position_iteration_count: 12 solver_velocity_iteration_count: 1 sleep_threshold: 0.0 stabilization_threshold: 0.001 # per-body density: -1 max_depenetration_velocity: 1000.0 # per-shape contact_offset: 0.005 rest_offset: 0.0
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/cfg/task/FrankaPointReaching.yaml
# used to create the object name: FrankaPointReaching physics_engine: ${..physics_engine} # if given, will override the device setting in gym. env: numEnvs: ${resolve_default:4,${...num_envs}} envSpacing: 3.0 episodeLength: 300 enableDebugVis: False clipObservations: 5.0 clipActions: 1.0 controlFrequencyInv: 2 # 60 Hz startPositionNoise: 0.0 startRotationNoise: 0.0 aggregateMode: 3 actionScale: 7.5 dofVelocityScale: 0.1 distRewardScale: 2.0 rotRewardScale: 0.5 aroundHandleRewardScale: 10.0 openRewardScale: 7.5 fingerDistRewardScale: 100.0 actionPenaltyScale: 0.01 fingerCloseRewardScale: 10.0 sim: dt: 0.0083 # 1/120 s use_gpu_pipeline: ${eq:${...pipeline},"gpu"} gravity: [0.0, 0.0, -9.81] add_ground_plane: True use_flatcache: True enable_scene_query_support: False disable_contact_processing: False # set to True if you use camera sensors in the environment enable_cameras: False default_physics_material: static_friction: 1.0 dynamic_friction: 1.0 restitution: 0.0 physx: worker_thread_count: ${....num_threads} solver_type: ${....solver_type} use_gpu: ${eq:${....sim_device},"gpu"} # set to False to run on CPU solver_position_iteration_count: 12 solver_velocity_iteration_count: 1 contact_offset: 0.005 rest_offset: 0.0 bounce_threshold_velocity: 0.2 friction_offset_threshold: 0.04 friction_correlation_distance: 0.025 enable_sleeping: True enable_stabilization: True max_depenetration_velocity: 1000.0 # GPU buffers gpu_max_rigid_contact_count: 524288 gpu_max_rigid_patch_count: 33554432 gpu_found_lost_pairs_capacity: 524288 gpu_found_lost_aggregate_pairs_capacity: 262144 gpu_total_aggregate_pairs_capacity: 1048576 gpu_max_soft_body_contacts: 1048576 gpu_max_particle_contacts: 1048576 gpu_heap_capacity: 33554432 gpu_temp_buffer_capacity: 16777216 gpu_max_num_partitions: 8 franka: # -1 to use default values override_usd_defaults: False enable_self_collisions: True enable_gyroscopic_forces: True # also in stage params # per-actor solver_position_iteration_count: 12 solver_velocity_iteration_count: 1 sleep_threshold: 0.005 stabilization_threshold: 0.001 # per-body density: -1 max_depenetration_velocity: 1000.0 # per-shape contact_offset: 0.005 rest_offset: 0.0 target_ball: # -1 to use default values override_usd_defaults: False enable_self_collisions: False enable_gyroscopic_forces: True # also in stage params # per-actor solver_position_iteration_count: 12 solver_velocity_iteration_count: 1 sleep_threshold: 0.0 stabilization_threshold: 0.001 # per-body density: -1 max_depenetration_velocity: 1000.0 # per-shape contact_offset: 0.005 rest_offset: 0.0
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/cfg/task/FrankaClothPlacing.yaml
# used to create the object name: FrankaClothPlacing physics_engine: ${..physics_engine} # if given, will override the device setting in gym. env: numEnvs: ${resolve_default:4,${...num_envs}} envSpacing: 3.0 episodeLength: 300 enableDebugVis: False clipObservations: 5.0 clipActions: 1.0 controlFrequencyInv: 2 # 60 Hz startPositionNoise: 0.0 startRotationNoise: 0.0 aggregateMode: 3 actionScale: 7.5 dofVelocityScale: 0.1 distRewardScale: 2.0 rotRewardScale: 0.5 aroundHandleRewardScale: 10.0 openRewardScale: 7.5 fingerDistRewardScale: 100.0 actionPenaltyScale: 0.01 fingerCloseRewardScale: 10.0 sim: dt: 0.0083 # 1/120 s use_gpu_pipeline: ${eq:${...pipeline},"gpu"} gravity: [0.0, 0.0, -9.81] add_ground_plane: True use_flatcache: True enable_scene_query_support: False disable_contact_processing: False # set to True if you use camera sensors in the environment enable_cameras: False default_physics_material: static_friction: 1.0 dynamic_friction: 1.0 restitution: 0.0 physx: worker_thread_count: ${....num_threads} solver_type: ${....solver_type} use_gpu: ${eq:${....sim_device},"gpu"} # set to False to run on CPU solver_position_iteration_count: 12 solver_velocity_iteration_count: 1 contact_offset: 0.005 rest_offset: 0.0 bounce_threshold_velocity: 0.2 friction_offset_threshold: 0.04 friction_correlation_distance: 0.025 enable_sleeping: True enable_stabilization: True max_depenetration_velocity: 1000.0 # GPU buffers gpu_max_rigid_contact_count: 524288 gpu_max_rigid_patch_count: 33554432 gpu_found_lost_pairs_capacity: 524288 gpu_found_lost_aggregate_pairs_capacity: 262144 gpu_total_aggregate_pairs_capacity: 1048576 gpu_max_soft_body_contacts: 1048576 gpu_max_particle_contacts: 1048576 gpu_heap_capacity: 33554432 gpu_temp_buffer_capacity: 16777216 gpu_max_num_partitions: 8 franka: # -1 to use default values override_usd_defaults: False enable_self_collisions: True enable_gyroscopic_forces: True # also in stage params # per-actor solver_position_iteration_count: 12 solver_velocity_iteration_count: 1 sleep_threshold: 0.005 stabilization_threshold: 0.001 # per-body density: -1 max_depenetration_velocity: 1000.0 # per-shape contact_offset: 0.005 rest_offset: 0.0 cloth_bin: # -1 to use default values override_usd_defaults: False enable_self_collisions: False enable_gyroscopic_forces: True # also in stage params # per-actor solver_position_iteration_count: 12 solver_velocity_iteration_count: 1 sleep_threshold: 0.0 stabilization_threshold: 0.001 # per-body density: -1 max_depenetration_velocity: 1000.0 # per-shape contact_offset: 0.005 rest_offset: 0.0
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/cfg/task/FrankaBallPushing.yaml
# used to create the object name: FrankaBallPushing physics_engine: ${..physics_engine} # if given, will override the device setting in gym. env: numEnvs: ${resolve_default:16,${...num_envs}} envSpacing: 3.0 episodeLength: 300 enableDebugVis: False clipObservations: 5.0 clipActions: 1.0 controlFrequencyInv: 2 # 60 Hz startPositionNoise: 0.0 startRotationNoise: 0.0 aggregateMode: 3 actionScale: 7.5 dofVelocityScale: 0.01 distRewardScale: 2.0 rotRewardScale: 0.5 aroundHandleRewardScale: 10.0 openRewardScale: 7.5 fingerDistRewardScale: 100.0 actionPenaltyScale: 0.01 fingerCloseRewardScale: 10.0 ballRadius: 0.04 ballInitialPosition: [0.1, 0, 0.45] ballInitialOrientation: [1, 0, 0, 0] tableInitialPosition: [0, 0, 0] tableInitialOrientation: [0, 0, 0, 0] sim: dt: 0.0083 # 1/120 s use_gpu_pipeline: ${eq:${...pipeline},"gpu"} gravity: [0.0, 0.0, -9.81] add_ground_plane: True use_flatcache: True enable_scene_query_support: False disable_contact_processing: False # set to True if you use camera sensors in the environment enable_cameras: False default_physics_material: static_friction: 1.0 dynamic_friction: 1.0 restitution: 0.0 physx: worker_thread_count: ${....num_threads} solver_type: ${....solver_type} use_gpu: ${eq:${....sim_device},"gpu"} # set to False to run on CPU solver_position_iteration_count: 12 solver_velocity_iteration_count: 1 contact_offset: 0.005 rest_offset: 0.0 bounce_threshold_velocity: 0.2 friction_offset_threshold: 0.04 friction_correlation_distance: 0.025 enable_sleeping: True enable_stabilization: True max_depenetration_velocity: 1000.0 # GPU buffers gpu_max_rigid_contact_count: 724288 gpu_max_rigid_patch_count: 33554432 gpu_found_lost_pairs_capacity: 524288 gpu_found_lost_aggregate_pairs_capacity: 262144 gpu_total_aggregate_pairs_capacity: 1048576 gpu_max_soft_body_contacts: 1048576 gpu_max_particle_contacts: 1048576 gpu_heap_capacity: 33554432 gpu_temp_buffer_capacity: 16777216 gpu_max_num_partitions: 8 franka: # -1 to use default values override_usd_defaults: False enable_self_collisions: True enable_gyroscopic_forces: True # also in stage params # per-actor solver_position_iteration_count: 12 solver_velocity_iteration_count: 1 sleep_threshold: 0.005 stabilization_threshold: 0.001 # per-body density: -1 max_depenetration_velocity: 1000.0 # per-shape contact_offset: 0.005 rest_offset: 0.0 table: # -1 to use default values override_usd_defaults: False enable_self_collisions: False enable_gyroscopic_forces: True # also in stage params # per-actor solver_position_iteration_count: 12 solver_velocity_iteration_count: 1 sleep_threshold: 0.0 stabilization_threshold: 0.001 # per-body density: -1 max_depenetration_velocity: 1000.0 # per-shape contact_offset: 0.005 rest_offset: 0.0 ball: # -1 to use default values override_usd_defaults: False fixed_base: False enable_self_collisions: False enable_gyroscopic_forces: True # also in stage params # per-actor solver_position_iteration_count: 12 solver_velocity_iteration_count: 1 sleep_threshold: 0.0 stabilization_threshold: 0.001 # per-body density: -1 max_depenetration_velocity: 1000.0 # per-shape contact_offset: 0.005 rest_offset: 0.0
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/cfg/train/FrankaDoorOpenPPO.yaml
params: seed: ${...seed} algo: name: a2c_continuous model: name: continuous_a2c_logstd network: name: actor_critic separate: False space: continuous: mu_activation: None sigma_activation: None mu_init: name: default sigma_init: name: const_initializer val: 0 fixed_sigma: True mlp: units: [256, 128, 64] activation: elu d2rl: False initializer: name: default regularizer: name: None load_checkpoint: ${if:${...checkpoint},True,False} # flag which sets whether to load the checkpoint load_path: ${...checkpoint} # path to the checkpoint to load config: name: ${resolve_default:FrankaDoorOpen,${....experiment}} full_experiment_name: ${.name} env_name: rlgpu device: ${....rl_device} device_name: ${....rl_device} ppo: True mixed_precision: True normalize_input: True normalize_value: True num_actors: ${....task.env.numEnvs} reward_shaper: scale_value: 0.01 normalize_advantage: True gamma: 0.99 tau: 0.95 learning_rate: 5e-4 lr_schedule: adaptive kl_threshold: 0.008 score_to_win: 10000000 max_epochs: ${resolve_default:100000,${....max_iterations}} save_best_after: 100 save_frequency: 200 print_stats: True grad_norm: 1.0 entropy_coef: 0.0 truncate_grads: True e_clip: 0.2 horizon_length: 256 minibatch_size: 16384 mini_epochs: 8 critic_coef: 4 clip_value: True seq_len: 4 bounds_loss_coef: 0.0001
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/cfg/train/FrankaCubeStackingPPO.yaml
params: seed: ${...seed} algo: name: a2c_continuous model: name: continuous_a2c_logstd network: name: actor_critic separate: False space: continuous: mu_activation: None sigma_activation: None mu_init: name: default sigma_init: name: const_initializer val: 0 fixed_sigma: True mlp: units: [256, 128, 64] activation: elu d2rl: False initializer: name: default regularizer: name: None load_checkpoint: ${if:${...checkpoint},True,False} # flag which sets whether to load the checkpoint load_path: ${...checkpoint} # path to the checkpoint to load config: name: ${resolve_default:FrankaCubeStacking,${....experiment}} full_experiment_name: ${.name} env_name: rlgpu device: ${....rl_device} device_name: ${....rl_device} ppo: True mixed_precision: True normalize_input: True normalize_value: True num_actors: ${....task.env.numEnvs} reward_shaper: scale_value: 0.01 normalize_advantage: True gamma: 0.99 tau: 0.95 learning_rate: 5e-4 lr_schedule: adaptive kl_threshold: 0.008 score_to_win: 10000000 max_epochs: ${resolve_default:100000,${....max_iterations}} save_best_after: 50 save_frequency: 200 print_stats: True grad_norm: 1.0 entropy_coef: 0.0 truncate_grads: True e_clip: 0.2 horizon_length: 16 minibatch_size: 16384 mini_epochs: 8 critic_coef: 4 clip_value: True seq_len: 4 bounds_loss_coef: 0.0001
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/cfg/train/FrankaPegInHolePPO.yaml
params: seed: ${...seed} algo: name: a2c_continuous model: name: continuous_a2c_logstd network: name: actor_critic separate: False space: continuous: mu_activation: None sigma_activation: None mu_init: name: default sigma_init: name: const_initializer val: 0 fixed_sigma: True mlp: units: [256, 128, 64] activation: elu d2rl: False initializer: name: default regularizer: name: None load_checkpoint: ${if:${...checkpoint},True,False} # flag which sets whether to load the checkpoint load_path: ${...checkpoint} # path to the checkpoint to load config: name: ${resolve_default:FrankaPegInHole,${....experiment}} full_experiment_name: ${.name} env_name: rlgpu device: ${....rl_device} device_name: ${....rl_device} ppo: True mixed_precision: True normalize_input: True normalize_value: True num_actors: ${....task.env.numEnvs} reward_shaper: scale_value: 0.01 normalize_advantage: True gamma: 0.95 tau: 0.95 learning_rate: 1e-4 lr_schedule: adaptive kl_threshold: 0.008 score_to_win: 10000000 max_epochs: ${resolve_default:100000,${....max_iterations}} save_best_after: 100 save_frequency: 200 print_stats: True grad_norm: 1.0 entropy_coef: 0.0 truncate_grads: True e_clip: 0.2 horizon_length: 32 minibatch_size: 16384 mini_epochs: 8 critic_coef: 4 clip_value: True seq_len: 4 bounds_loss_coef: 0.0001
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/cfg/train/FrankaClothPlacingPPO.yaml
params: seed: ${...seed} algo: name: a2c_continuous model: name: continuous_a2c_logstd network: name: actor_critic separate: False space: continuous: mu_activation: None sigma_activation: None mu_init: name: default sigma_init: name: const_initializer val: 0 fixed_sigma: True mlp: units: [256, 128, 64] activation: elu d2rl: False initializer: name: default regularizer: name: None load_checkpoint: ${if:${...checkpoint},True,False} # flag which sets whether to load the checkpoint load_path: ${...checkpoint} # path to the checkpoint to load config: name: ${resolve_default:FrankaClothPlacing,${....experiment}} full_experiment_name: ${.name} env_name: rlgpu device: ${....rl_device} device_name: ${....rl_device} ppo: True mixed_precision: True normalize_input: True normalize_value: True num_actors: ${....task.env.numEnvs} reward_shaper: scale_value: 0.01 normalize_advantage: True gamma: 0.99 tau: 0.95 learning_rate: 5e-4 lr_schedule: adaptive kl_threshold: 0.008 score_to_win: 10000000 max_epochs: ${resolve_default:100000,${....max_iterations}} save_best_after: 50 save_frequency: 200 print_stats: True grad_norm: 1.0 entropy_coef: 0.0 truncate_grads: True e_clip: 0.2 horizon_length: 32 minibatch_size: 2048 mini_epochs: 8 critic_coef: 4 clip_value: True seq_len: 4 bounds_loss_coef: 0.0001
zhehuazhou/ai-cps-robotics-benchmark/Gym_Envs/cfg/train/FrankaPointReachingPPO.yaml
params: seed: ${...seed} algo: name: a2c_continuous model: name: continuous_a2c_logstd network: name: actor_critic separate: False space: continuous: mu_activation: None sigma_activation: None mu_init: name: default sigma_init: name: const_initializer val: 0 fixed_sigma: True mlp: units: [256, 128, 64] activation: elu d2rl: False initializer: name: default regularizer: name: None load_checkpoint: ${if:${...checkpoint},True,False} # flag which sets whether to load the checkpoint load_path: ${...checkpoint} # path to the checkpoint to load config: name: ${resolve_default:FrankaCubeStacking,${....experiment}} full_experiment_name: ${.name} env_name: rlgpu device: ${....rl_device} device_name: ${....rl_device} ppo: True mixed_precision: True normalize_input: True normalize_value: True num_actors: ${....task.env.numEnvs} reward_shaper: scale_value: 0.01 normalize_advantage: True gamma: 0.99 tau: 0.95 learning_rate: 5e-4 lr_schedule: adaptive kl_threshold: 0.008 score_to_win: 10000000 max_epochs: ${resolve_default:100000,${....max_iterations}} save_best_after: 50 save_frequency: 200 print_stats: True grad_norm: 1.0 entropy_coef: 0.0 truncate_grads: True e_clip: 0.2 horizon_length: 16 minibatch_size: 16384 mini_epochs: 8 critic_coef: 4 clip_value: True seq_len: 4 bounds_loss_coef: 0.0001