file_path
stringlengths 21
224
| content
stringlengths 0
80.8M
|
---|---|
ft-lab/omniverse_sample_scripts/Settings/GetKitVersion.py | import omni.kit
# Get Omniverse Kit version.
kitVersion = omni.kit.app.get_app_interface().get_build_version()
# 102.1.2+release.xxxx
print("Kit Version : " + str(kitVersion))
# 102.1.2
print(str(" ") + kitVersion.split("+")[0])
|
ft-lab/omniverse_sample_scripts/Settings/GetRenderMode.py | import omni.kit
import carb.settings
import asyncio
# Get Render Mode.
settings = carb.settings.get_settings()
renderMode = settings.get('/rtx/rendermode')
# rtx, iray
activeRender = settings.get('/renderer/active')
if activeRender == 'iray':
print("Render Mode : Iray")
else:
if renderMode == 'RaytracedLighting':
print("Render Mode : RTX Real-time")
else:
if renderMode == 'PathTracing':
print("Render Mode : RTX Path-traced")
else:
print("Render Mode : " + renderMode)
# Set Render mode.
# It is safe to wait for one frame in the coroutine to change the RenderMode.
async def SetRenderMode (modeName : str):
await omni.kit.app.get_app().next_update_async()
settings.set('/rtx/rendermode', modeName)
# Set "RTX Real-time"
asyncio.ensure_future(SetRenderMode('RaytracedLighting'))
# Set "RTX Path-traced"
asyncio.ensure_future(SetRenderMode('PathTracing'))
|
ft-lab/omniverse_sample_scripts/Scene/OpenUSDFile.py | from pxr import Usd, UsdGeom, UsdShade, Sdf, Gf, Tf
try:
# Open USD File.
ret = omni.usd.get_context().open_stage("xxx.usd")
print("open_stage : " + str(ret))
except Exception as e:
print(e)
|
ft-lab/omniverse_sample_scripts/Scene/CloseStage.py | from pxr import Usd, UsdGeom, UsdShade, Sdf, Gf, Tf
omni.usd.get_context().close_stage()
|
ft-lab/omniverse_sample_scripts/Scene/StageUpAxis.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get UpAxis.
upAxis = UsdGeom.GetStageUpAxis(stage)
if upAxis == UsdGeom.Tokens.x:
print("UpAxis : X")
elif upAxis == UsdGeom.Tokens.y:
print("UpAxis : Y")
elif upAxis == UsdGeom.Tokens.z:
print("UpAxis : Z")
# Set UpAxis (Y-Up).
try:
UsdGeom.SetStageUpAxis(stage, UsdGeom.Tokens.y)
except Exception as e:
print(e)
|
ft-lab/omniverse_sample_scripts/Scene/GetResolvedPath.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
try:
# Open USD File.
usdPath = "https://ft-lab.github.io/usd/omniverse/usd/cyawan/cyawan.usdc"
ret = omni.usd.get_context().open_stage(usdPath)
if ret == True:
# Get stage.
stage = omni.usd.get_context().get_stage()
# Convert relative paths to absolute paths from Stage.
# It is necessary to specify the relative path where the texture name, Reference, etc. exists on the Stage.
absPath = stage.ResolveIdentifierToEditTarget("./cyawan_mat_albedo.png")
# "https://ft-lab.github.io/usd/omniverse/usd/cyawan/cyawan_mat_albedo.png"
print(absPath)
except Exception as e:
print(e)
|
ft-lab/omniverse_sample_scripts/Scene/readme.md | # Scene
シーン(Stage)の情報を取得/操作します。
|ファイル|説明|
|---|---|
|[StageUpAxis.py](./StageUpAxis.py)|Stageのアップベクトルの取得/設定|
|[CreateHierarchy.py](./CreateHierarchy.py)|Xformを使って階層構造を作って形状を配置<br>|
|[GetAllFacesCount.py](./GetAllFacesCount.py)|シーン内のすべてのMeshの面数を合計して表示。<br>対象はMesh/PointInstancer。|
|[TraverseHierarchy.py](./TraverseHierarchy.py)|シーンの階層構造をたどってPrim名を表示。<br>Meshの場合はMeshの面数も表示。|
|[Traverse_mesh.py](./Traverse_mesh.py)|Usd.PrimRangeを使ってPrimを取得し、Meshのみを格納|
|[GetMetersPerUnit.py](./GetMetersPerUnit.py)|metersPerUnitの取得/設定|
|[NewStage.py](./NewStage.py)|何も配置されていない新しいStageを作成します。<br>なお、直前のStageの変更は保存されません。|
|[CloseStage.py](./CloseStage.py)|現在のStageを閉じます。<br>なお、直前のStageの変更は保存されません。|
|[OpenUSDFile.py](./OpenUSDFile.py)|指定のUSDファイルを開きます。<br>なお、直前のStageの変更は保存されません。|
|[GetResolvedPath.py](./GetResolvedPath.py)|カレントStageで指定されている相対パス(テクスチャやReferenceとして参照しているusdファイルなど)を絶対パスに変換。<br>存在しないパスを指定した場合は空文字が返る。|
## レイヤ関連
|ファイル|説明|
|---|---|
|[GetRealPath.py](./Layers/GetRealPath.py)|読み込んだStageのパスを取得|
|[GetSublayers.py](./Layers/GetSublayers.py)|SubLayerのパスを取得| |
ft-lab/omniverse_sample_scripts/Scene/NewStage.py | from pxr import Usd, UsdGeom, UsdShade, Sdf, Gf, Tf
omni.usd.get_context().new_stage()
print("New Stage !")
|
ft-lab/omniverse_sample_scripts/Scene/GetAllFacesCount.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# ---------------------------------------.
# Get the number of faces used by PointInstancer.
# ---------------------------------------.
def TraversePointInstancer (prim):
typeName = prim.GetTypeName()
allCou = 0
if typeName == 'Mesh':
m = UsdGeom.Mesh(prim)
# If it is displayed.
if m.ComputeVisibility() == 'inherited':
# Get the number of faces of Mesh.
allCou += len(m.GetFaceVertexCountsAttr().Get())
# Recursively traverse the hierarchy.
pChildren = prim.GetChildren()
for cPrim in pChildren:
allCou += TraversePointInstancer(cPrim)
return allCou
# ---------------------------------------.
# traverse the hierarchy.
# ---------------------------------------.
def TraverseHierarchy_number (depth, prim):
if prim.IsValid() == None:
return 0
typeName = prim.GetTypeName()
allCou = 0
if typeName == 'PointInstancer':
m = UsdGeom.PointInstancer(prim)
# If it is displayed.
if m.ComputeVisibility() == 'inherited':
# Get the number of faces used by PointInstancer.
facesCou = TraversePointInstancer(prim)
piCou = 0
positionsA = m.GetPositionsAttr().Get()
if positionsA != None:
piCou = len(positionsA)
allCou += facesCou * piCou
return allCou
if typeName == 'Mesh':
m = UsdGeom.Mesh(prim)
# If it is displayed.
if m.ComputeVisibility() == 'inherited':
# Get the number of faces of Mesh.
allCou += len(m.GetFaceVertexCountsAttr().Get())
# Recursively traverse the hierarchy.
pChildren = prim.GetChildren()
for cPrim in pChildren:
allCou += TraverseHierarchy_number(depth + 1, cPrim)
return allCou
# ---------------------------------------.
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get default prim.
defaultPrim = stage.GetDefaultPrim()
# Get root path.
rootPath = '/'
if defaultPrim.IsValid():
rootPath = defaultPrim.GetPath().pathString
# traverse the hierarchy.
tPrim = stage.GetPrimAtPath(rootPath)
allFacesCou = TraverseHierarchy_number(0, tPrim)
print("Number of all faces : " + str(allFacesCou))
|
ft-lab/omniverse_sample_scripts/Scene/CreateHierarchy.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get default prim.
defaultPrim = stage.GetDefaultPrim()
# Get root path.
rootPath = ''
if defaultPrim.IsValid():
rootPath = defaultPrim.GetPath().pathString
# Create empty node(Xform).
UsdGeom.Xform.Define(stage, rootPath + '/node1')
# Create empty node(Xform).
UsdGeom.Xform.Define(stage, rootPath + '/node1/node1_2')
# Create sphere.
pathName = rootPath + '/node1/sphere'
sphereGeom = UsdGeom.Sphere.Define(stage, pathName)
# Set radius.
sphereGeom.CreateRadiusAttr(1.0)
# Set position.
UsdGeom.XformCommonAPI(sphereGeom).SetTranslate((-3, 0, 0))
# Create cube.
pathName = rootPath + '/node1/cube'
cubeGeom = UsdGeom.Cube.Define(stage, pathName)
# Set position.
UsdGeom.XformCommonAPI(cubeGeom).SetTranslate((0, 0, 0))
|
ft-lab/omniverse_sample_scripts/Scene/GetMetersPerUnit.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get metersPerUnit (default : 0.01).
metersPerUnit = UsdGeom.GetStageMetersPerUnit(stage)
print("MetersPerUnit : " + str(metersPerUnit))
# Set metersPerUnit.
try:
UsdGeom.SetStageMetersPerUnit(stage, 0.01)
except Exception as e:
print(e)
|
ft-lab/omniverse_sample_scripts/Scene/TraverseHierarchy.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# ---------------------------------------.
# traverse the hierarchy.
# ---------------------------------------.
def TraverseHierarchy (depth, prim):
if prim.IsValid() == None:
return
indentStr = ''
for i in range(depth):
indentStr += ' '
# Print Prim information.
name = prim.GetName()
typeName = prim.GetTypeName()
s = indentStr + '[ ' + name + ' ]'
s += ' type : ' + typeName
# If hidden.
if UsdGeom.Imageable(prim).ComputeVisibility() == 'invisible':
s += ' ** Hide **'
print(s)
if typeName == 'Mesh':
# Get the number of faces of Mesh.
m = UsdGeom.Mesh(prim)
faceCount = len(m.GetFaceVertexCountsAttr().Get())
print(indentStr + ' Face count : ' + str(faceCount))
# Recursively traverse the hierarchy.
pChildren = prim.GetChildren()
for cPrim in pChildren:
TraverseHierarchy(depth + 1, cPrim)
# ---------------------------------------.
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get default prim.
print("--- Default prim ---")
defaultPrim = stage.GetDefaultPrim()
if defaultPrim.IsValid():
print("DefaultPrim(Name) : " + defaultPrim.GetName())
print("DefaultPrim(Path) : " + defaultPrim.GetPath().pathString)
else:
print("Default Prim does not exist.")
print("")
# Get root path.
rootPath = '/'
if defaultPrim.IsValid():
rootPath = defaultPrim.GetPath().pathString
print("Root path : " + rootPath)
print("")
# traverse the hierarchy.
tPrim = stage.GetPrimAtPath(rootPath)
print("--- Hierarchy ---")
TraverseHierarchy(0, tPrim)
print("")
|
ft-lab/omniverse_sample_scripts/Scene/Traverse_mesh.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
defaultPrim = stage.GetDefaultPrim()
if defaultPrim.IsValid():
prims = []
for prim in Usd.PrimRange(defaultPrim):
if prim.IsA(UsdGeom.Mesh): # For Mesh.
prims.append(prim)
for prim in prims:
print(prim.GetName() + " (" + prim.GetPath().pathString + ")")
|
ft-lab/omniverse_sample_scripts/Scene/Layers/GetSublayers.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get root layer.
rootLayer = stage.GetRootLayer()
# Get subLayer paths.
sublayerPaths = rootLayer.subLayerPaths
for path in sublayerPaths:
print(" " + path)
|
ft-lab/omniverse_sample_scripts/Scene/Layers/GetRealPath.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get root layer.
rootLayer = stage.GetRootLayer()
# Get real path.
realPath = rootLayer.realPath
print("realPath : " + realPath)
|
ft-lab/omniverse_sample_scripts/Audio/PlaySound.py | import omni.audioplayer # need "omni.audioplayer" extension.
import time
import asyncio
# ----------------------------------------------.
# AudioPlayer.
# ----------------------------------------------.
class AudioPlayer:
_player = None
_filePath = None
_loadSuccess = False
_loadBusy = False
def __init__(self):
pass
def startup (self):
self._player = omni.audioplayer.create_audio_player()
def shutdown (self):
self.stop()
self._player = None
def _file_loaded (self, success : bool):
self._loadSuccess = success
if success:
print("load success!")
soundLength = self._player.get_sound_length()
print(f"sound length : {soundLength} sec")
else:
print("load failed...")
self._loadBusy = False
# Load sound from file.
def loadFromFile (self, filePath : str):
self._loadSuccess = False
if self._player == None:
return
self._filePath = filePath
self._loadBusy = True
self._player.load_sound(filePath, self._file_loaded)
# Wait for it to finish loading.
def isLoad (self):
while self._loadBusy:
time.sleep(0.1)
return self._loadSuccess
# Called when playback is finished.
def _play_finished (self):
print("play finished.")
# Play sound.
def play (self):
if self._player == None:
return False
self._player.play_sound(self._filePath, None, self._play_finished, 0.0)
# Stop sound.
def stop (self):
if self._player != None:
self._player.stop_sound()
# ----------------------------------------------.
# Initialize AudioPlayer.
audio = AudioPlayer()
audio.startup()
# Load sound file.
# Specify an Audio file name that matches your environment.
audio.loadFromFile("./audio/HitWall.ogg")
if audio.isLoad():
for i in range(3):
# Play sound.
audio.play()
# Wait one seconds.
time.sleep(1.0)
# Terminate AudioPlayer.
audio.shutdown()
|
ft-lab/omniverse_sample_scripts/Audio/readme.md | # Audio
Audioファイルを読み込んで再生します。
Audio自身はUSDでPrimとして指定することができます。
UsdAudio Proposal
https://graphics.pixar.com/usd/release/wp_usdaudio.html
また、OmniverseでもUIとしてAudioのStageへのインポートができます。
https://docs.omniverse.nvidia.com/app_create/prod_extensions/ext_audio.html
Audioファイルフォーマットは、wav/ogg/mp3が再生できるのを確認しています。
USDファイルにAudioを指定でき、この場合はTimelineの指定の位置での再生が可能です。
Pythonスクリプトから任意のタイミングでの再生するにはExtensionの「omni.audioplayer」を使用します。
Audioファイルは [HitWall.ogg](./audio/HitWall.ogg) をサンプルとしてアップしているため、
スクリプトから検索できる位置に配置してご利用くださいませ。
|ファイル|説明|
|---|---|
|[PlaySound.py](./PlaySound.py)|Audioファイルを読み込んで再生<br>"omni.audioplayer" ExtensionをOnにする必要があります。|
|
ft-lab/omniverse_sample_scripts/Prim/IsValid.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
path = "/World"
# Get prim.
prim = stage.GetPrimAtPath(path)
# Use IsValid to check if the specified Prim exists.
print(path + " : " + str(prim.IsValid()))
|
ft-lab/omniverse_sample_scripts/Prim/GetSingleSided.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
for path in paths:
# Get prim.
prim = stage.GetPrimAtPath(path)
if prim.IsValid() == False:
continue
try:
singleSidedAttr = prim.GetAttribute("singleSided")
if singleSidedAttr != None and singleSidedAttr.IsValid():
# Get singleSided (True/False).
if singleSidedAttr.Get() != None:
print("[" + prim.GetName() + "] singleSided : " + str(singleSidedAttr.Get()))
# Set singleSided.
#if prim.GetTypeName() == 'Mesh':
# singleSidedAttr = prim.CreateAttribute("singleSided", Sdf.ValueTypeNames.Bool)
# singleSidedAttr.Set(True)
except Exception as e:
print(e)
|
ft-lab/omniverse_sample_scripts/Prim/CreateXform.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get default prim.
defaultPrim = stage.GetDefaultPrim()
defaultPrimPath = defaultPrim.GetPath().pathString
path = defaultPrimPath + '/xform'
# Create empty node(Xform).
UsdGeom.Xform.Define(stage, path)
|
ft-lab/omniverse_sample_scripts/Prim/readme.md | # Prim
USDのPrim(ノード相当)を操作します。
Primの操作は「[CommandsExecute](../Operation/CommandsExecute)」も便利に使用できます。
|ファイル|説明|
|---|---|
|[IsValid.py](./IsValid.py)|指定のパスのPrimが存在するかチェック(IsValid)|
|[GetPrimNamePath.py](./GetPrimNamePath.py)|指定のPrimの名前とパスを取得|
|[GetDefaultPrim.py](./GetDefaultPrim.py)|StageのルートとなるPrim(DefaultPrim)を取得|
|[SetDefaultPrim.py](./SetDefaultPrim.py)|StageのルートとなるPrim(DefaultPrim)を指定|
|[CreateXform.py](./CreateXform.py)|空のノード(Nullノード相当)を作成。<br>USDではこれを"Xform"と呼んでいます。<br>UsdGeom.Xform ( https://graphics.pixar.com/usd/release/api/class_usd_geom_xform.html )を使用します。|
|[CreateScope.py](./CreateScope.py)|Scopeを作成。<br>Scopeは移動/回転/スケール要素を持ちません。単純なグルーピング向けです。<br>UsdGeom.Scope ( https://graphics.pixar.com/usd/release/api/class_usd_geom_scope.html )を使用します。|
|[GetDoubleSided.py](./GetDoubleSided.py)|ジオメトリでのDoubleSided指定の取得、設定|
|[GetSingleSided.py](./GetSingleSided.py)|ジオメトリでのSingleSided指定の取得、設定<br>これはOmniverseでの独自の属性|
|[GetParent.py](./GetParent.py)|選択パスの親のPrimを取得|
|[GetChildren.py](./GetChildren.py)|選択パスの子のPrimを取得|
|[CalcWorldBoundingBox.py](./CalcWorldBoundingBox.py)|選択形状のワールド座標でのバウンディングボックスを計算|
|[RemovePrim.py](./RemovePrim.py)|指定のパスのPrimを削除。<br>Sdf.NamespaceEdit.Removeを使用する。|
|[RenamePrim.py](./RenamePrim.py)|指定のパスのPrim名を変更。<br>Sdf.NamespaceEdit.Renameを使用する。|
|サンプル|説明|
|---|---|
|[Visibility](./Visibility)|Primの表示/非表示|
|[Kind](./Kind)|PrimのKindを取得/設定|
|[Transform](./Transform)|Transform(scale/rotate/translate)の取得/設定|
|[TypeName](./TypeName)|PrimのTypeName(Xform/Mesh/DistantLightなど)を取得|
|[Skeleton](./Skeleton)|Skeletonでの情報を取得|
|[Reference](./Reference)|参照(Reference/Payload)を使った複製/参照のチェック|
|[PointInstancer](./PointInstancer)|アセット(USDで指定)を複数の位置/回転/スケールで複製配置(PointInstancer)|
|[Variant](./Variant)|Variantを使ったPrimの切り替え|
|
ft-lab/omniverse_sample_scripts/Prim/GetParent.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
for path in paths:
# Get prim.
prim = stage.GetPrimAtPath(path)
if prim.IsValid() == False:
continue
# Get parent prim.
parentPrim = prim.GetParent()
if parentPrim.IsValid():
print("[ " + prim.GetPath().pathString + " ]")
print(" Parent : " + parentPrim.GetPath().pathString)
|
ft-lab/omniverse_sample_scripts/Prim/CreateScope.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get default prim.
defaultPrim = stage.GetDefaultPrim()
defaultPrimPath = defaultPrim.GetPath().pathString
path = defaultPrimPath + '/scope'
# Create scope.
UsdGeom.Scope.Define(stage, path)
|
ft-lab/omniverse_sample_scripts/Prim/SetDefaultPrim.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Create empty node(Xform).
path = "/NewWorld"
UsdGeom.Xform.Define(stage, path)
prim = stage.GetPrimAtPath(path)
# Set default prim.
stage.SetDefaultPrim(prim)
|
ft-lab/omniverse_sample_scripts/Prim/GetPrimNamePath.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get prim.
orgPath = "/World/defaultLight"
prim = stage.GetPrimAtPath(orgPath)
if prim.IsValid():
# Get Prim name.
name = prim.GetName()
print("Name : " + str(name))
# Get Prim path.
path = prim.GetPath()
print("Path : " + str(path))
|
ft-lab/omniverse_sample_scripts/Prim/RemovePrim.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get prim.
path = "/World/Sphere"
prim = stage.GetPrimAtPath(path)
if prim.IsValid():
# Remove prim.
# See here : https://graphics.pixar.com/usd/release/api/class_usd_stage.html#ac605faad8fc2673263775b1eecad2955
# For example, if Prim is used in a layer, RemovePrim will not remove it completely.
#stage.RemovePrim(path)
# Prepare specified paths as candidates for deletion.
edit = Sdf.NamespaceEdit.Remove(path)
batchE = Sdf.BatchNamespaceEdit()
batchE.Add(edit)
# Execute Deletion.
stage.GetEditTarget().GetLayer().Apply(batchE)
|
ft-lab/omniverse_sample_scripts/Prim/GetDefaultPrim.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get default prim.
defaultPrim = stage.GetDefaultPrim()
# Default prim path.
defaultPrimPath = defaultPrim.GetPath().pathString
print("DefaultPrim : " + defaultPrimPath) |
ft-lab/omniverse_sample_scripts/Prim/GetChildren.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
for path in paths:
# Get prim.
prim = stage.GetPrimAtPath(path)
if prim.IsValid() == False:
continue
# Get children.
pChildren = prim.GetChildren()
if len(pChildren) >= 1:
print("[ " + prim.GetPath().pathString + " ]")
for cPrim in pChildren:
print(" " + cPrim.GetPath().pathString)
|
ft-lab/omniverse_sample_scripts/Prim/GetDoubleSided.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
for path in paths:
# Get prim.
prim = stage.GetPrimAtPath(path)
if prim.IsValid() == False:
continue
try:
gprim = UsdGeom.Gprim(prim)
doubleSidedAttr = gprim.GetDoubleSidedAttr()
if doubleSidedAttr != None and doubleSidedAttr.IsValid():
# Get doubleSided (True/False).
# The Omniverse Viewport does not reflect "doubleSided", but "singleSided".
if doubleSidedAttr.Get() != None:
print("[" + prim.GetName() + "] doubleSided : " + str(doubleSidedAttr.Get()))
# Set DoubleSided.
#doubleSidedAttr.Set(True)
except Exception as e:
print(e)
|
ft-lab/omniverse_sample_scripts/Prim/CalcWorldBoundingBox.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
import omni.usd
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
# -------------------------------------------------.
# Calculate bounding box in world coordinates.
# -------------------------------------------------.
def _calcWorldBoundingBox (prim : Usd.Prim):
# Calc world boundingBox.
bboxCache = UsdGeom.BBoxCache(Usd.TimeCode.Default(), ["default"])
bboxD = bboxCache.ComputeWorldBound(prim).ComputeAlignedRange()
bb_min = Gf.Vec3f(bboxD.GetMin())
bb_max = Gf.Vec3f(bboxD.GetMax())
return bb_min, bb_max
# -------------------------------------------------.
for path in paths:
# Get prim.
prim = stage.GetPrimAtPath(path)
if prim.IsValid() == False:
continue
print("[ " + str(prim.GetName()) + "] ")
bbMin, bbMax = _calcWorldBoundingBox(prim)
print(" BoundingBox : " + str(bbMin) + " - " + str(bbMax))
sx = bbMax[0] - bbMin[0]
sy = bbMax[1] - bbMin[1]
sz = bbMax[2] - bbMin[2]
print(" BoundingBoxSize : " + str(sx) + " x " + str(sy) + " x " + str(sz))
|
ft-lab/omniverse_sample_scripts/Prim/RenamePrim.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get prim.
path = "/World/Sphere"
prim = stage.GetPrimAtPath(path)
if prim.IsValid():
# Rename prim.
# Prepare specified paths as candidates for rename.
# "/World/Sphere" to "/World/Sphere2"
edit = Sdf.NamespaceEdit.Rename(path, "Sphere2")
batchE = Sdf.BatchNamespaceEdit()
batchE.Add(edit)
# Execute rename.
stage.GetEditTarget().GetLayer().Apply(batchE)
|
ft-lab/omniverse_sample_scripts/Prim/Reference/InternalReferenceTest.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get default prim.
defaultPrim = stage.GetDefaultPrim()
defaultPrimPath = defaultPrim.GetPath().pathString
# Create sphere.
orgPath = defaultPrimPath + '/org'
UsdGeom.Xform.Define(stage, orgPath)
spherePath = orgPath + '/sphere'
sphereGeom = UsdGeom.Sphere.Define(stage, spherePath)
# Set radius.
sphereGeom.CreateRadiusAttr(2.0)
# Set color.
sphereGeom.CreateDisplayColorAttr([(1.0, 0.0, 0.0)])
# Create empty node(Xform).
path = defaultPrimPath + '/refShape'
UsdGeom.Xform.Define(stage, path)
prim = stage.GetPrimAtPath(path)
# Set position.
UsdGeom.XformCommonAPI(prim).SetTranslate((5.0, 0.0, 0.0))
# Remove references.
prim.GetReferences().ClearReferences()
# Add a internal reference.
# The Path to be added must be an Xform.
prim.GetReferences().AddInternalReference(orgPath)
|
ft-lab/omniverse_sample_scripts/Prim/Reference/ReferenceTest2.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get default prim.
defaultPrim = stage.GetDefaultPrim()
defaultPrimPath = defaultPrim.GetPath().pathString
# Create empty node(Xform).
path = defaultPrimPath + '/refShape'
UsdGeom.Xform.Define(stage, path)
prim = stage.GetPrimAtPath(path)
# Remove references.
prim.GetReferences().ClearReferences()
# Add a reference.
#usdPath = "./cyawan/cyawan.usdc"
usdPath = "https://ft-lab.github.io/usd/omniverse/usd/cyawan/cyawan.usdc"
prim.GetReferences().AddReference(usdPath)
|
ft-lab/omniverse_sample_scripts/Prim/Reference/readme.md | # Reference
参照の処理を行います。
## ReferenceとPayload
USDでは、他のUSDを参照する構造として"Reference"と"Payload"があります。
Payload は「弱い参照」となります。
Payload としてインポートした場合は、見た目上は参照と変わりません。
以下はOmniverse Createでのパラメータです(USD自身がこの構造を持っています)。

Payload したUSDはアンロードすることができ、これによりメモリ解放できます。
また、必要な時にロードできます。
対してReferenceの場合は参照のロード/アンロード機能はありません。
Payloadのほうが利便性があるため、基本的にはPayloadで参照を指定するほうがよいかもしれません。
## サンプル
|ファイル|説明|
|---|---|
|[ReferenceTest.py](./ReferenceTest.py)|作成したXformに対して外部のusdファイルを参照として追加。<br>このサンプルでは、"ft-lab.github.io/usd/omniverse" 内を参照しています。<br>適宜「[sphere.usda](./usd/sphere.usda)」を相対パスとして検索できる位置に配置して試すようにしてください。<br>|
|[PayloadTest.py](./PayloadTest.py)|作成したXformに対して外部のusdファイルを参照(Payload)として追加。<br>このサンプルでは、"ft-lab.github.io/usd/omniverse" 内を参照しています。<br>適宜「[sphere.usda](./usd/sphere.usda)」を相対パスとして検索できる位置に配置して試すようにしてください。<br>|
|[ReferenceTest2.py](./ReferenceTest2.py)|作成したXformに対して外部のテクスチャ付きのusdファイルを参照として追加。<br>このサンプルでは、"ft-lab.github.io/usd/omniverse" 内を参照しています。<br>適宜「[./cyawan/cyawan.usdc](./usd/cyawan/cyawan.usdc)」を相対パスとして検索できる位置に配置して試すようにしてください。<br>|
|[InternalReferenceTest.py](./InternalReferenceTest.py)|作成したXformに対して同一Stage内のPrimを参照として追加<br>|
|[HasReference.py](./HasReference.py)|選択した形状が参照を持つかチェック|
|[HasPayload.py](./HasPayload.py)|選択した形状がPayloadを持つかチェック|
|[GetReferencePayload.py](./GetReferencePayload.py)|選択した形状がReferenceまたはPayloadの場合に、参照先のパスを取得|
----
|
ft-lab/omniverse_sample_scripts/Prim/Reference/ReferenceTest.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get default prim.
defaultPrim = stage.GetDefaultPrim()
defaultPrimPath = defaultPrim.GetPath().pathString
# Create empty node(Xform).
path = defaultPrimPath + '/refShape'
UsdGeom.Xform.Define(stage, path)
prim = stage.GetPrimAtPath(path)
# Remove references.
prim.GetReferences().ClearReferences()
# Add a reference.
#usdPath = "./sphere.usda"
usdPath = "https://ft-lab.github.io/usd/omniverse/usd/sphere.usda"
prim.GetReferences().AddReference(usdPath)
|
ft-lab/omniverse_sample_scripts/Prim/Reference/HasReference.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
for path in paths:
prim = stage.GetPrimAtPath(path)
if prim.IsValid():
if prim.HasAuthoredReferences():
print("[ " + prim.GetName() + " ] has references.")
|
ft-lab/omniverse_sample_scripts/Prim/Reference/GetReferencePayload.py | # "Pcp" added below.
from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf, Pcp
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
for path in paths:
prim = stage.GetPrimAtPath(path)
if prim.IsValid():
# If Prim has Reference or Payload.
if prim.HasAuthoredReferences() or prim.HasPayload():
query = Usd.PrimCompositionQuery.GetDirectRootLayerArcs(prim)
qList = query.GetCompositionArcs()
if qList != None:
for arc in qList:
arcType = arc.GetArcType()
if arcType != Pcp.ArcTypeReference and arcType != Pcp.ArcTypePayload:
continue
# Get AssetPath.
editorProxy, reference = arc.GetIntroducingListEditor()
assetPath = reference.assetPath
if arcType == Pcp.ArcTypeReference:
print("[" + prim.GetName() + "] has reference > " + assetPath)
if arcType == Pcp.ArcTypePayload:
print("[" + prim.GetName() + "] has payload. > " + assetPath)
|
ft-lab/omniverse_sample_scripts/Prim/Reference/HasPayload.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
for path in paths:
prim = stage.GetPrimAtPath(path)
if prim.IsValid():
if prim.HasPayload():
print("[ " + prim.GetName() + " ] has payload.")
|
ft-lab/omniverse_sample_scripts/Prim/Reference/PayloadTest.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get default prim.
defaultPrim = stage.GetDefaultPrim()
defaultPrimPath = defaultPrim.GetPath().pathString
# Create empty node(Xform).
path = defaultPrimPath + '/refShape'
UsdGeom.Xform.Define(stage, path)
prim = stage.GetPrimAtPath(path)
# Clear payload.
prim.ClearPayload()
# Set payload.
#usdPath = "./sphere.usda"
usdPath = "https://ft-lab.github.io/usd/omniverse/usd/sphere.usda"
prim.SetPayload(Sdf.Payload(usdPath))
|
ft-lab/omniverse_sample_scripts/Prim/Reference/usd/simple_chair.usda | #usda 1.0
(
defaultPrim = "root"
endTimeCode = 300
framesPerSecond = 30
startTimeCode = 0
)
def Xform "root" (
kind = "component"
)
{
def Scope "Materials"
{
def Material "simple_chair"
{
token outputs:mdl:surface.connect = </root/Materials/simple_chair/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"
color3f inputs:diffuse_color_constant = (0.6120656, 0.6120656, 0.6120656) (
customData = {
float3 default = (0.2, 0.2, 0.2)
}
displayGroup = "Albedo"
displayName = "Base Color"
)
float inputs:metallic_constant = 0 (
customData = {
float default = 0
}
displayGroup = "Reflectivity"
displayName = "Metallic Amount"
)
float inputs:reflection_roughness_constant = 0.6 (
customData = {
float default = 0.5
}
displayGroup = "Reflectivity"
displayName = "Roughness Amount"
)
token outputs:out
}
}
}
def Mesh "simple_chair"
{
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]
int[] faceVertexIndices = [1, 3, 2, 0, 5, 7, 6, 4, 70, 58, 56, 68, 66, 62, 59, 71, 64, 60, 63, 67, 69, 57, 61, 65, 9, 11, 10, 8, 13, 15, 14, 12, 86, 74, 72, 84, 82, 78, 75, 87, 80, 76, 79, 83, 85, 73, 77, 81, 17, 19, 18, 16, 21, 23, 22, 20, 102, 90, 88, 100, 98, 94, 91, 103, 96, 92, 95, 99, 101, 89, 93, 97, 25, 27, 26, 24, 29, 31, 30, 28, 118, 106, 104, 116, 114, 110, 107, 119, 112, 108, 111, 115, 117, 105, 109, 113, 33, 35, 34, 32, 37, 39, 38, 36, 134, 122, 120, 132, 130, 126, 123, 135, 128, 124, 127, 131, 133, 121, 125, 129, 41, 43, 42, 40, 45, 47, 46, 44, 150, 138, 136, 148, 146, 142, 139, 151, 144, 140, 143, 147, 149, 137, 141, 145, 49, 51, 50, 48, 53, 55, 54, 52, 166, 154, 152, 164, 162, 158, 155, 167, 160, 156, 159, 163, 165, 153, 157, 161]
rel material:binding = </root/Materials/simple_chair>
normal3f[] normals = [(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, 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, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 0, 1), (1, 0, 0), (0, 0, 1), (-1, 0, 0), (0, 0, -1), (1, 0, 0), (-1, 0, 0), (0, 0, -1), (0, 0, -1), (1, 0, 0), (-1, 0, 0), (0, 0, -1), (0, 0, 1), (1, 0, 0), (0, 0, 1), (-1, 0, 0), (0, 0, 1), (1, 0, 0), (0, 0, 1), (-1, 0, 0), (0, 0, -1), (1, 0, 0), (-1, 0, 0), (0, 0, -1), (0, 0, -1), (1, 0, 0), (-1, 0, 0), (0, 0, -1), (0, 0, 1), (1, 0, 0), (0, 0, 1), (-1, 0, 0), (0, 0, 1), (1, 0, 0), (0, 0, 1), (-1, 0, 0), (0, 0, -1), (1, 0, 0), (-1, 0, 0), (0, 0, -1), (0, 0, -1), (1, 0, 0), (-1, 0, 0), (0, 0, -1), (0, 0, 1), (1, 0, 0), (0, 0, 1), (-1, 0, 0), (0, 0, 1), (1, 0, 0), (0, 0, 1), (-1, 0, 0), (0, 0, -1), (1, 0, 0), (-1, 0, 0), (0, 0, -1), (0, 0, -1), (1, 0, 0), (-1, 0, 0), (0, 0, -1), (0, 0, 1), (1, 0, 0), (0, 0, 1), (-1, 0, 0), (0, -1, 0), (1, 0, 0), (0, -1, 0), (-1, 0, 0), (0, 1, 0), (1, 0, 0), (-1, 0, 0), (0, 1, 0), (0, 1, 0), (1, 0, 0), (-1, 0, 0), (0, 1, 0), (0, -1, 0), (1, 0, 0), (0, -1, 0), (-1, 0, 0), (0, -1, 0), (1, 0, 0), (0, -1, 0), (-1, 0, 0), (0, 1, 0), (1, 0, 0), (-1, 0, 0), (0, 1, 0), (0, 1, 0), (1, 0, 0), (-1, 0, 0), (0, 1, 0), (0, -1, 0), (1, 0, 0), (0, -1, 0), (-1, 0, 0), (0, 0, 1), (1, 0, 0), (0, 0, 1), (-1, 0, 0), (0, 0, -1), (1, 0, 0), (-1, 0, 0), (0, 0, -1), (0, 0, -1), (1, 0, 0), (-1, 0, 0), (0, 0, -1), (0, 0, 1), (1, 0, 0), (0, 0, 1), (-1, 0, 0)]
point3f[] points = [(4, 4.2000003, 4), (-4, 4.2000003, 4), (4, 4.2000003, -4), (-4, 4.2000003, -4), (4, 5.8, -4), (-4, 5.8, -4), (4, 5.8, 4), (-4, 5.8, 4), (-2.8, 0.0333334, 3.8500001), (-3.8, 0.0333334, 3.8500001), (-2.8, 0.0333334, 2.8500001), (-3.8, 0.0333334, 2.8500001), (-2.8, 4.2166667, 2.8500001), (-3.8, 4.2166667, 2.8500001), (-2.8, 4.2166667, 3.8500001), (-3.8, 4.2166667, 3.8500001), (3.8500001, 0.0333334, 3.8500001), (2.8500001, 0.0333334, 3.8500001), (3.8500001, 0.0333334, 2.8500001), (2.8500001, 0.0333334, 2.8500001), (3.8500001, 4.2166667, 2.8500001), (2.8500001, 4.2166667, 2.8500001), (3.8500001, 4.2166667, 3.8500001), (2.8500001, 4.2166667, 3.8500001), (3.8500001, 0.0333334, -2.9), (2.8500001, 0.0333334, -2.9), (3.8500001, 0.0333334, -3.9), (2.8500001, 0.0333334, -3.9), (3.8500001, 14.816666, -3.9), (2.8500001, 14.816666, -3.9), (3.8500001, 14.816666, -2.9), (2.8500001, 14.816666, -2.9), (3.05, 8.900001, -3.6048634), (-3.1000001, 8.900001, -3.6048634), (3.05, 9.75, -3.6048634), (-3.1000001, 9.75, -3.6048634), (3.05, 9.75, -3.1201363), (-3.1000001, 9.75, -3.1201363), (3.05, 8.900001, -3.1201363), (-3.1000001, 8.900001, -3.1201363), (3.1000001, 13.8, -3.6048634), (-3.05, 13.8, -3.6048634), (3.1000001, 14.650001, -3.6048634), (-3.05, 14.650001, -3.6048634), (3.1000001, 14.650001, -3.1201363), (-3.05, 14.650001, -3.1201363), (3.1000001, 13.8, -3.1201363), (-3.05, 13.8, -3.1201363), (-2.8500001, 0.0333334, -2.8500001), (-3.8500001, 0.0333334, -2.8500001), (-2.8500001, 0.0333334, -3.8500001), (-3.8500001, 0.0333334, -3.8500001), (-2.8500001, 14.816666, -3.8500001), (-3.8500001, 14.816666, -3.8500001), (-2.8500001, 14.816666, -2.8500001), (-3.8500001, 14.816666, -2.8500001), (4, 4.2000003, 4), (4, 4.2000003, 4), (-4, 4.2000003, 4), (-4, 4.2000003, 4), (4, 4.2000003, -4), (4, 4.2000003, -4), (-4, 4.2000003, -4), (-4, 4.2000003, -4), (4, 5.8, -4), (4, 5.8, -4), (-4, 5.8, -4), (-4, 5.8, -4), (4, 5.8, 4), (4, 5.8, 4), (-4, 5.8, 4), (-4, 5.8, 4), (-2.8, 0.0333334, 3.8500001), (-2.8, 0.0333334, 3.8500001), (-3.8, 0.0333334, 3.8500001), (-3.8, 0.0333334, 3.8500001), (-2.8, 0.0333334, 2.8500001), (-2.8, 0.0333334, 2.8500001), (-3.8, 0.0333334, 2.8500001), (-3.8, 0.0333334, 2.8500001), (-2.8, 4.2166667, 2.8500001), (-2.8, 4.2166667, 2.8500001), (-3.8, 4.2166667, 2.8500001), (-3.8, 4.2166667, 2.8500001), (-2.8, 4.2166667, 3.8500001), (-2.8, 4.2166667, 3.8500001), (-3.8, 4.2166667, 3.8500001), (-3.8, 4.2166667, 3.8500001), (3.8500001, 0.0333334, 3.8500001), (3.8500001, 0.0333334, 3.8500001), (2.8500001, 0.0333334, 3.8500001), (2.8500001, 0.0333334, 3.8500001), (3.8500001, 0.0333334, 2.8500001), (3.8500001, 0.0333334, 2.8500001), (2.8500001, 0.0333334, 2.8500001), (2.8500001, 0.0333334, 2.8500001), (3.8500001, 4.2166667, 2.8500001), (3.8500001, 4.2166667, 2.8500001), (2.8500001, 4.2166667, 2.8500001), (2.8500001, 4.2166667, 2.8500001), (3.8500001, 4.2166667, 3.8500001), (3.8500001, 4.2166667, 3.8500001), (2.8500001, 4.2166667, 3.8500001), (2.8500001, 4.2166667, 3.8500001), (3.8500001, 0.0333334, -2.9), (3.8500001, 0.0333334, -2.9), (2.8500001, 0.0333334, -2.9), (2.8500001, 0.0333334, -2.9), (3.8500001, 0.0333334, -3.9), (3.8500001, 0.0333334, -3.9), (2.8500001, 0.0333334, -3.9), (2.8500001, 0.0333334, -3.9), (3.8500001, 14.816666, -3.9), (3.8500001, 14.816666, -3.9), (2.8500001, 14.816666, -3.9), (2.8500001, 14.816666, -3.9), (3.8500001, 14.816666, -2.9), (3.8500001, 14.816666, -2.9), (2.8500001, 14.816666, -2.9), (2.8500001, 14.816666, -2.9), (3.05, 8.900001, -3.6048634), (3.05, 8.900001, -3.6048634), (-3.1000001, 8.900001, -3.6048634), (-3.1000001, 8.900001, -3.6048634), (3.05, 9.75, -3.6048634), (3.05, 9.75, -3.6048634), (-3.1000001, 9.75, -3.6048634), (-3.1000001, 9.75, -3.6048634), (3.05, 9.75, -3.1201363), (3.05, 9.75, -3.1201363), (-3.1000001, 9.75, -3.1201363), (-3.1000001, 9.75, -3.1201363), (3.05, 8.900001, -3.1201363), (3.05, 8.900001, -3.1201363), (-3.1000001, 8.900001, -3.1201363), (-3.1000001, 8.900001, -3.1201363), (3.1000001, 13.8, -3.6048634), (3.1000001, 13.8, -3.6048634), (-3.05, 13.8, -3.6048634), (-3.05, 13.8, -3.6048634), (3.1000001, 14.650001, -3.6048634), (3.1000001, 14.650001, -3.6048634), (-3.05, 14.650001, -3.6048634), (-3.05, 14.650001, -3.6048634), (3.1000001, 14.650001, -3.1201363), (3.1000001, 14.650001, -3.1201363), (-3.05, 14.650001, -3.1201363), (-3.05, 14.650001, -3.1201363), (3.1000001, 13.8, -3.1201363), (3.1000001, 13.8, -3.1201363), (-3.05, 13.8, -3.1201363), (-3.05, 13.8, -3.1201363), (-2.8500001, 0.0333334, -2.8500001), (-2.8500001, 0.0333334, -2.8500001), (-3.8500001, 0.0333334, -2.8500001), (-3.8500001, 0.0333334, -2.8500001), (-2.8500001, 0.0333334, -3.8500001), (-2.8500001, 0.0333334, -3.8500001), (-3.8500001, 0.0333334, -3.8500001), (-3.8500001, 0.0333334, -3.8500001), (-2.8500001, 14.816666, -3.8500001), (-2.8500001, 14.816666, -3.8500001), (-3.8500001, 14.816666, -3.8500001), (-3.8500001, 14.816666, -3.8500001), (-2.8500001, 14.816666, -2.8500001), (-2.8500001, 14.816666, -2.8500001), (-3.8500001, 14.816666, -2.8500001), (-3.8500001, 14.816666, -2.8500001)]
texCoord2f[] primvars:st = [(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), (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), (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), (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), (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), (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), (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), (0, 0), (1, 0), (1, 1)] (
interpolation = "faceVarying"
)
int[] primvars:st:indices = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167]
uniform token subdivisionScheme = "none"
}
}
|
ft-lab/omniverse_sample_scripts/Prim/Reference/usd/sphere.usda | #usda 1.0
(
defaultPrim = "World"
upAxis = "Y"
)
def Xform "World"
{
def Sphere "sphere"
{
color3f[] primvars:displayColor = [(0, 0, 1)]
double radius = 1.0
}
}
|
ft-lab/omniverse_sample_scripts/Prim/Kind/readme.md | # Kind
PrimのKindを取得/設定。
|ファイル|説明|
|---|---|
|[SetComponent.py](./SetComponent.py)|選択PrimのKindをComponentに変更|
|[GetKind.py](./GetKind.py)|選択PrimのKindを取得|
|
ft-lab/omniverse_sample_scripts/Prim/Kind/GetKind.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
for path in paths:
# Get prim.
prim = stage.GetPrimAtPath(path)
if prim.IsValid() == False:
continue
v = Usd.ModelAPI(prim).GetKind()
print('[ ' + prim.GetName() + ' ] Kind = ' + v)
|
ft-lab/omniverse_sample_scripts/Prim/Kind/SetComponent.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
for path in paths:
# Get prim.
prim = stage.GetPrimAtPath(path)
if prim.IsValid() == False:
continue
# Change the value of Kind in Prim to Component.
Usd.ModelAPI(prim).SetKind(Kind.Tokens.component)
|
ft-lab/omniverse_sample_scripts/Prim/Skeleton/GetJoints.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
# -------------------------------------------------------------------.
# Traverse.
# -------------------------------------------------------------------.
def Traverse (prim):
if prim.IsValid() == None:
return
# For Skeleton, get the Joints information.
if prim.GetTypeName() == 'Skeleton':
jointAttr = prim.GetAttribute("joints")
bindTransformsAttr = prim.GetAttribute("bindTransforms")
restTransformsAttr = prim.GetAttribute("restTransforms")
if jointAttr.IsValid() and bindTransformsAttr.IsValid() and restTransformsAttr.IsValid():
jCou = len(jointAttr.Get())
print("[ " + prim.GetPath().pathString + " ]")
for i in range(jCou):
jointName = jointAttr.Get()[i]
bindTransform = bindTransformsAttr.Get()[i]
restTransform = restTransformsAttr.Get()[i]
print(str(i) + " : " + jointName)
print(" bindTransform : " + str(bindTransform))
print(" restTransform : " + str(restTransform))
# Recursively traverse the hierarchy.
pChildren = prim.GetChildren()
for cPrim in pChildren:
Traverse(cPrim)
# -------------------------------------------------------------------.
for path in paths:
# Get prim.
prim = stage.GetPrimAtPath(path)
Traverse(prim)
|
ft-lab/omniverse_sample_scripts/Prim/Skeleton/GetSkeletonTransforms.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, UsdSkel, Sdf, Gf, Tf
import omni.kit
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
skel_cache = UsdSkel.Cache()
#time_code = omni.timeline.get_timeline_interface().get_current_time() * stage.GetTimeCodesPerSecond()
time_code = Usd.TimeCode.Default()
for path in paths:
# Get prim.
prim = stage.GetPrimAtPath(path)
if prim.IsValid() and prim.GetTypeName() == 'Skeleton':
# Get transform from cache.
skel_query = skel_cache.GetSkelQuery(UsdSkel.Skeleton(prim))
transforms = skel_query.ComputeJointLocalTransforms(time_code)
# joints name.
jointNames = skel_query.GetJointOrder()
# joints matrix to translate, rotations, scales.
translates, rotations, scales = UsdSkel.DecomposeTransforms(transforms)
print(jointNames)
print(" Translates : " + str(translates))
print(" Rotations : " + str(rotations))
print(" Scales : " + str(scales))
|
ft-lab/omniverse_sample_scripts/Prim/Skeleton/readme.md | # Skeleton
Skeletonでの情報を取得。
|ファイル|説明|
|---|---|
|[GetJoints.py](./GetJoints.py)|選択Primの中に"Skeleton"がある場合に、ジョイント名/バインドの行列/リセットの行列を表示|
|[GetSkeletonTransforms.py](./GetSkeletonTransforms.py)|選択Primが"Skeleton"の場合に、ジョイント名と移動/回転/スケールのリストを取得|
|
ft-lab/omniverse_sample_scripts/Prim/Visibility/ShowHidePrim.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
# Toggle show/hide.
for path in paths:
# Get prim.
prim = stage.GetPrimAtPath(path)
if prim.IsValid() == False:
continue
# Get visibility.
primImageable = UsdGeom.Imageable(prim)
if primImageable.GetVisibilityAttr().Get() == 'inherited':
# Set hide.
primImageable.GetVisibilityAttr().Set('invisible')
else:
# Set show (inherited).
primImageable.GetVisibilityAttr().Set('inherited')
|
ft-lab/omniverse_sample_scripts/Prim/Visibility/readme.md | # Visibility
Primの表示/非表示。
|ファイル|説明|
|---|---|
|[GetShowHidePrim.py](./GetShowHidePrim.py)|選択Primの表示/非表示を取得|
|[ShowHidePrim.py](./ShowHidePrim.py)|選択Primの表示/非表示を切り替え|
|
ft-lab/omniverse_sample_scripts/Prim/Visibility/GetShowHidePrim.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
for path in paths:
# Get prim.
prim = stage.GetPrimAtPath(path)
if prim.IsValid() == False:
continue
# Get visibility.
primImageable = UsdGeom.Imageable(prim)
showF = (primImageable.ComputeVisibility() != 'invisible')
if primImageable.GetVisibilityAttr().Get() == 'inherited':
print('[ ' + prim.GetName() + ' ] inherited visible = ' + str(showF))
else:
print('[ ' + prim.GetName() + ' ] invisible visible = ' + str(showF))
|
ft-lab/omniverse_sample_scripts/Prim/PointInstancer/PointInstancer_01.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
import random
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get default prim.
defaultPrim = stage.GetDefaultPrim()
defaultPrimPath = defaultPrim.GetPath().pathString
# Create empty node(Xform).
path = defaultPrimPath + '/trees'
UsdGeom.Xform.Define(stage, path)
prim = stage.GetPrimAtPath(path)
# Create PointInstancer.
pointInstancerPath = path + '/pointInstancer'
pointInstancer = UsdGeom.PointInstancer.Define(stage, pointInstancerPath)
# Create Reference.
refPath = pointInstancerPath + '/asset'
UsdGeom.Xform.Define(stage, refPath)
prim = stage.GetPrimAtPath(refPath)
# Set Kind.
#Usd.ModelAPI(prim).SetKind(Kind.Tokens.component)
Usd.ModelAPI(prim).SetKind("component")
# Set the asset to be referenced.
pointInstancer.CreatePrototypesRel().AddTarget(refPath)
# Remove references.
prim.GetReferences().ClearReferences()
# Add a reference.
#usdPath = "./simpleTree.usda"
usdPath = "https://ft-lab.github.io/usd/omniverse/usd/simpleTree.usda"
prim.GetReferences().AddReference(usdPath)
# Points data.
positions = []
scales = []
protoIndices = []
orientations = []
areaSize = 1000.0
treesCou = 50
for i in range(treesCou):
px = random.random() * areaSize - (areaSize * 0.5)
pz = random.random() * areaSize - (areaSize * 0.5)
scale = random.random() * 0.5 + 0.8
positions.append(Gf.Vec3f(px, 0.0, pz)) # Position.
orientations.append(Gf.Quath()) # Rotation.
scales.append(Gf.Vec3f(scale, scale, scale)) # Scale.
protoIndices.append(0) # asset index.
pointInstancer.CreatePositionsAttr(positions)
pointInstancer.CreateOrientationsAttr(orientations)
pointInstancer.CreateScalesAttr(scales)
pointInstancer.CreateProtoIndicesAttr(protoIndices)
|
ft-lab/omniverse_sample_scripts/Prim/PointInstancer/readme.md | # PointInstancer
指定のアセット(USDファイルで指定)をPointInstancerを使って、位置/回転/スケールを指定して複製。
UsdGeom.PointInstancer ( https://graphics.pixar.com/usd/release/api/class_usd_geom_point_instancer.html ) を使用します。
|ファイル|説明|
|---|---|
|[PointInstancer_01.py](./PointInstancer_01.py)|木の"simpleTree.usda"をアセットとして、ランダムな位置/スケールで複製。<br>木のusdは[simpleTree.usda](./usd/simpleTree.usda)を使用しています。<br>|
|
ft-lab/omniverse_sample_scripts/Prim/PointInstancer/usd/simpleTree.usda | #usda 1.0
(
defaultPrim = "root"
endTimeCode = 300
framesPerSecond = 30
startTimeCode = 0
)
def Xform "root" (
kind = "component"
)
{
def Scope "Materials"
{
def Material "tree_trunk"
{
token outputs:surface.connect = </root/Materials/tree_trunk/PBRShader.outputs:surface>
def Shader "PBRShader"
{
uniform token info:id = "UsdPreviewSurface"
color3f inputs:diffuseColor = (0.1904629, 0.08919351, 0.011126082)
float inputs:ior = 1.5
float inputs:metallic = 0
float inputs:opacity = 1
float inputs:roughness = 0.7
token outputs:surface
}
}
def Material "tree_leaves"
{
token outputs:surface.connect = </root/Materials/tree_leaves/PBRShader.outputs:surface>
def Shader "PBRShader"
{
uniform token info:id = "UsdPreviewSurface"
color3f inputs:diffuseColor = (0.014310519, 0.2673581, 0.010397803)
float inputs:ior = 1.5
float inputs:metallic = 0
float inputs:opacity = 1
float inputs:roughness = 0.79999995
token outputs:surface
}
}
}
def Mesh "tree_trunk"
{
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]
int[] faceVertexIndices = [0, 1, 2, 15, 15, 2, 3, 14, 14, 3, 4, 13, 13, 4, 5, 12, 12, 5, 6, 11, 11, 6, 7, 10, 10, 7, 8, 9, 79, 78, 77, 64, 64, 77, 76, 65, 65, 76, 75, 66, 66, 75, 74, 67, 67, 74, 73, 68, 68, 73, 72, 69, 69, 72, 71, 70, 17, 81, 80, 16, 18, 82, 81, 17, 19, 83, 82, 18, 20, 84, 83, 19, 21, 85, 84, 20, 22, 86, 85, 21, 23, 87, 86, 22, 24, 88, 87, 23, 25, 89, 88, 24, 26, 90, 89, 25, 27, 91, 90, 26, 28, 92, 91, 27, 29, 93, 92, 28, 30, 94, 93, 29, 31, 95, 94, 30, 16, 80, 95, 31, 33, 17, 16, 32, 34, 18, 17, 33, 35, 19, 18, 34, 36, 20, 19, 35, 37, 21, 20, 36, 38, 22, 21, 37, 39, 23, 22, 38, 40, 24, 23, 39, 41, 25, 24, 40, 42, 26, 25, 41, 43, 27, 26, 42, 44, 28, 27, 43, 45, 29, 28, 44, 46, 30, 29, 45, 47, 31, 30, 46, 32, 16, 31, 47, 49, 33, 32, 48, 50, 34, 33, 49, 51, 35, 34, 50, 52, 36, 35, 51, 53, 37, 36, 52, 54, 38, 37, 53, 55, 39, 38, 54, 56, 40, 39, 55, 57, 41, 40, 56, 58, 42, 41, 57, 59, 43, 42, 58, 60, 44, 43, 59, 61, 45, 44, 60, 62, 46, 45, 61, 63, 47, 46, 62, 48, 32, 47, 63, 97, 49, 48, 96, 98, 50, 49, 97, 99, 51, 50, 98, 100, 52, 51, 99, 101, 53, 52, 100, 102, 54, 53, 101, 103, 55, 54, 102, 104, 56, 55, 103, 105, 57, 56, 104, 106, 58, 57, 105, 107, 59, 58, 106, 108, 60, 59, 107, 109, 61, 60, 108, 110, 62, 61, 109, 111, 63, 62, 110, 96, 48, 63, 111]
rel material:binding = </root/Materials/tree_trunk>
normal3f[] normals = [(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), (1, 0, 4.5579277e-8), (0.9238795, 0, 0.38268343), (0.7071067, 0, 0.70710677), (0.38268337, 0, 0.92387956), (0, 0, 1), (-0.38268346, 0, 0.9238795), (-0.70710677, 0, 0.7071067), (-0.92387956, 0, 0.38268334), (-1, 0, -9.87551e-8), (-0.9238795, 0, -0.3826835), (-0.7071067, 0, -0.7071068), (-0.3826833, 0, -0.92387956), (1.7472057e-7, 0, -1), (0.38268355, 0, -0.92387944), (0.7071069, 0, -0.7071067), (0.92387956, 0, -0.38268328), (1, 0, 4.5579277e-8), (0.9238795, 0, 0.38268343), (0.7071067, 0, 0.70710677), (0.38268337, 0, 0.92387956), (0, 0, 1), (-0.38268346, 0, 0.9238795), (-0.70710677, 0, 0.7071067), (-0.92387956, 0, 0.38268334), (-1, 0, -9.87551e-8), (-0.9238795, 0, -0.3826835), (-0.7071067, 0, -0.7071068), (-0.3826833, 0, -0.92387956), (1.7472057e-7, 0, -1), (0.38268355, 0, -0.92387944), (0.7071069, 0, -0.7071067), (0.92387956, 0, -0.38268328), (1, 0, 4.5579277e-8), (0.9238795, 0, 0.38268343), (0.7071067, 0, 0.70710677), (0.38268337, 0, 0.92387956), (0, 0, 1), (-0.38268346, 0, 0.9238795), (-0.70710677, 0, 0.7071067), (-0.92387956, 0, 0.38268334), (-1, 0, -9.87551e-8), (-0.9238795, 0, -0.3826835), (-0.7071067, 0, -0.7071068), (-0.3826833, 0, -0.92387956), (1.7472057e-7, 0, -1), (0.38268355, 0, -0.92387944), (0.7071069, 0, -0.7071067), (0.92387956, 0, -0.38268328), (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), (1, 0, 4.5579277e-8), (0.9238795, 0, 0.38268343), (0.7071067, 0, 0.70710677), (0.3826834, 0, 0.92387956), (0, 0, 1), (-0.38268346, 0, 0.9238795), (-0.70710677, 0, 0.7071067), (-0.92387956, 0, 0.38268334), (-1, 0, -9.87551e-8), (-0.9238795, 0, -0.3826835), (-0.7071067, 0, -0.7071068), (-0.3826833, 0, -0.92387956), (1.7472057e-7, 0, -1), (0.38268355, 0, -0.92387944), (0.7071069, 0, -0.7071067), (0.92387956, 0, -0.38268328), (1, 0, 4.5579277e-8), (0.9238795, 0, 0.38268343), (0.7071067, 0, 0.70710677), (0.3826834, 0, 0.92387956), (0, 0, 1), (-0.38268346, 0, 0.9238795), (-0.70710677, 0, 0.7071067), (-0.92387956, 0, 0.38268334), (-1, 0, -9.87551e-8), (-0.9238795, 0, -0.3826835), (-0.7071067, 0, -0.7071068), (-0.3826833, 0, -0.92387956), (1.7472057e-7, 0, -1), (0.38268355, 0, -0.92387944), (0.7071069, 0, -0.7071067), (0.92387956, 0, -0.38268328)]
point3f[] points = [(11.18034, 0, 0), (10.329288, 0, 4.278531), (7.905694, 0, 7.9056945), (4.2785306, 0, 10.329288), (-4.887082e-7, 0, 11.18034), (-4.2785316, 0, 10.329288), (-7.9056945, 0, 7.905694), (-10.329288, 0, 4.27853), (-11.18034, 0, -9.774164e-7), (-10.329288, 0, -4.2785316), (-7.905693, 0, -7.9056954), (-4.2785296, 0, -10.329288), (0.0000014661246, 0, -11.18034), (4.2785325, 0, -10.329287), (7.9056954, 0, -7.905693), (10.329288, 0, -4.278529), (11.18034, 20, 0), (10.329288, 20, 4.278531), (7.905694, 20, 7.9056945), (4.2785306, 20, 10.329288), (-4.887082e-7, 20, 11.18034), (-4.2785316, 20, 10.329288), (-7.9056945, 20, 7.905694), (-10.329288, 20, 4.27853), (-11.18034, 20, -9.774164e-7), (-10.329288, 20, -4.2785316), (-7.905693, 20, -7.9056954), (-4.2785296, 20, -10.329288), (0.0000014661246, 20, -11.18034), (4.2785325, 20, -10.329287), (7.9056954, 20, -7.905693), (10.329288, 20, -4.278529), (11.18034, 40, 0), (10.329288, 40, 4.278531), (7.905694, 40, 7.9056945), (4.2785306, 40, 10.329288), (-4.887082e-7, 40, 11.18034), (-4.2785316, 40, 10.329288), (-7.9056945, 40, 7.905694), (-10.329288, 40, 4.27853), (-11.18034, 40, -9.774164e-7), (-10.329288, 40, -4.2785316), (-7.905693, 40, -7.9056954), (-4.2785296, 40, -10.329288), (0.0000014661246, 40, -11.18034), (4.2785325, 40, -10.329287), (7.9056954, 40, -7.905693), (10.329288, 40, -4.278529), (11.18034, 60, 0), (10.329288, 60, 4.278531), (7.905694, 60, 7.9056945), (4.2785306, 60, 10.329288), (-4.887082e-7, 60, 11.18034), (-4.2785316, 60, 10.329288), (-7.9056945, 60, 7.905694), (-10.329288, 60, 4.27853), (-11.18034, 60, -9.774164e-7), (-10.329288, 60, -4.2785316), (-7.905693, 60, -7.9056954), (-4.2785296, 60, -10.329288), (0.0000014661246, 60, -11.18034), (4.2785325, 60, -10.329287), (7.9056954, 60, -7.905693), (10.329288, 60, -4.278529), (11.18034, 80, 0), (10.329288, 80, 4.278531), (7.905694, 80, 7.9056945), (4.2785306, 80, 10.329288), (-4.887082e-7, 80, 11.18034), (-4.2785316, 80, 10.329288), (-7.9056945, 80, 7.905694), (-10.329288, 80, 4.27853), (-11.18034, 80, -9.774164e-7), (-10.329288, 80, -4.2785316), (-7.905693, 80, -7.9056954), (-4.2785296, 80, -10.329288), (0.0000014661246, 80, -11.18034), (4.2785325, 80, -10.329287), (7.9056954, 80, -7.905693), (10.329288, 80, -4.278529), (11.18034, 0, 0), (10.329288, 0, 4.278531), (7.905694, 0, 7.9056945), (4.2785306, 0, 10.329288), (-4.887082e-7, 0, 11.18034), (-4.2785316, 0, 10.329288), (-7.9056945, 0, 7.905694), (-10.329288, 0, 4.27853), (-11.18034, 0, -9.774164e-7), (-10.329288, 0, -4.2785316), (-7.905693, 0, -7.9056954), (-4.2785296, 0, -10.329288), (0.0000014661246, 0, -11.18034), (4.2785325, 0, -10.329287), (7.9056954, 0, -7.905693), (10.329288, 0, -4.278529), (11.18034, 80, 0), (10.329288, 80, 4.278531), (7.905694, 80, 7.9056945), (4.2785306, 80, 10.329288), (-4.887082e-7, 80, 11.18034), (-4.2785316, 80, 10.329288), (-7.9056945, 80, 7.905694), (-10.329288, 80, 4.27853), (-11.18034, 80, -9.774164e-7), (-10.329288, 80, -4.2785316), (-7.905693, 80, -7.9056954), (-4.2785296, 80, -10.329288), (0.0000014661246, 80, -11.18034), (4.2785325, 80, -10.329287), (7.9056954, 80, -7.905693), (10.329288, 80, -4.278529)]
texCoord2f[] primvars:st = [(0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0, 1), (0.9375, 0.25), (0.9375, 0), (1, 0), (1, 0.25), (0.875, 0.25), (0.875, 0), (0.9375, 0), (0.9375, 0.25), (0.8125, 0.25), (0.8125, 0), (0.875, 0), (0.875, 0.25), (0.75, 0.25), (0.75, 0), (0.8125, 0), (0.8125, 0.25), (0.6875, 0.25), (0.6875, 0), (0.75, 0), (0.75, 0.25), (0.625, 0.25), (0.625, 0), (0.6875, 0), (0.6875, 0.25), (0.5625, 0.25), (0.5625, 0), (0.625, 0), (0.625, 0.25), (0.5, 0.25), (0.5, 0), (0.5625, 0), (0.5625, 0.25), (0.4375, 0.25), (0.4375, 0), (0.5, 0), (0.5, 0.25), (0.375, 0.25), (0.375, 0), (0.4375, 0), (0.4375, 0.25), (0.3125, 0.25), (0.3125, 0), (0.375, 0), (0.375, 0.25), (0.25, 0.25), (0.25, 0), (0.3125, 0), (0.3125, 0.25), (0.1875, 0.25), (0.1875, 0), (0.25, 0), (0.25, 0.25), (0.125, 0.25), (0.125, 0), (0.1875, 0), (0.1875, 0.25), (0.0625, 0.25), (0.0625, 0), (0.125, 0), (0.125, 0.25), (0, 0.25), (0, 0), (0.0625, 0), (0.0625, 0.25), (0.9375, 0.5), (0.9375, 0.25), (1, 0.25), (1, 0.5), (0.875, 0.5), (0.875, 0.25), (0.9375, 0.25), (0.9375, 0.5), (0.8125, 0.5), (0.8125, 0.25), (0.875, 0.25), (0.875, 0.5), (0.75, 0.5), (0.75, 0.25), (0.8125, 0.25), (0.8125, 0.5), (0.6875, 0.5), (0.6875, 0.25), (0.75, 0.25), (0.75, 0.5), (0.625, 0.5), (0.625, 0.25), (0.6875, 0.25), (0.6875, 0.5), (0.5625, 0.5), (0.5625, 0.25), (0.625, 0.25), (0.625, 0.5), (0.5, 0.5), (0.5, 0.25), (0.5625, 0.25), (0.5625, 0.5), (0.4375, 0.5), (0.4375, 0.25), (0.5, 0.25), (0.5, 0.5), (0.375, 0.5), (0.375, 0.25), (0.4375, 0.25), (0.4375, 0.5), (0.3125, 0.5), (0.3125, 0.25), (0.375, 0.25), (0.375, 0.5), (0.25, 0.5), (0.25, 0.25), (0.3125, 0.25), (0.3125, 0.5), (0.1875, 0.5), (0.1875, 0.25), (0.25, 0.25), (0.25, 0.5), (0.125, 0.5), (0.125, 0.25), (0.1875, 0.25), (0.1875, 0.5), (0.0625, 0.5), (0.0625, 0.25), (0.125, 0.25), (0.125, 0.5), (0, 0.5), (0, 0.25), (0.0625, 0.25), (0.0625, 0.5), (0.9375, 0.75), (0.9375, 0.5), (1, 0.5), (1, 0.75), (0.875, 0.75), (0.875, 0.5), (0.9375, 0.5), (0.9375, 0.75), (0.8125, 0.75), (0.8125, 0.5), (0.875, 0.5), (0.875, 0.75), (0.75, 0.75), (0.75, 0.5), (0.8125, 0.5), (0.8125, 0.75), (0.6875, 0.75), (0.6875, 0.5), (0.75, 0.5), (0.75, 0.75), (0.625, 0.75), (0.625, 0.5), (0.6875, 0.5), (0.6875, 0.75), (0.5625, 0.75), (0.5625, 0.5), (0.625, 0.5), (0.625, 0.75), (0.5, 0.75), (0.5, 0.5), (0.5625, 0.5), (0.5625, 0.75), (0.4375, 0.75), (0.4375, 0.5), (0.5, 0.5), (0.5, 0.75), (0.375, 0.75), (0.375, 0.5), (0.4375, 0.5), (0.4375, 0.75), (0.3125, 0.75), (0.3125, 0.5), (0.375, 0.5), (0.375, 0.75), (0.25, 0.75), (0.25, 0.5), (0.3125, 0.5), (0.3125, 0.75), (0.1875, 0.75), (0.1875, 0.5), (0.25, 0.5), (0.25, 0.75), (0.125, 0.75), (0.125, 0.5), (0.1875, 0.5), (0.1875, 0.75), (0.0625, 0.75), (0.0625, 0.5), (0.125, 0.5), (0.125, 0.75), (0, 0.75), (0, 0.5), (0.0625, 0.5), (0.0625, 0.75), (0.9375, 1), (0.9375, 0.75), (1, 0.75), (1, 1), (0.875, 1), (0.875, 0.75), (0.9375, 0.75), (0.9375, 1), (0.8125, 1), (0.8125, 0.75), (0.875, 0.75), (0.875, 1), (0.75, 1), (0.75, 0.75), (0.8125, 0.75), (0.8125, 1), (0.6875, 1), (0.6875, 0.75), (0.75, 0.75), (0.75, 1), (0.625, 1), (0.625, 0.75), (0.6875, 0.75), (0.6875, 1), (0.5625, 1), (0.5625, 0.75), (0.625, 0.75), (0.625, 1), (0.5, 1), (0.5, 0.75), (0.5625, 0.75), (0.5625, 1), (0.4375, 1), (0.4375, 0.75), (0.5, 0.75), (0.5, 1), (0.375, 1), (0.375, 0.75), (0.4375, 0.75), (0.4375, 1), (0.3125, 1), (0.3125, 0.75), (0.375, 0.75), (0.375, 1), (0.25, 1), (0.25, 0.75), (0.3125, 0.75), (0.3125, 1), (0.1875, 1), (0.1875, 0.75), (0.25, 0.75), (0.25, 1), (0.125, 1), (0.125, 0.75), (0.1875, 0.75), (0.1875, 1), (0.0625, 1), (0.0625, 0.75), (0.125, 0.75), (0.125, 1), (0, 1), (0, 0.75), (0.0625, 0.75), (0.0625, 1)] (
interpolation = "faceVarying"
)
int[] primvars:st:indices = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311]
uniform token subdivisionScheme = "none"
}
def Mesh "tree_leaves"
{
int[] faceVertexCounts = [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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
int[] faceVertexIndices = [3, 2, 0, 4, 3, 0, 5, 4, 0, 6, 5, 0, 7, 6, 0, 8, 7, 0, 9, 8, 0, 10, 9, 0, 11, 10, 0, 12, 11, 0, 13, 12, 0, 14, 13, 0, 15, 14, 0, 16, 15, 0, 17, 16, 0, 2, 17, 0, 3, 19, 18, 2, 4, 20, 19, 3, 5, 21, 20, 4, 6, 22, 21, 5, 7, 23, 22, 6, 8, 24, 23, 7, 9, 25, 24, 8, 10, 26, 25, 9, 11, 27, 26, 10, 12, 28, 27, 11, 13, 29, 28, 12, 14, 30, 29, 13, 15, 31, 30, 14, 16, 32, 31, 15, 17, 33, 32, 16, 2, 18, 33, 17, 19, 35, 34, 18, 20, 36, 35, 19, 21, 37, 36, 20, 22, 38, 37, 21, 23, 39, 38, 22, 24, 40, 39, 23, 25, 41, 40, 24, 26, 42, 41, 25, 27, 43, 42, 26, 28, 44, 43, 27, 29, 45, 44, 28, 30, 46, 45, 29, 31, 47, 46, 30, 32, 48, 47, 31, 33, 49, 48, 32, 18, 34, 49, 33, 35, 51, 50, 34, 36, 52, 51, 35, 37, 53, 52, 36, 38, 54, 53, 37, 39, 55, 54, 38, 40, 56, 55, 39, 41, 57, 56, 40, 42, 58, 57, 41, 43, 59, 58, 42, 44, 60, 59, 43, 45, 61, 60, 44, 46, 62, 61, 45, 47, 63, 62, 46, 48, 64, 63, 47, 49, 65, 64, 48, 34, 50, 65, 49, 51, 67, 66, 50, 52, 68, 67, 51, 53, 69, 68, 52, 54, 70, 69, 53, 55, 71, 70, 54, 56, 72, 71, 55, 57, 73, 72, 56, 58, 74, 73, 57, 59, 75, 74, 58, 60, 76, 75, 59, 61, 77, 76, 60, 62, 78, 77, 61, 63, 79, 78, 62, 64, 80, 79, 63, 65, 81, 80, 64, 50, 66, 81, 65, 67, 83, 82, 66, 68, 84, 83, 67, 69, 85, 84, 68, 70, 86, 85, 69, 71, 87, 86, 70, 72, 88, 87, 71, 73, 89, 88, 72, 74, 90, 89, 73, 75, 91, 90, 74, 76, 92, 91, 75, 77, 93, 92, 76, 78, 94, 93, 77, 79, 95, 94, 78, 80, 96, 95, 79, 81, 97, 96, 80, 66, 82, 97, 81, 83, 99, 98, 82, 84, 100, 99, 83, 85, 101, 100, 84, 86, 102, 101, 85, 87, 103, 102, 86, 88, 104, 103, 87, 89, 105, 104, 88, 90, 106, 105, 89, 91, 107, 106, 90, 92, 108, 107, 91, 93, 109, 108, 92, 94, 110, 109, 93, 95, 111, 110, 94, 96, 112, 111, 95, 97, 113, 112, 96, 82, 98, 113, 97, 99, 1, 98, 100, 1, 99, 101, 1, 100, 102, 1, 101, 103, 1, 102, 104, 1, 103, 105, 1, 104, 106, 1, 105, 107, 1, 106, 108, 1, 107, 109, 1, 108, 110, 1, 109, 111, 1, 110, 112, 1, 111, 113, 1, 112, 98, 1, 113, 117, 116, 114, 118, 117, 114, 119, 118, 114, 120, 119, 114, 121, 120, 114, 122, 121, 114, 123, 122, 114, 124, 123, 114, 125, 124, 114, 126, 125, 114, 127, 126, 114, 128, 127, 114, 129, 128, 114, 130, 129, 114, 131, 130, 114, 116, 131, 114, 117, 133, 132, 116, 118, 134, 133, 117, 119, 135, 134, 118, 120, 136, 135, 119, 121, 137, 136, 120, 122, 138, 137, 121, 123, 139, 138, 122, 124, 140, 139, 123, 125, 141, 140, 124, 126, 142, 141, 125, 127, 143, 142, 126, 128, 144, 143, 127, 129, 145, 144, 128, 130, 146, 145, 129, 131, 147, 146, 130, 116, 132, 147, 131, 133, 149, 148, 132, 134, 150, 149, 133, 135, 151, 150, 134, 136, 152, 151, 135, 137, 153, 152, 136, 138, 154, 153, 137, 139, 155, 154, 138, 140, 156, 155, 139, 141, 157, 156, 140, 142, 158, 157, 141, 143, 159, 158, 142, 144, 160, 159, 143, 145, 161, 160, 144, 146, 162, 161, 145, 147, 163, 162, 146, 132, 148, 163, 147, 149, 165, 164, 148, 150, 166, 165, 149, 151, 167, 166, 150, 152, 168, 167, 151, 153, 169, 168, 152, 154, 170, 169, 153, 155, 171, 170, 154, 156, 172, 171, 155, 157, 173, 172, 156, 158, 174, 173, 157, 159, 175, 174, 158, 160, 176, 175, 159, 161, 177, 176, 160, 162, 178, 177, 161, 163, 179, 178, 162, 148, 164, 179, 163, 165, 181, 180, 164, 166, 182, 181, 165, 167, 183, 182, 166, 168, 184, 183, 167, 169, 185, 184, 168, 170, 186, 185, 169, 171, 187, 186, 170, 172, 188, 187, 171, 173, 189, 188, 172, 174, 190, 189, 173, 175, 191, 190, 174, 176, 192, 191, 175, 177, 193, 192, 176, 178, 194, 193, 177, 179, 195, 194, 178, 164, 180, 195, 179, 181, 197, 196, 180, 182, 198, 197, 181, 183, 199, 198, 182, 184, 200, 199, 183, 185, 201, 200, 184, 186, 202, 201, 185, 187, 203, 202, 186, 188, 204, 203, 187, 189, 205, 204, 188, 190, 206, 205, 189, 191, 207, 206, 190, 192, 208, 207, 191, 193, 209, 208, 192, 194, 210, 209, 193, 195, 211, 210, 194, 180, 196, 211, 195, 197, 213, 212, 196, 198, 214, 213, 197, 199, 215, 214, 198, 200, 216, 215, 199, 201, 217, 216, 200, 202, 218, 217, 201, 203, 219, 218, 202, 204, 220, 219, 203, 205, 221, 220, 204, 206, 222, 221, 205, 207, 223, 222, 206, 208, 224, 223, 207, 209, 225, 224, 208, 210, 226, 225, 209, 211, 227, 226, 210, 196, 212, 227, 211, 213, 115, 212, 214, 115, 213, 215, 115, 214, 216, 115, 215, 217, 115, 216, 218, 115, 217, 219, 115, 218, 220, 115, 219, 221, 115, 220, 222, 115, 221, 223, 115, 222, 224, 115, 223, 225, 115, 224, 226, 115, 225, 227, 115, 226, 212, 115, 227, 231, 230, 228, 232, 231, 228, 233, 232, 228, 234, 233, 228, 235, 234, 228, 236, 235, 228, 237, 236, 228, 238, 237, 228, 239, 238, 228, 240, 239, 228, 241, 240, 228, 242, 241, 228, 243, 242, 228, 244, 243, 228, 245, 244, 228, 230, 245, 228, 231, 247, 246, 230, 232, 248, 247, 231, 233, 249, 248, 232, 234, 250, 249, 233, 235, 251, 250, 234, 236, 252, 251, 235, 237, 253, 252, 236, 238, 254, 253, 237, 239, 255, 254, 238, 240, 256, 255, 239, 241, 257, 256, 240, 242, 258, 257, 241, 243, 259, 258, 242, 244, 260, 259, 243, 245, 261, 260, 244, 230, 246, 261, 245, 247, 263, 262, 246, 248, 264, 263, 247, 249, 265, 264, 248, 250, 266, 265, 249, 251, 267, 266, 250, 252, 268, 267, 251, 253, 269, 268, 252, 254, 270, 269, 253, 255, 271, 270, 254, 256, 272, 271, 255, 257, 273, 272, 256, 258, 274, 273, 257, 259, 275, 274, 258, 260, 276, 275, 259, 261, 277, 276, 260, 246, 262, 277, 261, 263, 279, 278, 262, 264, 280, 279, 263, 265, 281, 280, 264, 266, 282, 281, 265, 267, 283, 282, 266, 268, 284, 283, 267, 269, 285, 284, 268, 270, 286, 285, 269, 271, 287, 286, 270, 272, 288, 287, 271, 273, 289, 288, 272, 274, 290, 289, 273, 275, 291, 290, 274, 276, 292, 291, 275, 277, 293, 292, 276, 262, 278, 293, 277, 279, 295, 294, 278, 280, 296, 295, 279, 281, 297, 296, 280, 282, 298, 297, 281, 283, 299, 298, 282, 284, 300, 299, 283, 285, 301, 300, 284, 286, 302, 301, 285, 287, 303, 302, 286, 288, 304, 303, 287, 289, 305, 304, 288, 290, 306, 305, 289, 291, 307, 306, 290, 292, 308, 307, 291, 293, 309, 308, 292, 278, 294, 309, 293, 295, 311, 310, 294, 296, 312, 311, 295, 297, 313, 312, 296, 298, 314, 313, 297, 299, 315, 314, 298, 300, 316, 315, 299, 301, 317, 316, 300, 302, 318, 317, 301, 303, 319, 318, 302, 304, 320, 319, 303, 305, 321, 320, 304, 306, 322, 321, 305, 307, 323, 322, 306, 308, 324, 323, 307, 309, 325, 324, 308, 294, 310, 325, 309, 311, 327, 326, 310, 312, 328, 327, 311, 313, 329, 328, 312, 314, 330, 329, 313, 315, 331, 330, 314, 316, 332, 331, 315, 317, 333, 332, 316, 318, 334, 333, 317, 319, 335, 334, 318, 320, 336, 335, 319, 321, 337, 336, 320, 322, 338, 337, 321, 323, 339, 338, 322, 324, 340, 339, 323, 325, 341, 340, 324, 310, 326, 341, 325, 327, 229, 326, 328, 229, 327, 329, 229, 328, 330, 229, 329, 331, 229, 330, 332, 229, 331, 333, 229, 332, 334, 229, 333, 335, 229, 334, 336, 229, 335, 337, 229, 336, 338, 229, 337, 339, 229, 338, 340, 229, 339, 341, 229, 340, 326, 229, 341, 345, 344, 342, 346, 345, 342, 347, 346, 342, 348, 347, 342, 349, 348, 342, 350, 349, 342, 351, 350, 342, 352, 351, 342, 353, 352, 342, 354, 353, 342, 355, 354, 342, 356, 355, 342, 357, 356, 342, 358, 357, 342, 359, 358, 342, 344, 359, 342, 345, 361, 360, 344, 346, 362, 361, 345, 347, 363, 362, 346, 348, 364, 363, 347, 349, 365, 364, 348, 350, 366, 365, 349, 351, 367, 366, 350, 352, 368, 367, 351, 353, 369, 368, 352, 354, 370, 369, 353, 355, 371, 370, 354, 356, 372, 371, 355, 357, 373, 372, 356, 358, 374, 373, 357, 359, 375, 374, 358, 344, 360, 375, 359, 361, 377, 376, 360, 362, 378, 377, 361, 363, 379, 378, 362, 364, 380, 379, 363, 365, 381, 380, 364, 366, 382, 381, 365, 367, 383, 382, 366, 368, 384, 383, 367, 369, 385, 384, 368, 370, 386, 385, 369, 371, 387, 386, 370, 372, 388, 387, 371, 373, 389, 388, 372, 374, 390, 389, 373, 375, 391, 390, 374, 360, 376, 391, 375, 377, 393, 392, 376, 378, 394, 393, 377, 379, 395, 394, 378, 380, 396, 395, 379, 381, 397, 396, 380, 382, 398, 397, 381, 383, 399, 398, 382, 384, 400, 399, 383, 385, 401, 400, 384, 386, 402, 401, 385, 387, 403, 402, 386, 388, 404, 403, 387, 389, 405, 404, 388, 390, 406, 405, 389, 391, 407, 406, 390, 376, 392, 407, 391, 393, 409, 408, 392, 394, 410, 409, 393, 395, 411, 410, 394, 396, 412, 411, 395, 397, 413, 412, 396, 398, 414, 413, 397, 399, 415, 414, 398, 400, 416, 415, 399, 401, 417, 416, 400, 402, 418, 417, 401, 403, 419, 418, 402, 404, 420, 419, 403, 405, 421, 420, 404, 406, 422, 421, 405, 407, 423, 422, 406, 392, 408, 423, 407, 409, 425, 424, 408, 410, 426, 425, 409, 411, 427, 426, 410, 412, 428, 427, 411, 413, 429, 428, 412, 414, 430, 429, 413, 415, 431, 430, 414, 416, 432, 431, 415, 417, 433, 432, 416, 418, 434, 433, 417, 419, 435, 434, 418, 420, 436, 435, 419, 421, 437, 436, 420, 422, 438, 437, 421, 423, 439, 438, 422, 408, 424, 439, 423, 425, 441, 440, 424, 426, 442, 441, 425, 427, 443, 442, 426, 428, 444, 443, 427, 429, 445, 444, 428, 430, 446, 445, 429, 431, 447, 446, 430, 432, 448, 447, 431, 433, 449, 448, 432, 434, 450, 449, 433, 435, 451, 450, 434, 436, 452, 451, 435, 437, 453, 452, 436, 438, 454, 453, 437, 439, 455, 454, 438, 424, 440, 455, 439, 441, 343, 440, 442, 343, 441, 443, 343, 442, 444, 343, 443, 445, 343, 444, 446, 343, 445, 447, 343, 446, 448, 343, 447, 449, 343, 448, 450, 343, 449, 451, 343, 450, 452, 343, 451, 453, 343, 452, 454, 343, 453, 455, 343, 454, 440, 343, 455, 459, 458, 456, 460, 459, 456, 461, 460, 456, 462, 461, 456, 463, 462, 456, 464, 463, 456, 465, 464, 456, 466, 465, 456, 467, 466, 456, 468, 467, 456, 469, 468, 456, 470, 469, 456, 471, 470, 456, 472, 471, 456, 473, 472, 456, 458, 473, 456, 459, 475, 474, 458, 460, 476, 475, 459, 461, 477, 476, 460, 462, 478, 477, 461, 463, 479, 478, 462, 464, 480, 479, 463, 465, 481, 480, 464, 466, 482, 481, 465, 467, 483, 482, 466, 468, 484, 483, 467, 469, 485, 484, 468, 470, 486, 485, 469, 471, 487, 486, 470, 472, 488, 487, 471, 473, 489, 488, 472, 458, 474, 489, 473, 475, 491, 490, 474, 476, 492, 491, 475, 477, 493, 492, 476, 478, 494, 493, 477, 479, 495, 494, 478, 480, 496, 495, 479, 481, 497, 496, 480, 482, 498, 497, 481, 483, 499, 498, 482, 484, 500, 499, 483, 485, 501, 500, 484, 486, 502, 501, 485, 487, 503, 502, 486, 488, 504, 503, 487, 489, 505, 504, 488, 474, 490, 505, 489, 491, 507, 506, 490, 492, 508, 507, 491, 493, 509, 508, 492, 494, 510, 509, 493, 495, 511, 510, 494, 496, 512, 511, 495, 497, 513, 512, 496, 498, 514, 513, 497, 499, 515, 514, 498, 500, 516, 515, 499, 501, 517, 516, 500, 502, 518, 517, 501, 503, 519, 518, 502, 504, 520, 519, 503, 505, 521, 520, 504, 490, 506, 521, 505, 507, 523, 522, 506, 508, 524, 523, 507, 509, 525, 524, 508, 510, 526, 525, 509, 511, 527, 526, 510, 512, 528, 527, 511, 513, 529, 528, 512, 514, 530, 529, 513, 515, 531, 530, 514, 516, 532, 531, 515, 517, 533, 532, 516, 518, 534, 533, 517, 519, 535, 534, 518, 520, 536, 535, 519, 521, 537, 536, 520, 506, 522, 537, 521, 523, 539, 538, 522, 524, 540, 539, 523, 525, 541, 540, 524, 526, 542, 541, 525, 527, 543, 542, 526, 528, 544, 543, 527, 529, 545, 544, 528, 530, 546, 545, 529, 531, 547, 546, 530, 532, 548, 547, 531, 533, 549, 548, 532, 534, 550, 549, 533, 535, 551, 550, 534, 536, 552, 551, 535, 537, 553, 552, 536, 522, 538, 553, 537, 539, 555, 554, 538, 540, 556, 555, 539, 541, 557, 556, 540, 542, 558, 557, 541, 543, 559, 558, 542, 544, 560, 559, 543, 545, 561, 560, 544, 546, 562, 561, 545, 547, 563, 562, 546, 548, 564, 563, 547, 549, 565, 564, 548, 550, 566, 565, 549, 551, 567, 566, 550, 552, 568, 567, 551, 553, 569, 568, 552, 538, 554, 569, 553, 555, 457, 554, 556, 457, 555, 557, 457, 556, 558, 457, 557, 559, 457, 558, 560, 457, 559, 561, 457, 560, 562, 457, 561, 563, 457, 562, 564, 457, 563, 565, 457, 564, 566, 457, 565, 567, 457, 566, 568, 457, 567, 569, 457, 568, 554, 457, 569, 573, 572, 570, 574, 573, 570, 575, 574, 570, 576, 575, 570, 577, 576, 570, 578, 577, 570, 579, 578, 570, 580, 579, 570, 581, 580, 570, 582, 581, 570, 583, 582, 570, 584, 583, 570, 585, 584, 570, 586, 585, 570, 587, 586, 570, 572, 587, 570, 573, 589, 588, 572, 574, 590, 589, 573, 575, 591, 590, 574, 576, 592, 591, 575, 577, 593, 592, 576, 578, 594, 593, 577, 579, 595, 594, 578, 580, 596, 595, 579, 581, 597, 596, 580, 582, 598, 597, 581, 583, 599, 598, 582, 584, 600, 599, 583, 585, 601, 600, 584, 586, 602, 601, 585, 587, 603, 602, 586, 572, 588, 603, 587, 589, 605, 604, 588, 590, 606, 605, 589, 591, 607, 606, 590, 592, 608, 607, 591, 593, 609, 608, 592, 594, 610, 609, 593, 595, 611, 610, 594, 596, 612, 611, 595, 597, 613, 612, 596, 598, 614, 613, 597, 599, 615, 614, 598, 600, 616, 615, 599, 601, 617, 616, 600, 602, 618, 617, 601, 603, 619, 618, 602, 588, 604, 619, 603, 605, 621, 620, 604, 606, 622, 621, 605, 607, 623, 622, 606, 608, 624, 623, 607, 609, 625, 624, 608, 610, 626, 625, 609, 611, 627, 626, 610, 612, 628, 627, 611, 613, 629, 628, 612, 614, 630, 629, 613, 615, 631, 630, 614, 616, 632, 631, 615, 617, 633, 632, 616, 618, 634, 633, 617, 619, 635, 634, 618, 604, 620, 635, 619, 621, 637, 636, 620, 622, 638, 637, 621, 623, 639, 638, 622, 624, 640, 639, 623, 625, 641, 640, 624, 626, 642, 641, 625, 627, 643, 642, 626, 628, 644, 643, 627, 629, 645, 644, 628, 630, 646, 645, 629, 631, 647, 646, 630, 632, 648, 647, 631, 633, 649, 648, 632, 634, 650, 649, 633, 635, 651, 650, 634, 620, 636, 651, 635, 637, 653, 652, 636, 638, 654, 653, 637, 639, 655, 654, 638, 640, 656, 655, 639, 641, 657, 656, 640, 642, 658, 657, 641, 643, 659, 658, 642, 644, 660, 659, 643, 645, 661, 660, 644, 646, 662, 661, 645, 647, 663, 662, 646, 648, 664, 663, 647, 649, 665, 664, 648, 650, 666, 665, 649, 651, 667, 666, 650, 636, 652, 667, 651, 653, 669, 668, 652, 654, 670, 669, 653, 655, 671, 670, 654, 656, 672, 671, 655, 657, 673, 672, 656, 658, 674, 673, 657, 659, 675, 674, 658, 660, 676, 675, 659, 661, 677, 676, 660, 662, 678, 677, 661, 663, 679, 678, 662, 664, 680, 679, 663, 665, 681, 680, 664, 666, 682, 681, 665, 667, 683, 682, 666, 652, 668, 683, 667, 669, 571, 668, 670, 571, 669, 671, 571, 670, 672, 571, 671, 673, 571, 672, 674, 571, 673, 675, 571, 674, 676, 571, 675, 677, 571, 676, 678, 571, 677, 679, 571, 678, 680, 571, 679, 681, 571, 680, 682, 571, 681, 683, 571, 682, 668, 571, 683, 687, 686, 684, 688, 687, 684, 689, 688, 684, 690, 689, 684, 691, 690, 684, 692, 691, 684, 693, 692, 684, 694, 693, 684, 695, 694, 684, 696, 695, 684, 697, 696, 684, 698, 697, 684, 699, 698, 684, 700, 699, 684, 701, 700, 684, 686, 701, 684, 687, 703, 702, 686, 688, 704, 703, 687, 689, 705, 704, 688, 690, 706, 705, 689, 691, 707, 706, 690, 692, 708, 707, 691, 693, 709, 708, 692, 694, 710, 709, 693, 695, 711, 710, 694, 696, 712, 711, 695, 697, 713, 712, 696, 698, 714, 713, 697, 699, 715, 714, 698, 700, 716, 715, 699, 701, 717, 716, 700, 686, 702, 717, 701, 703, 719, 718, 702, 704, 720, 719, 703, 705, 721, 720, 704, 706, 722, 721, 705, 707, 723, 722, 706, 708, 724, 723, 707, 709, 725, 724, 708, 710, 726, 725, 709, 711, 727, 726, 710, 712, 728, 727, 711, 713, 729, 728, 712, 714, 730, 729, 713, 715, 731, 730, 714, 716, 732, 731, 715, 717, 733, 732, 716, 702, 718, 733, 717, 719, 735, 734, 718, 720, 736, 735, 719, 721, 737, 736, 720, 722, 738, 737, 721, 723, 739, 738, 722, 724, 740, 739, 723, 725, 741, 740, 724, 726, 742, 741, 725, 727, 743, 742, 726, 728, 744, 743, 727, 729, 745, 744, 728, 730, 746, 745, 729, 731, 747, 746, 730, 732, 748, 747, 731, 733, 749, 748, 732, 718, 734, 749, 733, 735, 751, 750, 734, 736, 752, 751, 735, 737, 753, 752, 736, 738, 754, 753, 737, 739, 755, 754, 738, 740, 756, 755, 739, 741, 757, 756, 740, 742, 758, 757, 741, 743, 759, 758, 742, 744, 760, 759, 743, 745, 761, 760, 744, 746, 762, 761, 745, 747, 763, 762, 746, 748, 764, 763, 747, 749, 765, 764, 748, 734, 750, 765, 749, 751, 767, 766, 750, 752, 768, 767, 751, 753, 769, 768, 752, 754, 770, 769, 753, 755, 771, 770, 754, 756, 772, 771, 755, 757, 773, 772, 756, 758, 774, 773, 757, 759, 775, 774, 758, 760, 776, 775, 759, 761, 777, 776, 760, 762, 778, 777, 761, 763, 779, 778, 762, 764, 780, 779, 763, 765, 781, 780, 764, 750, 766, 781, 765, 767, 783, 782, 766, 768, 784, 783, 767, 769, 785, 784, 768, 770, 786, 785, 769, 771, 787, 786, 770, 772, 788, 787, 771, 773, 789, 788, 772, 774, 790, 789, 773, 775, 791, 790, 774, 776, 792, 791, 775, 777, 793, 792, 776, 778, 794, 793, 777, 779, 795, 794, 778, 780, 796, 795, 779, 781, 797, 796, 780, 766, 782, 797, 781, 783, 685, 782, 784, 685, 783, 785, 685, 784, 786, 685, 785, 787, 685, 786, 788, 685, 787, 789, 685, 788, 790, 685, 789, 791, 685, 790, 792, 685, 791, 793, 685, 792, 794, 685, 793, 795, 685, 794, 796, 685, 795, 797, 685, 796, 782, 685, 797, 801, 800, 798, 802, 801, 798, 803, 802, 798, 804, 803, 798, 805, 804, 798, 806, 805, 798, 807, 806, 798, 808, 807, 798, 809, 808, 798, 810, 809, 798, 811, 810, 798, 812, 811, 798, 813, 812, 798, 814, 813, 798, 815, 814, 798, 800, 815, 798, 801, 817, 816, 800, 802, 818, 817, 801, 803, 819, 818, 802, 804, 820, 819, 803, 805, 821, 820, 804, 806, 822, 821, 805, 807, 823, 822, 806, 808, 824, 823, 807, 809, 825, 824, 808, 810, 826, 825, 809, 811, 827, 826, 810, 812, 828, 827, 811, 813, 829, 828, 812, 814, 830, 829, 813, 815, 831, 830, 814, 800, 816, 831, 815, 817, 833, 832, 816, 818, 834, 833, 817, 819, 835, 834, 818, 820, 836, 835, 819, 821, 837, 836, 820, 822, 838, 837, 821, 823, 839, 838, 822, 824, 840, 839, 823, 825, 841, 840, 824, 826, 842, 841, 825, 827, 843, 842, 826, 828, 844, 843, 827, 829, 845, 844, 828, 830, 846, 845, 829, 831, 847, 846, 830, 816, 832, 847, 831, 833, 849, 848, 832, 834, 850, 849, 833, 835, 851, 850, 834, 836, 852, 851, 835, 837, 853, 852, 836, 838, 854, 853, 837, 839, 855, 854, 838, 840, 856, 855, 839, 841, 857, 856, 840, 842, 858, 857, 841, 843, 859, 858, 842, 844, 860, 859, 843, 845, 861, 860, 844, 846, 862, 861, 845, 847, 863, 862, 846, 832, 848, 863, 847, 849, 865, 864, 848, 850, 866, 865, 849, 851, 867, 866, 850, 852, 868, 867, 851, 853, 869, 868, 852, 854, 870, 869, 853, 855, 871, 870, 854, 856, 872, 871, 855, 857, 873, 872, 856, 858, 874, 873, 857, 859, 875, 874, 858, 860, 876, 875, 859, 861, 877, 876, 860, 862, 878, 877, 861, 863, 879, 878, 862, 848, 864, 879, 863, 865, 881, 880, 864, 866, 882, 881, 865, 867, 883, 882, 866, 868, 884, 883, 867, 869, 885, 884, 868, 870, 886, 885, 869, 871, 887, 886, 870, 872, 888, 887, 871, 873, 889, 888, 872, 874, 890, 889, 873, 875, 891, 890, 874, 876, 892, 891, 875, 877, 893, 892, 876, 878, 894, 893, 877, 879, 895, 894, 878, 864, 880, 895, 879, 881, 897, 896, 880, 882, 898, 897, 881, 883, 899, 898, 882, 884, 900, 899, 883, 885, 901, 900, 884, 886, 902, 901, 885, 887, 903, 902, 886, 888, 904, 903, 887, 889, 905, 904, 888, 890, 906, 905, 889, 891, 907, 906, 890, 892, 908, 907, 891, 893, 909, 908, 892, 894, 910, 909, 893, 895, 911, 910, 894, 880, 896, 911, 895, 897, 799, 896, 898, 799, 897, 899, 799, 898, 900, 799, 899, 901, 799, 900, 902, 799, 901, 903, 799, 902, 904, 799, 903, 905, 799, 904, 906, 799, 905, 907, 799, 906, 908, 799, 907, 909, 799, 908, 910, 799, 909, 911, 799, 910, 896, 799, 911, 915, 914, 912, 916, 915, 912, 917, 916, 912, 918, 917, 912, 919, 918, 912, 920, 919, 912, 921, 920, 912, 922, 921, 912, 923, 922, 912, 924, 923, 912, 925, 924, 912, 926, 925, 912, 927, 926, 912, 928, 927, 912, 929, 928, 912, 914, 929, 912, 915, 931, 930, 914, 916, 932, 931, 915, 917, 933, 932, 916, 918, 934, 933, 917, 919, 935, 934, 918, 920, 936, 935, 919, 921, 937, 936, 920, 922, 938, 937, 921, 923, 939, 938, 922, 924, 940, 939, 923, 925, 941, 940, 924, 926, 942, 941, 925, 927, 943, 942, 926, 928, 944, 943, 927, 929, 945, 944, 928, 914, 930, 945, 929, 931, 947, 946, 930, 932, 948, 947, 931, 933, 949, 948, 932, 934, 950, 949, 933, 935, 951, 950, 934, 936, 952, 951, 935, 937, 953, 952, 936, 938, 954, 953, 937, 939, 955, 954, 938, 940, 956, 955, 939, 941, 957, 956, 940, 942, 958, 957, 941, 943, 959, 958, 942, 944, 960, 959, 943, 945, 961, 960, 944, 930, 946, 961, 945, 947, 963, 962, 946, 948, 964, 963, 947, 949, 965, 964, 948, 950, 966, 965, 949, 951, 967, 966, 950, 952, 968, 967, 951, 953, 969, 968, 952, 954, 970, 969, 953, 955, 971, 970, 954, 956, 972, 971, 955, 957, 973, 972, 956, 958, 974, 973, 957, 959, 975, 974, 958, 960, 976, 975, 959, 961, 977, 976, 960, 946, 962, 977, 961, 963, 979, 978, 962, 964, 980, 979, 963, 965, 981, 980, 964, 966, 982, 981, 965, 967, 983, 982, 966, 968, 984, 983, 967, 969, 985, 984, 968, 970, 986, 985, 969, 971, 987, 986, 970, 972, 988, 987, 971, 973, 989, 988, 972, 974, 990, 989, 973, 975, 991, 990, 974, 976, 992, 991, 975, 977, 993, 992, 976, 962, 978, 993, 977, 979, 995, 994, 978, 980, 996, 995, 979, 981, 997, 996, 980, 982, 998, 997, 981, 983, 999, 998, 982, 984, 1000, 999, 983, 985, 1001, 1000, 984, 986, 1002, 1001, 985, 987, 1003, 1002, 986, 988, 1004, 1003, 987, 989, 1005, 1004, 988, 990, 1006, 1005, 989, 991, 1007, 1006, 990, 992, 1008, 1007, 991, 993, 1009, 1008, 992, 978, 994, 1009, 993, 995, 1011, 1010, 994, 996, 1012, 1011, 995, 997, 1013, 1012, 996, 998, 1014, 1013, 997, 999, 1015, 1014, 998, 1000, 1016, 1015, 999, 1001, 1017, 1016, 1000, 1002, 1018, 1017, 1001, 1003, 1019, 1018, 1002, 1004, 1020, 1019, 1003, 1005, 1021, 1020, 1004, 1006, 1022, 1021, 1005, 1007, 1023, 1022, 1006, 1008, 1024, 1023, 1007, 1009, 1025, 1024, 1008, 994, 1010, 1025, 1009, 1011, 913, 1010, 1012, 913, 1011, 1013, 913, 1012, 1014, 913, 1013, 1015, 913, 1014, 1016, 913, 1015, 1017, 913, 1016, 1018, 913, 1017, 1019, 913, 1018, 1020, 913, 1019, 1021, 913, 1020, 1022, 913, 1021, 1023, 913, 1022, 1024, 913, 1023, 1025, 913, 1024, 1010, 913, 1025, 1029, 1028, 1026, 1030, 1029, 1026, 1031, 1030, 1026, 1032, 1031, 1026, 1033, 1032, 1026, 1034, 1033, 1026, 1035, 1034, 1026, 1036, 1035, 1026, 1037, 1036, 1026, 1038, 1037, 1026, 1039, 1038, 1026, 1040, 1039, 1026, 1041, 1040, 1026, 1042, 1041, 1026, 1043, 1042, 1026, 1028, 1043, 1026, 1029, 1045, 1044, 1028, 1030, 1046, 1045, 1029, 1031, 1047, 1046, 1030, 1032, 1048, 1047, 1031, 1033, 1049, 1048, 1032, 1034, 1050, 1049, 1033, 1035, 1051, 1050, 1034, 1036, 1052, 1051, 1035, 1037, 1053, 1052, 1036, 1038, 1054, 1053, 1037, 1039, 1055, 1054, 1038, 1040, 1056, 1055, 1039, 1041, 1057, 1056, 1040, 1042, 1058, 1057, 1041, 1043, 1059, 1058, 1042, 1028, 1044, 1059, 1043, 1045, 1061, 1060, 1044, 1046, 1062, 1061, 1045, 1047, 1063, 1062, 1046, 1048, 1064, 1063, 1047, 1049, 1065, 1064, 1048, 1050, 1066, 1065, 1049, 1051, 1067, 1066, 1050, 1052, 1068, 1067, 1051, 1053, 1069, 1068, 1052, 1054, 1070, 1069, 1053, 1055, 1071, 1070, 1054, 1056, 1072, 1071, 1055, 1057, 1073, 1072, 1056, 1058, 1074, 1073, 1057, 1059, 1075, 1074, 1058, 1044, 1060, 1075, 1059, 1061, 1077, 1076, 1060, 1062, 1078, 1077, 1061, 1063, 1079, 1078, 1062, 1064, 1080, 1079, 1063, 1065, 1081, 1080, 1064, 1066, 1082, 1081, 1065, 1067, 1083, 1082, 1066, 1068, 1084, 1083, 1067, 1069, 1085, 1084, 1068, 1070, 1086, 1085, 1069, 1071, 1087, 1086, 1070, 1072, 1088, 1087, 1071, 1073, 1089, 1088, 1072, 1074, 1090, 1089, 1073, 1075, 1091, 1090, 1074, 1060, 1076, 1091, 1075, 1077, 1093, 1092, 1076, 1078, 1094, 1093, 1077, 1079, 1095, 1094, 1078, 1080, 1096, 1095, 1079, 1081, 1097, 1096, 1080, 1082, 1098, 1097, 1081, 1083, 1099, 1098, 1082, 1084, 1100, 1099, 1083, 1085, 1101, 1100, 1084, 1086, 1102, 1101, 1085, 1087, 1103, 1102, 1086, 1088, 1104, 1103, 1087, 1089, 1105, 1104, 1088, 1090, 1106, 1105, 1089, 1091, 1107, 1106, 1090, 1076, 1092, 1107, 1091, 1093, 1109, 1108, 1092, 1094, 1110, 1109, 1093, 1095, 1111, 1110, 1094, 1096, 1112, 1111, 1095, 1097, 1113, 1112, 1096, 1098, 1114, 1113, 1097, 1099, 1115, 1114, 1098, 1100, 1116, 1115, 1099, 1101, 1117, 1116, 1100, 1102, 1118, 1117, 1101, 1103, 1119, 1118, 1102, 1104, 1120, 1119, 1103, 1105, 1121, 1120, 1104, 1106, 1122, 1121, 1105, 1107, 1123, 1122, 1106, 1092, 1108, 1123, 1107, 1109, 1125, 1124, 1108, 1110, 1126, 1125, 1109, 1111, 1127, 1126, 1110, 1112, 1128, 1127, 1111, 1113, 1129, 1128, 1112, 1114, 1130, 1129, 1113, 1115, 1131, 1130, 1114, 1116, 1132, 1131, 1115, 1117, 1133, 1132, 1116, 1118, 1134, 1133, 1117, 1119, 1135, 1134, 1118, 1120, 1136, 1135, 1119, 1121, 1137, 1136, 1120, 1122, 1138, 1137, 1121, 1123, 1139, 1138, 1122, 1108, 1124, 1139, 1123, 1125, 1027, 1124, 1126, 1027, 1125, 1127, 1027, 1126, 1128, 1027, 1127, 1129, 1027, 1128, 1130, 1027, 1129, 1131, 1027, 1130, 1132, 1027, 1131, 1133, 1027, 1132, 1134, 1027, 1133, 1135, 1027, 1134, 1136, 1027, 1135, 1137, 1027, 1136, 1138, 1027, 1137, 1139, 1027, 1138, 1124, 1027, 1139, 1143, 1142, 1140, 1144, 1143, 1140, 1145, 1144, 1140, 1146, 1145, 1140, 1147, 1146, 1140, 1148, 1147, 1140, 1149, 1148, 1140, 1150, 1149, 1140, 1151, 1150, 1140, 1152, 1151, 1140, 1153, 1152, 1140, 1154, 1153, 1140, 1155, 1154, 1140, 1156, 1155, 1140, 1157, 1156, 1140, 1142, 1157, 1140, 1143, 1159, 1158, 1142, 1144, 1160, 1159, 1143, 1145, 1161, 1160, 1144, 1146, 1162, 1161, 1145, 1147, 1163, 1162, 1146, 1148, 1164, 1163, 1147, 1149, 1165, 1164, 1148, 1150, 1166, 1165, 1149, 1151, 1167, 1166, 1150, 1152, 1168, 1167, 1151, 1153, 1169, 1168, 1152, 1154, 1170, 1169, 1153, 1155, 1171, 1170, 1154, 1156, 1172, 1171, 1155, 1157, 1173, 1172, 1156, 1142, 1158, 1173, 1157, 1159, 1175, 1174, 1158, 1160, 1176, 1175, 1159, 1161, 1177, 1176, 1160, 1162, 1178, 1177, 1161, 1163, 1179, 1178, 1162, 1164, 1180, 1179, 1163, 1165, 1181, 1180, 1164, 1166, 1182, 1181, 1165, 1167, 1183, 1182, 1166, 1168, 1184, 1183, 1167, 1169, 1185, 1184, 1168, 1170, 1186, 1185, 1169, 1171, 1187, 1186, 1170, 1172, 1188, 1187, 1171, 1173, 1189, 1188, 1172, 1158, 1174, 1189, 1173, 1175, 1191, 1190, 1174, 1176, 1192, 1191, 1175, 1177, 1193, 1192, 1176, 1178, 1194, 1193, 1177, 1179, 1195, 1194, 1178, 1180, 1196, 1195, 1179, 1181, 1197, 1196, 1180, 1182, 1198, 1197, 1181, 1183, 1199, 1198, 1182, 1184, 1200, 1199, 1183, 1185, 1201, 1200, 1184, 1186, 1202, 1201, 1185, 1187, 1203, 1202, 1186, 1188, 1204, 1203, 1187, 1189, 1205, 1204, 1188, 1174, 1190, 1205, 1189, 1191, 1207, 1206, 1190, 1192, 1208, 1207, 1191, 1193, 1209, 1208, 1192, 1194, 1210, 1209, 1193, 1195, 1211, 1210, 1194, 1196, 1212, 1211, 1195, 1197, 1213, 1212, 1196, 1198, 1214, 1213, 1197, 1199, 1215, 1214, 1198, 1200, 1216, 1215, 1199, 1201, 1217, 1216, 1200, 1202, 1218, 1217, 1201, 1203, 1219, 1218, 1202, 1204, 1220, 1219, 1203, 1205, 1221, 1220, 1204, 1190, 1206, 1221, 1205, 1207, 1223, 1222, 1206, 1208, 1224, 1223, 1207, 1209, 1225, 1224, 1208, 1210, 1226, 1225, 1209, 1211, 1227, 1226, 1210, 1212, 1228, 1227, 1211, 1213, 1229, 1228, 1212, 1214, 1230, 1229, 1213, 1215, 1231, 1230, 1214, 1216, 1232, 1231, 1215, 1217, 1233, 1232, 1216, 1218, 1234, 1233, 1217, 1219, 1235, 1234, 1218, 1220, 1236, 1235, 1219, 1221, 1237, 1236, 1220, 1206, 1222, 1237, 1221, 1223, 1239, 1238, 1222, 1224, 1240, 1239, 1223, 1225, 1241, 1240, 1224, 1226, 1242, 1241, 1225, 1227, 1243, 1242, 1226, 1228, 1244, 1243, 1227, 1229, 1245, 1244, 1228, 1230, 1246, 1245, 1229, 1231, 1247, 1246, 1230, 1232, 1248, 1247, 1231, 1233, 1249, 1248, 1232, 1234, 1250, 1249, 1233, 1235, 1251, 1250, 1234, 1236, 1252, 1251, 1235, 1237, 1253, 1252, 1236, 1222, 1238, 1253, 1237, 1239, 1141, 1238, 1240, 1141, 1239, 1241, 1141, 1240, 1242, 1141, 1241, 1243, 1141, 1242, 1244, 1141, 1243, 1245, 1141, 1244, 1246, 1141, 1245, 1247, 1141, 1246, 1248, 1141, 1247, 1249, 1141, 1248, 1250, 1141, 1249, 1251, 1141, 1250, 1252, 1141, 1251, 1253, 1141, 1252, 1238, 1141, 1253, 1257, 1256, 1254, 1258, 1257, 1254, 1259, 1258, 1254, 1260, 1259, 1254, 1261, 1260, 1254, 1262, 1261, 1254, 1263, 1262, 1254, 1264, 1263, 1254, 1265, 1264, 1254, 1266, 1265, 1254, 1267, 1266, 1254, 1268, 1267, 1254, 1269, 1268, 1254, 1270, 1269, 1254, 1271, 1270, 1254, 1256, 1271, 1254, 1257, 1273, 1272, 1256, 1258, 1274, 1273, 1257, 1259, 1275, 1274, 1258, 1260, 1276, 1275, 1259, 1261, 1277, 1276, 1260, 1262, 1278, 1277, 1261, 1263, 1279, 1278, 1262, 1264, 1280, 1279, 1263, 1265, 1281, 1280, 1264, 1266, 1282, 1281, 1265, 1267, 1283, 1282, 1266, 1268, 1284, 1283, 1267, 1269, 1285, 1284, 1268, 1270, 1286, 1285, 1269, 1271, 1287, 1286, 1270, 1256, 1272, 1287, 1271, 1273, 1289, 1288, 1272, 1274, 1290, 1289, 1273, 1275, 1291, 1290, 1274, 1276, 1292, 1291, 1275, 1277, 1293, 1292, 1276, 1278, 1294, 1293, 1277, 1279, 1295, 1294, 1278, 1280, 1296, 1295, 1279, 1281, 1297, 1296, 1280, 1282, 1298, 1297, 1281, 1283, 1299, 1298, 1282, 1284, 1300, 1299, 1283, 1285, 1301, 1300, 1284, 1286, 1302, 1301, 1285, 1287, 1303, 1302, 1286, 1272, 1288, 1303, 1287, 1289, 1305, 1304, 1288, 1290, 1306, 1305, 1289, 1291, 1307, 1306, 1290, 1292, 1308, 1307, 1291, 1293, 1309, 1308, 1292, 1294, 1310, 1309, 1293, 1295, 1311, 1310, 1294, 1296, 1312, 1311, 1295, 1297, 1313, 1312, 1296, 1298, 1314, 1313, 1297, 1299, 1315, 1314, 1298, 1300, 1316, 1315, 1299, 1301, 1317, 1316, 1300, 1302, 1318, 1317, 1301, 1303, 1319, 1318, 1302, 1288, 1304, 1319, 1303, 1305, 1321, 1320, 1304, 1306, 1322, 1321, 1305, 1307, 1323, 1322, 1306, 1308, 1324, 1323, 1307, 1309, 1325, 1324, 1308, 1310, 1326, 1325, 1309, 1311, 1327, 1326, 1310, 1312, 1328, 1327, 1311, 1313, 1329, 1328, 1312, 1314, 1330, 1329, 1313, 1315, 1331, 1330, 1314, 1316, 1332, 1331, 1315, 1317, 1333, 1332, 1316, 1318, 1334, 1333, 1317, 1319, 1335, 1334, 1318, 1304, 1320, 1335, 1319, 1321, 1337, 1336, 1320, 1322, 1338, 1337, 1321, 1323, 1339, 1338, 1322, 1324, 1340, 1339, 1323, 1325, 1341, 1340, 1324, 1326, 1342, 1341, 1325, 1327, 1343, 1342, 1326, 1328, 1344, 1343, 1327, 1329, 1345, 1344, 1328, 1330, 1346, 1345, 1329, 1331, 1347, 1346, 1330, 1332, 1348, 1347, 1331, 1333, 1349, 1348, 1332, 1334, 1350, 1349, 1333, 1335, 1351, 1350, 1334, 1320, 1336, 1351, 1335, 1337, 1353, 1352, 1336, 1338, 1354, 1353, 1337, 1339, 1355, 1354, 1338, 1340, 1356, 1355, 1339, 1341, 1357, 1356, 1340, 1342, 1358, 1357, 1341, 1343, 1359, 1358, 1342, 1344, 1360, 1359, 1343, 1345, 1361, 1360, 1344, 1346, 1362, 1361, 1345, 1347, 1363, 1362, 1346, 1348, 1364, 1363, 1347, 1349, 1365, 1364, 1348, 1350, 1366, 1365, 1349, 1351, 1367, 1366, 1350, 1336, 1352, 1367, 1351, 1353, 1255, 1352, 1354, 1255, 1353, 1355, 1255, 1354, 1356, 1255, 1355, 1357, 1255, 1356, 1358, 1255, 1357, 1359, 1255, 1358, 1360, 1255, 1359, 1361, 1255, 1360, 1362, 1255, 1361, 1363, 1255, 1362, 1364, 1255, 1363, 1365, 1255, 1364, 1366, 1255, 1365, 1367, 1255, 1366, 1352, 1255, 1367, 1371, 1370, 1368, 1372, 1371, 1368, 1373, 1372, 1368, 1374, 1373, 1368, 1375, 1374, 1368, 1376, 1375, 1368, 1377, 1376, 1368, 1378, 1377, 1368, 1379, 1378, 1368, 1380, 1379, 1368, 1381, 1380, 1368, 1382, 1381, 1368, 1383, 1382, 1368, 1384, 1383, 1368, 1385, 1384, 1368, 1370, 1385, 1368, 1371, 1387, 1386, 1370, 1372, 1388, 1387, 1371, 1373, 1389, 1388, 1372, 1374, 1390, 1389, 1373, 1375, 1391, 1390, 1374, 1376, 1392, 1391, 1375, 1377, 1393, 1392, 1376, 1378, 1394, 1393, 1377, 1379, 1395, 1394, 1378, 1380, 1396, 1395, 1379, 1381, 1397, 1396, 1380, 1382, 1398, 1397, 1381, 1383, 1399, 1398, 1382, 1384, 1400, 1399, 1383, 1385, 1401, 1400, 1384, 1370, 1386, 1401, 1385, 1387, 1403, 1402, 1386, 1388, 1404, 1403, 1387, 1389, 1405, 1404, 1388, 1390, 1406, 1405, 1389, 1391, 1407, 1406, 1390, 1392, 1408, 1407, 1391, 1393, 1409, 1408, 1392, 1394, 1410, 1409, 1393, 1395, 1411, 1410, 1394, 1396, 1412, 1411, 1395, 1397, 1413, 1412, 1396, 1398, 1414, 1413, 1397, 1399, 1415, 1414, 1398, 1400, 1416, 1415, 1399, 1401, 1417, 1416, 1400, 1386, 1402, 1417, 1401, 1403, 1419, 1418, 1402, 1404, 1420, 1419, 1403, 1405, 1421, 1420, 1404, 1406, 1422, 1421, 1405, 1407, 1423, 1422, 1406, 1408, 1424, 1423, 1407, 1409, 1425, 1424, 1408, 1410, 1426, 1425, 1409, 1411, 1427, 1426, 1410, 1412, 1428, 1427, 1411, 1413, 1429, 1428, 1412, 1414, 1430, 1429, 1413, 1415, 1431, 1430, 1414, 1416, 1432, 1431, 1415, 1417, 1433, 1432, 1416, 1402, 1418, 1433, 1417, 1419, 1435, 1434, 1418, 1420, 1436, 1435, 1419, 1421, 1437, 1436, 1420, 1422, 1438, 1437, 1421, 1423, 1439, 1438, 1422, 1424, 1440, 1439, 1423, 1425, 1441, 1440, 1424, 1426, 1442, 1441, 1425, 1427, 1443, 1442, 1426, 1428, 1444, 1443, 1427, 1429, 1445, 1444, 1428, 1430, 1446, 1445, 1429, 1431, 1447, 1446, 1430, 1432, 1448, 1447, 1431, 1433, 1449, 1448, 1432, 1418, 1434, 1449, 1433, 1435, 1451, 1450, 1434, 1436, 1452, 1451, 1435, 1437, 1453, 1452, 1436, 1438, 1454, 1453, 1437, 1439, 1455, 1454, 1438, 1440, 1456, 1455, 1439, 1441, 1457, 1456, 1440, 1442, 1458, 1457, 1441, 1443, 1459, 1458, 1442, 1444, 1460, 1459, 1443, 1445, 1461, 1460, 1444, 1446, 1462, 1461, 1445, 1447, 1463, 1462, 1446, 1448, 1464, 1463, 1447, 1449, 1465, 1464, 1448, 1434, 1450, 1465, 1449, 1451, 1467, 1466, 1450, 1452, 1468, 1467, 1451, 1453, 1469, 1468, 1452, 1454, 1470, 1469, 1453, 1455, 1471, 1470, 1454, 1456, 1472, 1471, 1455, 1457, 1473, 1472, 1456, 1458, 1474, 1473, 1457, 1459, 1475, 1474, 1458, 1460, 1476, 1475, 1459, 1461, 1477, 1476, 1460, 1462, 1478, 1477, 1461, 1463, 1479, 1478, 1462, 1464, 1480, 1479, 1463, 1465, 1481, 1480, 1464, 1450, 1466, 1481, 1465, 1467, 1369, 1466, 1468, 1369, 1467, 1469, 1369, 1468, 1470, 1369, 1469, 1471, 1369, 1470, 1472, 1369, 1471, 1473, 1369, 1472, 1474, 1369, 1473, 1475, 1369, 1474, 1476, 1369, 1475, 1477, 1369, 1476, 1478, 1369, 1477, 1479, 1369, 1478, 1480, 1369, 1479, 1481, 1369, 1480, 1466, 1369, 1481, 1485, 1484, 1482, 1486, 1485, 1482, 1487, 1486, 1482, 1488, 1487, 1482, 1489, 1488, 1482, 1490, 1489, 1482, 1491, 1490, 1482, 1492, 1491, 1482, 1493, 1492, 1482, 1494, 1493, 1482, 1495, 1494, 1482, 1496, 1495, 1482, 1497, 1496, 1482, 1498, 1497, 1482, 1499, 1498, 1482, 1484, 1499, 1482, 1485, 1501, 1500, 1484, 1486, 1502, 1501, 1485, 1487, 1503, 1502, 1486, 1488, 1504, 1503, 1487, 1489, 1505, 1504, 1488, 1490, 1506, 1505, 1489, 1491, 1507, 1506, 1490, 1492, 1508, 1507, 1491, 1493, 1509, 1508, 1492, 1494, 1510, 1509, 1493, 1495, 1511, 1510, 1494, 1496, 1512, 1511, 1495, 1497, 1513, 1512, 1496, 1498, 1514, 1513, 1497, 1499, 1515, 1514, 1498, 1484, 1500, 1515, 1499, 1501, 1517, 1516, 1500, 1502, 1518, 1517, 1501, 1503, 1519, 1518, 1502, 1504, 1520, 1519, 1503, 1505, 1521, 1520, 1504, 1506, 1522, 1521, 1505, 1507, 1523, 1522, 1506, 1508, 1524, 1523, 1507, 1509, 1525, 1524, 1508, 1510, 1526, 1525, 1509, 1511, 1527, 1526, 1510, 1512, 1528, 1527, 1511, 1513, 1529, 1528, 1512, 1514, 1530, 1529, 1513, 1515, 1531, 1530, 1514, 1500, 1516, 1531, 1515, 1517, 1533, 1532, 1516, 1518, 1534, 1533, 1517, 1519, 1535, 1534, 1518, 1520, 1536, 1535, 1519, 1521, 1537, 1536, 1520, 1522, 1538, 1537, 1521, 1523, 1539, 1538, 1522, 1524, 1540, 1539, 1523, 1525, 1541, 1540, 1524, 1526, 1542, 1541, 1525, 1527, 1543, 1542, 1526, 1528, 1544, 1543, 1527, 1529, 1545, 1544, 1528, 1530, 1546, 1545, 1529, 1531, 1547, 1546, 1530, 1516, 1532, 1547, 1531, 1533, 1549, 1548, 1532, 1534, 1550, 1549, 1533, 1535, 1551, 1550, 1534, 1536, 1552, 1551, 1535, 1537, 1553, 1552, 1536, 1538, 1554, 1553, 1537, 1539, 1555, 1554, 1538, 1540, 1556, 1555, 1539, 1541, 1557, 1556, 1540, 1542, 1558, 1557, 1541, 1543, 1559, 1558, 1542, 1544, 1560, 1559, 1543, 1545, 1561, 1560, 1544, 1546, 1562, 1561, 1545, 1547, 1563, 1562, 1546, 1532, 1548, 1563, 1547, 1549, 1565, 1564, 1548, 1550, 1566, 1565, 1549, 1551, 1567, 1566, 1550, 1552, 1568, 1567, 1551, 1553, 1569, 1568, 1552, 1554, 1570, 1569, 1553, 1555, 1571, 1570, 1554, 1556, 1572, 1571, 1555, 1557, 1573, 1572, 1556, 1558, 1574, 1573, 1557, 1559, 1575, 1574, 1558, 1560, 1576, 1575, 1559, 1561, 1577, 1576, 1560, 1562, 1578, 1577, 1561, 1563, 1579, 1578, 1562, 1548, 1564, 1579, 1563, 1565, 1581, 1580, 1564, 1566, 1582, 1581, 1565, 1567, 1583, 1582, 1566, 1568, 1584, 1583, 1567, 1569, 1585, 1584, 1568, 1570, 1586, 1585, 1569, 1571, 1587, 1586, 1570, 1572, 1588, 1587, 1571, 1573, 1589, 1588, 1572, 1574, 1590, 1589, 1573, 1575, 1591, 1590, 1574, 1576, 1592, 1591, 1575, 1577, 1593, 1592, 1576, 1578, 1594, 1593, 1577, 1579, 1595, 1594, 1578, 1564, 1580, 1595, 1579, 1581, 1483, 1580, 1582, 1483, 1581, 1583, 1483, 1582, 1584, 1483, 1583, 1585, 1483, 1584, 1586, 1483, 1585, 1587, 1483, 1586, 1588, 1483, 1587, 1589, 1483, 1588, 1590, 1483, 1589, 1591, 1483, 1590, 1592, 1483, 1591, 1593, 1483, 1592, 1594, 1483, 1593, 1595, 1483, 1594, 1580, 1483, 1595, 1599, 1598, 1596, 1600, 1599, 1596, 1601, 1600, 1596, 1602, 1601, 1596, 1603, 1602, 1596, 1604, 1603, 1596, 1605, 1604, 1596, 1606, 1605, 1596, 1607, 1606, 1596, 1608, 1607, 1596, 1609, 1608, 1596, 1610, 1609, 1596, 1611, 1610, 1596, 1612, 1611, 1596, 1613, 1612, 1596, 1598, 1613, 1596, 1599, 1615, 1614, 1598, 1600, 1616, 1615, 1599, 1601, 1617, 1616, 1600, 1602, 1618, 1617, 1601, 1603, 1619, 1618, 1602, 1604, 1620, 1619, 1603, 1605, 1621, 1620, 1604, 1606, 1622, 1621, 1605, 1607, 1623, 1622, 1606, 1608, 1624, 1623, 1607, 1609, 1625, 1624, 1608, 1610, 1626, 1625, 1609, 1611, 1627, 1626, 1610, 1612, 1628, 1627, 1611, 1613, 1629, 1628, 1612, 1598, 1614, 1629, 1613, 1615, 1631, 1630, 1614, 1616, 1632, 1631, 1615, 1617, 1633, 1632, 1616, 1618, 1634, 1633, 1617, 1619, 1635, 1634, 1618, 1620, 1636, 1635, 1619, 1621, 1637, 1636, 1620, 1622, 1638, 1637, 1621, 1623, 1639, 1638, 1622, 1624, 1640, 1639, 1623, 1625, 1641, 1640, 1624, 1626, 1642, 1641, 1625, 1627, 1643, 1642, 1626, 1628, 1644, 1643, 1627, 1629, 1645, 1644, 1628, 1614, 1630, 1645, 1629, 1631, 1647, 1646, 1630, 1632, 1648, 1647, 1631, 1633, 1649, 1648, 1632, 1634, 1650, 1649, 1633, 1635, 1651, 1650, 1634, 1636, 1652, 1651, 1635, 1637, 1653, 1652, 1636, 1638, 1654, 1653, 1637, 1639, 1655, 1654, 1638, 1640, 1656, 1655, 1639, 1641, 1657, 1656, 1640, 1642, 1658, 1657, 1641, 1643, 1659, 1658, 1642, 1644, 1660, 1659, 1643, 1645, 1661, 1660, 1644, 1630, 1646, 1661, 1645, 1647, 1663, 1662, 1646, 1648, 1664, 1663, 1647, 1649, 1665, 1664, 1648, 1650, 1666, 1665, 1649, 1651, 1667, 1666, 1650, 1652, 1668, 1667, 1651, 1653, 1669, 1668, 1652, 1654, 1670, 1669, 1653, 1655, 1671, 1670, 1654, 1656, 1672, 1671, 1655, 1657, 1673, 1672, 1656, 1658, 1674, 1673, 1657, 1659, 1675, 1674, 1658, 1660, 1676, 1675, 1659, 1661, 1677, 1676, 1660, 1646, 1662, 1677, 1661, 1663, 1679, 1678, 1662, 1664, 1680, 1679, 1663, 1665, 1681, 1680, 1664, 1666, 1682, 1681, 1665, 1667, 1683, 1682, 1666, 1668, 1684, 1683, 1667, 1669, 1685, 1684, 1668, 1670, 1686, 1685, 1669, 1671, 1687, 1686, 1670, 1672, 1688, 1687, 1671, 1673, 1689, 1688, 1672, 1674, 1690, 1689, 1673, 1675, 1691, 1690, 1674, 1676, 1692, 1691, 1675, 1677, 1693, 1692, 1676, 1662, 1678, 1693, 1677, 1679, 1695, 1694, 1678, 1680, 1696, 1695, 1679, 1681, 1697, 1696, 1680, 1682, 1698, 1697, 1681, 1683, 1699, 1698, 1682, 1684, 1700, 1699, 1683, 1685, 1701, 1700, 1684, 1686, 1702, 1701, 1685, 1687, 1703, 1702, 1686, 1688, 1704, 1703, 1687, 1689, 1705, 1704, 1688, 1690, 1706, 1705, 1689, 1691, 1707, 1706, 1690, 1692, 1708, 1707, 1691, 1693, 1709, 1708, 1692, 1678, 1694, 1709, 1693, 1695, 1597, 1694, 1696, 1597, 1695, 1697, 1597, 1696, 1698, 1597, 1697, 1699, 1597, 1698, 1700, 1597, 1699, 1701, 1597, 1700, 1702, 1597, 1701, 1703, 1597, 1702, 1704, 1597, 1703, 1705, 1597, 1704, 1706, 1597, 1705, 1707, 1597, 1706, 1708, 1597, 1707, 1709, 1597, 1708, 1694, 1597, 1709]
rel material:binding = </root/Materials/tree_leaves>
normal3f[] normals = [(0, 1, -9.977968e-9), (0, -1, -9.977968e-9), (0.38219467, 0.9240818, -1.5244947e-8), (0.3531018, 0.9240818, 0.14625944), (0.27025238, 0.9240818, 0.27025244), (0.14625953, 0.92408186, 0.3531018), (0, 0.92408186, 0.38219458), (-0.14625953, 0.9240818, 0.35310176), (-0.27025247, 0.92408186, 0.27025238), (-0.3531018, 0.9240818, 0.14625956), (-0.3821946, 0.92408186, -1.9056183e-9), (-0.35310173, 0.9240818, -0.14625962), (-0.27025232, 0.9240818, -0.27025238), (-0.1462595, 0.92408186, -0.35310176), (5.1451693e-8, 0.92408186, -0.38219458), (0.14625955, 0.9240818, -0.35310173), (0.27025238, 0.9240818, -0.27025235), (0.3531018, 0.9240818, -0.14625938), (0.70658463, 0.70762855, -2.6849055e-8), (0.65279907, 0.70762855, 0.2703981), (0.49963075, 0.70762855, 0.4996308), (0.27039823, 0.70762855, 0.65279907), (0, 0.70762855, 0.70658463), (-0.27039826, 0.70762855, 0.65279907), (-0.49963084, 0.70762855, 0.49963075), (-0.65279907, 0.70762855, 0.27039823), (-0.7065846, 0.7076286, -4.6026955e-8), (-0.65279907, 0.7076285, -0.2703983), (-0.49963072, 0.70762855, -0.4996308), (-0.27039814, 0.70762855, -0.6527991), (7.6711586e-8, 0.70762855, -0.70658463), (0.2703983, 0.70762855, -0.65279907), (0.4996309, 0.70762855, -0.49963075), (0.6527992, 0.70762855, -0.27039808), (0.92368215, 0.3831596, 3.4738637e-8), (0.8533711, 0.38315955, 0.3534778), (0.6531419, 0.38315955, 0.6531419), (0.35347787, 0.3831596, 0.8533711), (-2.7018942e-8, 0.38315964, 0.92368215), (-0.3534779, 0.38315958, 0.8533711), (-0.6531419, 0.3831596, 0.65314186), (-0.853371, 0.38315964, 0.35347784), (-0.92368215, 0.3831596, -1.0421592e-7), (-0.853371, 0.3831596, -0.35347793), (-0.6531418, 0.3831596, -0.653142), (-0.3534777, 0.3831596, -0.8533711), (7.719698e-8, 0.38315964, -0.92368215), (0.35347795, 0.3831596, -0.853371), (0.653142, 0.38315958, -0.65314186), (0.853371, 0.38315967, -0.35347772), (1, 0, 1.00616866e-7), (0.9238795, 0, 0.38268337), (0.70710677, 0, 0.70710677), (0.38268343, 0, 0.9238795), (-5.4178315e-8, 3.8698795e-9, 1), (-0.38268346, -3.8698795e-9, 0.9238795), (-0.70710677, -3.8698795e-9, 0.70710677), (-0.92387956, 3.86988e-9, 0.3826834), (-1, 0, -1.2383616e-7), (-0.92387944, 0, -0.38268352), (-0.7071067, 3.8698795e-9, -0.7071068), (-0.38268328, -3.86988e-9, -0.92387956), (8.513735e-8, 3.8698795e-9, -1), (0.38268352, 0, -0.92387944), (0.7071068, 0, -0.7071067), (0.92387956, -3.8698795e-9, -0.38268328), (0.9236822, -0.3831596, 3.473864e-8), (0.8533711, -0.38315955, 0.3534778), (0.6531419, -0.38315955, 0.6531419), (0.35347784, -0.3831596, 0.8533711), (-2.7018942e-8, -0.3831596, 0.9236822), (-0.3534779, -0.3831596, 0.8533711), (-0.6531419, -0.3831596, 0.65314186), (-0.8533711, -0.3831596, 0.35347784), (-0.92368215, -0.3831596, -1.0421592e-7), (-0.853371, -0.38315958, -0.35347793), (-0.65314186, -0.3831596, -0.653142), (-0.35347772, -0.38315958, -0.8533711), (7.719697e-8, -0.3831596, -0.92368215), (0.35347793, -0.38315958, -0.853371), (0.653142, -0.38315958, -0.65314186), (0.8533711, -0.38315967, -0.35347772), (0.70658463, -0.70762855, -2.6849055e-8), (0.6527991, -0.70762855, 0.2703981), (0.49963078, -0.70762855, 0.4996308), (0.2703982, -0.70762855, 0.65279907), (0, -0.70762855, 0.70658463), (-0.27039823, -0.70762855, 0.65279907), (-0.49963084, -0.70762855, 0.49963072), (-0.65279907, -0.70762855, 0.27039823), (-0.70658463, -0.70762855, -4.4109168e-8), (-0.65279907, -0.70762855, -0.2703983), (-0.49963075, -0.70762855, -0.49963084), (-0.2703981, -0.70762855, -0.6527991), (7.671159e-8, -0.70762855, -0.70658463), (0.2703983, -0.70762855, -0.65279907), (0.4996309, -0.7076285, -0.49963075), (0.6527992, -0.70762855, -0.27039808), (0.38219464, -0.9240818, -1.5244947e-8), (0.3531018, -0.9240818, 0.14625946), (0.27025238, -0.9240818, 0.27025244), (0.14625955, -0.9240818, 0.35310176), (0, -0.92408186, 0.38219458), (-0.14625955, -0.9240818, 0.35310176), (-0.27025247, -0.92408186, 0.27025238), (-0.3531018, -0.9240818, 0.14625955), (-0.3821946, -0.92408186, -2.8584277e-9), (-0.35310173, -0.9240818, -0.14625962), (-0.27025232, -0.9240818, -0.27025238), (-0.1462595, -0.92408186, -0.35310176), (5.1451693e-8, -0.92408186, -0.38219458), (0.14625955, -0.9240818, -0.35310173), (0.2702524, -0.92408186, -0.27025235), (0.3531018, -0.9240818, -0.1462594), (9.502826e-10, 1, 5.701696e-9), (9.502826e-10, -1, 5.701696e-9), (0.38219467, 0.9240818, -2.0961801e-8), (0.3531018, 0.92408186, 0.14625949), (0.27025238, 0.9240818, 0.27025244), (0.14625953, 0.92408186, 0.35310173), (0, 0.92408186, 0.38219458), (-0.14625953, 0.92408186, 0.35310173), (-0.27025244, 0.92408186, 0.27025235), (-0.3531018, 0.9240818, 0.14625956), (-0.3821946, 0.92408186, -1.9056183e-9), (-0.35310173, 0.9240818, -0.1462596), (-0.27025232, 0.9240818, -0.27025238), (-0.1462595, 0.92408186, -0.35310176), (5.1451693e-8, 0.92408186, -0.38219458), (0.14625955, 0.9240818, -0.35310173), (0.2702524, 0.92408186, -0.27025235), (0.3531018, 0.9240818, -0.14625938), (0.70658463, 0.70762855, -3.6438003e-8), (0.6527991, 0.70762855, 0.27039817), (0.49963078, 0.70762855, 0.49963078), (0.27039823, 0.70762855, 0.652799), (0, 0.70762855, 0.70658463), (-0.27039823, 0.70762855, 0.65279907), (-0.4996309, 0.70762855, 0.49963072), (-0.65279907, 0.70762855, 0.2703982), (-0.70658463, 0.70762855, -3.83558e-9), (-0.65279907, 0.70762855, -0.27039826), (-0.49963075, 0.70762855, -0.49963084), (-0.2703981, 0.70762855, -0.6527991), (7.671159e-8, 0.70762855, -0.70658463), (0.2703983, 0.70762855, -0.65279907), (0.4996309, 0.7076285, -0.49963072), (0.6527992, 0.70762855, -0.27039805), (0.92368215, 0.3831596, 2.3159092e-8), (0.8533711, 0.38315958, 0.3534778), (0.6531419, 0.38315955, 0.6531419), (0.35347787, 0.38315958, 0.8533711), (-2.7018942e-8, 0.3831596, 0.9236822), (-0.35347793, 0.38315958, 0.853371), (-0.653142, 0.38315955, 0.65314186), (-0.8533711, 0.38315964, 0.35347778), (-0.92368215, 0.38315964, -4.6318185e-8), (-0.853371, 0.38315958, -0.35347793), (-0.65314186, 0.38315958, -0.653142), (-0.35347772, 0.3831596, -0.8533711), (7.719698e-8, 0.38315964, -0.92368215), (0.35347795, 0.3831596, -0.853371), (0.653142, 0.38315958, -0.65314186), (0.853371, 0.38315967, -0.35347772), (1, -3.8698795e-9, 9.287711e-8), (0.9238795, 0, 0.3826834), (0.7071067, -3.8698795e-9, 0.70710677), (0.38268343, 0, 0.9238795), (-5.4178315e-8, 3.8698795e-9, 1), (-0.3826835, 0, 0.92387944), (-0.7071069, -3.86988e-9, 0.7071067), (-0.92387956, 0, 0.3826833), (-1, 0, -8.513735e-8), (-0.92387944, -3.8698795e-9, -0.3826835), (-0.70710665, 0, -0.7071069), (-0.3826833, 3.86988e-9, -0.92387956), (8.513735e-8, 3.8698795e-9, -1), (0.38268352, 0, -0.92387944), (0.7071068, 0, -0.7071067), (0.92387956, -3.8698795e-9, -0.38268328), (0.9236822, -0.3831596, 2.3159092e-8), (0.8533711, -0.38315955, 0.3534778), (0.6531419, -0.38315955, 0.653142), (0.35347784, -0.3831596, 0.8533711), (-2.7018942e-8, -0.3831596, 0.9236822), (-0.3534779, -0.38315955, 0.8533711), (-0.653142, -0.38315958, 0.65314186), (-0.8533711, -0.38315967, 0.35347775), (-0.92368215, -0.3831596, -4.6318185e-8), (-0.853371, -0.3831596, -0.35347793), (-0.65314186, -0.3831596, -0.653142), (-0.35347772, -0.38315958, -0.8533711), (7.719697e-8, -0.3831596, -0.92368215), (0.35347793, -0.38315958, -0.853371), (0.653142, -0.38315958, -0.65314186), (0.8533711, -0.38315967, -0.35347772), (0.70658463, -0.70762855, -3.6438003e-8), (0.6527991, -0.70762855, 0.27039817), (0.49963078, -0.70762855, 0.49963078), (0.27039823, -0.70762855, 0.652799), (0, -0.70762855, 0.70658463), (-0.27039823, -0.70762855, 0.65279907), (-0.4996309, -0.70762855, 0.49963072), (-0.65279907, -0.70762855, 0.2703982), (-0.70658463, -0.70762855, -3.83558e-9), (-0.65279907, -0.70762855, -0.27039826), (-0.49963075, -0.70762855, -0.49963084), (-0.2703981, -0.70762855, -0.6527991), (7.671159e-8, -0.70762855, -0.70658463), (0.2703983, -0.70762855, -0.65279907), (0.4996309, -0.7076285, -0.49963072), (0.6527992, -0.70762855, -0.27039805), (0.38219464, -0.9240818, -2.0008992e-8), (0.35310176, -0.92408186, 0.14625949), (0.27025238, -0.9240818, 0.27025244), (0.14625953, -0.9240818, 0.35310173), (0, -0.92408186, 0.38219458), (-0.14625953, -0.92408186, 0.35310176), (-0.2702525, -0.92408186, 0.27025235), (-0.3531018, -0.9240818, 0.14625956), (-0.3821946, -0.92408186, -2.8584277e-9), (-0.35310173, -0.9240818, -0.1462596), (-0.27025232, -0.9240818, -0.27025238), (-0.1462595, -0.92408186, -0.35310176), (5.1451693e-8, -0.92408186, -0.38219458), (0.14625955, -0.9240818, -0.35310173), (0.2702524, -0.92408186, -0.27025235), (0.35310185, -0.9240818, -0.1462594), (5.701696e-9, 1, 5.2265547e-9), (5.701696e-9, -1, 5.2265547e-9), (0.38219467, 0.9240818, -1.9056182e-8), (0.3531018, 0.92408186, 0.14625949), (0.27025238, 0.9240818, 0.27025244), (0.14625953, 0.92408186, 0.35310173), (-7.622473e-9, 0.92408186, 0.38219458), (-0.14625955, 0.9240818, 0.35310173), (-0.27025238, 0.9240818, 0.27025244), (-0.35310173, 0.92408186, 0.14625956), (-0.38219458, 0.92408186, -3.8112367e-9), (-0.3531017, 0.92408186, -0.14625955), (-0.27025232, 0.92408186, -0.27025247), (-0.14625949, 0.92408186, -0.35310176), (5.1451693e-8, 0.92408186, -0.38219458), (0.14625955, 0.9240818, -0.35310173), (0.27025238, 0.92408186, -0.27025235), (0.3531018, 0.9240818, -0.14625938), (0.70658463, 0.70762855, -3.4520212e-8), (0.65279907, 0.70762855, 0.27039817), (0.49963075, 0.70762855, 0.4996308), (0.27039823, 0.70762855, 0.65279907), (-1.1506739e-8, 0.70762855, 0.70658463), (-0.27039823, 0.7076286, 0.652799), (-0.4996308, 0.70762855, 0.49963078), (-0.65279907, 0.70762855, 0.2703983), (-0.70658463, 0.7076285, -3.83558e-9), (-0.652799, 0.7076285, -0.27039835), (-0.49963072, 0.7076285, -0.4996309), (-0.27039817, 0.70762855, -0.65279907), (8.438274e-8, 0.70762855, -0.70658463), (0.2703983, 0.70762855, -0.65279907), (0.49963087, 0.7076285, -0.49963072), (0.6527992, 0.70762855, -0.27039805), (0.92368215, 0.38315964, 2.3159092e-8), (0.8533711, 0.38315958, 0.3534778), (0.6531419, 0.38315955, 0.6531419), (0.35347787, 0.38315958, 0.8533711), (-3.8598486e-8, 0.3831596, 0.92368215), (-0.35347787, 0.38315958, 0.8533711), (-0.6531419, 0.3831596, 0.6531419), (-0.8533711, 0.38315967, 0.3534778), (-0.9236822, 0.3831595, -8.105682e-8), (-0.853371, 0.38315952, -0.35347795), (-0.65314186, 0.3831596, -0.653142), (-0.35347784, 0.38315964, -0.8533711), (8.8776524e-8, 0.38315964, -0.92368215), (0.35347798, 0.38315964, -0.85337096), (0.6531421, 0.38315964, -0.6531418), (0.8533711, 0.38315967, -0.35347772), (1, 3.8698795e-9, 9.287711e-8), (0.9238795, 0, 0.3826834), (0.7071067, 3.8698795e-9, 0.70710677), (0.38268343, 0, 0.9238795), (-6.965784e-8, 0, 1), (-0.38268346, 0, 0.9238795), (-0.70710677, -3.8698795e-9, 0.70710677), (-0.92387956, 3.8698795e-9, 0.38268325), (-1, -3.8698795e-9, -1.5479517e-7), (-0.92387944, 0, -0.3826835), (-0.7071067, 3.8698795e-9, -0.7071069), (-0.3826834, 0, -0.9238795), (9.287711e-8, 3.8698795e-9, -1), (0.38268355, 0, -0.92387944), (0.7071069, -3.8698795e-9, -0.7071067), (0.92387956, 0, -0.3826833), (0.9236822, -0.3831596, 2.3159092e-8), (0.8533711, -0.38315955, 0.3534778), (0.6531419, -0.38315955, 0.653142), (0.35347784, -0.3831596, 0.8533711), (-3.859849e-8, -0.3831596, 0.9236822), (-0.3534779, -0.38315955, 0.8533711), (-0.6531419, -0.38315964, 0.65314186), (-0.8533711, -0.38315967, 0.3534778), (-0.9236822, -0.38315952, -8.105682e-8), (-0.853371, -0.38315955, -0.35347798), (-0.65314186, -0.3831596, -0.653142), (-0.35347784, -0.38315964, -0.8533711), (8.877652e-8, -0.3831596, -0.92368215), (0.35347795, -0.38315958, -0.853371), (0.65314204, -0.38315955, -0.6531418), (0.8533711, -0.38315967, -0.35347772), (0.70658463, -0.70762855, -3.4520212e-8), (0.6527991, -0.70762855, 0.27039817), (0.49963078, -0.70762855, 0.49963078), (0.27039823, -0.70762855, 0.652799), (-1.1506739e-8, -0.70762855, 0.70658463), (-0.27039823, -0.70762855, 0.65279907), (-0.4996308, -0.70762855, 0.49963078), (-0.65279907, -0.70762855, 0.27039826), (-0.7065847, -0.7076285, -5.7533693e-9), (-0.65279907, -0.7076285, -0.27039835), (-0.49963075, -0.70762855, -0.4996309), (-0.27039817, -0.70762855, -0.65279907), (8.4382755e-8, -0.70762855, -0.70658463), (0.2703983, -0.70762855, -0.65279907), (0.49963087, -0.7076285, -0.49963072), (0.6527992, -0.70762855, -0.27039805), (0.38219464, -0.9240818, -1.8103373e-8), (0.35310176, -0.92408186, 0.14625949), (0.27025238, -0.9240818, 0.27025244), (0.14625953, -0.9240818, 0.35310173), (-7.622473e-9, -0.92408186, 0.38219458), (-0.14625955, -0.9240818, 0.35310173), (-0.2702524, -0.9240818, 0.27025244), (-0.3531017, -0.92408186, 0.14625956), (-0.38219458, -0.92408186, -4.7640456e-9), (-0.35310173, -0.9240818, -0.14625953), (-0.27025232, -0.92408186, -0.27025247), (-0.1462595, -0.92408186, -0.35310176), (5.1451693e-8, -0.92408186, -0.38219458), (0.14625955, -0.9240818, -0.35310173), (0.27025238, -0.92408186, -0.27025235), (0.3531018, -0.9240818, -0.14625938), (5.701696e-9, 1, 3.3259893e-9), (5.701696e-9, -1, 3.3259893e-9), (0.38219467, 0.9240818, -1.9056182e-8), (0.3531018, 0.92408186, 0.14625949), (0.27025238, 0.9240818, 0.27025244), (0.14625953, 0.92408186, 0.35310173), (-7.622473e-9, 0.92408186, 0.38219458), (-0.14625955, 0.9240818, 0.35310173), (-0.27025238, 0.9240818, 0.27025244), (-0.35310173, 0.9240818, 0.14625955), (-0.38219458, 0.92408186, 2.0961801e-8), (-0.3531017, 0.92408186, -0.14625953), (-0.27025232, 0.9240818, -0.27025247), (-0.14625949, 0.92408186, -0.35310173), (1.2005395e-7, 0.92408186, -0.38219458), (0.14625955, 0.9240818, -0.35310173), (0.27025232, 0.9240818, -0.27025235), (0.3531018, 0.9240818, -0.14625938), (0.70658463, 0.70762855, -3.4520212e-8), (0.65279907, 0.70762855, 0.27039817), (0.49963075, 0.70762855, 0.4996308), (0.27039823, 0.70762855, 0.65279907), (-1.1506739e-8, 0.70762855, 0.70658463), (-0.27039823, 0.7076286, 0.652799), (-0.4996308, 0.70762855, 0.49963075), (-0.65279907, 0.70762855, 0.2703983), (-0.70658463, 0.7076285, 1.534232e-8), (-0.652799, 0.7076285, -0.27039835), (-0.49963078, 0.7076285, -0.4996309), (-0.27039823, 0.70762855, -0.65279907), (1.6492994e-7, 0.7076286, -0.70658463), (0.27039835, 0.7076285, -0.65279907), (0.49963087, 0.70762855, -0.49963075), (0.6527992, 0.70762855, -0.27039805), (0.92368215, 0.38315964, 2.7018942e-8), (0.8533711, 0.38315958, 0.3534778), (0.6531419, 0.38315955, 0.6531419), (0.35347787, 0.38315958, 0.8533711), (-3.8598486e-8, 0.3831596, 0.92368215), (-0.35347787, 0.38315958, 0.8533711), (-0.6531419, 0.3831596, 0.6531419), (-0.8533711, 0.38315967, 0.3534778), (-0.9236822, 0.3831595, -7.333712e-8), (-0.853371, 0.38315952, -0.35347795), (-0.65314186, 0.3831596, -0.653142), (-0.35347784, 0.38315964, -0.8533711), (1.5439396e-7, 0.3831596, -0.9236822), (0.35347795, 0.38315958, -0.853371), (0.65314204, 0.3831596, -0.65314186), (0.8533711, 0.38315967, -0.35347772), (1, 0, 1.0061687e-7), (0.9238795, 0, 0.3826834), (0.7071067, -3.8698795e-9, 0.70710677), (0.38268343, 0, 0.9238795), (-6.965784e-8, 0, 1), (-0.38268346, 0, 0.9238795), (-0.70710677, 3.8698795e-9, 0.70710677), (-0.92387956, -3.8698795e-9, 0.38268325), (-1, 3.8698795e-9, -1.5479517e-7), (-0.92387944, 0, -0.3826835), (-0.7071067, 0, -0.70710677), (-0.3826833, 3.86988e-9, -0.9238795), (1.6253493e-7, -3.8698795e-9, -1), (0.3826835, 0, -0.92387944), (0.7071069, -3.8698795e-9, -0.7071067), (0.9238795, 3.86988e-9, -0.3826833), (0.9236822, -0.3831596, 2.7018942e-8), (0.8533711, -0.38315955, 0.3534778), (0.6531419, -0.38315955, 0.653142), (0.35347784, -0.3831596, 0.8533711), (-3.859849e-8, -0.3831596, 0.9236822), (-0.35347787, -0.38315958, 0.8533711), (-0.6531419, -0.38315964, 0.65314186), (-0.8533711, -0.38315967, 0.3534778), (-0.9236822, -0.38315952, -7.333713e-8), (-0.853371, -0.38315955, -0.35347798), (-0.65314186, -0.3831596, -0.653142), (-0.3534778, -0.38315964, -0.8533711), (1.5439396e-7, -0.38315958, -0.9236822), (0.35347798, -0.3831596, -0.853371), (0.653142, -0.3831596, -0.65314186), (0.8533711, -0.38315967, -0.35347772), (0.70658463, -0.70762855, -3.4520212e-8), (0.65279907, -0.70762855, 0.27039817), (0.49963075, -0.70762855, 0.4996308), (0.27039823, -0.70762855, 0.65279907), (-1.1506739e-8, -0.70762855, 0.70658463), (-0.27039823, -0.70762855, 0.65279907), (-0.4996308, -0.70762855, 0.49963075), (-0.65279907, -0.70762855, 0.2703983), (-0.70658463, -0.7076285, 1.534232e-8), (-0.652799, -0.7076285, -0.27039835), (-0.49963078, -0.7076285, -0.4996309), (-0.27039823, -0.70762855, -0.65279907), (1.6492994e-7, -0.7076286, -0.70658463), (0.27039835, -0.7076285, -0.65279907), (0.49963087, -0.70762855, -0.49963075), (0.6527992, -0.70762855, -0.27039805), (0.38219464, -0.9240818, -1.8103373e-8), (0.35310176, -0.92408186, 0.14625949), (0.27025238, -0.9240818, 0.27025244), (0.14625953, -0.9240818, 0.35310173), (-7.622473e-9, -0.92408186, 0.38219458), (-0.14625955, -0.9240818, 0.35310173), (-0.27025238, -0.9240818, 0.27025244), (-0.35310173, -0.9240818, 0.14625953), (-0.38219458, -0.92408186, 2.0008992e-8), (-0.35310173, -0.92408186, -0.14625953), (-0.27025232, -0.9240818, -0.27025247), (-0.14625947, -0.92408186, -0.35310173), (1.19101145e-7, -0.92408186, -0.38219452), (0.14625956, -0.9240818, -0.35310176), (0.27025235, -0.9240818, -0.27025235), (0.3531018, -0.9240818, -0.14625938), (9.502832e-10, 1, -4.751416e-10), (9.502832e-10, -1, -4.751416e-10), (0.3821948, 0.92408174, -2.2867418e-8), (0.3531019, 0.9240818, 0.14625949), (0.2702525, 0.92408174, 0.2702525), (0.14625953, 0.9240818, 0.35310185), (-2.09618e-8, 0.9240818, 0.38219467), (-0.14625958, 0.92408174, 0.35310188), (-0.27025247, 0.9240818, 0.27025256), (-0.35310182, 0.9240818, 0.1462596), (-0.38219464, 0.9240818, 0), (-0.35310182, 0.9240818, -0.14625959), (-0.2702525, 0.92408174, -0.27025256), (-0.14625953, 0.92408174, -0.3531019), (1.2958205e-7, 0.9240818, -0.38219473), (0.14625962, 0.92408174, -0.35310188), (0.2702525, 0.9240818, -0.27025247), (0.35310194, 0.9240818, -0.14625944), (0.7065845, 0.70762867, -3.8355793e-8), (0.652799, 0.70762867, 0.27039808), (0.4996307, 0.70762867, 0.4996307), (0.27039817, 0.70762867, 0.65279895), (-2.6849058e-8, 0.70762867, 0.7065845), (-0.27039817, 0.70762867, 0.65279895), (-0.4996307, 0.70762867, 0.49963072), (-0.65279895, 0.7076286, 0.2703983), (-0.7065845, 0.7076286, -3.83558e-9), (-0.65279895, 0.7076286, -0.27039832), (-0.4996307, 0.70762867, -0.49963075), (-0.2703982, 0.70762867, -0.65279895), (1.7643667e-7, 0.7076287, -0.70658445), (0.27039835, 0.70762867, -0.65279895), (0.4996308, 0.7076286, -0.4996307), (0.65279907, 0.70762867, -0.27039805), (0.92368215, 0.38315964, 1.9299243e-8), (0.8533711, 0.38315964, 0.3534778), (0.6531419, 0.3831596, 0.6531419), (0.35347778, 0.38315964, 0.853371), (-5.7897733e-8, 0.38315964, 0.92368215), (-0.35347787, 0.38315964, 0.853371), (-0.65314186, 0.3831597, 0.65314186), (-0.853371, 0.3831597, 0.35347775), (-0.92368215, 0.3831596, -8.8776524e-8), (-0.853371, 0.3831596, -0.35347798), (-0.6531419, 0.3831597, -0.6531419), (-0.35347778, 0.38315964, -0.8533711), (1.6211365e-7, 0.38315955, -0.9236822), (0.35347793, 0.3831596, -0.853371), (0.653142, 0.3831597, -0.6531418), (0.853371, 0.3831597, -0.35347772), (1, -3.8698795e-9, 8.5137344e-8), (0.9238795, 3.8698795e-9, 0.38268337), (0.7071067, -3.8698795e-9, 0.70710677), (0.3826834, 0, 0.9238795), (-9.287711e-8, 3.8698795e-9, 1), (-0.38268343, 3.8698795e-9, 0.9238795), (-0.7071067, -3.8698795e-9, 0.70710677), (-0.92387956, 0, 0.38268322), (-1, -3.8698795e-9, -1.702747e-7), (-0.92387944, 0, -0.38268352), (-0.70710677, 0, -0.70710677), (-0.38268322, 3.8698795e-9, -0.92387956), (1.7027467e-7, 3.869879e-9, -1), (0.38268346, 3.86988e-9, -0.9238795), (0.7071069, -3.8698795e-9, -0.7071067), (0.92387956, -3.8698795e-9, -0.3826833), (0.92368215, -0.38315967, 1.9299245e-8), (0.8533711, -0.3831596, 0.35347778), (0.6531419, -0.3831596, 0.6531419), (0.35347784, -0.38315964, 0.853371), (-5.7897733e-8, -0.38315967, 0.92368215), (-0.35347787, -0.38315964, 0.853371), (-0.65314186, -0.38315973, 0.65314186), (-0.853371, -0.3831597, 0.35347778), (-0.9236822, -0.38315958, -8.8776524e-8), (-0.85337096, -0.3831596, -0.353478), (-0.65314186, -0.3831597, -0.6531419), (-0.35347778, -0.3831597, -0.8533711), (1.6211365e-7, -0.38315955, -0.9236822), (0.35347795, -0.38315964, -0.853371), (0.653142, -0.3831597, -0.6531418), (0.853371, -0.3831597, -0.35347772), (0.7065846, -0.7076286, -3.8355793e-8), (0.652799, -0.70762867, 0.27039808), (0.49963072, -0.70762867, 0.49963066), (0.27039814, -0.7076287, 0.65279895), (-2.6849056e-8, -0.70762867, 0.7065845), (-0.2703982, -0.70762867, 0.65279895), (-0.49963072, -0.70762867, 0.49963075), (-0.65279895, -0.70762867, 0.2703983), (-0.7065845, -0.70762867, -3.83558e-9), (-0.6527989, -0.7076286, -0.27039838), (-0.4996307, -0.7076286, -0.49963078), (-0.2703982, -0.70762867, -0.65279895), (1.7835445e-7, -0.7076287, -0.70658445), (0.27039832, -0.70762867, -0.6527989), (0.4996308, -0.70762867, -0.49963072), (0.65279907, -0.7076286, -0.27039805), (0.38219482, -0.92408174, -2.2867418e-8), (0.35310194, -0.9240818, 0.14625949), (0.27025247, -0.9240818, 0.27025253), (0.14625955, -0.92408174, 0.35310188), (-2.09618e-8, -0.9240818, 0.3821947), (-0.14625958, -0.92408174, 0.35310188), (-0.27025247, -0.9240818, 0.27025256), (-0.35310182, -0.9240818, 0.1462596), (-0.38219467, -0.9240818, 0), (-0.35310185, -0.9240818, -0.14625959), (-0.2702525, -0.92408174, -0.27025253), (-0.14625953, -0.92408174, -0.35310188), (1.2958203e-7, -0.92408174, -0.38219473), (0.14625962, -0.92408174, -0.35310188), (0.2702525, -0.9240818, -0.27025247), (0.3531019, -0.9240818, -0.14625943), (9.502832e-10, 1, -7.1271233e-10), (9.502832e-10, -1, -7.1271233e-10), (0.38219476, 0.92408174, -2.2867418e-8), (0.35310194, 0.9240818, 0.1462595), (0.2702525, 0.92408174, 0.2702525), (0.14625953, 0.9240818, 0.35310185), (-2.2867416e-8, 0.9240818, 0.38219467), (-0.14625958, 0.9240818, 0.35310182), (-0.27025247, 0.9240818, 0.27025256), (-0.35310182, 0.9240818, 0.1462596), (-0.38219464, 0.9240818, 0), (-0.35310182, 0.9240818, -0.14625959), (-0.2702525, 0.92408174, -0.27025256), (-0.14625953, 0.92408174, -0.3531019), (1.2958205e-7, 0.9240818, -0.38219473), (0.14625962, 0.92408174, -0.35310188), (0.2702525, 0.9240818, -0.27025247), (0.3531019, 0.9240818, -0.14625946), (0.7065845, 0.70762867, -3.4520212e-8), (0.65279895, 0.7076287, 0.27039808), (0.49963072, 0.7076287, 0.49963066), (0.2703981, 0.7076287, 0.65279895), (-3.0684635e-8, 0.7076286, 0.7065846), (-0.27039817, 0.7076287, 0.6527989), (-0.49963078, 0.7076286, 0.4996307), (-0.65279895, 0.7076286, 0.2703983), (-0.7065845, 0.7076286, -3.83558e-9), (-0.65279895, 0.7076286, -0.27039832), (-0.4996307, 0.70762867, -0.49963075), (-0.2703982, 0.70762867, -0.65279895), (1.7643667e-7, 0.7076287, -0.70658445), (0.27039835, 0.70762867, -0.65279895), (0.49963078, 0.70762867, -0.4996307), (0.65279907, 0.70762867, -0.27039805), (0.92368215, 0.3831596, 1.1579546e-8), (0.8533711, 0.38315964, 0.35347778), (0.653142, 0.38315964, 0.6531419), (0.35347778, 0.3831597, 0.8533711), (-9.263637e-8, 0.3831596, 0.92368215), (-0.35347787, 0.38315958, 0.8533711), (-0.6531419, 0.38315967, 0.65314186), (-0.853371, 0.38315967, 0.35347778), (-0.92368215, 0.3831596, -8.8776524e-8), (-0.853371, 0.3831596, -0.35347798), (-0.6531419, 0.3831597, -0.6531419), (-0.35347778, 0.38315964, -0.8533711), (1.6211365e-7, 0.38315955, -0.9236822), (0.35347793, 0.3831596, -0.853371), (0.653142, 0.38315967, -0.6531418), (0.853371, 0.38315967, -0.35347772), (1, -3.8698795e-9, 6.191807e-8), (0.92387956, 0, 0.38268337), (0.70710677, -3.8698795e-9, 0.70710677), (0.3826833, 3.8698795e-9, 0.92387956), (-1.6253493e-7, 0, 1), (-0.3826834, 3.8698795e-9, 0.9238795), (-0.70710677, 3.8698795e-9, 0.70710677), (-0.92387956, 0, 0.38268328), (-1, -3.8698795e-9, -1.702747e-7), (-0.92387944, 0, -0.38268352), (-0.70710677, 0, -0.70710677), (-0.38268322, 3.8698795e-9, -0.92387956), (1.7027467e-7, 3.869879e-9, -1), (0.38268346, 0, -0.9238795), (0.7071069, 3.8698795e-9, -0.7071067), (0.9238795, -3.86988e-9, -0.3826833), (0.92368215, -0.38315967, 1.1579546e-8), (0.8533711, -0.38315964, 0.35347778), (0.6531419, -0.3831596, 0.6531419), (0.35347775, -0.3831597, 0.8533711), (-9.263637e-8, -0.3831596, 0.92368215), (-0.35347787, -0.3831596, 0.8533711), (-0.653142, -0.3831597, 0.65314186), (-0.85337096, -0.38315973, 0.35347784), (-0.9236822, -0.38315958, -8.8776524e-8), (-0.85337096, -0.3831596, -0.353478), (-0.65314186, -0.3831597, -0.6531419), (-0.35347778, -0.3831597, -0.8533711), (1.6211365e-7, -0.38315955, -0.9236822), (0.35347795, -0.38315964, -0.853371), (0.653142, -0.3831597, -0.65314186), (0.853371, -0.38315973, -0.35347772), (0.7065845, -0.70762867, -3.4520212e-8), (0.652799, -0.70762867, 0.27039808), (0.49963072, -0.70762867, 0.49963066), (0.27039808, -0.7076287, 0.65279895), (-2.8766847e-8, -0.70762867, 0.7065845), (-0.27039817, -0.7076287, 0.6527989), (-0.49963072, -0.70762867, 0.4996307), (-0.65279895, -0.70762867, 0.2703983), (-0.7065845, -0.70762867, -3.83558e-9), (-0.6527989, -0.7076286, -0.27039838), (-0.4996307, -0.7076286, -0.49963078), (-0.2703982, -0.70762867, -0.65279895), (1.7835445e-7, -0.7076287, -0.70658445), (0.27039832, -0.70762867, -0.6527989), (0.4996308, -0.70762867, -0.49963072), (0.65279907, -0.7076286, -0.27039805), (0.38219482, -0.92408174, -2.2867418e-8), (0.35310194, -0.9240818, 0.14625949), (0.27025247, -0.92408174, 0.27025247), (0.14625953, -0.9240818, 0.35310185), (-2.2867416e-8, -0.9240818, 0.38219467), (-0.14625956, -0.9240818, 0.35310185), (-0.27025247, -0.9240818, 0.27025256), (-0.35310182, -0.9240818, 0.1462596), (-0.38219467, -0.9240818, 0), (-0.35310185, -0.9240818, -0.14625959), (-0.2702525, -0.92408174, -0.27025253), (-0.14625953, -0.92408174, -0.35310188), (1.2958203e-7, -0.92408174, -0.38219473), (0.14625962, -0.92408174, -0.35310188), (0.2702525, -0.9240818, -0.27025244), (0.3531019, -0.9240818, -0.14625943), (4.7514157e-9, 1, 5.7016987e-9), (4.7514157e-9, -1, 5.7016987e-9), (0.38219458, 0.92408186, -2.667865e-8), (0.3531017, 0.92408186, 0.14625935), (0.27025235, 0.92408186, 0.27025238), (0.14625947, 0.92408186, 0.35310167), (-1.9056179e-8, 0.92408186, 0.38219446), (-0.14625952, 0.9240819, 0.35310167), (-0.2702523, 0.92408186, 0.27025238), (-0.3531016, 0.92408186, 0.14625952), (-0.38219446, 0.92408186, -3.8112358e-9), (-0.35310164, 0.9240819, -0.14625952), (-0.27025232, 0.92408186, -0.27025235), (-0.14625946, 0.92408186, -0.35310167), (1.2958202e-7, 0.92408186, -0.38219452), (0.14625955, 0.92408186, -0.3531017), (0.27025232, 0.9240819, -0.27025232), (0.35310176, 0.9240819, -0.1462593), (0.7065844, 0.7076288, -4.4109168e-8), (0.65279883, 0.70762885, 0.27039805), (0.49963063, 0.7076288, 0.4996306), (0.2703981, 0.70762885, 0.65279883), (-3.068464e-8, 0.7076288, 0.7065844), (-0.27039817, 0.70762885, 0.65279883), (-0.4996307, 0.7076287, 0.49963066), (-0.6527989, 0.7076287, 0.2703983), (-0.70658445, 0.7076288, -9.58895e-9), (-0.65279883, 0.7076288, -0.2703983), (-0.49963063, 0.7076287, -0.49963075), (-0.27039814, 0.7076287, -0.6527989), (1.9369679e-7, 0.7076288, -0.70658445), (0.27039832, 0.7076288, -0.65279883), (0.49963075, 0.7076287, -0.49963057), (0.652799, 0.7076287, -0.27039796), (0.9236822, 0.38315952, -5.4037884e-8), (0.8533711, 0.38315952, 0.35347787), (0.653142, 0.38315946, 0.6531419), (0.35347787, 0.38315952, 0.85337114), (-6.1757575e-8, 0.38315952, 0.9236822), (-0.35347795, 0.3831595, 0.8533711), (-0.65314204, 0.38315952, 0.6531419), (-0.8533711, 0.38315958, 0.35347787), (-0.9236822, 0.38315946, -9.6496215e-8), (-0.853371, 0.38315946, -0.353478), (-0.6531419, 0.38315955, -0.6531419), (-0.35347778, 0.38315955, -0.85337114), (1.8141289e-7, 0.3831594, -0.9236823), (0.35347798, 0.38315946, -0.8533711), (0.6531421, 0.38315955, -0.6531418), (0.85337114, 0.38315952, -0.35347775), (1, 1.3931565e-7, -5.4178308e-8), (0.9238795, 1.2770603e-7, 0.3826834), (0.7071068, 1.2770602e-7, 0.7071068), (0.3826834, 1.315759e-7, 0.9238795), (-9.674699e-8, 1.315759e-7, 1), (-0.38268355, 1.3544579e-7, 0.92387944), (-0.70710677, 1.3544577e-7, 0.7071067), (-0.92387956, 1.3157593e-7, 0.3826833), (-1, 1.315759e-7, -1.7801446e-7), (-0.92387944, 1.315759e-7, -0.3826835), (-0.7071067, 1.3544577e-7, -0.70710677), (-0.38268322, 1.4318556e-7, -0.9238796), (1.8962407e-7, 1.3931565e-7, -1), (0.3826834, 1.3544579e-7, -0.9238795), (0.7071069, 1.3544579e-7, -0.70710665), (0.92387956, 1.3931567e-7, -0.3826833), (0.92368215, -0.3831597, -5.017804e-8), (0.853371, -0.38315976, 0.3534778), (0.6531419, -0.3831597, 0.65314186), (0.35347778, -0.3831597, 0.853371), (-6.175758e-8, -0.38315973, 0.9236821), (-0.35347795, -0.38315973, 0.85337096), (-0.653142, -0.3831598, 0.6531418), (-0.85337096, -0.3831598, 0.3534778), (-0.92368215, -0.38315964, -9.263637e-8), (-0.85337096, -0.3831597, -0.35347798), (-0.6531418, -0.3831598, -0.65314186), (-0.35347772, -0.38315976, -0.853371), (1.814129e-7, -0.3831596, -0.92368215), (0.3534779, -0.3831597, -0.853371), (0.65314204, -0.38315976, -0.65314174), (0.8533711, -0.38315976, -0.35347772), (0.7065845, -0.7076287, -4.027358e-8), (0.65279895, -0.70762867, 0.27039808), (0.49963078, -0.70762867, 0.4996307), (0.27039817, -0.7076287, 0.65279895), (-2.8766843e-8, -0.70762867, 0.7065845), (-0.2703982, -0.70762867, 0.65279895), (-0.49963078, -0.70762867, 0.49963072), (-0.652799, -0.70762855, 0.27039832), (-0.70658463, -0.7076286, -5.753369e-9), (-0.652799, -0.70762855, -0.27039832), (-0.49963072, -0.7076286, -0.49963084), (-0.2703982, -0.70762867, -0.652799), (1.8986117e-7, -0.70762867, -0.7065845), (0.27039835, -0.70762867, -0.65279895), (0.4996308, -0.70762855, -0.49963075), (0.6527991, -0.7076286, -0.27039805), (0.3821951, -0.9240816, -2.5725845e-8), (0.3531022, -0.9240817, 0.14625956), (0.27025267, -0.9240816, 0.27025273), (0.14625967, -0.9240817, 0.35310215), (-2.09618e-8, -0.9240817, 0.38219503), (-0.1462597, -0.9240817, 0.35310215), (-0.27025267, -0.9240817, 0.27025276), (-0.35310212, -0.9240817, 0.14625971), (-0.382195, -0.9240817, -3.811236e-9), (-0.35310212, -0.9240817, -0.1462597), (-0.27025267, -0.9240816, -0.27025273), (-0.14625965, -0.9240817, -0.35310218), (1.3053484e-7, -0.9240817, -0.382195), (0.14625974, -0.9240816, -0.35310215), (0.2702527, -0.9240817, -0.27025267), (0.3531022, -0.9240817, -0.14625949), (4.7514157e-9, 1, 1.9005664e-9), (4.7514157e-9, -1, 1.9005664e-9), (0.38219458, 0.92408186, -2.667865e-8), (0.3531017, 0.92408186, 0.14625935), (0.27025235, 0.92408186, 0.27025238), (0.14625947, 0.92408186, 0.35310167), (-2.0961798e-8, 0.92408186, 0.38219446), (-0.14625952, 0.9240819, 0.35310167), (-0.2702523, 0.92408186, 0.2702524), (-0.35310158, 0.9240819, 0.14625952), (-0.38219443, 0.9240819, -3.8112358e-9), (-0.3531016, 0.92408186, -0.14625952), (-0.2702523, 0.92408186, -0.2702524), (-0.14625947, 0.92408186, -0.35310167), (1.276764e-7, 0.92408186, -0.38219452), (0.14625953, 0.92408186, -0.3531017), (0.27025232, 0.9240819, -0.27025232), (0.35310176, 0.9240819, -0.1462593), (0.7065844, 0.7076287, -4.2191378e-8), (0.6527989, 0.7076288, 0.27039805), (0.49963066, 0.7076288, 0.49963063), (0.2703981, 0.7076289, 0.65279883), (-3.4520216e-8, 0.7076288, 0.70658433), (-0.27039814, 0.7076289, 0.65279883), (-0.49963063, 0.7076288, 0.49963066), (-0.6527989, 0.7076287, 0.2703983), (-0.70658445, 0.7076288, -3.8355803e-9), (-0.65279883, 0.7076288, -0.27039832), (-0.49963057, 0.7076287, -0.49963075), (-0.27039814, 0.7076288, -0.6527989), (1.8410783e-7, 0.7076288, -0.7065844), (0.27039826, 0.7076288, -0.65279883), (0.49963072, 0.7076288, -0.4996306), (0.652799, 0.7076288, -0.270398), (0.9236822, 0.38315952, -5.4037884e-8), (0.8533711, 0.38315952, 0.35347787), (0.653142, 0.38315946, 0.6531419), (0.35347787, 0.38315952, 0.85337114), (-6.1757575e-8, 0.38315952, 0.9236822), (-0.35347793, 0.38315952, 0.8533711), (-0.65314204, 0.38315952, 0.65314186), (-0.8533711, 0.3831595, 0.35347784), (-0.9236823, 0.38315937, -5.7897733e-8), (-0.8533711, 0.38315943, -0.35347804), (-0.6531419, 0.38315952, -0.653142), (-0.35347778, 0.38315955, -0.85337114), (1.8141289e-7, 0.38315943, -0.9236823), (0.35347798, 0.38315946, -0.8533711), (0.6531421, 0.38315955, -0.6531418), (0.85337114, 0.38315952, -0.35347775), (1, 1.3544577e-7, -5.417831e-8), (0.9238795, 1.2770602e-7, 0.38268337), (0.7071068, 1.2770602e-7, 0.7071068), (0.38268343, 1.315759e-7, 0.9238795), (-9.6746994e-8, 1.3544579e-7, 1), (-0.38268352, 1.315759e-7, 0.9238795), (-0.7071068, 1.2770602e-7, 0.7071067), (-0.92387956, 1.3931567e-7, 0.3826833), (-1, 1.3931567e-7, -1.0835663e-7), (-0.92387944, 1.3931567e-7, -0.38268355), (-0.7071067, 1.3931566e-7, -0.7071068), (-0.38268322, 1.2770603e-7, -0.92387956), (1.9349395e-7, 1.3544576e-7, -1), (0.38268346, 1.2770603e-7, -0.9238795), (0.7071069, 1.3544579e-7, -0.70710665), (0.92387956, 1.3544579e-7, -0.38268328), (0.92368215, -0.3831597, -5.017804e-8), (0.853371, -0.38315976, 0.3534778), (0.6531419, -0.3831597, 0.65314186), (0.35347778, -0.3831597, 0.853371), (-6.561743e-8, -0.38315973, 0.9236821), (-0.35347787, -0.38315973, 0.853371), (-0.6531419, -0.38315976, 0.6531418), (-0.853371, -0.38315976, 0.3534778), (-0.92368215, -0.3831596, -5.7897733e-8), (-0.85337096, -0.3831597, -0.35347804), (-0.6531418, -0.3831598, -0.6531419), (-0.35347775, -0.38315976, -0.853371), (1.814129e-7, -0.38315964, -0.92368215), (0.35347795, -0.38315973, -0.85337096), (0.65314204, -0.38315976, -0.65314174), (0.8533711, -0.38315976, -0.35347772), (0.7065845, -0.7076287, -4.027358e-8), (0.65279895, -0.70762867, 0.27039808), (0.49963078, -0.70762867, 0.4996307), (0.27039817, -0.7076287, 0.65279895), (-3.4520212e-8, -0.70762867, 0.7065845), (-0.2703982, -0.70762867, 0.65279895), (-0.49963072, -0.7076286, 0.49963075), (-0.65279895, -0.7076286, 0.27039832), (-0.7065846, -0.7076286, -5.7533693e-9), (-0.65279895, -0.7076286, -0.27039835), (-0.49963066, -0.7076286, -0.4996308), (-0.2703982, -0.70762867, -0.652799), (1.8602559e-7, -0.70762867, -0.7065846), (0.27039832, -0.70762867, -0.65279895), (0.4996308, -0.70762855, -0.49963075), (0.6527991, -0.7076286, -0.27039805), (0.3821951, -0.9240816, -2.5725845e-8), (0.3531022, -0.9240817, 0.14625956), (0.27025267, -0.9240816, 0.27025273), (0.14625967, -0.9240817, 0.35310215), (-2.2867418e-8, -0.9240817, 0.38219503), (-0.1462597, -0.9240817, 0.35310215), (-0.27025265, -0.9240817, 0.2702528), (-0.35310206, -0.9240817, 0.14625971), (-0.38219494, -0.9240817, -3.811236e-9), (-0.35310206, -0.9240817, -0.14625971), (-0.27025267, -0.9240817, -0.27025276), (-0.14625965, -0.9240817, -0.35310218), (1.267236e-7, -0.9240817, -0.38219503), (0.14625973, -0.9240817, -0.35310218), (0.2702527, -0.9240817, -0.27025267), (0.3531022, -0.9240817, -0.14625949), (6.651982e-9, 1, 2.3757079e-9), (6.651982e-9, -1, 2.3757079e-9), (0.38219458, 0.92408186, -2.667865e-8), (0.3531017, 0.92408186, 0.14625935), (0.27025235, 0.92408186, 0.27025238), (0.14625947, 0.92408186, 0.35310167), (-2.0961798e-8, 0.92408186, 0.38219446), (-0.14625952, 0.9240819, 0.35310167), (-0.2702523, 0.92408186, 0.2702524), (-0.35310158, 0.9240819, 0.14625952), (-0.38219443, 0.9240819, 0), (-0.35310164, 0.9240819, -0.14625952), (-0.27025226, 0.92408186, -0.2702524), (-0.14625947, 0.92408186, -0.3531017), (1.1052584e-7, 0.92408186, -0.3821945), (0.14625956, 0.92408186, -0.35310167), (0.27025235, 0.92408186, -0.2702523), (0.35310176, 0.9240819, -0.1462593), (0.7065844, 0.7076287, -4.2191378e-8), (0.6527989, 0.7076288, 0.27039805), (0.49963066, 0.7076288, 0.49963063), (0.2703981, 0.7076289, 0.65279883), (-3.4520216e-8, 0.7076288, 0.70658433), (-0.27039814, 0.7076289, 0.65279883), (-0.49963063, 0.7076288, 0.49963066), (-0.6527989, 0.7076287, 0.27039826), (-0.70658445, 0.7076288, -7.671161e-9), (-0.65279883, 0.7076288, -0.27039832), (-0.49963057, 0.7076287, -0.4996308), (-0.27039817, 0.7076287, -0.6527989), (1.2657415e-7, 0.7076288, -0.70658445), (0.2703983, 0.7076288, -0.65279883), (0.49963072, 0.7076288, -0.4996306), (0.652799, 0.7076288, -0.27039796), (0.9236822, 0.38315952, -5.7897733e-8), (0.8533711, 0.38315952, 0.35347787), (0.653142, 0.38315946, 0.6531419), (0.35347787, 0.38315952, 0.85337114), (-6.1757575e-8, 0.38315952, 0.9236822), (-0.35347793, 0.38315952, 0.8533711), (-0.65314204, 0.38315952, 0.65314186), (-0.8533711, 0.3831595, 0.35347784), (-0.9236823, 0.38315937, -6.947728e-8), (-0.853371, 0.38315946, -0.35347804), (-0.6531418, 0.38315955, -0.65314204), (-0.3534778, 0.38315955, -0.8533711), (1.582538e-7, 0.3831594, -0.9236823), (0.35347793, 0.38315943, -0.8533711), (0.65314204, 0.3831595, -0.6531418), (0.85337114, 0.38315952, -0.35347778), (1, 1.3544577e-7, -5.8048187e-8), (0.9238795, 1.2770603e-7, 0.3826834), (0.7071068, 1.2770602e-7, 0.7071068), (0.3826834, 1.315759e-7, 0.9238795), (-9.674699e-8, 1.315759e-7, 1), (-0.38268352, 1.3544579e-7, 0.92387944), (-0.7071068, 1.2770602e-7, 0.7071067), (-0.92387956, 1.3544579e-7, 0.3826833), (-1, 1.3931566e-7, -1.2383614e-7), (-0.92387944, 1.3544579e-7, -0.38268355), (-0.7071067, 1.3544579e-7, -0.7071069), (-0.38268322, 1.3157593e-7, -0.9238796), (2.1284336e-7, 1.2770602e-7, -1), (0.3826834, 1.354458e-7, -0.92387956), (0.7071069, 1.315759e-7, -0.70710665), (0.9238796, 1.315759e-7, -0.38268328), (0.92368215, -0.3831597, -5.403789e-8), (0.853371, -0.38315976, 0.3534778), (0.6531419, -0.3831597, 0.65314186), (0.35347778, -0.3831597, 0.853371), (-6.561743e-8, -0.38315973, 0.9236821), (-0.35347787, -0.38315973, 0.853371), (-0.6531419, -0.38315976, 0.6531418), (-0.853371, -0.38315976, 0.3534778), (-0.92368215, -0.3831596, -6.561743e-8), (-0.85337096, -0.3831597, -0.35347804), (-0.65314174, -0.3831598, -0.653142), (-0.35347772, -0.3831598, -0.853371), (1.6211365e-7, -0.3831596, -0.9236822), (0.35347787, -0.3831596, -0.853371), (0.653142, -0.38315976, -0.6531418), (0.8533711, -0.38315976, -0.35347772), (0.7065845, -0.70762867, -4.6026948e-8), (0.65279895, -0.70762867, 0.27039808), (0.49963075, -0.70762867, 0.4996307), (0.27039817, -0.70762867, 0.65279895), (-3.4520212e-8, -0.70762867, 0.7065845), (-0.2703982, -0.7076287, 0.65279895), (-0.4996307, -0.7076286, 0.49963075), (-0.65279895, -0.7076286, 0.27039832), (-0.7065846, -0.7076286, -3.83558e-9), (-0.65279895, -0.7076286, -0.27039838), (-0.49963066, -0.7076286, -0.4996309), (-0.27039823, -0.70762855, -0.65279907), (1.304097e-7, -0.7076286, -0.7065846), (0.27039832, -0.7076286, -0.652799), (0.4996308, -0.70762855, -0.4996307), (0.6527991, -0.7076286, -0.27039802), (0.3821951, -0.9240816, -2.5725845e-8), (0.3531022, -0.9240817, 0.14625956), (0.27025267, -0.9240816, 0.27025273), (0.14625967, -0.9240817, 0.35310215), (-2.2867418e-8, -0.9240817, 0.38219503), (-0.1462597, -0.9240817, 0.35310215), (-0.27025265, -0.9240817, 0.2702528), (-0.35310206, -0.9240817, 0.14625971), (-0.38219494, -0.9240817, 0), (-0.35310206, -0.9240817, -0.14625971), (-0.27025267, -0.9240817, -0.2702528), (-0.14625967, -0.9240817, -0.35310218), (1.1338428e-7, -0.9240817, -0.382195), (0.14625974, -0.9240816, -0.35310212), (0.2702527, -0.9240817, -0.27025265), (0.3531022, -0.9240817, -0.14625947), (6.651982e-9, 1, 2.3757079e-9), (6.651982e-9, -1, 2.3757079e-9), (0.38219458, 0.92408186, -2.667865e-8), (0.3531017, 0.92408186, 0.14625935), (0.27025235, 0.92408186, 0.27025238), (0.14625947, 0.92408186, 0.35310167), (-2.0961798e-8, 0.92408186, 0.38219446), (-0.14625952, 0.9240819, 0.35310167), (-0.2702523, 0.92408186, 0.2702524), (-0.35310158, 0.9240819, 0.14625952), (-0.38219443, 0.9240819, 0), (-0.35310164, 0.9240819, -0.14625952), (-0.27025226, 0.92408186, -0.2702524), (-0.14625947, 0.92408186, -0.3531017), (1.1052584e-7, 0.92408186, -0.3821945), (0.14625956, 0.92408186, -0.35310167), (0.27025235, 0.92408186, -0.2702523), (0.35310176, 0.9240819, -0.1462593), (0.7065844, 0.7076287, -4.2191378e-8), (0.6527989, 0.7076288, 0.27039805), (0.49963066, 0.7076288, 0.49963063), (0.2703981, 0.7076289, 0.65279883), (-3.4520216e-8, 0.7076288, 0.70658433), (-0.27039814, 0.7076289, 0.65279883), (-0.49963063, 0.7076288, 0.49963066), (-0.6527989, 0.7076287, 0.27039826), (-0.70658445, 0.7076288, -7.671161e-9), (-0.65279883, 0.7076288, -0.27039832), (-0.49963057, 0.7076287, -0.4996308), (-0.27039817, 0.7076287, -0.6527989), (1.2657415e-7, 0.7076288, -0.70658445), (0.2703983, 0.7076288, -0.65279883), (0.49963072, 0.7076288, -0.4996306), (0.652799, 0.7076288, -0.27039796), (0.9236822, 0.38315952, -5.7897733e-8), (0.8533711, 0.38315952, 0.35347787), (0.653142, 0.38315946, 0.6531419), (0.35347787, 0.38315952, 0.85337114), (-6.1757575e-8, 0.38315952, 0.9236822), (-0.35347793, 0.38315952, 0.8533711), (-0.65314204, 0.38315952, 0.65314186), (-0.8533711, 0.3831595, 0.35347784), (-0.9236823, 0.38315937, -6.947728e-8), (-0.853371, 0.38315946, -0.35347804), (-0.6531418, 0.38315955, -0.65314204), (-0.3534778, 0.38315955, -0.8533711), (1.582538e-7, 0.3831594, -0.9236823), (0.35347793, 0.38315943, -0.8533711), (0.65314204, 0.3831595, -0.6531418), (0.85337114, 0.38315952, -0.35347778), (1, 1.3544577e-7, -5.8048187e-8), (0.9238795, 1.2770603e-7, 0.3826834), (0.7071068, 1.2770602e-7, 0.7071068), (0.3826834, 1.315759e-7, 0.9238795), (-9.674699e-8, 1.315759e-7, 1), (-0.38268352, 1.3544579e-7, 0.92387944), (-0.7071068, 1.2770602e-7, 0.7071067), (-0.92387956, 1.3544579e-7, 0.3826833), (-1, 1.3931566e-7, -1.2383614e-7), (-0.92387944, 1.3544579e-7, -0.38268355), (-0.7071067, 1.3544579e-7, -0.7071069), (-0.38268322, 1.3157593e-7, -0.9238796), (2.1284336e-7, 1.2770602e-7, -1), (0.3826834, 1.354458e-7, -0.92387956), (0.7071069, 1.315759e-7, -0.70710665), (0.9238796, 1.315759e-7, -0.38268328), (0.92368215, -0.3831597, -5.403789e-8), (0.853371, -0.38315976, 0.3534778), (0.6531419, -0.3831597, 0.65314186), (0.35347778, -0.3831597, 0.853371), (-6.561743e-8, -0.38315973, 0.9236821), (-0.35347787, -0.38315973, 0.853371), (-0.6531419, -0.38315976, 0.6531418), (-0.853371, -0.38315976, 0.3534778), (-0.92368215, -0.3831596, -6.561743e-8), (-0.85337096, -0.3831597, -0.35347804), (-0.65314174, -0.3831598, -0.653142), (-0.35347772, -0.3831598, -0.853371), (1.6211365e-7, -0.3831596, -0.9236822), (0.35347787, -0.3831596, -0.853371), (0.653142, -0.38315976, -0.6531418), (0.8533711, -0.38315976, -0.35347772), (0.7065845, -0.7076287, -4.410916e-8), (0.65279895, -0.70762867, 0.27039808), (0.49963078, -0.70762867, 0.4996307), (0.27039817, -0.7076287, 0.65279895), (-3.4520212e-8, -0.70762867, 0.7065845), (-0.2703982, -0.70762867, 0.65279895), (-0.49963072, -0.7076286, 0.49963075), (-0.65279895, -0.7076286, 0.27039832), (-0.7065846, -0.7076286, -3.8355794e-9), (-0.65279895, -0.7076286, -0.27039838), (-0.49963066, -0.7076286, -0.4996309), (-0.27039823, -0.70762855, -0.65279907), (1.304097e-7, -0.7076286, -0.7065846), (0.27039832, -0.70762867, -0.65279895), (0.4996308, -0.7076286, -0.4996307), (0.6527991, -0.7076286, -0.270398), (0.3821951, -0.9240816, -2.5725845e-8), (0.3531022, -0.9240817, 0.14625956), (0.27025267, -0.9240816, 0.27025273), (0.14625967, -0.9240817, 0.35310215), (-2.2867418e-8, -0.9240817, 0.38219503), (-0.1462597, -0.9240817, 0.35310215), (-0.27025265, -0.9240817, 0.2702528), (-0.35310206, -0.9240817, 0.14625971), (-0.38219494, -0.9240817, 0), (-0.35310206, -0.9240817, -0.14625971), (-0.27025267, -0.9240817, -0.2702528), (-0.14625967, -0.9240817, -0.35310218), (1.1338428e-7, -0.9240817, -0.382195), (0.14625974, -0.9240816, -0.35310212), (0.2702527, -0.9240817, -0.27025265), (0.3531022, -0.9240817, -0.14625947), (7.60226e-9, 1, 9.502825e-9), (6.651982e-9, -1, 1.0215544e-8), (0.38219443, 0.9240819, -5.335732e-8), (0.35310158, 0.924082, 0.14625926), (0.27025214, 0.9240819, 0.2702523), (0.14625934, 0.924082, 0.35310155), (-7.622473e-9, 0.924082, 0.38219425), (-0.14625934, 0.924082, 0.35310155), (-0.27025214, 0.924082, 0.27025226), (-0.3531015, 0.924082, 0.14625937), (-0.38219425, 0.924082, -4.0017987e-8), (-0.3531015, 0.924082, -0.14625937), (-0.27025232, 0.9240819, -0.27025208), (-0.14625946, 0.924082, -0.35310143), (2.6106974e-7, 0.924082, -0.38219428), (0.14625958, 0.9240819, -0.3531015), (0.27025226, 0.924082, -0.27025214), (0.35310158, 0.9240819, -0.1462592), (0.7065847, 0.7076285, -9.5889476e-8), (0.6527992, 0.7076285, 0.27039823), (0.4996308, 0.7076284, 0.49963093), (0.2703983, 0.7076285, 0.6527991), (-2.3013477e-8, 0.7076285, 0.7065847), (-0.27039832, 0.7076284, 0.6527992), (-0.49963087, 0.7076284, 0.49963096), (-0.65279907, 0.7076285, 0.27039832), (-0.7065847, 0.7076285, -2.3013477e-8), (-0.652799, 0.70762855, -0.27039832), (-0.49963087, 0.7076285, -0.49963084), (-0.2703984, 0.7076284, -0.6527992), (3.2218867e-7, 0.7076284, -0.70658475), (0.2703986, 0.7076284, -0.65279907), (0.49963102, 0.7076284, -0.4996308), (0.6527993, 0.7076284, -0.27039808), (0.9236821, 0.38315985, -1.0421592e-7), (0.8533709, 0.3831599, 0.3534779), (0.6531418, 0.38315982, 0.6531419), (0.35347787, 0.38315988, 0.85337096), (-8.8776524e-8, 0.38315985, 0.9236821), (-0.35347793, 0.3831598, 0.85337096), (-0.6531418, 0.38315973, 0.6531419), (-0.85337096, 0.3831598, 0.35347787), (-0.92368215, 0.38315964, -3.8598486e-8), (-0.85337096, 0.3831598, -0.35347793), (-0.65314174, 0.38315988, -0.6531419), (-0.3534777, 0.38315988, -0.853371), (2.701894e-7, 0.38315967, -0.92368215), (0.35347804, 0.38315976, -0.85337096), (0.653142, 0.38315982, -0.65314174), (0.853371, 0.38315982, -0.35347775), (1, 3.9472766e-7, -1.0061686e-7), (0.92387944, 3.985976e-7, 0.3826835), (0.70710665, 3.908578e-7, 0.7071069), (0.38268346, 3.985976e-7, 0.9238795), (-1.4705542e-7, 3.947277e-7, 1), (-0.38268352, 3.947277e-7, 0.92387944), (-0.70710677, 3.947277e-7, 0.70710677), (-0.92387956, 3.9472775e-7, 0.3826833), (-1, 3.9472766e-7, -8.5137344e-8), (-0.9238795, 3.985976e-7, -0.38268343), (-0.7071067, 3.9472772e-7, -0.7071069), (-0.3826831, 3.908579e-7, -0.9238796), (2.8637106e-7, 3.908578e-7, -1), (0.3826835, 3.9472772e-7, -0.9238795), (0.7071069, 3.9085782e-7, -0.70710665), (0.92387956, 3.9085788e-7, -0.38268337), (0.92368203, -0.38315997, -1.04215935e-7), (0.85337085, -0.38316, 0.3534778), (0.65314174, -0.38316, 0.65314186), (0.35347784, -0.38316, 0.85337085), (-8.877654e-8, -0.38315997, 0.92368203), (-0.35347793, -0.3831599, 0.85337085), (-0.65314186, -0.38315997, 0.65314186), (-0.85337085, -0.38315997, 0.3534778), (-0.9236821, -0.38315982, -3.8598493e-8), (-0.85337085, -0.3831599, -0.3534779), (-0.65314174, -0.38316008, -0.6531419), (-0.35347766, -0.38316002, -0.8533709), (2.7018947e-7, -0.38315985, -0.9236821), (0.353478, -0.3831599, -0.85337085), (0.653142, -0.38316, -0.65314174), (0.8533709, -0.38316, -0.35347775), (0.7065843, -0.7076289, -9.397168e-8), (0.6527987, -0.70762897, 0.27039805), (0.49963057, -0.70762885, 0.4996307), (0.27039814, -0.70762885, 0.6527988), (-2.3013474e-8, -0.7076289, 0.7065843), (-0.2703982, -0.70762885, 0.6527988), (-0.4996306, -0.7076288, 0.49963066), (-0.6527987, -0.70762885, 0.2703982), (-0.7065843, -0.7076289, -2.3013474e-8), (-0.65279865, -0.70762897, -0.2703982), (-0.4996306, -0.70762885, -0.4996306), (-0.27039823, -0.70762885, -0.6527988), (3.2218864e-7, -0.70762885, -0.7065844), (0.2703984, -0.7076288, -0.6527988), (0.4996307, -0.7076288, -0.49963054), (0.6527989, -0.7076288, -0.27039793), (0.38219535, -0.92408156, -5.335731e-8), (0.35310245, -0.92408156, 0.14625962), (0.2702528, -0.92408156, 0.27025294), (0.14625967, -0.9240816, 0.3531024), (-7.622472e-9, -0.9240816, 0.38219517), (-0.14625968, -0.9240816, 0.3531024), (-0.2702528, -0.92408156, 0.27025285), (-0.35310233, -0.9240816, 0.14625971), (-0.38219517, -0.9240816, -4.001798e-8), (-0.35310233, -0.9240816, -0.14625971), (-0.27025297, -0.92408156, -0.2702527), (-0.14625981, -0.9240816, -0.35310227), (2.610697e-7, -0.9240816, -0.38219517), (0.14625992, -0.92408156, -0.3531023), (0.27025288, -0.9240816, -0.2702528), (0.3531024, -0.92408156, -0.14625958), (1.0453115e-8, 1, -5.2265574e-9), (1.0453115e-8, -1, -5.2265574e-9), (0.38219458, 0.92408186, -2.667865e-8), (0.3531017, 0.92408186, 0.14625937), (0.27025238, 0.92408186, 0.27025238), (0.1462595, 0.92408186, 0.35310167), (-2.0961798e-8, 0.92408186, 0.38219446), (-0.14625953, 0.92408186, 0.35310164), (-0.27025226, 0.92408186, 0.27025247), (-0.35310158, 0.9240819, 0.14625949), (-0.38219446, 0.9240819, 0), (-0.3531016, 0.9240819, -0.14625947), (-0.27025223, 0.92408186, -0.27025244), (-0.14625941, 0.92408186, -0.3531017), (1.0480899e-7, 0.92408186, -0.38219446), (0.1462595, 0.92408186, -0.35310167), (0.27025235, 0.92408186, -0.2702523), (0.35310176, 0.9240819, -0.1462593), (0.7065844, 0.7076288, -4.4109168e-8), (0.65279883, 0.7076289, 0.27039808), (0.4996307, 0.70762885, 0.49963057), (0.27039814, 0.7076289, 0.65279883), (-2.876685e-8, 0.7076288, 0.7065844), (-0.2703982, 0.70762885, 0.65279883), (-0.49963063, 0.7076287, 0.49963066), (-0.65279883, 0.7076288, 0.27039826), (-0.70658445, 0.7076288, -7.671161e-9), (-0.65279883, 0.7076288, -0.2703983), (-0.49963057, 0.7076287, -0.49963084), (-0.27039814, 0.7076287, -0.6527989), (1.3040973e-7, 0.7076288, -0.70658445), (0.27039826, 0.7076288, -0.65279883), (0.49963075, 0.7076287, -0.4996306), (0.652799, 0.7076287, -0.27039796), (0.9236822, 0.38315952, -6.175758e-8), (0.8533711, 0.38315955, 0.35347787), (0.653142, 0.38315946, 0.6531419), (0.35347787, 0.38315952, 0.8533711), (-5.789773e-8, 0.3831595, 0.9236822), (-0.35347795, 0.38315946, 0.8533711), (-0.65314204, 0.38315952, 0.65314186), (-0.8533711, 0.38315952, 0.35347787), (-0.9236823, 0.38315937, -6.947728e-8), (-0.853371, 0.38315946, -0.35347804), (-0.65314186, 0.38315955, -0.65314204), (-0.3534778, 0.38315955, -0.8533711), (1.6211364e-7, 0.3831594, -0.9236823), (0.35347793, 0.38315943, -0.8533711), (0.6531421, 0.3831595, -0.65314186), (0.85337114, 0.3831595, -0.35347778), (1, 1.3157589e-7, -6.965782e-8), (0.9238795, 1.2770603e-7, 0.3826834), (0.7071068, 1.2770602e-7, 0.7071068), (0.3826834, 1.315759e-7, 0.9238795), (-9.674699e-8, 1.315759e-7, 1), (-0.38268352, 1.2770603e-7, 0.92387944), (-0.7071068, 1.3544577e-7, 0.7071067), (-0.92387956, 1.3544579e-7, 0.3826833), (-1, 1.3931566e-7, -1.2383614e-7), (-0.92387944, 1.3544579e-7, -0.38268355), (-0.7071067, 1.3931567e-7, -0.7071069), (-0.38268322, 1.354458e-7, -0.9238796), (2.1284336e-7, 1.3544577e-7, -1), (0.3826834, 1.354458e-7, -0.92387956), (0.7071069, 1.3544579e-7, -0.70710665), (0.9238796, 1.315759e-7, -0.38268328), (0.92368215, -0.3831597, -6.175759e-8), (0.853371, -0.38315976, 0.3534778), (0.6531419, -0.38315976, 0.65314186), (0.35347784, -0.3831598, 0.85337096), (-6.175758e-8, -0.38315973, 0.9236821), (-0.3534779, -0.3831597, 0.853371), (-0.653142, -0.38315976, 0.6531418), (-0.853371, -0.38315976, 0.3534778), (-0.92368215, -0.3831596, -6.561743e-8), (-0.85337096, -0.3831597, -0.35347804), (-0.6531418, -0.3831598, -0.6531419), (-0.35347772, -0.38315976, -0.853371), (1.659735e-7, -0.3831596, -0.9236822), (0.35347787, -0.3831596, -0.853371), (0.653142, -0.38315973, -0.65314174), (0.8533711, -0.38315973, -0.35347772), (0.7065845, -0.7076287, -4.410916e-8), (0.652799, -0.70762867, 0.2703981), (0.49963075, -0.70762867, 0.4996307), (0.2703982, -0.7076287, 0.65279895), (-3.068463e-8, -0.70762867, 0.7065845), (-0.27039823, -0.70762867, 0.65279895), (-0.49963078, -0.7076286, 0.49963078), (-0.65279895, -0.7076286, 0.27039832), (-0.70658463, -0.7076286, -3.8355794e-9), (-0.652799, -0.70762855, -0.27039835), (-0.49963063, -0.7076286, -0.4996309), (-0.27039817, -0.7076286, -0.652799), (1.304097e-7, -0.7076286, -0.7065846), (0.27039832, -0.70762867, -0.65279895), (0.4996308, -0.7076286, -0.4996307), (0.6527991, -0.7076286, -0.270398), (0.3821951, -0.9240816, -2.5725845e-8), (0.3531022, -0.9240817, 0.14625959), (0.2702527, -0.9240816, 0.27025276), (0.1462597, -0.9240817, 0.35310215), (-2.2867418e-8, -0.9240817, 0.38219503), (-0.14625973, -0.9240817, 0.35310215), (-0.27025267, -0.9240816, 0.27025282), (-0.35310206, -0.9240817, 0.14625968), (-0.38219497, -0.9240817, 0), (-0.35310206, -0.9240817, -0.14625965), (-0.2702526, -0.9240816, -0.2702528), (-0.1462596, -0.9240817, -0.35310218), (1.04809e-7, -0.9240817, -0.382195), (0.1462597, -0.9240817, -0.35310215), (0.2702527, -0.9240817, -0.27025265), (0.3531022, -0.9240817, -0.14625947), (1.0453115e-8, 1, -5.2265574e-9), (1.0453115e-8, -1, -5.2265574e-9), (0.38219458, 0.92408186, -2.667865e-8), (0.3531017, 0.92408186, 0.14625937), (0.27025238, 0.92408186, 0.27025238), (0.1462595, 0.92408186, 0.35310167), (-2.0961798e-8, 0.92408186, 0.38219446), (-0.14625953, 0.92408186, 0.35310164), (-0.27025226, 0.92408186, 0.27025247), (-0.35310158, 0.9240819, 0.14625949), (-0.38219446, 0.9240819, 0), (-0.3531016, 0.9240819, -0.14625947), (-0.27025223, 0.92408186, -0.27025244), (-0.14625941, 0.92408186, -0.3531017), (1.0480899e-7, 0.92408186, -0.38219446), (0.1462595, 0.92408186, -0.35310167), (0.27025235, 0.92408186, -0.2702523), (0.35310176, 0.9240819, -0.1462593), (0.7065844, 0.7076287, -4.2191378e-8), (0.6527989, 0.70762885, 0.27039805), (0.49963066, 0.7076288, 0.4996306), (0.27039814, 0.7076289, 0.65279883), (-3.068464e-8, 0.7076288, 0.70658433), (-0.2703982, 0.70762885, 0.65279883), (-0.49963066, 0.7076288, 0.49963066), (-0.6527988, 0.7076288, 0.27039823), (-0.70658445, 0.7076288, -7.671161e-9), (-0.65279883, 0.7076288, -0.2703983), (-0.49963054, 0.7076287, -0.4996308), (-0.27039814, 0.7076287, -0.6527989), (1.3040973e-7, 0.7076288, -0.70658445), (0.27039826, 0.7076288, -0.65279883), (0.49963072, 0.7076288, -0.4996306), (0.652799, 0.7076288, -0.27039796), (0.9236822, 0.38315952, -6.175758e-8), (0.8533711, 0.38315955, 0.35347787), (0.653142, 0.38315946, 0.6531419), (0.35347787, 0.38315952, 0.8533711), (-5.789773e-8, 0.3831595, 0.9236822), (-0.35347795, 0.38315946, 0.8533711), (-0.65314204, 0.38315952, 0.65314186), (-0.8533711, 0.38315952, 0.35347787), (-0.9236823, 0.38315937, -6.947728e-8), (-0.853371, 0.38315946, -0.35347804), (-0.65314186, 0.38315955, -0.65314204), (-0.3534778, 0.38315955, -0.8533711), (1.6211364e-7, 0.3831594, -0.9236823), (0.35347793, 0.38315943, -0.8533711), (0.6531421, 0.3831595, -0.65314186), (0.85337114, 0.3831595, -0.35347778), (1, 1.315759e-7, -6.965783e-8), (0.9238795, 1.2770602e-7, 0.38268337), (0.7071068, 1.2770602e-7, 0.7071068), (0.38268343, 1.315759e-7, 0.9238795), (-9.6746994e-8, 1.315759e-7, 1), (-0.38268352, 1.2770603e-7, 0.9238795), (-0.7071068, 1.3544577e-7, 0.7071067), (-0.92387956, 1.3931567e-7, 0.38268328), (-1, 1.3544579e-7, -1.2383614e-7), (-0.92387944, 1.315759e-7, -0.38268355), (-0.7071067, 1.3931567e-7, -0.7071069), (-0.3826832, 1.3931567e-7, -0.9238796), (2.1284337e-7, 1.3544577e-7, -1), (0.38268337, 1.3544579e-7, -0.92387956), (0.7071069, 1.3544579e-7, -0.70710665), (0.92387956, 1.315759e-7, -0.3826833), (0.92368215, -0.3831597, -6.175759e-8), (0.853371, -0.38315976, 0.3534778), (0.6531419, -0.38315976, 0.65314186), (0.35347784, -0.3831598, 0.85337096), (-6.175758e-8, -0.38315973, 0.9236821), (-0.3534779, -0.3831597, 0.853371), (-0.653142, -0.38315976, 0.6531418), (-0.853371, -0.38315976, 0.3534778), (-0.92368215, -0.3831596, -6.561743e-8), (-0.85337096, -0.3831597, -0.35347804), (-0.6531418, -0.3831598, -0.6531419), (-0.35347772, -0.38315976, -0.853371), (1.659735e-7, -0.3831596, -0.9236822), (0.35347787, -0.3831596, -0.853371), (0.653142, -0.38315973, -0.65314174), (0.8533711, -0.38315973, -0.35347772), (0.7065845, -0.7076287, -4.410916e-8), (0.652799, -0.70762867, 0.2703981), (0.49963075, -0.70762867, 0.4996307), (0.2703982, -0.7076287, 0.65279895), (-3.068463e-8, -0.70762867, 0.7065845), (-0.27039823, -0.70762867, 0.65279895), (-0.49963078, -0.7076286, 0.49963078), (-0.65279895, -0.7076286, 0.27039832), (-0.70658463, -0.7076286, -3.8355794e-9), (-0.652799, -0.70762855, -0.27039835), (-0.49963063, -0.7076286, -0.4996309), (-0.27039817, -0.7076286, -0.652799), (1.304097e-7, -0.7076286, -0.7065846), (0.27039832, -0.70762867, -0.65279895), (0.4996308, -0.7076286, -0.4996307), (0.6527991, -0.7076286, -0.270398), (0.3821951, -0.9240816, -2.5725845e-8), (0.3531022, -0.9240817, 0.14625959), (0.2702527, -0.9240816, 0.27025276), (0.1462597, -0.9240817, 0.35310215), (-2.2867418e-8, -0.9240817, 0.38219503), (-0.14625973, -0.9240817, 0.35310215), (-0.27025267, -0.9240816, 0.27025282), (-0.35310206, -0.9240817, 0.14625968), (-0.38219497, -0.9240817, 0), (-0.35310206, -0.9240817, -0.14625965), (-0.2702526, -0.9240816, -0.2702528), (-0.1462596, -0.9240817, -0.35310218), (1.04809e-7, -0.9240817, -0.382195), (0.1462597, -0.9240817, -0.35310215), (0.2702527, -0.9240817, -0.27025265), (0.3531022, -0.9240817, -0.14625947), (1.9955946e-8, 1, -1.9005664e-9), (1.9955946e-8, -1, -1.9005664e-9), (0.38219458, 0.9240818, -2.667865e-8), (0.35310167, 0.92408186, 0.14625935), (0.27025235, 0.92408186, 0.27025235), (0.14625953, 0.92408186, 0.3531016), (-2.667865e-8, 0.92408186, 0.38219446), (-0.14625953, 0.92408186, 0.35310164), (-0.27025226, 0.92408186, 0.27025247), (-0.35310158, 0.9240819, 0.14625949), (-0.38219446, 0.9240819, 0), (-0.3531016, 0.9240819, -0.14625947), (-0.27025223, 0.92408186, -0.27025244), (-0.14625941, 0.92408186, -0.3531017), (9.5280896e-8, 0.92408186, -0.3821945), (0.14625955, 0.92408186, -0.35310164), (0.27025235, 0.92408186, -0.2702523), (0.35310176, 0.9240819, -0.14625928), (0.70658433, 0.7076288, -4.6026955e-8), (0.6527989, 0.70762885, 0.27039805), (0.49963066, 0.7076288, 0.4996306), (0.27039814, 0.7076289, 0.6527988), (-2.3013477e-8, 0.7076288, 0.70658433), (-0.2703982, 0.70762885, 0.65279883), (-0.49963066, 0.7076288, 0.49963066), (-0.6527988, 0.7076288, 0.27039823), (-0.70658445, 0.7076288, -7.671161e-9), (-0.65279883, 0.7076288, -0.2703983), (-0.49963054, 0.7076287, -0.4996308), (-0.27039814, 0.7076287, -0.6527989), (1.2657415e-7, 0.7076288, -0.70658445), (0.27039832, 0.7076288, -0.6527989), (0.49963072, 0.7076288, -0.49963057), (0.65279895, 0.7076288, -0.27039796), (0.9236822, 0.38315946, -6.1757575e-8), (0.8533711, 0.38315952, 0.35347787), (0.6531419, 0.38315952, 0.6531419), (0.35347784, 0.38315952, 0.8533711), (-5.017803e-8, 0.3831595, 0.9236822), (-0.35347795, 0.3831595, 0.853371), (-0.65314204, 0.3831595, 0.6531418), (-0.8533711, 0.38315952, 0.35347787), (-0.9236823, 0.3831594, -6.9477274e-8), (-0.8533711, 0.38315943, -0.35347807), (-0.6531419, 0.38315955, -0.65314204), (-0.3534778, 0.38315955, -0.8533711), (1.6211365e-7, 0.3831594, -0.9236823), (0.3534779, 0.3831594, -0.8533711), (0.6531421, 0.3831595, -0.65314186), (0.85337114, 0.3831595, -0.35347778), (1, 1.3157589e-7, -6.965782e-8), (0.9238795, 1.2770603e-7, 0.3826834), (0.7071067, 1.315759e-7, 0.7071068), (0.38268337, 1.315759e-7, 0.9238795), (-8.900723e-8, 1.2770602e-7, 1), (-0.38268352, 1.2770603e-7, 0.92387944), (-0.7071068, 1.3544577e-7, 0.7071067), (-0.92387956, 1.3544579e-7, 0.3826833), (-1, 1.3931566e-7, -1.2383614e-7), (-0.92387944, 1.3544579e-7, -0.38268355), (-0.7071067, 1.3931567e-7, -0.7071069), (-0.38268322, 1.354458e-7, -0.9238796), (2.1284336e-7, 1.3544577e-7, -1), (0.3826834, 1.354458e-7, -0.92387956), (0.7071069, 1.3544579e-7, -0.70710665), (0.9238796, 1.315759e-7, -0.38268328), (0.92368215, -0.3831597, -6.175759e-8), (0.853371, -0.38315976, 0.3534778), (0.6531419, -0.38315973, 0.6531419), (0.3534778, -0.38315976, 0.85337096), (-5.4037884e-8, -0.38315973, 0.9236821), (-0.3534779, -0.3831597, 0.853371), (-0.653142, -0.38315976, 0.6531418), (-0.853371, -0.38315976, 0.3534778), (-0.92368215, -0.3831596, -6.561743e-8), (-0.85337096, -0.3831597, -0.35347804), (-0.6531418, -0.3831598, -0.6531419), (-0.35347772, -0.38315976, -0.853371), (1.659735e-7, -0.3831596, -0.9236822), (0.35347787, -0.3831596, -0.853371), (0.653142, -0.38315973, -0.65314174), (0.8533711, -0.38315973, -0.35347772), (0.7065845, -0.7076287, -4.602695e-8), (0.65279895, -0.7076287, 0.2703981), (0.49963072, -0.70762867, 0.49963066), (0.2703982, -0.70762867, 0.65279895), (-2.6849055e-8, -0.70762867, 0.7065845), (-0.27039823, -0.7076287, 0.6527989), (-0.49963075, -0.7076286, 0.49963075), (-0.65279895, -0.7076286, 0.27039835), (-0.70658463, -0.70762855, -3.8355794e-9), (-0.65279895, -0.7076286, -0.27039835), (-0.4996306, -0.7076286, -0.49963087), (-0.27039817, -0.70762867, -0.652799), (1.2657412e-7, -0.7076286, -0.7065846), (0.27039832, -0.7076286, -0.65279895), (0.4996308, -0.70762855, -0.4996307), (0.6527991, -0.7076286, -0.27039802), (0.38219506, -0.9240816, -2.5725845e-8), (0.35310218, -0.9240817, 0.14625955), (0.27025273, -0.9240816, 0.27025276), (0.14625973, -0.9240817, 0.35310212), (-2.5725845e-8, -0.9240817, 0.38219503), (-0.14625973, -0.9240817, 0.35310215), (-0.27025267, -0.9240816, 0.27025282), (-0.35310206, -0.9240817, 0.14625968), (-0.38219497, -0.9240817, 0), (-0.35310206, -0.9240817, -0.14625965), (-0.2702526, -0.9240816, -0.2702528), (-0.1462596, -0.9240817, -0.35310218), (9.623372e-8, -0.9240817, -0.382195), (0.14625974, -0.9240817, -0.35310212), (0.2702527, -0.9240817, -0.27025267), (0.35310218, -0.9240817, -0.14625947), (9.502831e-9, 1, 1.6629955e-9), (9.502831e-9, -1, 1.6629955e-9), (0.38219482, 0.92408174, -2.2867418e-8), (0.3531019, 0.9240818, 0.14625944), (0.27025247, 0.9240818, 0.2702525), (0.14625955, 0.9240818, 0.35310185), (-2.2867416e-8, 0.9240818, 0.38219467), (-0.14625958, 0.9240818, 0.35310182), (-0.27025247, 0.9240818, 0.27025256), (-0.35310182, 0.9240818, 0.1462596), (-0.38219464, 0.9240818, 0), (-0.35310182, 0.9240818, -0.14625959), (-0.2702525, 0.92408174, -0.27025253), (-0.14625955, 0.92408174, -0.35310188), (1.352989e-7, 0.9240818, -0.38219473), (0.14625964, 0.92408174, -0.35310188), (0.27025247, 0.9240818, -0.27025247), (0.35310188, 0.9240818, -0.14625935), (0.7065845, 0.7076287, -3.8355793e-8), (0.65279895, 0.7076287, 0.27039802), (0.4996307, 0.7076287, 0.49963066), (0.27039808, 0.7076287, 0.65279895), (-2.3013477e-8, 0.7076286, 0.7065846), (-0.27039817, 0.7076287, 0.6527989), (-0.49963078, 0.7076286, 0.4996307), (-0.65279895, 0.7076286, 0.2703983), (-0.7065845, 0.7076286, -3.83558e-9), (-0.65279895, 0.7076286, -0.27039832), (-0.4996307, 0.70762867, -0.49963075), (-0.2703982, 0.70762867, -0.65279895), (1.8410782e-7, 0.7076287, -0.70658445), (0.27039832, 0.70762867, -0.65279895), (0.4996308, 0.70762867, -0.49963072), (0.652799, 0.70762867, -0.270398), (0.9236821, 0.38315976, -4.631819e-8), (0.853371, 0.3831597, 0.3534778), (0.6531419, 0.38315958, 0.6531419), (0.35347772, 0.3831596, 0.85337114), (-8.491667e-8, 0.3831596, 0.92368215), (-0.35347787, 0.38315958, 0.8533711), (-0.6531419, 0.38315967, 0.65314186), (-0.853371, 0.38315967, 0.35347778), (-0.92368215, 0.3831596, -8.8776524e-8), (-0.853371, 0.3831596, -0.35347798), (-0.6531419, 0.3831597, -0.6531419), (-0.35347778, 0.38315964, -0.8533711), (1.659735e-7, 0.38315955, -0.9236822), (0.35347793, 0.38315958, -0.853371), (0.653142, 0.38315967, -0.6531418), (0.8533711, 0.3831597, -0.3534778), (1, 3.8698795e-9, -4.6438554e-8), (0.9238795, 0, 0.38268352), (0.7071067, -3.8698795e-9, 0.7071068), (0.3826833, 0, 0.92387956), (-1.5479517e-7, 3.8698795e-9, 1), (-0.3826834, 3.8698795e-9, 0.9238795), (-0.70710677, 3.8698795e-9, 0.70710677), (-0.92387956, 0, 0.38268328), (-1, -3.8698795e-9, -1.702747e-7), (-0.92387944, 0, -0.38268352), (-0.70710677, 0, -0.70710677), (-0.38268322, 3.8698795e-9, -0.92387956), (1.7801443e-7, 0, -1), (0.38268343, 0, -0.9238795), (0.7071069, 3.8698795e-9, -0.7071067), (0.9238795, 0, -0.38268346), (0.9236821, -0.38315973, -4.6318185e-8), (0.853371, -0.3831597, 0.35347784), (0.6531419, -0.38315958, 0.6531419), (0.35347775, -0.38315967, 0.8533711), (-8.491667e-8, -0.3831596, 0.92368215), (-0.35347787, -0.3831596, 0.8533711), (-0.653142, -0.3831597, 0.65314186), (-0.85337096, -0.38315973, 0.35347784), (-0.9236822, -0.38315958, -8.8776524e-8), (-0.85337096, -0.3831596, -0.353478), (-0.65314186, -0.3831597, -0.6531419), (-0.35347778, -0.3831597, -0.8533711), (1.659735e-7, -0.38315955, -0.9236822), (0.35347793, -0.3831596, -0.853371), (0.653142, -0.38315964, -0.65314186), (0.8533711, -0.38315967, -0.3534778), (0.70658445, -0.7076287, -3.8355793e-8), (0.65279895, -0.7076287, 0.27039802), (0.4996307, -0.7076287, 0.49963066), (0.27039808, -0.7076287, 0.65279895), (-2.3013477e-8, -0.70762867, 0.7065845), (-0.27039817, -0.7076287, 0.6527989), (-0.49963072, -0.70762867, 0.4996307), (-0.65279895, -0.70762867, 0.2703983), (-0.7065845, -0.70762867, -3.83558e-9), (-0.6527989, -0.7076286, -0.27039838), (-0.4996307, -0.7076286, -0.49963078), (-0.2703982, -0.70762867, -0.65279895), (1.8219004e-7, -0.7076287, -0.70658445), (0.2703983, -0.70762867, -0.65279895), (0.49963075, -0.70762867, -0.4996307), (0.652799, -0.70762867, -0.27039796), (0.3821948, -0.92408174, -2.2867416e-8), (0.3531019, -0.9240818, 0.14625943), (0.27025247, -0.92408174, 0.27025247), (0.14625955, -0.9240818, 0.35310185), (-2.2867416e-8, -0.9240818, 0.38219467), (-0.14625956, -0.9240818, 0.35310185), (-0.27025247, -0.9240818, 0.27025256), (-0.35310182, -0.9240818, 0.1462596), (-0.38219467, -0.9240818, 0), (-0.35310185, -0.9240818, -0.14625959), (-0.2702525, -0.92408174, -0.27025253), (-0.14625953, -0.92408174, -0.35310185), (1.3529888e-7, -0.92408174, -0.38219473), (0.14625964, -0.92408174, -0.35310188), (0.2702525, -0.9240818, -0.27025247), (0.3531019, -0.9240818, -0.14625938)]
point3f[] points = [(40.5, 118.8727, 0), (40.5, 58.127346, 0), (52.12312, 116.56073, 0), (51.23837, 116.56073, 4.4479766), (48.718792, 116.56073, 8.218788), (44.94798, 116.56073, 10.738364), (40.5, 116.56073, 11.623122), (36.052025, 116.56073, 10.738364), (32.28121, 116.56073, 8.218788), (29.761637, 116.56073, 4.4479756), (28.876877, 116.56073, -0.0000010161256), (29.761637, 116.56073, -4.447977), (32.281216, 116.56073, -8.218789), (36.05203, 116.56073, -10.738365), (40.5, 116.56073, -11.623122), (44.94798, 116.56073, -10.738364), (48.718792, 116.56073, -8.218787), (51.23837, 116.56073, -4.4479747), (61.976727, 109.97676, 0), (60.341915, 109.97676, 8.218789), (55.68634, 109.97676, 15.186342), (48.718792, 109.97676, 19.841911), (40.5, 109.97676, 21.47673), (32.28121, 109.97676, 19.841911), (25.313658, 109.97676, 15.18634), (20.658089, 109.97676, 8.218787), (19.02327, 109.97676, -0.0000018775554), (20.658089, 109.97676, -8.218791), (25.31366, 109.97676, -15.186343), (32.281216, 109.97676, -19.841913), (40.500004, 109.97676, -21.47673), (48.718792, 109.97676, -19.84191), (55.686348, 109.97676, -15.186339), (60.341915, 109.97676, -8.218786), (68.5607, 100.123146, 0), (66.424706, 100.123146, 10.738365), (60.341915, 100.123146, 19.841913), (51.23837, 100.123146, 25.924707), (40.5, 100.123146, 28.0607), (29.761633, 100.123146, 25.924707), (20.658087, 100.123146, 19.84191), (14.575292, 100.123146, 10.738364), (12.4393, 100.123146, -0.0000024531444), (14.5752945, 100.123146, -10.738368), (20.65809, 100.123146, -19.841915), (29.761637, 100.123146, -25.924707), (40.500004, 100.123146, -28.0607), (51.23837, 100.123146, -25.924707), (60.341915, 100.123146, -19.84191), (66.424706, 100.123146, -10.738361), (70.87268, 88.50002, 0), (68.5607, 88.50002, 11.623123), (61.976727, 88.50002, 21.47673), (52.12312, 88.50002, 28.060703), (40.5, 88.50002, 30.372684), (28.876877, 88.50002, 28.0607), (19.023268, 88.50002, 21.476728), (12.439299, 88.50002, 11.623121), (10.127316, 88.50002, -0.0000026552646), (12.439301, 88.50002, -11.623126), (19.023272, 88.50002, -21.476734), (28.87688, 88.50002, -28.060703), (40.500004, 88.50002, -30.372684), (52.123127, 88.50002, -28.0607), (61.976734, 88.50002, -21.476728), (68.56071, 88.50002, -11.623118), (68.5607, 76.87691, 0), (66.424706, 76.87691, 10.738365), (60.341915, 76.87691, 19.841913), (51.23837, 76.87691, 25.924707), (40.5, 76.87691, 28.0607), (29.761633, 76.87691, 25.924707), (20.658087, 76.87691, 19.84191), (14.575292, 76.87691, 10.738364), (12.4393, 76.87691, -0.0000024531444), (14.5752945, 76.87691, -10.738368), (20.65809, 76.87691, -19.841915), (29.761637, 76.87691, -25.924707), (40.500004, 76.87691, -28.0607), (51.23837, 76.87691, -25.924707), (60.341915, 76.87691, -19.84191), (66.424706, 76.87691, -10.738361), (61.976727, 67.02329, 0), (60.341915, 67.02329, 8.218789), (55.68634, 67.02329, 15.186342), (48.718792, 67.02329, 19.841911), (40.5, 67.02329, 21.47673), (32.28121, 67.02329, 19.841911), (25.313658, 67.02329, 15.18634), (20.658089, 67.02329, 8.218787), (19.02327, 67.02329, -0.0000018775554), (20.658089, 67.02329, -8.218791), (25.31366, 67.02329, -15.186343), (32.281216, 67.02329, -19.841913), (40.500004, 67.02329, -21.47673), (48.718792, 67.02329, -19.84191), (55.686348, 67.02329, -15.186339), (60.341915, 67.02329, -8.218786), (52.12312, 60.43932, 0), (51.23837, 60.43932, 4.4479766), (48.718792, 60.43932, 8.218788), (44.94798, 60.43932, 10.738364), (40.5, 60.43932, 11.623122), (36.052025, 60.43932, 10.738364), (32.28121, 60.43932, 8.218788), (29.761637, 60.43932, 4.4479756), (28.876877, 60.43932, -0.0000010161256), (29.761637, 60.43932, -4.447977), (32.281216, 60.43932, -8.218789), (36.05203, 60.43932, -10.738365), (40.5, 60.43932, -11.623122), (44.94798, 60.43932, -10.738364), (48.718792, 60.43932, -8.218787), (51.23837, 60.43932, -4.4479747), (-4.5, 118.8727, 18), (-4.5, 58.127346, 18), (7.1231203, 116.56073, 18), (6.2383666, 116.56073, 22.447977), (3.7187898, 116.56073, 26.218786), (-0.052023318, 116.56073, 28.738363), (-4.5, 116.56073, 29.623121), (-8.947977, 116.56073, 28.738363), (-12.71879, 116.56073, 26.218786), (-15.238364, 116.56073, 22.447975), (-16.123123, 116.56073, 17.999998), (-15.238364, 116.56073, 13.552024), (-12.718787, 116.56073, 9.781211), (-8.947974, 116.56073, 7.261635), (-4.5, 116.56073, 6.3768783), (-0.052023318, 116.56073, 7.2616363), (3.7187898, 116.56073, 9.781213), (6.2383666, 116.56073, 13.552027), (16.976728, 109.97676, 18), (15.341913, 109.97676, 26.21879), (10.68634, 109.97676, 33.18634), (3.7187898, 109.97676, 37.841915), (-4.5, 109.97676, 39.47673), (-12.71879, 109.97676, 37.841915), (-19.686342, 109.97676, 33.18634), (-24.341911, 109.97676, 26.218786), (-25.97673, 109.97676, 17.999998), (-24.341911, 109.97676, 9.78121), (-19.68634, 109.97676, 2.8136566), (-12.718787, 109.97676, -1.8419129), (-4.499997, 109.97676, -3.4767303), (3.7187927, 109.97676, -1.8419098), (10.686347, 109.97676, 2.8136613), (15.341913, 109.97676, 9.781215), (23.5607, 100.123146, 18), (21.424707, 100.123146, 28.738367), (15.341913, 100.123146, 37.841915), (6.2383666, 100.123146, 43.92471), (-4.5, 100.123146, 46.0607), (-15.238367, 100.123146, 43.92471), (-24.341913, 100.123146, 37.84191), (-30.424707, 100.123146, 28.738363), (-32.5607, 100.123146, 17.999998), (-30.424707, 100.123146, 7.2616324), (-24.34191, 100.123146, -1.8419144), (-15.238364, 100.123146, -7.924707), (-4.499997, 100.123146, -10.060699), (6.2383666, 100.123146, -7.924707), (15.341913, 100.123146, -1.8419083), (21.424707, 100.123146, 7.2616386), (25.87268, 88.50002, 18), (23.5607, 88.50002, 29.623123), (16.976728, 88.50002, 39.47673), (7.1231203, 88.50002, 46.060703), (-4.5, 88.50002, 48.372684), (-16.123123, 88.50002, 46.0607), (-25.976734, 88.50002, 39.476727), (-32.560703, 88.50002, 29.623121), (-34.872684, 88.50002, 17.999998), (-32.5607, 88.50002, 6.3768744), (-25.976728, 88.50002, -3.4767334), (-16.123121, 88.50002, -10.060702), (-4.499997, 88.50002, -12.372684), (7.1231265, 88.50002, -10.060699), (16.976734, 88.50002, -3.4767272), (23.560705, 88.50002, 6.3768816), (23.5607, 76.87691, 18), (21.424707, 76.87691, 28.738367), (15.341913, 76.87691, 37.841915), (6.2383666, 76.87691, 43.92471), (-4.5, 76.87691, 46.0607), (-15.238367, 76.87691, 43.92471), (-24.341913, 76.87691, 37.84191), (-30.424707, 76.87691, 28.738363), (-32.5607, 76.87691, 17.999998), (-30.424707, 76.87691, 7.2616324), (-24.34191, 76.87691, -1.8419144), (-15.238364, 76.87691, -7.924707), (-4.499997, 76.87691, -10.060699), (6.2383666, 76.87691, -7.924707), (15.341913, 76.87691, -1.8419083), (21.424707, 76.87691, 7.2616386), (16.976728, 67.02329, 18), (15.341913, 67.02329, 26.21879), (10.68634, 67.02329, 33.18634), (3.7187898, 67.02329, 37.841915), (-4.5, 67.02329, 39.47673), (-12.71879, 67.02329, 37.841915), (-19.686342, 67.02329, 33.18634), (-24.341911, 67.02329, 26.218786), (-25.97673, 67.02329, 17.999998), (-24.341911, 67.02329, 9.78121), (-19.68634, 67.02329, 2.8136566), (-12.718787, 67.02329, -1.8419129), (-4.499997, 67.02329, -3.4767303), (3.7187927, 67.02329, -1.8419098), (10.686347, 67.02329, 2.8136613), (15.341913, 67.02329, 9.781215), (7.1231203, 60.43932, 18), (6.2383666, 60.43932, 22.447977), (3.7187898, 60.43932, 26.218786), (-0.052023318, 60.43932, 28.738363), (-4.5, 60.43932, 29.623121), (-8.947977, 60.43932, 28.738363), (-12.71879, 60.43932, 26.218786), (-15.238364, 60.43932, 22.447975), (-16.123123, 60.43932, 17.999998), (-15.238364, 60.43932, 13.552024), (-12.718787, 60.43932, 9.781211), (-8.947974, 60.43932, 7.261635), (-4.5, 60.43932, 6.3768783), (-0.052023318, 60.43932, 7.2616363), (3.7187898, 60.43932, 9.781213), (6.2383666, 60.43932, 13.552027), (-27, 118.8727, -12), (-27, 58.127346, -12), (-15.37688, 116.56073, -12), (-16.261633, 116.56073, -7.5520234), (-18.78121, 116.56073, -3.7812135), (-22.552023, 116.56073, -1.2616364), (-27, 116.56073, -0.3768799), (-31.447977, 116.56073, -1.2616364), (-35.21879, 116.56073, -3.7812135), (-37.73837, 116.56073, -7.552025), (-38.62312, 116.56073, -12.000002), (-37.73837, 116.56073, -16.447977), (-35.21879, 116.56073, -20.21879), (-31.447973, 116.56073, -22.738365), (-27, 116.56073, -23.623121), (-22.552023, 116.56073, -22.738363), (-18.78121, 116.56073, -20.218786), (-16.261633, 116.56073, -16.447973), (-5.523273, 109.97676, -12), (-7.1580873, 109.97676, -3.7812104), (-11.81366, 109.97676, 3.1863403), (-18.78121, 109.97676, 7.8419127), (-27, 109.97676, 9.47673), (-35.21879, 109.97676, 7.8419127), (-42.18634, 109.97676, 3.1863403), (-46.841915, 109.97676, -3.7812135), (-48.476734, 109.97676, -12.000002), (-46.841915, 109.97676, -20.21879), (-42.18634, 109.97676, -27.186344), (-35.21879, 109.97676, -31.841913), (-26.999998, 109.97676, -33.47673), (-18.781208, 109.97676, -31.84191), (-11.813654, 109.97676, -27.18634), (-7.1580873, 109.97676, -20.218786), (1.0606995, 100.123146, -12), (-1.075293, 100.123146, -1.2616333), (-7.1580873, 100.123146, 7.8419127), (-16.261633, 100.123146, 13.924707), (-27, 100.123146, 16.0607), (-37.73837, 100.123146, 13.924707), (-46.841915, 100.123146, 7.84191), (-52.92471, 100.123146, -1.2616364), (-55.0607, 100.123146, -12.000003), (-52.92471, 100.123146, -22.738367), (-46.841908, 100.123146, -31.841913), (-37.73837, 100.123146, -37.92471), (-26.999998, 100.123146, -40.0607), (-16.261633, 100.123146, -37.92471), (-7.1580873, 100.123146, -31.841908), (-1.075293, 100.123146, -22.738361), (3.3726807, 88.50002, -12), (1.0606995, 88.50002, -0.37687683), (-5.523273, 88.50002, 9.47673), (-15.37688, 88.50002, 16.060703), (-27, 88.50002, 18.372684), (-38.62312, 88.50002, 16.0607), (-48.476734, 88.50002, 9.4767275), (-55.060707, 88.50002, -0.3768799), (-57.37268, 88.50002, -12.000003), (-55.0607, 88.50002, -23.623127), (-48.476727, 88.50002, -33.476734), (-38.62312, 88.50002, -40.060703), (-26.999998, 88.50002, -42.372684), (-15.376874, 88.50002, -40.0607), (-5.523267, 88.50002, -33.476727), (1.0607055, 88.50002, -23.62312), (1.0606995, 76.87691, -12), (-1.075293, 76.87691, -1.2616333), (-7.1580873, 76.87691, 7.8419127), (-16.261633, 76.87691, 13.924707), (-27, 76.87691, 16.0607), (-37.73837, 76.87691, 13.924707), (-46.841915, 76.87691, 7.84191), (-52.92471, 76.87691, -1.2616364), (-55.0607, 76.87691, -12.000003), (-52.92471, 76.87691, -22.738367), (-46.841908, 76.87691, -31.841913), (-37.73837, 76.87691, -37.92471), (-26.999998, 76.87691, -40.0607), (-16.261633, 76.87691, -37.92471), (-7.1580873, 76.87691, -31.841908), (-1.075293, 76.87691, -22.738361), (-5.523273, 67.02329, -12), (-7.1580873, 67.02329, -3.7812104), (-11.81366, 67.02329, 3.1863403), (-18.78121, 67.02329, 7.8419127), (-27, 67.02329, 9.47673), (-35.21879, 67.02329, 7.8419127), (-42.18634, 67.02329, 3.1863403), (-46.841915, 67.02329, -3.7812135), (-48.476734, 67.02329, -12.000002), (-46.841915, 67.02329, -20.21879), (-42.18634, 67.02329, -27.186344), (-35.21879, 67.02329, -31.841913), (-26.999998, 67.02329, -33.47673), (-18.781208, 67.02329, -31.84191), (-11.813654, 67.02329, -27.18634), (-7.1580873, 67.02329, -20.218786), (-15.37688, 60.43932, -12), (-16.261633, 60.43932, -7.5520234), (-18.78121, 60.43932, -3.7812135), (-22.552023, 60.43932, -1.2616364), (-27, 60.43932, -0.3768799), (-31.447977, 60.43932, -1.2616364), (-35.21879, 60.43932, -3.7812135), (-37.73837, 60.43932, -7.552025), (-38.62312, 60.43932, -12.000002), (-37.73837, 60.43932, -16.447977), (-35.21879, 60.43932, -20.21879), (-31.447973, 60.43932, -22.738365), (-27, 60.43932, -23.623121), (-22.552023, 60.43932, -22.738363), (-18.78121, 60.43932, -20.218786), (-16.261633, 60.43932, -16.447973), (0, 129.37271, -27), (0, 68.62734, -27), (11.62312, 127.06073, -27), (10.738367, 127.06073, -22.552023), (8.21879, 127.06073, -18.781214), (4.4479766, 127.06073, -16.261637), (0, 127.06073, -15.37688), (-4.4479766, 127.06073, -16.261637), (-8.218787, 127.06073, -18.781214), (-10.738367, 127.06073, -22.552027), (-11.62312, 127.06073, -27), (-10.738367, 127.06073, -31.447977), (-8.218787, 127.06073, -35.218792), (-4.4479737, 127.06073, -37.73837), (0, 127.06073, -38.62312), (4.4479766, 127.06073, -37.738365), (8.21879, 127.06073, -35.21879), (10.738367, 127.06073, -31.447973), (21.476728, 120.47676, -27), (19.841913, 120.47676, -18.78121), (15.18634, 120.47676, -11.81366), (8.21879, 120.47676, -7.1580873), (0, 120.47676, -5.5232697), (-8.218787, 120.47676, -7.1580873), (-15.18634, 120.47676, -11.81366), (-19.841913, 120.47676, -18.781214), (-21.476734, 120.47676, -27), (-19.841913, 120.47676, -35.218792), (-15.18634, 120.47676, -42.186344), (-8.218787, 120.47676, -46.841915), (0.0000030517579, 120.47676, -48.476734), (8.218793, 120.47676, -46.841908), (15.186347, 120.47676, -42.18634), (19.841913, 120.47676, -35.21879), (28.0607, 110.623146, -27), (25.924707, 110.623146, -16.261633), (19.841913, 110.623146, -7.1580873), (10.738367, 110.623146, -1.075293), (0, 110.623146, 1.0606995), (-10.738367, 110.623146, -1.075293), (-19.841913, 110.623146, -7.15809), (-25.924707, 110.623146, -16.261637), (-28.0607, 110.623146, -27.000004), (-25.924707, 110.623146, -37.73837), (-19.841908, 110.623146, -46.841915), (-10.738367, 110.623146, -52.92471), (0.0000030517579, 110.623146, -55.0607), (10.738367, 110.623146, -52.92471), (19.841913, 110.623146, -46.841908), (25.924707, 110.623146, -37.73836), (30.37268, 99.00002, -27), (28.0607, 99.00002, -15.376877), (21.476728, 99.00002, -5.5232697), (11.62312, 99.00002, 1.0607026), (0, 99.00002, 3.3726838), (-11.62312, 99.00002, 1.0606995), (-21.476734, 99.00002, -5.523273), (-28.060705, 99.00002, -15.37688), (-30.37268, 99.00002, -27.000004), (-28.0607, 99.00002, -38.623127), (-21.476728, 99.00002, -48.476734), (-11.62312, 99.00002, -55.060707), (0.0000030517579, 99.00002, -57.37268), (11.623126, 99.00002, -55.0607), (21.476734, 99.00002, -48.476727), (28.060705, 99.00002, -38.62312), (28.0607, 87.37691, -27), (25.924707, 87.37691, -16.261633), (19.841913, 87.37691, -7.1580873), (10.738367, 87.37691, -1.075293), (0, 87.37691, 1.0606995), (-10.738367, 87.37691, -1.075293), (-19.841913, 87.37691, -7.15809), (-25.924707, 87.37691, -16.261637), (-28.0607, 87.37691, -27.000004), (-25.924707, 87.37691, -37.73837), (-19.841908, 87.37691, -46.841915), (-10.738367, 87.37691, -52.92471), (0.0000030517579, 87.37691, -55.0607), (10.738367, 87.37691, -52.92471), (19.841913, 87.37691, -46.841908), (25.924707, 87.37691, -37.73836), (21.476728, 77.52329, -27), (19.841913, 77.52329, -18.78121), (15.18634, 77.52329, -11.81366), (8.21879, 77.52329, -7.1580873), (0, 77.52329, -5.5232697), (-8.218787, 77.52329, -7.1580873), (-15.18634, 77.52329, -11.81366), (-19.841913, 77.52329, -18.781214), (-21.476734, 77.52329, -27), (-19.841913, 77.52329, -35.218792), (-15.18634, 77.52329, -42.186344), (-8.218787, 77.52329, -46.841915), (0.0000030517579, 77.52329, -48.476734), (8.218793, 77.52329, -46.841908), (15.186347, 77.52329, -42.18634), (19.841913, 77.52329, -35.21879), (11.62312, 70.93932, -27), (10.738367, 70.93932, -22.552023), (8.21879, 70.93932, -18.781214), (4.4479766, 70.93932, -16.261637), (0, 70.93932, -15.37688), (-4.4479766, 70.93932, -16.261637), (-8.218787, 70.93932, -18.781214), (-10.738367, 70.93932, -22.552027), (-11.62312, 70.93932, -27), (-10.738367, 70.93932, -31.447977), (-8.218787, 70.93932, -35.218792), (-4.4479737, 70.93932, -37.73837), (0, 70.93932, -38.62312), (4.4479766, 70.93932, -37.738365), (8.21879, 70.93932, -35.21879), (10.738367, 70.93932, -31.447973), (-15, 160.509, -33), (-15, 106.49105, -33), (-4.664116, 158.45306, -33), (-5.450885, 158.45306, -29.04463), (-7.691423, 158.45306, -25.691425), (-11.044627, 158.45306, -23.450888), (-15, 158.45306, -22.664116), (-18.955372, 158.45306, -23.450888), (-22.308573, 158.45306, -25.691425), (-24.549114, 158.45306, -29.04463), (-25.335882, 158.45306, -33), (-24.549114, 158.45306, -36.95537), (-22.308573, 158.45306, -40.308575), (-18.95537, 158.45306, -42.549114), (-15, 158.45306, -43.335884), (-11.044627, 158.45306, -42.549114), (-7.691423, 158.45306, -40.308575), (-5.450885, 158.45306, -36.955368), (4.098225, 152.59825, -33), (2.6444626, 152.59825, -25.691425), (-1.4955148, 152.59825, -19.495516), (-7.691423, 152.59825, -15.355537), (-15, 152.59825, -13.901773), (-22.308573, 152.59825, -15.355537), (-28.504484, 152.59825, -19.495516), (-32.644463, 152.59825, -25.691425), (-34.098232, 152.59825, -33), (-32.644463, 152.59825, -40.308575), (-28.504484, 152.59825, -46.504486), (-22.308573, 152.59825, -50.644463), (-14.999997, 152.59825, -52.098232), (-7.691421, 152.59825, -50.644455), (-1.4955094, 152.59825, -46.504482), (2.6444626, 152.59825, -40.308575), (9.953036, 143.83592, -33), (8.0536, 143.83592, -23.450886), (2.6444626, 143.83592, -15.355537), (-5.450885, 143.83592, -9.946401), (-15, 143.83592, -8.046966), (-24.549114, 143.83592, -9.946401), (-32.644463, 143.83592, -15.35554), (-38.0536, 143.83592, -23.450888), (-39.953033, 143.83592, -33.000004), (-38.0536, 143.83592, -42.549114), (-32.644455, 143.83592, -50.644463), (-24.549114, 143.83592, -56.0536), (-14.999997, 143.83592, -57.953033), (-5.450885, 143.83592, -56.0536), (2.6444626, 143.83592, -50.644455), (8.0536, 143.83592, -42.54911), (12.008969, 133.50003, -33), (9.953036, 133.50003, -22.664114), (4.098225, 133.50003, -13.901773), (-4.664116, 133.50003, -8.046962), (-15, 133.50003, -5.991028), (-25.335882, 133.50003, -8.046966), (-34.098232, 133.50003, -13.901776), (-39.95304, 133.50003, -22.664116), (-42.00897, 133.50003, -33.000004), (-39.953033, 133.50003, -43.335888), (-34.098225, 133.50003, -52.098232), (-25.335882, 133.50003, -57.95304), (-14.999997, 133.50003, -60.00897), (-4.66411, 133.50003, -57.953033), (4.0982304, 133.50003, -52.098225), (9.953041, 133.50003, -43.335884), (9.953036, 123.16414, -33), (8.0536, 123.16414, -23.450886), (2.6444626, 123.16414, -15.355537), (-5.450885, 123.16414, -9.946401), (-15, 123.16414, -8.046966), (-24.549114, 123.16414, -9.946401), (-32.644463, 123.16414, -15.35554), (-38.0536, 123.16414, -23.450888), (-39.953033, 123.16414, -33.000004), (-38.0536, 123.16414, -42.549114), (-32.644455, 123.16414, -50.644463), (-24.549114, 123.16414, -56.0536), (-14.999997, 123.16414, -57.953033), (-5.450885, 123.16414, -56.0536), (2.6444626, 123.16414, -50.644455), (8.0536, 123.16414, -42.54911), (4.098225, 114.401794, -33), (2.6444626, 114.401794, -25.691425), (-1.4955148, 114.401794, -19.495516), (-7.691423, 114.401794, -15.355537), (-15, 114.401794, -13.901773), (-22.308573, 114.401794, -15.355537), (-28.504484, 114.401794, -19.495516), (-32.644463, 114.401794, -25.691425), (-34.098232, 114.401794, -33), (-32.644463, 114.401794, -40.308575), (-28.504484, 114.401794, -46.504486), (-22.308573, 114.401794, -50.644463), (-14.999997, 114.401794, -52.098232), (-7.691421, 114.401794, -50.644455), (-1.4955094, 114.401794, -46.504482), (2.6444626, 114.401794, -40.308575), (-4.664116, 108.54699, -33), (-5.450885, 108.54699, -29.04463), (-7.691423, 108.54699, -25.691425), (-11.044627, 108.54699, -23.450888), (-15, 108.54699, -22.664116), (-18.955372, 108.54699, -23.450888), (-22.308573, 108.54699, -25.691425), (-24.549114, 108.54699, -29.04463), (-25.335882, 108.54699, -33), (-24.549114, 108.54699, -36.95537), (-22.308573, 108.54699, -40.308575), (-18.95537, 108.54699, -42.549114), (-15, 108.54699, -43.335884), (-11.044627, 108.54699, -42.549114), (-7.691423, 108.54699, -40.308575), (-5.450885, 108.54699, -36.955368), (-8.999976, 162.009, 12), (-8.999976, 107.99105, 12), (1.3359085, 159.95306, 12), (0.54913944, 159.95306, 15.955371), (-1.6913986, 159.95306, 19.308577), (-5.0446024, 159.95306, 21.549112), (-8.999976, 159.95306, 22.335884), (-12.955347, 159.95306, 21.549112), (-16.308548, 159.95306, 19.308577), (-18.54909, 159.95306, 15.955371), (-19.33586, 159.95306, 12), (-18.54909, 159.95306, 8.044629), (-16.308548, 159.95306, 4.691425), (-12.955345, 159.95306, 2.450885), (-8.999976, 159.95306, 1.6641175), (-5.0446024, 159.95306, 2.4508882), (-1.6913986, 159.95306, 4.6914277), (0.54913944, 159.95306, 8.044632), (10.09825, 154.09825, 12), (8.644487, 154.09825, 19.308577), (4.50451, 154.09825, 25.504484), (-1.6913986, 154.09825, 29.644464), (-8.999976, 154.09825, 31.098227), (-16.308548, 154.09825, 29.644464), (-22.50446, 154.09825, 25.504484), (-26.644438, 154.09825, 19.308577), (-28.098206, 154.09825, 12), (-26.644438, 154.09825, 4.691425), (-22.50446, 154.09825, -1.5044861), (-16.308548, 154.09825, -5.644461), (-8.999972, 154.09825, -7.09823), (-1.6913964, 154.09825, -5.644455), (4.504515, 154.09825, -1.5044831), (8.644487, 154.09825, 4.6914277), (15.953061, 145.33592, 12), (14.053626, 145.33592, 21.549116), (8.644487, 145.33592, 29.644464), (0.54913944, 145.33592, 35.0536), (-8.999976, 145.33592, 36.953033), (-18.54909, 145.33592, 35.0536), (-26.644438, 145.33592, 29.644459), (-32.053574, 145.33592, 21.549112), (-33.95301, 145.33592, 11.999997), (-32.053574, 145.33592, 2.450885), (-26.64443, 145.33592, -5.644461), (-18.54909, 145.33592, -11.053601), (-8.999972, 145.33592, -12.953033), (0.54913944, 145.33592, -11.053601), (8.644487, 145.33592, -5.644455), (14.053626, 145.33592, 2.4508913), (18.008993, 135.00003, 12), (15.953061, 135.00003, 22.335888), (10.09825, 135.00003, 31.098227), (1.3359085, 135.00003, 36.95304), (-8.999976, 135.00003, 39.008972), (-19.33586, 135.00003, 36.953033), (-28.098206, 135.00003, 31.098225), (-33.953014, 135.00003, 22.335884), (-36.008945, 135.00003, 11.999997), (-33.95301, 135.00003, 1.6641114), (-28.0982, 135.00003, -7.09823), (-19.33586, 135.00003, -12.95304), (-8.999972, 135.00003, -15.008966), (1.3359146, 135.00003, -12.953033), (10.098254, 135.00003, -7.098224), (15.953066, 135.00003, 1.6641175), (15.953061, 124.66414, 12), (14.053626, 124.66414, 21.549116), (8.644487, 124.66414, 29.644464), (0.54913944, 124.66414, 35.0536), (-8.999976, 124.66414, 36.953033), (-18.54909, 124.66414, 35.0536), (-26.644438, 124.66414, 29.644459), (-32.053574, 124.66414, 21.549112), (-33.95301, 124.66414, 11.999997), (-32.053574, 124.66414, 2.450885), (-26.64443, 124.66414, -5.644461), (-18.54909, 124.66414, -11.053601), (-8.999972, 124.66414, -12.953033), (0.54913944, 124.66414, -11.053601), (8.644487, 124.66414, -5.644455), (14.053626, 124.66414, 2.4508913), (10.09825, 115.901794, 12), (8.644487, 115.901794, 19.308577), (4.50451, 115.901794, 25.504484), (-1.6913986, 115.901794, 29.644464), (-8.999976, 115.901794, 31.098227), (-16.308548, 115.901794, 29.644464), (-22.50446, 115.901794, 25.504484), (-26.644438, 115.901794, 19.308577), (-28.098206, 115.901794, 12), (-26.644438, 115.901794, 4.691425), (-22.50446, 115.901794, -1.5044861), (-16.308548, 115.901794, -5.644461), (-8.999972, 115.901794, -7.09823), (-1.6913964, 115.901794, -5.644455), (4.504515, 115.901794, -1.5044831), (8.644487, 115.901794, 4.6914277), (1.3359085, 110.04699, 12), (0.54913944, 110.04699, 15.955371), (-1.6913986, 110.04699, 19.308577), (-5.0446024, 110.04699, 21.549112), (-8.999976, 110.04699, 22.335884), (-12.955347, 110.04699, 21.549112), (-16.308548, 110.04699, 19.308577), (-18.54909, 110.04699, 15.955371), (-19.33586, 110.04699, 12), (-18.54909, 110.04699, 8.044629), (-16.308548, 110.04699, 4.691425), (-12.955345, 110.04699, 2.450885), (-8.999976, 110.04699, 1.6641175), (-5.0446024, 110.04699, 2.4508882), (-1.6913986, 110.04699, 4.6914277), (0.54913944, 110.04699, 8.044632), (16.500025, 175.89624, 12), (16.500025, 130.1038, 12), (25.262026, 174.15337, 12), (24.595062, 174.15337, 15.353073), (22.6957, 174.15337, 18.195673), (19.8531, 174.15337, 20.095036), (16.500025, 174.15337, 20.762003), (13.146952, 174.15337, 20.095036), (10.304355, 174.15337, 18.195673), (8.404988, 174.15337, 15.353073), (7.7380233, 174.15337, 12), (8.404988, 174.15337, 8.646928), (10.304355, 174.15337, 5.8043275), (13.146953, 174.15337, 3.904963), (16.500025, 174.15337, 3.237999), (19.8531, 174.15337, 3.9049652), (22.6957, 174.15337, 5.8043303), (24.595062, 174.15337, 8.64693), (32.690094, 169.19011, 12), (31.457703, 169.19011, 18.195673), (27.948133, 169.19011, 23.44811), (22.6957, 169.19011, 26.957678), (16.500025, 169.19011, 28.190073), (10.304355, 169.19011, 26.957678), (5.0519166, 169.19011, 23.44811), (1.5423476, 169.19011, 18.195673), (0.30994913, 169.19011, 12), (1.5423476, 169.19011, 5.8043275), (5.0519166, 169.19011, 0.5518901), (10.304355, 169.19011, -2.9576764), (16.500029, 169.19011, -4.1900744), (22.6957, 169.19011, -2.957671), (27.94814, 169.19011, 0.5518927), (31.457703, 169.19011, 5.8043303), (37.653378, 161.76202, 12), (36.04317, 161.76202, 20.095037), (31.457703, 161.76202, 26.957678), (24.595062, 161.76202, 31.54315), (16.500025, 161.76202, 33.153347), (8.404988, 161.76202, 31.54315), (1.5423476, 161.76202, 26.957672), (-3.043121, 161.76202, 20.095036), (-4.6533227, 161.76202, 11.999998), (-3.043121, 161.76202, 3.904963), (1.5423528, 161.76202, -2.9576764), (8.404988, 161.76202, -7.5431476), (16.500029, 161.76202, -9.153346), (24.595062, 161.76202, -7.5431476), (31.457703, 161.76202, -2.957671), (36.04317, 161.76202, 3.904968), (39.39624, 153.00003, 12), (37.653378, 153.00003, 20.762007), (32.690094, 153.00003, 28.190073), (25.262026, 153.00003, 33.15335), (16.500025, 153.00003, 34.89622), (7.7380233, 153.00003, 33.153347), (0.30994913, 153.00003, 28.19007), (-4.653328, 153.00003, 20.762003), (-6.396194, 153.00003, 11.999998), (-4.6533227, 153.00003, 3.237994), (0.30995426, 153.00003, -4.1900744), (7.7380233, 153.00003, -9.153352), (16.500029, 153.00003, -10.896215), (25.26203, 153.00003, -9.153346), (32.6901, 153.00003, -4.1900697), (37.653378, 153.00003, 3.237999), (37.653378, 144.23802, 12), (36.04317, 144.23802, 20.095037), (31.457703, 144.23802, 26.957678), (24.595062, 144.23802, 31.54315), (16.500025, 144.23802, 33.153347), (8.404988, 144.23802, 31.54315), (1.5423476, 144.23802, 26.957672), (-3.043121, 144.23802, 20.095036), (-4.6533227, 144.23802, 11.999998), (-3.043121, 144.23802, 3.904963), (1.5423528, 144.23802, -2.9576764), (8.404988, 144.23802, -7.5431476), (16.500029, 144.23802, -9.153346), (24.595062, 144.23802, -7.5431476), (31.457703, 144.23802, -2.957671), (36.04317, 144.23802, 3.904968), (32.690094, 136.80995, 12), (31.457703, 136.80995, 18.195673), (27.948133, 136.80995, 23.44811), (22.6957, 136.80995, 26.957678), (16.500025, 136.80995, 28.190073), (10.304355, 136.80995, 26.957678), (5.0519166, 136.80995, 23.44811), (1.5423476, 136.80995, 18.195673), (0.30994913, 136.80995, 12), (1.5423476, 136.80995, 5.8043275), (5.0519166, 136.80995, 0.5518901), (10.304355, 136.80995, -2.9576764), (16.500029, 136.80995, -4.1900744), (22.6957, 136.80995, -2.957671), (27.94814, 136.80995, 0.5518927), (31.457703, 136.80995, 5.8043303), (25.262026, 131.84666, 12), (24.595062, 131.84666, 15.353073), (22.6957, 131.84666, 18.195673), (19.8531, 131.84666, 20.095036), (16.500025, 131.84666, 20.762003), (13.146952, 131.84666, 20.095036), (10.304355, 131.84666, 18.195673), (8.404988, 131.84666, 15.353073), (7.7380233, 131.84666, 12), (8.404988, 131.84666, 8.646928), (10.304355, 131.84666, 5.8043275), (13.146953, 131.84666, 3.904963), (16.500025, 131.84666, 3.237999), (19.8531, 131.84666, 3.9049652), (22.6957, 131.84666, 5.8043303), (24.595062, 131.84666, 8.64693), (-14.999976, 175.89624, 9), (-14.999976, 130.1038, 9), (-6.2379746, 174.15337, 9), (-6.9049377, 174.15337, 12.353073), (-8.804301, 174.15337, 15.195673), (-11.646901, 174.15337, 17.095036), (-14.999976, 174.15337, 17.762003), (-18.353048, 174.15337, 17.095036), (-21.195646, 174.15337, 15.195673), (-23.095013, 174.15337, 12.353073), (-23.761976, 174.15337, 9), (-23.095013, 174.15337, 5.646928), (-21.195646, 174.15337, 2.8043275), (-18.353048, 174.15337, 0.90496296), (-14.999976, 174.15337, 0.23799896), (-11.646901, 174.15337, 0.9049652), (-8.804301, 174.15337, 2.80433), (-6.9049377, 174.15337, 5.64693), (1.190094, 169.19011, 9), (-0.042297363, 169.19011, 15.195673), (-3.5518677, 169.19011, 20.44811), (-8.804301, 169.19011, 23.957678), (-14.999976, 169.19011, 25.190073), (-21.195646, 169.19011, 23.957678), (-26.448084, 169.19011, 20.44811), (-29.957655, 169.19011, 15.195673), (-31.190052, 169.19011, 9), (-29.957655, 169.19011, 2.8043275), (-26.448084, 169.19011, -2.4481099), (-21.195646, 169.19011, -5.9576764), (-14.999972, 169.19011, -7.1900744), (-8.8043, 169.19011, -5.957671), (-3.5518615, 169.19011, -2.4481075), (-0.042297363, 169.19011, 2.80433), (6.153375, 161.76202, 9), (4.5431705, 161.76202, 17.095037), (-0.042297363, 161.76202, 23.957678), (-6.9049377, 161.76202, 28.54315), (-14.999976, 161.76202, 30.153349), (-23.095013, 161.76202, 28.54315), (-29.957655, 161.76202, 23.957672), (-34.54312, 161.76202, 17.095036), (-36.153324, 161.76202, 8.999998), (-34.54312, 161.76202, 0.90496296), (-29.957647, 161.76202, -5.9576764), (-23.095013, 161.76202, -10.543147), (-14.999972, 161.76202, -12.153346), (-6.9049377, 161.76202, -10.543147), (-0.042297363, 161.76202, -5.957671), (4.5431705, 161.76202, 0.9049679), (7.89624, 153.00003, 9), (6.153375, 153.00003, 17.762007), (1.190094, 153.00003, 25.190073), (-6.2379746, 153.00003, 30.15335), (-14.999976, 153.00003, 31.896223), (-23.761976, 153.00003, 30.153349), (-31.190052, 153.00003, 25.19007), (-36.153328, 153.00003, 17.762003), (-37.896194, 153.00003, 8.999998), (-36.153324, 153.00003, 0.237994), (-31.190046, 153.00003, -7.1900744), (-23.761976, 153.00003, -12.153352), (-14.999972, 153.00003, -13.896216), (-6.23797, 153.00003, -12.153346), (1.1901001, 153.00003, -7.1900697), (6.153375, 153.00003, 0.23799896), (6.153375, 144.23802, 9), (4.5431705, 144.23802, 17.095037), (-0.042297363, 144.23802, 23.957678), (-6.9049377, 144.23802, 28.54315), (-14.999976, 144.23802, 30.153349), (-23.095013, 144.23802, 28.54315), (-29.957655, 144.23802, 23.957672), (-34.54312, 144.23802, 17.095036), (-36.153324, 144.23802, 8.999998), (-34.54312, 144.23802, 0.90496296), (-29.957647, 144.23802, -5.9576764), (-23.095013, 144.23802, -10.543147), (-14.999972, 144.23802, -12.153346), (-6.9049377, 144.23802, -10.543147), (-0.042297363, 144.23802, -5.957671), (4.5431705, 144.23802, 0.9049679), (1.190094, 136.80995, 9), (-0.042297363, 136.80995, 15.195673), (-3.5518677, 136.80995, 20.44811), (-8.804301, 136.80995, 23.957678), (-14.999976, 136.80995, 25.190073), (-21.195646, 136.80995, 23.957678), (-26.448084, 136.80995, 20.44811), (-29.957655, 136.80995, 15.195673), (-31.190052, 136.80995, 9), (-29.957655, 136.80995, 2.8043275), (-26.448084, 136.80995, -2.4481099), (-21.195646, 136.80995, -5.9576764), (-14.999972, 136.80995, -7.1900744), (-8.8043, 136.80995, -5.957671), (-3.5518615, 136.80995, -2.4481075), (-0.042297363, 136.80995, 2.80433), (-6.2379746, 131.84666, 9), (-6.9049377, 131.84666, 12.353073), (-8.804301, 131.84666, 15.195673), (-11.646901, 131.84666, 17.095036), (-14.999976, 131.84666, 17.762003), (-18.353048, 131.84666, 17.095036), (-21.195646, 131.84666, 15.195673), (-23.095013, 131.84666, 12.353073), (-23.761976, 131.84666, 9), (-23.095013, 131.84666, 5.646928), (-21.195646, 131.84666, 2.8043275), (-18.353048, 131.84666, 0.90496296), (-14.999976, 131.84666, 0.23799896), (-11.646901, 131.84666, 0.9049652), (-8.804301, 131.84666, 2.80433), (-6.9049377, 131.84666, 5.64693), (6.0000243, 186.39624, -15), (6.0000243, 140.6038, -15), (14.762026, 184.65337, -15), (14.095062, 184.65337, -11.646927), (12.195699, 184.65337, -8.804328), (9.353099, 184.65337, -6.9049654), (6.0000243, 184.65337, -6.2379975), (2.6469514, 184.65337, -6.9049654), (-0.19564514, 184.65337, -8.804328), (-2.095012, 184.65337, -11.646927), (-2.7619767, 184.65337, -15), (-2.095012, 184.65337, -18.353073), (-0.19564514, 184.65337, -21.195673), (2.6469529, 184.65337, -23.095037), (6.0000243, 184.65337, -23.762001), (9.353099, 184.65337, -23.095036), (12.195699, 184.65337, -21.19567), (14.095062, 184.65337, -18.353071), (22.190094, 179.69011, -15), (20.957703, 179.69011, -8.804328), (17.448133, 179.69011, -3.5518906), (12.195699, 179.69011, -0.04232178), (6.0000243, 179.69011, 1.1900727), (-0.19564514, 179.69011, -0.04232178), (-5.4480834, 179.69011, -3.5518906), (-8.957654, 179.69011, -8.804328), (-10.190051, 179.69011, -15), (-8.957654, 179.69011, -21.195673), (-5.4480834, 179.69011, -26.44811), (-0.19564514, 179.69011, -29.957676), (6.0000277, 179.69011, -31.190077), (12.195701, 179.69011, -29.957672), (17.44814, 179.69011, -26.448109), (20.957703, 179.69011, -21.19567), (27.153376, 172.26202, -15), (25.54317, 172.26202, -6.904962), (20.957703, 172.26202, -0.04232178), (14.095062, 172.26202, 4.543149), (6.0000243, 172.26202, 6.153348), (-2.095012, 172.26202, 4.543149), (-8.957654, 172.26202, -0.04232788), (-13.543121, 172.26202, -6.9049654), (-15.153323, 172.26202, -15.000003), (-13.543121, 172.26202, -23.095037), (-8.957648, 172.26202, -29.957676), (-2.095012, 172.26202, -34.543148), (6.0000277, 172.26202, -36.153347), (14.095062, 172.26202, -34.543148), (20.957703, 172.26202, -29.957672), (25.54317, 172.26202, -23.095032), (28.89624, 163.50003, -15), (27.153376, 163.50003, -6.2379947), (22.190094, 163.50003, 1.1900727), (14.762026, 163.50003, 6.153351), (6.0000243, 163.50003, 7.896222), (-2.7619767, 163.50003, 6.153348), (-10.190051, 163.50003, 1.1900696), (-15.153327, 163.50003, -6.2379975), (-16.896194, 163.50003, -15.000003), (-15.153323, 163.50003, -23.762007), (-10.190045, 163.50003, -31.190077), (-2.7619767, 163.50003, -36.15335), (6.0000277, 163.50003, -37.896217), (14.762031, 163.50003, -36.153347), (22.1901, 163.50003, -31.19007), (27.153376, 163.50003, -23.762001), (27.153376, 154.73802, -15), (25.54317, 154.73802, -6.904962), (20.957703, 154.73802, -0.04232178), (14.095062, 154.73802, 4.543149), (6.0000243, 154.73802, 6.153348), (-2.095012, 154.73802, 4.543149), (-8.957654, 154.73802, -0.04232788), (-13.543121, 154.73802, -6.9049654), (-15.153323, 154.73802, -15.000003), (-13.543121, 154.73802, -23.095037), (-8.957648, 154.73802, -29.957676), (-2.095012, 154.73802, -34.543148), (6.0000277, 154.73802, -36.153347), (14.095062, 154.73802, -34.543148), (20.957703, 154.73802, -29.957672), (25.54317, 154.73802, -23.095032), (22.190094, 147.30995, -15), (20.957703, 147.30995, -8.804328), (17.448133, 147.30995, -3.5518906), (12.195699, 147.30995, -0.04232178), (6.0000243, 147.30995, 1.1900727), (-0.19564514, 147.30995, -0.04232178), (-5.4480834, 147.30995, -3.5518906), (-8.957654, 147.30995, -8.804328), (-10.190051, 147.30995, -15), (-8.957654, 147.30995, -21.195673), (-5.4480834, 147.30995, -26.44811), (-0.19564514, 147.30995, -29.957676), (6.0000277, 147.30995, -31.190077), (12.195701, 147.30995, -29.957672), (17.44814, 147.30995, -26.448109), (20.957703, 147.30995, -21.19567), (14.762026, 142.34666, -15), (14.095062, 142.34666, -11.646927), (12.195699, 142.34666, -8.804328), (9.353099, 142.34666, -6.9049654), (6.0000243, 142.34666, -6.2379975), (2.6469514, 142.34666, -6.9049654), (-0.19564514, 142.34666, -8.804328), (-2.095012, 142.34666, -11.646927), (-2.7619767, 142.34666, -15), (-2.095012, 142.34666, -18.353073), (-0.19564514, 142.34666, -21.195673), (2.6469529, 142.34666, -23.095037), (6.0000243, 142.34666, -23.762001), (9.353099, 142.34666, -23.095036), (12.195699, 142.34666, -21.19567), (14.095062, 142.34666, -18.353071), (-4.4999757, 205.89624, -4.5), (-4.4999757, 160.1038, -4.5), (4.2620254, 204.15337, -4.5), (3.5950623, 204.15337, -1.1469269), (1.6956986, 204.15337, 1.6956726), (-1.146901, 204.15337, 3.5950348), (-4.4999757, 204.15337, 4.2620025), (-7.853049, 204.15337, 3.5950348), (-10.695645, 204.15337, 1.6956726), (-12.595012, 204.15337, -1.1469269), (-13.261977, 204.15337, -4.5), (-12.595012, 204.15337, -7.853073), (-10.695645, 204.15337, -10.695673), (-7.8530474, 204.15337, -12.595038), (-4.4999757, 204.15337, -13.262001), (-1.146901, 204.15337, -12.595035), (1.6956986, 204.15337, -10.69567), (3.5950623, 204.15337, -7.8530703), (11.690094, 199.19011, -4.5), (10.457703, 199.19011, 1.6956726), (6.9481325, 199.19011, 6.9481096), (1.6956986, 199.19011, 10.457679), (-4.4999757, 199.19011, 11.690073), (-10.695645, 199.19011, 10.457679), (-15.948084, 199.19011, 6.9481096), (-19.457655, 199.19011, 1.6956726), (-20.690052, 199.19011, -4.5), (-19.457655, 199.19011, -10.695673), (-15.948084, 199.19011, -15.948112), (-10.695645, 199.19011, -19.457676), (-4.499973, 199.19011, -20.690077), (1.6957, 199.19011, -19.457672), (6.9481387, 199.19011, -15.948108), (10.457703, 199.19011, -10.69567), (16.653376, 191.76202, -4.5), (15.04317, 191.76202, 3.595038), (10.457703, 191.76202, 10.457679), (3.5950623, 191.76202, 15.043149), (-4.4999757, 191.76202, 16.653349), (-12.595012, 191.76202, 15.043149), (-19.457655, 191.76202, 10.457672), (-24.043121, 191.76202, 3.5950348), (-25.653324, 191.76202, -4.5000033), (-24.043121, 191.76202, -12.595038), (-19.457647, 191.76202, -19.457676), (-12.595012, 191.76202, -24.043146), (-4.499973, 191.76202, -25.653345), (3.5950623, 191.76202, -24.043146), (10.457703, 191.76202, -19.457672), (15.04317, 191.76202, -12.595032), (18.39624, 183.00003, -4.5), (16.653376, 183.00003, 4.262006), (11.690094, 183.00003, 11.690073), (4.2620254, 183.00003, 16.65335), (-4.4999757, 183.00003, 18.396223), (-13.261977, 183.00003, 16.653349), (-20.690052, 183.00003, 11.69007), (-25.653326, 183.00003, 4.2620025), (-27.396194, 183.00003, -4.5000033), (-25.653324, 183.00003, -13.262006), (-20.690046, 183.00003, -20.690077), (-13.261977, 183.00003, -25.65335), (-4.499973, 183.00003, -27.396215), (4.26203, 183.00003, -25.653345), (11.690101, 183.00003, -20.69007), (16.653376, 183.00003, -13.262001), (16.653376, 174.23802, -4.5), (15.04317, 174.23802, 3.595038), (10.457703, 174.23802, 10.457679), (3.5950623, 174.23802, 15.043149), (-4.4999757, 174.23802, 16.653349), (-12.595012, 174.23802, 15.043149), (-19.457655, 174.23802, 10.457672), (-24.043121, 174.23802, 3.5950348), (-25.653324, 174.23802, -4.5000033), (-24.043121, 174.23802, -12.595038), (-19.457647, 174.23802, -19.457676), (-12.595012, 174.23802, -24.043146), (-4.499973, 174.23802, -25.653345), (3.5950623, 174.23802, -24.043146), (10.457703, 174.23802, -19.457672), (15.04317, 174.23802, -12.595032), (11.690094, 166.80995, -4.5), (10.457703, 166.80995, 1.6956726), (6.9481325, 166.80995, 6.9481096), (1.6956986, 166.80995, 10.457679), (-4.4999757, 166.80995, 11.690073), (-10.695645, 166.80995, 10.457679), (-15.948084, 166.80995, 6.9481096), (-19.457655, 166.80995, 1.6956726), (-20.690052, 166.80995, -4.5), (-19.457655, 166.80995, -10.695673), (-15.948084, 166.80995, -15.948112), (-10.695645, 166.80995, -19.457676), (-4.499973, 166.80995, -20.690077), (1.6957, 166.80995, -19.457672), (6.9481387, 166.80995, -15.948108), (10.457703, 166.80995, -10.69567), (4.2620254, 161.84666, -4.5), (3.5950623, 161.84666, -1.1469269), (1.6956986, 161.84666, 1.6956726), (-1.146901, 161.84666, 3.5950348), (-4.4999757, 161.84666, 4.2620025), (-7.853049, 161.84666, 3.5950348), (-10.695645, 161.84666, 1.6956726), (-12.595012, 161.84666, -1.1469269), (-13.261977, 161.84666, -4.5), (-12.595012, 161.84666, -7.853073), (-10.695645, 161.84666, -10.695673), (-7.8530474, 161.84666, -12.595038), (-4.4999757, 161.84666, -13.262001), (-1.146901, 161.84666, -12.595035), (1.6956986, 161.84666, -10.69567), (3.5950623, 161.84666, -7.8530703), (-14.999976, 183.48753, -16.473547), (-14.999976, 152.5125, -16.473547), (-9.073163, 182.30862, -16.473547), (-9.524312, 182.30862, -14.205454), (-10.809084, 182.30862, -12.282654), (-12.731882, 182.30862, -10.997886), (-14.999976, 182.30862, -10.546735), (-17.26807, 182.30862, -10.997886), (-19.190866, 182.30862, -12.282654), (-20.475637, 182.30862, -14.205454), (-20.926788, 182.30862, -16.473547), (-20.475637, 182.30862, -18.741638), (-19.190866, 182.30862, -20.664438), (-17.26807, 182.30862, -21.949213), (-14.999976, 182.30862, -22.40036), (-12.731882, 182.30862, -21.94921), (-10.809084, 182.30862, -20.664434), (-9.524312, 182.30862, -18.741638), (-4.0486526, 178.95134, -16.473547), (-4.8822694, 178.95134, -12.282654), (-7.2562213, 178.95134, -8.729792), (-10.809084, 178.95134, -6.355841), (-14.999976, 178.95134, -5.52222), (-19.190866, 178.95134, -6.355841), (-22.743732, 178.95134, -8.729792), (-25.117682, 178.95134, -12.282654), (-25.951303, 178.95134, -16.473547), (-25.117682, 178.95134, -20.664438), (-22.743732, 178.95134, -24.217304), (-19.190866, 178.95134, -26.591253), (-14.999974, 178.95134, -27.42488), (-10.809082, 178.95134, -26.591248), (-7.2562165, 178.95134, -24.217304), (-4.8822694, 178.95134, -20.664434), (-0.6913773, 173.92683, -16.473547), (-1.7805557, 173.92683, -10.997882), (-4.8822694, 173.92683, -6.355841), (-9.524312, 173.92683, -3.254126), (-14.999976, 173.92683, -2.1649506), (-20.475637, 173.92683, -3.254126), (-25.117682, 173.92683, -6.355844), (-28.219397, 173.92683, -10.997886), (-29.308573, 173.92683, -16.473547), (-28.219397, 173.92683, -21.949213), (-25.11768, 173.92683, -26.591253), (-20.475637, 173.92683, -29.692968), (-14.999974, 173.92683, -30.78214), (-9.524312, 173.92683, -29.692968), (-4.8822694, 173.92683, -26.591248), (-1.7805557, 173.92683, -21.949207), (0.4875351, 168.00003, -16.473547), (-0.6913773, 168.00003, -10.546729), (-4.0486526, 168.00003, -5.52222), (-9.073163, 168.00003, -2.1649475), (-14.999976, 168.00003, -0.9860321), (-20.926788, 168.00003, -2.1649506), (-25.951303, 168.00003, -5.522223), (-29.308577, 168.00003, -10.546735), (-30.487488, 168.00003, -16.473547), (-29.308573, 168.00003, -22.400364), (-25.9513, 168.00003, -27.42488), (-20.926788, 168.00003, -30.782148), (-14.999974, 168.00003, -31.96106), (-9.07316, 168.00003, -30.78214), (-4.0486484, 168.00003, -27.424871), (-0.6913773, 168.00003, -22.40036), (-0.6913773, 162.0732, -16.473547), (-1.7805557, 162.0732, -10.997882), (-4.8822694, 162.0732, -6.355841), (-9.524312, 162.0732, -3.254126), (-14.999976, 162.0732, -2.1649506), (-20.475637, 162.0732, -3.254126), (-25.117682, 162.0732, -6.355844), (-28.219397, 162.0732, -10.997886), (-29.308573, 162.0732, -16.473547), (-28.219397, 162.0732, -21.949213), (-25.11768, 162.0732, -26.591253), (-20.475637, 162.0732, -29.692968), (-14.999974, 162.0732, -30.78214), (-9.524312, 162.0732, -29.692968), (-4.8822694, 162.0732, -26.591248), (-1.7805557, 162.0732, -21.949207), (-4.0486526, 157.04869, -16.473547), (-4.8822694, 157.04869, -12.282654), (-7.2562213, 157.04869, -8.729792), (-10.809084, 157.04869, -6.355841), (-14.999976, 157.04869, -5.52222), (-19.190866, 157.04869, -6.355841), (-22.743732, 157.04869, -8.729792), (-25.117682, 157.04869, -12.282654), (-25.951303, 157.04869, -16.473547), (-25.117682, 157.04869, -20.664438), (-22.743732, 157.04869, -24.217304), (-19.190866, 157.04869, -26.591253), (-14.999974, 157.04869, -27.42488), (-10.809082, 157.04869, -26.591248), (-7.2562165, 157.04869, -24.217304), (-4.8822694, 157.04869, -20.664434), (-9.073163, 153.69142, -16.473547), (-9.524312, 153.69142, -14.205454), (-10.809084, 153.69142, -12.282654), (-12.731882, 153.69142, -10.997886), (-14.999976, 153.69142, -10.546735), (-17.26807, 153.69142, -10.997886), (-19.190866, 153.69142, -12.282654), (-20.475637, 153.69142, -14.205454), (-20.926788, 153.69142, -16.473547), (-20.475637, 153.69142, -18.741638), (-19.190866, 153.69142, -20.664438), (-17.26807, 153.69142, -21.949213), (-14.999976, 153.69142, -22.40036), (-12.731882, 153.69142, -21.94921), (-10.809084, 153.69142, -20.664434), (-9.524312, 153.69142, -18.741638), (-25.499975, 151.89624, -4.4999514), (-25.499975, 106.1038, -4.4999514), (-16.737974, 150.15337, -4.4999514), (-17.404938, 150.15337, -1.1468781), (-19.304302, 150.15337, 1.6957215), (-22.146902, 150.15337, 3.5950837), (-25.499975, 150.15337, 4.2620516), (-28.853048, 150.15337, 3.5950837), (-31.695646, 150.15337, 1.6957215), (-33.595013, 150.15337, -1.1468781), (-34.261974, 150.15337, -4.4999514), (-33.595013, 150.15337, -7.8530245), (-31.695646, 150.15337, -10.695624), (-28.853046, 150.15337, -12.594989), (-25.499975, 150.15337, -13.2619505), (-22.146902, 150.15337, -12.594986), (-19.304302, 150.15337, -10.695621), (-17.404938, 150.15337, -7.853021), (-9.309906, 145.19011, -4.4999514), (-10.542297, 145.19011, 1.6957215), (-14.0518675, 145.19011, 6.948157), (-19.304302, 145.19011, 10.457727), (-25.499975, 145.19011, 11.690122), (-31.695646, 145.19011, 10.457727), (-36.948086, 145.19011, 6.948157), (-40.457653, 145.19011, 1.6957215), (-41.690052, 145.19011, -4.4999514), (-40.457653, 145.19011, -10.695624), (-36.948086, 145.19011, -15.948062), (-31.695646, 145.19011, -19.457626), (-25.499973, 145.19011, -20.690027), (-19.3043, 145.19011, -19.457624), (-14.051862, 145.19011, -15.948059), (-10.542297, 145.19011, -10.695621), (-4.346625, 137.76202, -4.4999514), (-5.95683, 137.76202, 3.5950868), (-10.542297, 137.76202, 10.457727), (-17.404938, 137.76202, 15.043198), (-25.499975, 137.76202, 16.653397), (-33.595013, 137.76202, 15.043198), (-40.457653, 137.76202, 10.457721), (-45.04312, 137.76202, 3.5950837), (-46.653324, 137.76202, -4.499954), (-45.04312, 137.76202, -12.594989), (-40.45765, 137.76202, -19.457626), (-33.595013, 137.76202, -24.043097), (-25.499973, 137.76202, -25.653296), (-17.404938, 137.76202, -24.043097), (-10.542297, 137.76202, -19.457624), (-5.95683, 137.76202, -12.594983), (-2.6037598, 129.00003, -4.4999514), (-4.346625, 129.00003, 4.2620544), (-9.309906, 129.00003, 11.690122), (-16.737974, 129.00003, 16.6534), (-25.499975, 129.00003, 18.39627), (-34.261974, 129.00003, 16.653397), (-41.690052, 129.00003, 11.690119), (-46.653328, 129.00003, 4.2620516), (-48.396194, 129.00003, -4.499954), (-46.653324, 129.00003, -13.261957), (-41.690044, 129.00003, -20.690027), (-34.261974, 129.00003, -25.653303), (-25.499973, 129.00003, -27.396168), (-16.73797, 129.00003, -25.653296), (-9.3099, 129.00003, -20.690022), (-4.346625, 129.00003, -13.2619505), (-4.346625, 120.238014, -4.4999514), (-5.95683, 120.238014, 3.5950868), (-10.542297, 120.238014, 10.457727), (-17.404938, 120.238014, 15.043198), (-25.499975, 120.238014, 16.653397), (-33.595013, 120.238014, 15.043198), (-40.457653, 120.238014, 10.457721), (-45.04312, 120.238014, 3.5950837), (-46.653324, 120.238014, -4.499954), (-45.04312, 120.238014, -12.594989), (-40.45765, 120.238014, -19.457626), (-33.595013, 120.238014, -24.043097), (-25.499973, 120.238014, -25.653296), (-17.404938, 120.238014, -24.043097), (-10.542297, 120.238014, -19.457624), (-5.95683, 120.238014, -12.594983), (-9.309906, 112.80995, -4.4999514), (-10.542297, 112.80995, 1.6957215), (-14.0518675, 112.80995, 6.948157), (-19.304302, 112.80995, 10.457727), (-25.499975, 112.80995, 11.690122), (-31.695646, 112.80995, 10.457727), (-36.948086, 112.80995, 6.948157), (-40.457653, 112.80995, 1.6957215), (-41.690052, 112.80995, -4.4999514), (-40.457653, 112.80995, -10.695624), (-36.948086, 112.80995, -15.948062), (-31.695646, 112.80995, -19.457626), (-25.499973, 112.80995, -20.690027), (-19.3043, 112.80995, -19.457624), (-14.051862, 112.80995, -15.948059), (-10.542297, 112.80995, -10.695621), (-16.737974, 107.84667, -4.4999514), (-17.404938, 107.84667, -1.1468781), (-19.304302, 107.84667, 1.6957215), (-22.146902, 107.84667, 3.5950837), (-25.499975, 107.84667, 4.2620516), (-28.853048, 107.84667, 3.5950837), (-31.695646, 107.84667, 1.6957215), (-33.595013, 107.84667, -1.1468781), (-34.261974, 107.84667, -4.4999514), (-33.595013, 107.84667, -7.8530245), (-31.695646, 107.84667, -10.695624), (-28.853046, 107.84667, -12.594989), (-25.499975, 107.84667, -13.2619505), (-22.146902, 107.84667, -12.594986), (-19.304302, 107.84667, -10.695621), (-17.404938, 107.84667, -7.853021), (9.546618, 166.92314, -22.499952), (9.546618, 121.13069, -22.499952), (18.30862, 165.18027, -22.499952), (17.641657, 165.18027, -19.14688), (15.742293, 165.18027, -16.30428), (12.8996935, 165.18027, -14.404917), (9.546618, 165.18027, -13.737948), (6.193546, 165.18027, -14.404917), (3.350949, 165.18027, -16.30428), (1.4515809, 165.18027, -19.14688), (0.78461915, 165.18027, -22.499952), (1.4515809, 165.18027, -25.853025), (3.350949, 165.18027, -28.695623), (6.1935487, 165.18027, -30.59499), (9.546618, 165.18027, -31.261951), (12.8996935, 165.18027, -30.594986), (15.742293, 165.18027, -28.695621), (17.641657, 165.18027, -25.853022), (25.736689, 160.217, -22.499952), (24.504297, 160.217, -16.30428), (20.994726, 160.217, -11.051844), (15.742293, 160.217, -7.542273), (9.546618, 160.217, -6.309879), (3.350949, 160.217, -7.542273), (-1.9014893, 160.217, -11.051844), (-5.41106, 160.217, -16.30428), (-6.643457, 160.217, -22.499952), (-5.41106, 160.217, -28.695623), (-1.9014893, 160.217, -33.948063), (3.350949, 160.217, -37.457626), (9.546622, 160.217, -38.69003), (15.742294, 160.217, -37.457623), (20.994734, 160.217, -33.94806), (24.504297, 160.217, -28.695621), (30.69997, 152.78893, -22.499952), (29.089766, 152.78893, -14.404914), (24.504297, 152.78893, -7.542273), (17.641657, 152.78893, -2.9568024), (9.546618, 152.78893, -1.3466034), (1.4515809, 152.78893, -2.9568024), (-5.41106, 152.78893, -7.5422792), (-9.996528, 152.78893, -14.404917), (-11.6067295, 152.78893, -22.499954), (-9.996528, 152.78893, -30.59499), (-5.4110537, 152.78893, -37.457626), (1.4515809, 152.78893, -42.0431), (9.546622, 152.78893, -43.653297), (17.641657, 152.78893, -42.0431), (24.504297, 152.78893, -37.457623), (29.089766, 152.78893, -30.594984), (32.442837, 144.02692, -22.499952), (30.69997, 144.02692, -13.737946), (25.736689, 144.02692, -6.309879), (18.30862, 144.02692, -1.3466004), (9.546618, 144.02692, 0.39627075), (0.78461915, 144.02692, -1.3466034), (-6.643457, 144.02692, -6.3098817), (-11.606732, 144.02692, -13.737948), (-13.349601, 144.02692, -22.499954), (-11.6067295, 144.02692, -31.261957), (-6.643451, 144.02692, -38.69003), (0.78461915, 144.02692, -43.6533), (9.546622, 144.02692, -45.396168), (18.308624, 144.02692, -43.653297), (25.736694, 144.02692, -38.69002), (30.69997, 144.02692, -31.261951), (30.69997, 135.26491, -22.499952), (29.089766, 135.26491, -14.404914), (24.504297, 135.26491, -7.542273), (17.641657, 135.26491, -2.9568024), (9.546618, 135.26491, -1.3466034), (1.4515809, 135.26491, -2.9568024), (-5.41106, 135.26491, -7.5422792), (-9.996528, 135.26491, -14.404917), (-11.6067295, 135.26491, -22.499954), (-9.996528, 135.26491, -30.59499), (-5.4110537, 135.26491, -37.457626), (1.4515809, 135.26491, -42.0431), (9.546622, 135.26491, -43.653297), (17.641657, 135.26491, -42.0431), (24.504297, 135.26491, -37.457623), (29.089766, 135.26491, -30.594984), (25.736689, 127.836845, -22.499952), (24.504297, 127.836845, -16.30428), (20.994726, 127.836845, -11.051844), (15.742293, 127.836845, -7.542273), (9.546618, 127.836845, -6.309879), (3.350949, 127.836845, -7.542273), (-1.9014893, 127.836845, -11.051844), (-5.41106, 127.836845, -16.30428), (-6.643457, 127.836845, -22.499952), (-5.41106, 127.836845, -28.695623), (-1.9014893, 127.836845, -33.948063), (3.350949, 127.836845, -37.457626), (9.546622, 127.836845, -38.69003), (15.742294, 127.836845, -37.457623), (20.994734, 127.836845, -33.94806), (24.504297, 127.836845, -28.695621), (18.30862, 122.87356, -22.499952), (17.641657, 122.87356, -19.14688), (15.742293, 122.87356, -16.30428), (12.8996935, 122.87356, -14.404917), (9.546618, 122.87356, -13.737948), (6.193546, 122.87356, -14.404917), (3.350949, 122.87356, -16.30428), (1.4515809, 122.87356, -19.14688), (0.78461915, 122.87356, -22.499952), (1.4515809, 122.87356, -25.853025), (3.350949, 122.87356, -28.695623), (6.1935487, 122.87356, -30.59499), (9.546618, 122.87356, -31.261951), (12.8996935, 122.87356, -30.594986), (15.742293, 122.87356, -28.695621), (17.641657, 122.87356, -25.853022), (27.254736, 114.537025, -17.999952), (27.254736, 68.74458, -17.999952), (36.016735, 112.79415, -17.999952), (35.349773, 112.79415, -14.646878), (33.45041, 112.79415, -11.804278), (30.607813, 112.79415, -9.904917), (27.254736, 112.79415, -9.237948), (23.901663, 112.79415, -9.904917), (21.059067, 112.79415, -11.804278), (19.159698, 112.79415, -14.646878), (18.492737, 112.79415, -17.999952), (19.159698, 112.79415, -21.353025), (21.059067, 112.79415, -24.195623), (23.901667, 112.79415, -26.09499), (27.254736, 112.79415, -26.761951), (30.607813, 112.79415, -26.094986), (33.45041, 112.79415, -24.195621), (35.349773, 112.79415, -21.353022), (43.444805, 107.83089, -17.999952), (42.212414, 107.83089, -11.804278), (38.702847, 107.83089, -6.551843), (33.45041, 107.83089, -3.042273), (27.254736, 107.83089, -1.8098786), (21.059067, 107.83089, -3.042273), (15.806628, 107.83089, -6.551843), (12.297058, 107.83089, -11.804278), (11.064661, 107.83089, -17.999952), (12.297058, 107.83089, -24.195623), (15.806628, 107.83089, -29.448063), (21.059067, 107.83089, -32.957626), (27.25474, 107.83089, -34.19003), (33.450413, 107.83089, -32.957623), (38.70285, 107.83089, -29.44806), (42.212414, 107.83089, -24.195621), (48.40809, 100.40281, -17.999952), (46.797882, 100.40281, -9.904914), (42.212414, 100.40281, -3.042273), (35.349773, 100.40281, 1.5431976), (27.254736, 100.40281, 3.1533966), (19.159698, 100.40281, 1.5431976), (12.297058, 100.40281, -3.042279), (7.711591, 100.40281, -9.904917), (6.1013885, 100.40281, -17.999954), (7.711591, 100.40281, -26.09499), (12.297065, 100.40281, -32.957626), (19.159698, 100.40281, -37.5431), (27.25474, 100.40281, -39.153297), (35.349773, 100.40281, -37.5431), (42.212414, 100.40281, -32.957623), (46.797882, 100.40281, -26.094984), (50.15095, 91.64081, -17.999952), (48.40809, 91.64081, -9.237946), (43.444805, 91.64081, -1.8098786), (36.016735, 91.64081, 3.1533997), (27.254736, 91.64081, 4.8962708), (18.492737, 91.64081, 3.1533966), (11.064661, 91.64081, -1.8098816), (6.1013856, 91.64081, -9.237948), (4.3585176, 91.64081, -17.999954), (6.1013885, 91.64081, -26.761957), (11.064667, 91.64081, -34.19003), (18.492737, 91.64081, -39.1533), (27.25474, 91.64081, -40.896168), (36.016743, 91.64081, -39.153297), (43.444813, 91.64081, -34.19002), (48.40809, 91.64081, -26.761951), (48.40809, 82.8788, -17.999952), (46.797882, 82.8788, -9.904914), (42.212414, 82.8788, -3.042273), (35.349773, 82.8788, 1.5431976), (27.254736, 82.8788, 3.1533966), (19.159698, 82.8788, 1.5431976), (12.297058, 82.8788, -3.042279), (7.711591, 82.8788, -9.904917), (6.1013885, 82.8788, -17.999954), (7.711591, 82.8788, -26.09499), (12.297065, 82.8788, -32.957626), (19.159698, 82.8788, -37.5431), (27.25474, 82.8788, -39.153297), (35.349773, 82.8788, -37.5431), (42.212414, 82.8788, -32.957623), (46.797882, 82.8788, -26.094984), (43.444805, 75.45074, -17.999952), (42.212414, 75.45074, -11.804278), (38.702847, 75.45074, -6.551843), (33.45041, 75.45074, -3.042273), (27.254736, 75.45074, -1.8098786), (21.059067, 75.45074, -3.042273), (15.806628, 75.45074, -6.551843), (12.297058, 75.45074, -11.804278), (11.064661, 75.45074, -17.999952), (12.297058, 75.45074, -24.195623), (15.806628, 75.45074, -29.448063), (21.059067, 75.45074, -32.957626), (27.25474, 75.45074, -34.19003), (33.450413, 75.45074, -32.957623), (38.70285, 75.45074, -29.44806), (42.212414, 75.45074, -24.195621), (36.016735, 70.48745, -17.999952), (35.349773, 70.48745, -14.646878), (33.45041, 70.48745, -11.804278), (30.607813, 70.48745, -9.904917), (27.254736, 70.48745, -9.237948), (23.901663, 70.48745, -9.904917), (21.059067, 70.48745, -11.804278), (19.159698, 70.48745, -14.646878), (18.492737, 70.48745, -17.999952), (19.159698, 70.48745, -21.353025), (21.059067, 70.48745, -24.195623), (23.901667, 70.48745, -26.09499), (27.254736, 70.48745, -26.761951), (30.607813, 70.48745, -26.094986), (33.45041, 70.48745, -24.195621), (35.349773, 70.48745, -21.353022), (22.5, 150.009, 0), (22.5, 95.99105, 0), (32.835884, 147.95306, 0), (32.049114, 147.95306, 3.9553711), (29.808577, 147.95306, 7.3085756), (26.455374, 147.95306, 9.549112), (22.5, 147.95306, 10.335884), (18.54463, 147.95306, 9.549112), (15.191428, 147.95306, 7.3085756), (12.950887, 147.95306, 3.9553711), (12.164118, 147.95306, 0), (12.950887, 147.95306, -3.9553711), (15.191428, 147.95306, -7.3085756), (18.54463, 147.95306, -9.549115), (22.5, 147.95306, -10.335883), (26.455374, 147.95306, -9.549112), (29.808577, 147.95306, -7.3085723), (32.049114, 147.95306, -3.955368), (41.598225, 142.09825, 0), (40.144466, 142.09825, 7.3085756), (36.004486, 142.09825, 13.504485), (29.808577, 142.09825, 17.644464), (22.5, 142.09825, 19.098227), (15.191428, 142.09825, 17.644464), (8.995517, 142.09825, 13.504485), (4.855539, 142.09825, 7.3085756), (3.40177, 142.09825, 0), (4.855539, 142.09825, -7.3085756), (8.995517, 142.09825, -13.504486), (15.191428, 142.09825, -17.64446), (22.500004, 142.09825, -19.09823), (29.808578, 142.09825, -17.644455), (36.004494, 142.09825, -13.504483), (40.144466, 142.09825, -7.3085723), (47.45304, 133.33592, 0), (45.5536, 133.33592, 9.549115), (40.144466, 133.33592, 17.644464), (32.049114, 133.33592, 23.053602), (22.5, 133.33592, 24.953033), (12.950887, 133.33592, 23.053602), (4.855539, 133.33592, 17.644459), (-0.55359805, 133.33592, 9.549112), (-2.4530334, 133.33592, -0.0000030517579), (-0.55359805, 133.33592, -9.549115), (4.855545, 133.33592, -17.64446), (12.950887, 133.33592, -23.053602), (22.500004, 133.33592, -24.953033), (32.049114, 133.33592, -23.053602), (40.144466, 133.33592, -17.644455), (45.5536, 133.33592, -9.549109), (49.508972, 123.00002, 0), (47.45304, 123.00002, 10.335887), (41.598225, 123.00002, 19.098227), (32.835884, 123.00002, 24.95304), (22.5, 123.00002, 27.008972), (12.164118, 123.00002, 24.953033), (3.40177, 123.00002, 19.098225), (-2.4530396, 123.00002, 10.335884), (-4.5089693, 123.00002, -0.0000030517579), (-2.4530334, 123.00002, -10.335889), (3.401776, 123.00002, -19.09823), (12.164118, 123.00002, -24.95304), (22.500004, 123.00002, -27.008966), (32.835888, 123.00002, -24.953033), (41.598232, 123.00002, -19.098225), (47.45304, 123.00002, -10.335883), (47.45304, 112.66414, 0), (45.5536, 112.66414, 9.549115), (40.144466, 112.66414, 17.644464), (32.049114, 112.66414, 23.053602), (22.5, 112.66414, 24.953033), (12.950887, 112.66414, 23.053602), (4.855539, 112.66414, 17.644459), (-0.55359805, 112.66414, 9.549112), (-2.4530334, 112.66414, -0.0000030517579), (-0.55359805, 112.66414, -9.549115), (4.855545, 112.66414, -17.64446), (12.950887, 112.66414, -23.053602), (22.500004, 112.66414, -24.953033), (32.049114, 112.66414, -23.053602), (40.144466, 112.66414, -17.644455), (45.5536, 112.66414, -9.549109), (41.598225, 103.901794, 0), (40.144466, 103.901794, 7.3085756), (36.004486, 103.901794, 13.504485), (29.808577, 103.901794, 17.644464), (22.5, 103.901794, 19.098227), (15.191428, 103.901794, 17.644464), (8.995517, 103.901794, 13.504485), (4.855539, 103.901794, 7.3085756), (3.40177, 103.901794, 0), (4.855539, 103.901794, -7.3085756), (8.995517, 103.901794, -13.504486), (15.191428, 103.901794, -17.64446), (22.500004, 103.901794, -19.09823), (29.808578, 103.901794, -17.644455), (36.004494, 103.901794, -13.504483), (40.144466, 103.901794, -7.3085723), (32.835884, 98.04699, 0), (32.049114, 98.04699, 3.9553711), (29.808577, 98.04699, 7.3085756), (26.455374, 98.04699, 9.549112), (22.5, 98.04699, 10.335884), (18.54463, 98.04699, 9.549112), (15.191428, 98.04699, 7.3085756), (12.950887, 98.04699, 3.9553711), (12.164118, 98.04699, 0), (12.950887, 98.04699, -3.9553711), (15.191428, 98.04699, -7.3085756), (18.54463, 98.04699, -9.549115), (22.5, 98.04699, -10.335883), (26.455374, 98.04699, -9.549112), (29.808577, 98.04699, -7.3085723), (32.049114, 98.04699, -3.955368)]
texCoord2f[] primvars:st = [(0.9375, 0.875), (1, 0.875), (0.96875, 1), (0.875, 0.875), (0.9375, 0.875), (0.90625, 1), (0.8125, 0.875), (0.875, 0.875), (0.84375, 1), (0.75, 0.875), (0.8125, 0.875), (0.78125, 1), (0.6875, 0.875), (0.75, 0.875), (0.71875, 1), (0.625, 0.875), (0.6875, 0.875), (0.65625, 1), (0.5625, 0.875), (0.625, 0.875), (0.59375, 1), (0.5, 0.875), (0.5625, 0.875), (0.53125, 1), (0.4375, 0.875), (0.5, 0.875), (0.46875, 1), (0.375, 0.875), (0.4375, 0.875), (0.40625, 1), (0.3125, 0.875), (0.375, 0.875), (0.34375, 1), (0.25, 0.875), (0.3125, 0.875), (0.28125, 1), (0.1875, 0.875), (0.25, 0.875), (0.21875, 1), (0.125, 0.875), (0.1875, 0.875), (0.15625, 1), (0.0625, 0.875), (0.125, 0.875), (0.09375, 1), (0, 0.875), (0.0625, 0.875), (0.03125, 1), (0.9375, 0.875), (0.9375, 0.75), (1, 0.75), (1, 0.875), (0.875, 0.875), (0.875, 0.75), (0.9375, 0.75), (0.9375, 0.875), (0.8125, 0.875), (0.8125, 0.75), (0.875, 0.75), (0.875, 0.875), (0.75, 0.875), (0.75, 0.75), (0.8125, 0.75), (0.8125, 0.875), (0.6875, 0.875), (0.6875, 0.75), (0.75, 0.75), (0.75, 0.875), (0.625, 0.875), (0.625, 0.75), (0.6875, 0.75), (0.6875, 0.875), (0.5625, 0.875), (0.5625, 0.75), (0.625, 0.75), (0.625, 0.875), (0.5, 0.875), (0.5, 0.75), (0.5625, 0.75), (0.5625, 0.875), (0.4375, 0.875), (0.4375, 0.75), (0.5, 0.75), (0.5, 0.875), (0.375, 0.875), (0.375, 0.75), (0.4375, 0.75), (0.4375, 0.875), (0.3125, 0.875), (0.3125, 0.75), (0.375, 0.75), (0.375, 0.875), (0.25, 0.875), (0.25, 0.75), (0.3125, 0.75), (0.3125, 0.875), (0.1875, 0.875), (0.1875, 0.75), (0.25, 0.75), (0.25, 0.875), (0.125, 0.875), (0.125, 0.75), (0.1875, 0.75), (0.1875, 0.875), (0.0625, 0.875), (0.0625, 0.75), (0.125, 0.75), (0.125, 0.875), (0, 0.875), (0, 0.75), (0.0625, 0.75), (0.0625, 0.875), (0.9375, 0.75), (0.9375, 0.625), (1, 0.625), (1, 0.75), (0.875, 0.75), (0.875, 0.625), (0.9375, 0.625), (0.9375, 0.75), (0.8125, 0.75), (0.8125, 0.625), (0.875, 0.625), (0.875, 0.75), (0.75, 0.75), (0.75, 0.625), (0.8125, 0.625), (0.8125, 0.75), (0.6875, 0.75), (0.6875, 0.625), (0.75, 0.625), (0.75, 0.75), (0.625, 0.75), (0.625, 0.625), (0.6875, 0.625), (0.6875, 0.75), (0.5625, 0.75), (0.5625, 0.625), (0.625, 0.625), (0.625, 0.75), (0.5, 0.75), (0.5, 0.625), (0.5625, 0.625), (0.5625, 0.75), (0.4375, 0.75), (0.4375, 0.625), (0.5, 0.625), (0.5, 0.75), (0.375, 0.75), (0.375, 0.625), (0.4375, 0.625), (0.4375, 0.75), (0.3125, 0.75), (0.3125, 0.625), (0.375, 0.625), (0.375, 0.75), (0.25, 0.75), (0.25, 0.625), (0.3125, 0.625), (0.3125, 0.75), (0.1875, 0.75), (0.1875, 0.625), (0.25, 0.625), (0.25, 0.75), (0.125, 0.75), (0.125, 0.625), (0.1875, 0.625), (0.1875, 0.75), (0.0625, 0.75), (0.0625, 0.625), (0.125, 0.625), (0.125, 0.75), (0, 0.75), (0, 0.625), (0.0625, 0.625), (0.0625, 0.75), (0.9375, 0.625), (0.9375, 0.5), (1, 0.5), (1, 0.625), (0.875, 0.625), (0.875, 0.5), (0.9375, 0.5), (0.9375, 0.625), (0.8125, 0.625), (0.8125, 0.5), (0.875, 0.5), (0.875, 0.625), (0.75, 0.625), (0.75, 0.5), (0.8125, 0.5), (0.8125, 0.625), (0.6875, 0.625), (0.6875, 0.5), (0.75, 0.5), (0.75, 0.625), (0.625, 0.625), (0.625, 0.5), (0.6875, 0.5), (0.6875, 0.625), (0.5625, 0.625), (0.5625, 0.5), (0.625, 0.5), (0.625, 0.625), (0.5, 0.625), (0.5, 0.5), (0.5625, 0.5), (0.5625, 0.625), (0.4375, 0.625), (0.4375, 0.5), (0.5, 0.5), (0.5, 0.625), (0.375, 0.625), (0.375, 0.5), (0.4375, 0.5), (0.4375, 0.625), (0.3125, 0.625), (0.3125, 0.5), (0.375, 0.5), (0.375, 0.625), (0.25, 0.625), (0.25, 0.5), (0.3125, 0.5), (0.3125, 0.625), (0.1875, 0.625), (0.1875, 0.5), (0.25, 0.5), (0.25, 0.625), (0.125, 0.625), (0.125, 0.5), (0.1875, 0.5), (0.1875, 0.625), (0.0625, 0.625), (0.0625, 0.5), (0.125, 0.5), (0.125, 0.625), (0, 0.625), (0, 0.5), (0.0625, 0.5), (0.0625, 0.625), (0.9375, 0.5), (0.9375, 0.375), (1, 0.375), (1, 0.5), (0.875, 0.5), (0.875, 0.375), (0.9375, 0.375), (0.9375, 0.5), (0.8125, 0.5), (0.8125, 0.375), (0.875, 0.375), (0.875, 0.5), (0.75, 0.5), (0.75, 0.375), (0.8125, 0.375), (0.8125, 0.5), (0.6875, 0.5), (0.6875, 0.375), (0.75, 0.375), (0.75, 0.5), (0.625, 0.5), (0.625, 0.375), (0.6875, 0.375), (0.6875, 0.5), (0.5625, 0.5), (0.5625, 0.375), (0.625, 0.375), (0.625, 0.5), (0.5, 0.5), (0.5, 0.375), (0.5625, 0.375), (0.5625, 0.5), (0.4375, 0.5), (0.4375, 0.375), (0.5, 0.375), (0.5, 0.5), (0.375, 0.5), (0.375, 0.375), (0.4375, 0.375), (0.4375, 0.5), (0.3125, 0.5), (0.3125, 0.375), (0.375, 0.375), (0.375, 0.5), (0.25, 0.5), (0.25, 0.375), (0.3125, 0.375), (0.3125, 0.5), (0.1875, 0.5), (0.1875, 0.375), (0.25, 0.375), (0.25, 0.5), (0.125, 0.5), (0.125, 0.375), (0.1875, 0.375), (0.1875, 0.5), (0.0625, 0.5), (0.0625, 0.375), (0.125, 0.375), (0.125, 0.5), (0, 0.5), (0, 0.375), (0.0625, 0.375), (0.0625, 0.5), (0.9375, 0.375), (0.9375, 0.25), (1, 0.25), (1, 0.375), (0.875, 0.375), (0.875, 0.25), (0.9375, 0.25), (0.9375, 0.375), (0.8125, 0.375), (0.8125, 0.25), (0.875, 0.25), (0.875, 0.375), (0.75, 0.375), (0.75, 0.25), (0.8125, 0.25), (0.8125, 0.375), (0.6875, 0.375), (0.6875, 0.25), (0.75, 0.25), (0.75, 0.375), (0.625, 0.375), (0.625, 0.25), (0.6875, 0.25), (0.6875, 0.375), (0.5625, 0.375), (0.5625, 0.25), (0.625, 0.25), (0.625, 0.375), (0.5, 0.375), (0.5, 0.25), (0.5625, 0.25), (0.5625, 0.375), (0.4375, 0.375), (0.4375, 0.25), (0.5, 0.25), (0.5, 0.375), (0.375, 0.375), (0.375, 0.25), (0.4375, 0.25), (0.4375, 0.375), (0.3125, 0.375), (0.3125, 0.25), (0.375, 0.25), (0.375, 0.375), (0.25, 0.375), (0.25, 0.25), (0.3125, 0.25), (0.3125, 0.375), (0.1875, 0.375), (0.1875, 0.25), (0.25, 0.25), (0.25, 0.375), (0.125, 0.375), (0.125, 0.25), (0.1875, 0.25), (0.1875, 0.375), (0.0625, 0.375), (0.0625, 0.25), (0.125, 0.25), (0.125, 0.375), (0, 0.375), (0, 0.25), (0.0625, 0.25), (0.0625, 0.375), (0.9375, 0.25), (0.9375, 0.125), (1, 0.125), (1, 0.25), (0.875, 0.25), (0.875, 0.125), (0.9375, 0.125), (0.9375, 0.25), (0.8125, 0.25), (0.8125, 0.125), (0.875, 0.125), (0.875, 0.25), (0.75, 0.25), (0.75, 0.125), (0.8125, 0.125), (0.8125, 0.25), (0.6875, 0.25), (0.6875, 0.125), (0.75, 0.125), (0.75, 0.25), (0.625, 0.25), (0.625, 0.125), (0.6875, 0.125), (0.6875, 0.25), (0.5625, 0.25), (0.5625, 0.125), (0.625, 0.125), (0.625, 0.25), (0.5, 0.25), (0.5, 0.125), (0.5625, 0.125), (0.5625, 0.25), (0.4375, 0.25), (0.4375, 0.125), (0.5, 0.125), (0.5, 0.25), (0.375, 0.25), (0.375, 0.125), (0.4375, 0.125), (0.4375, 0.25), (0.3125, 0.25), (0.3125, 0.125), (0.375, 0.125), (0.375, 0.25), (0.25, 0.25), (0.25, 0.125), (0.3125, 0.125), (0.3125, 0.25), (0.1875, 0.25), (0.1875, 0.125), (0.25, 0.125), (0.25, 0.25), (0.125, 0.25), (0.125, 0.125), (0.1875, 0.125), (0.1875, 0.25), (0.0625, 0.25), (0.0625, 0.125), (0.125, 0.125), (0.125, 0.25), (0, 0.25), (0, 0.125), (0.0625, 0.125), (0.0625, 0.25), (0.9375, 0.125), (0.96875, 0), (1, 0.125), (0.875, 0.125), (0.90625, 0), (0.9375, 0.125), (0.8125, 0.125), (0.84375, 0), (0.875, 0.125), (0.75, 0.125), (0.78125, 0), (0.8125, 0.125), (0.6875, 0.125), (0.71875, 0), (0.75, 0.125), (0.625, 0.125), (0.65625, 0), (0.6875, 0.125), (0.5625, 0.125), (0.59375, 0), (0.625, 0.125), (0.5, 0.125), (0.53125, 0), (0.5625, 0.125), (0.4375, 0.125), (0.46875, 0), (0.5, 0.125), (0.375, 0.125), (0.40625, 0), (0.4375, 0.125), (0.3125, 0.125), (0.34375, 0), (0.375, 0.125), (0.25, 0.125), (0.28125, 0), (0.3125, 0.125), (0.1875, 0.125), (0.21875, 0), (0.25, 0.125), (0.125, 0.125), (0.15625, 0), (0.1875, 0.125), (0.0625, 0.125), (0.09375, 0), (0.125, 0.125), (0, 0.125), (0.03125, 0), (0.0625, 0.125), (0.9375, 0.875), (1, 0.875), (0.96875, 1), (0.875, 0.875), (0.9375, 0.875), (0.90625, 1), (0.8125, 0.875), (0.875, 0.875), (0.84375, 1), (0.75, 0.875), (0.8125, 0.875), (0.78125, 1), (0.6875, 0.875), (0.75, 0.875), (0.71875, 1), (0.625, 0.875), (0.6875, 0.875), (0.65625, 1), (0.5625, 0.875), (0.625, 0.875), (0.59375, 1), (0.5, 0.875), (0.5625, 0.875), (0.53125, 1), (0.4375, 0.875), (0.5, 0.875), (0.46875, 1), (0.375, 0.875), (0.4375, 0.875), (0.40625, 1), (0.3125, 0.875), (0.375, 0.875), (0.34375, 1), (0.25, 0.875), (0.3125, 0.875), (0.28125, 1), (0.1875, 0.875), (0.25, 0.875), (0.21875, 1), (0.125, 0.875), (0.1875, 0.875), (0.15625, 1), (0.0625, 0.875), (0.125, 0.875), (0.09375, 1), (0, 0.875), (0.0625, 0.875), (0.03125, 1), (0.9375, 0.875), (0.9375, 0.75), (1, 0.75), (1, 0.875), (0.875, 0.875), (0.875, 0.75), (0.9375, 0.75), (0.9375, 0.875), (0.8125, 0.875), (0.8125, 0.75), (0.875, 0.75), (0.875, 0.875), (0.75, 0.875), (0.75, 0.75), (0.8125, 0.75), (0.8125, 0.875), (0.6875, 0.875), (0.6875, 0.75), (0.75, 0.75), (0.75, 0.875), (0.625, 0.875), (0.625, 0.75), (0.6875, 0.75), (0.6875, 0.875), (0.5625, 0.875), (0.5625, 0.75), (0.625, 0.75), (0.625, 0.875), (0.5, 0.875), (0.5, 0.75), (0.5625, 0.75), (0.5625, 0.875), (0.4375, 0.875), (0.4375, 0.75), (0.5, 0.75), (0.5, 0.875), (0.375, 0.875), (0.375, 0.75), (0.4375, 0.75), (0.4375, 0.875), (0.3125, 0.875), (0.3125, 0.75), (0.375, 0.75), (0.375, 0.875), (0.25, 0.875), (0.25, 0.75), (0.3125, 0.75), (0.3125, 0.875), (0.1875, 0.875), (0.1875, 0.75), (0.25, 0.75), (0.25, 0.875), (0.125, 0.875), (0.125, 0.75), (0.1875, 0.75), (0.1875, 0.875), (0.0625, 0.875), (0.0625, 0.75), (0.125, 0.75), (0.125, 0.875), (0, 0.875), (0, 0.75), (0.0625, 0.75), (0.0625, 0.875), (0.9375, 0.75), (0.9375, 0.625), (1, 0.625), (1, 0.75), (0.875, 0.75), (0.875, 0.625), (0.9375, 0.625), (0.9375, 0.75), (0.8125, 0.75), (0.8125, 0.625), (0.875, 0.625), (0.875, 0.75), (0.75, 0.75), (0.75, 0.625), (0.8125, 0.625), (0.8125, 0.75), (0.6875, 0.75), (0.6875, 0.625), (0.75, 0.625), (0.75, 0.75), (0.625, 0.75), (0.625, 0.625), (0.6875, 0.625), (0.6875, 0.75), (0.5625, 0.75), (0.5625, 0.625), (0.625, 0.625), (0.625, 0.75), (0.5, 0.75), (0.5, 0.625), (0.5625, 0.625), (0.5625, 0.75), (0.4375, 0.75), (0.4375, 0.625), (0.5, 0.625), (0.5, 0.75), (0.375, 0.75), (0.375, 0.625), (0.4375, 0.625), (0.4375, 0.75), (0.3125, 0.75), (0.3125, 0.625), (0.375, 0.625), (0.375, 0.75), (0.25, 0.75), (0.25, 0.625), (0.3125, 0.625), (0.3125, 0.75), (0.1875, 0.75), (0.1875, 0.625), (0.25, 0.625), (0.25, 0.75), (0.125, 0.75), (0.125, 0.625), (0.1875, 0.625), (0.1875, 0.75), (0.0625, 0.75), (0.0625, 0.625), (0.125, 0.625), (0.125, 0.75), (0, 0.75), (0, 0.625), (0.0625, 0.625), (0.0625, 0.75), (0.9375, 0.625), (0.9375, 0.5), (1, 0.5), (1, 0.625), (0.875, 0.625), (0.875, 0.5), (0.9375, 0.5), (0.9375, 0.625), (0.8125, 0.625), (0.8125, 0.5), (0.875, 0.5), (0.875, 0.625), (0.75, 0.625), (0.75, 0.5), (0.8125, 0.5), (0.8125, 0.625), (0.6875, 0.625), (0.6875, 0.5), (0.75, 0.5), (0.75, 0.625), (0.625, 0.625), (0.625, 0.5), (0.6875, 0.5), (0.6875, 0.625), (0.5625, 0.625), (0.5625, 0.5), (0.625, 0.5), (0.625, 0.625), (0.5, 0.625), (0.5, 0.5), (0.5625, 0.5), (0.5625, 0.625), (0.4375, 0.625), (0.4375, 0.5), (0.5, 0.5), (0.5, 0.625), (0.375, 0.625), (0.375, 0.5), (0.4375, 0.5), (0.4375, 0.625), (0.3125, 0.625), (0.3125, 0.5), (0.375, 0.5), (0.375, 0.625), (0.25, 0.625), (0.25, 0.5), (0.3125, 0.5), (0.3125, 0.625), (0.1875, 0.625), (0.1875, 0.5), (0.25, 0.5), (0.25, 0.625), (0.125, 0.625), (0.125, 0.5), (0.1875, 0.5), (0.1875, 0.625), (0.0625, 0.625), (0.0625, 0.5), (0.125, 0.5), (0.125, 0.625), (0, 0.625), (0, 0.5), (0.0625, 0.5), (0.0625, 0.625), (0.9375, 0.5), (0.9375, 0.375), (1, 0.375), (1, 0.5), (0.875, 0.5), (0.875, 0.375), (0.9375, 0.375), (0.9375, 0.5), (0.8125, 0.5), (0.8125, 0.375), (0.875, 0.375), (0.875, 0.5), (0.75, 0.5), (0.75, 0.375), (0.8125, 0.375), (0.8125, 0.5), (0.6875, 0.5), (0.6875, 0.375), (0.75, 0.375), (0.75, 0.5), (0.625, 0.5), (0.625, 0.375), (0.6875, 0.375), (0.6875, 0.5), (0.5625, 0.5), (0.5625, 0.375), (0.625, 0.375), (0.625, 0.5), (0.5, 0.5), (0.5, 0.375), (0.5625, 0.375), (0.5625, 0.5), (0.4375, 0.5), (0.4375, 0.375), (0.5, 0.375), (0.5, 0.5), (0.375, 0.5), (0.375, 0.375), (0.4375, 0.375), (0.4375, 0.5), (0.3125, 0.5), (0.3125, 0.375), (0.375, 0.375), (0.375, 0.5), (0.25, 0.5), (0.25, 0.375), (0.3125, 0.375), (0.3125, 0.5), (0.1875, 0.5), (0.1875, 0.375), (0.25, 0.375), (0.25, 0.5), (0.125, 0.5), (0.125, 0.375), (0.1875, 0.375), (0.1875, 0.5), (0.0625, 0.5), (0.0625, 0.375), (0.125, 0.375), (0.125, 0.5), (0, 0.5), (0, 0.375), (0.0625, 0.375), (0.0625, 0.5), (0.9375, 0.375), (0.9375, 0.25), (1, 0.25), (1, 0.375), (0.875, 0.375), (0.875, 0.25), (0.9375, 0.25), (0.9375, 0.375), (0.8125, 0.375), (0.8125, 0.25), (0.875, 0.25), (0.875, 0.375), (0.75, 0.375), (0.75, 0.25), (0.8125, 0.25), (0.8125, 0.375), (0.6875, 0.375), (0.6875, 0.25), (0.75, 0.25), (0.75, 0.375), (0.625, 0.375), (0.625, 0.25), (0.6875, 0.25), (0.6875, 0.375), (0.5625, 0.375), (0.5625, 0.25), (0.625, 0.25), (0.625, 0.375), (0.5, 0.375), (0.5, 0.25), (0.5625, 0.25), (0.5625, 0.375), (0.4375, 0.375), (0.4375, 0.25), (0.5, 0.25), (0.5, 0.375), (0.375, 0.375), (0.375, 0.25), (0.4375, 0.25), (0.4375, 0.375), (0.3125, 0.375), (0.3125, 0.25), (0.375, 0.25), (0.375, 0.375), (0.25, 0.375), (0.25, 0.25), (0.3125, 0.25), (0.3125, 0.375), (0.1875, 0.375), (0.1875, 0.25), (0.25, 0.25), (0.25, 0.375), (0.125, 0.375), (0.125, 0.25), (0.1875, 0.25), (0.1875, 0.375), (0.0625, 0.375), (0.0625, 0.25), (0.125, 0.25), (0.125, 0.375), (0, 0.375), (0, 0.25), (0.0625, 0.25), (0.0625, 0.375), (0.9375, 0.25), (0.9375, 0.125), (1, 0.125), (1, 0.25), (0.875, 0.25), (0.875, 0.125), (0.9375, 0.125), (0.9375, 0.25), (0.8125, 0.25), (0.8125, 0.125), (0.875, 0.125), (0.875, 0.25), (0.75, 0.25), (0.75, 0.125), (0.8125, 0.125), (0.8125, 0.25), (0.6875, 0.25), (0.6875, 0.125), (0.75, 0.125), (0.75, 0.25), (0.625, 0.25), (0.625, 0.125), (0.6875, 0.125), (0.6875, 0.25), (0.5625, 0.25), (0.5625, 0.125), (0.625, 0.125), (0.625, 0.25), (0.5, 0.25), (0.5, 0.125), (0.5625, 0.125), (0.5625, 0.25), (0.4375, 0.25), (0.4375, 0.125), (0.5, 0.125), (0.5, 0.25), (0.375, 0.25), (0.375, 0.125), (0.4375, 0.125), (0.4375, 0.25), (0.3125, 0.25), (0.3125, 0.125), (0.375, 0.125), (0.375, 0.25), (0.25, 0.25), (0.25, 0.125), (0.3125, 0.125), (0.3125, 0.25), (0.1875, 0.25), (0.1875, 0.125), (0.25, 0.125), (0.25, 0.25), (0.125, 0.25), (0.125, 0.125), (0.1875, 0.125), (0.1875, 0.25), (0.0625, 0.25), (0.0625, 0.125), (0.125, 0.125), (0.125, 0.25), (0, 0.25), (0, 0.125), (0.0625, 0.125), (0.0625, 0.25), (0.9375, 0.125), (0.96875, 0), (1, 0.125), (0.875, 0.125), (0.90625, 0), (0.9375, 0.125), (0.8125, 0.125), (0.84375, 0), (0.875, 0.125), (0.75, 0.125), (0.78125, 0), (0.8125, 0.125), (0.6875, 0.125), (0.71875, 0), (0.75, 0.125), (0.625, 0.125), (0.65625, 0), (0.6875, 0.125), (0.5625, 0.125), (0.59375, 0), (0.625, 0.125), (0.5, 0.125), (0.53125, 0), (0.5625, 0.125), (0.4375, 0.125), (0.46875, 0), (0.5, 0.125), (0.375, 0.125), (0.40625, 0), (0.4375, 0.125), (0.3125, 0.125), (0.34375, 0), (0.375, 0.125), (0.25, 0.125), (0.28125, 0), (0.3125, 0.125), (0.1875, 0.125), (0.21875, 0), (0.25, 0.125), (0.125, 0.125), (0.15625, 0), (0.1875, 0.125), (0.0625, 0.125), (0.09375, 0), (0.125, 0.125), (0, 0.125), (0.03125, 0), (0.0625, 0.125), (0.9375, 0.875), (1, 0.875), (0.96875, 1), (0.875, 0.875), (0.9375, 0.875), (0.90625, 1), (0.8125, 0.875), (0.875, 0.875), (0.84375, 1), (0.75, 0.875), (0.8125, 0.875), (0.78125, 1), (0.6875, 0.875), (0.75, 0.875), (0.71875, 1), (0.625, 0.875), (0.6875, 0.875), (0.65625, 1), (0.5625, 0.875), (0.625, 0.875), (0.59375, 1), (0.5, 0.875), (0.5625, 0.875), (0.53125, 1), (0.4375, 0.875), (0.5, 0.875), (0.46875, 1), (0.375, 0.875), (0.4375, 0.875), (0.40625, 1), (0.3125, 0.875), (0.375, 0.875), (0.34375, 1), (0.25, 0.875), (0.3125, 0.875), (0.28125, 1), (0.1875, 0.875), (0.25, 0.875), (0.21875, 1), (0.125, 0.875), (0.1875, 0.875), (0.15625, 1), (0.0625, 0.875), (0.125, 0.875), (0.09375, 1), (0, 0.875), (0.0625, 0.875), (0.03125, 1), (0.9375, 0.875), (0.9375, 0.75), (1, 0.75), (1, 0.875), (0.875, 0.875), (0.875, 0.75), (0.9375, 0.75), (0.9375, 0.875), (0.8125, 0.875), (0.8125, 0.75), (0.875, 0.75), (0.875, 0.875), (0.75, 0.875), (0.75, 0.75), (0.8125, 0.75), (0.8125, 0.875), (0.6875, 0.875), (0.6875, 0.75), (0.75, 0.75), (0.75, 0.875), (0.625, 0.875), (0.625, 0.75), (0.6875, 0.75), (0.6875, 0.875), (0.5625, 0.875), (0.5625, 0.75), (0.625, 0.75), (0.625, 0.875), (0.5, 0.875), (0.5, 0.75), (0.5625, 0.75), (0.5625, 0.875), (0.4375, 0.875), (0.4375, 0.75), (0.5, 0.75), (0.5, 0.875), (0.375, 0.875), (0.375, 0.75), (0.4375, 0.75), (0.4375, 0.875), (0.3125, 0.875), (0.3125, 0.75), (0.375, 0.75), (0.375, 0.875), (0.25, 0.875), (0.25, 0.75), (0.3125, 0.75), (0.3125, 0.875), (0.1875, 0.875), (0.1875, 0.75), (0.25, 0.75), (0.25, 0.875), (0.125, 0.875), (0.125, 0.75), (0.1875, 0.75), (0.1875, 0.875), (0.0625, 0.875), (0.0625, 0.75), (0.125, 0.75), (0.125, 0.875), (0, 0.875), (0, 0.75), (0.0625, 0.75), (0.0625, 0.875), (0.9375, 0.75), (0.9375, 0.625), (1, 0.625), (1, 0.75), (0.875, 0.75), (0.875, 0.625), (0.9375, 0.625), (0.9375, 0.75), (0.8125, 0.75), (0.8125, 0.625), (0.875, 0.625), (0.875, 0.75), (0.75, 0.75), (0.75, 0.625), (0.8125, 0.625), (0.8125, 0.75), (0.6875, 0.75), (0.6875, 0.625), (0.75, 0.625), (0.75, 0.75), (0.625, 0.75), (0.625, 0.625), (0.6875, 0.625), (0.6875, 0.75), (0.5625, 0.75), (0.5625, 0.625), (0.625, 0.625), (0.625, 0.75), (0.5, 0.75), (0.5, 0.625), (0.5625, 0.625), (0.5625, 0.75), (0.4375, 0.75), (0.4375, 0.625), (0.5, 0.625), (0.5, 0.75), (0.375, 0.75), (0.375, 0.625), (0.4375, 0.625), (0.4375, 0.75), (0.3125, 0.75), (0.3125, 0.625), (0.375, 0.625), (0.375, 0.75), (0.25, 0.75), (0.25, 0.625), (0.3125, 0.625), (0.3125, 0.75), (0.1875, 0.75), (0.1875, 0.625), (0.25, 0.625), (0.25, 0.75), (0.125, 0.75), (0.125, 0.625), (0.1875, 0.625), (0.1875, 0.75), (0.0625, 0.75), (0.0625, 0.625), (0.125, 0.625), (0.125, 0.75), (0, 0.75), (0, 0.625), (0.0625, 0.625), (0.0625, 0.75), (0.9375, 0.625), (0.9375, 0.5), (1, 0.5), (1, 0.625), (0.875, 0.625), (0.875, 0.5), (0.9375, 0.5), (0.9375, 0.625), (0.8125, 0.625), (0.8125, 0.5), (0.875, 0.5), (0.875, 0.625), (0.75, 0.625), (0.75, 0.5), (0.8125, 0.5), (0.8125, 0.625), (0.6875, 0.625), (0.6875, 0.5), (0.75, 0.5), (0.75, 0.625), (0.625, 0.625), (0.625, 0.5), (0.6875, 0.5), (0.6875, 0.625), (0.5625, 0.625), (0.5625, 0.5), (0.625, 0.5), (0.625, 0.625), (0.5, 0.625), (0.5, 0.5), (0.5625, 0.5), (0.5625, 0.625), (0.4375, 0.625), (0.4375, 0.5), (0.5, 0.5), (0.5, 0.625), (0.375, 0.625), (0.375, 0.5), (0.4375, 0.5), (0.4375, 0.625), (0.3125, 0.625), (0.3125, 0.5), (0.375, 0.5), (0.375, 0.625), (0.25, 0.625), (0.25, 0.5), (0.3125, 0.5), (0.3125, 0.625), (0.1875, 0.625), (0.1875, 0.5), (0.25, 0.5), (0.25, 0.625), (0.125, 0.625), (0.125, 0.5), (0.1875, 0.5), (0.1875, 0.625), (0.0625, 0.625), (0.0625, 0.5), (0.125, 0.5), (0.125, 0.625), (0, 0.625), (0, 0.5), (0.0625, 0.5), (0.0625, 0.625), (0.9375, 0.5), (0.9375, 0.375), (1, 0.375), (1, 0.5), (0.875, 0.5), (0.875, 0.375), (0.9375, 0.375), (0.9375, 0.5), (0.8125, 0.5), (0.8125, 0.375), (0.875, 0.375), (0.875, 0.5), (0.75, 0.5), (0.75, 0.375), (0.8125, 0.375), (0.8125, 0.5), (0.6875, 0.5), (0.6875, 0.375), (0.75, 0.375), (0.75, 0.5), (0.625, 0.5), (0.625, 0.375), (0.6875, 0.375), (0.6875, 0.5), (0.5625, 0.5), (0.5625, 0.375), (0.625, 0.375), (0.625, 0.5), (0.5, 0.5), (0.5, 0.375), (0.5625, 0.375), (0.5625, 0.5), (0.4375, 0.5), (0.4375, 0.375), (0.5, 0.375), (0.5, 0.5), (0.375, 0.5), (0.375, 0.375), (0.4375, 0.375), (0.4375, 0.5), (0.3125, 0.5), (0.3125, 0.375), (0.375, 0.375), (0.375, 0.5), (0.25, 0.5), (0.25, 0.375), (0.3125, 0.375), (0.3125, 0.5), (0.1875, 0.5), (0.1875, 0.375), (0.25, 0.375), (0.25, 0.5), (0.125, 0.5), (0.125, 0.375), (0.1875, 0.375), (0.1875, 0.5), (0.0625, 0.5), (0.0625, 0.375), (0.125, 0.375), (0.125, 0.5), (0, 0.5), (0, 0.375), (0.0625, 0.375), (0.0625, 0.5), (0.9375, 0.375), (0.9375, 0.25), (1, 0.25), (1, 0.375), (0.875, 0.375), (0.875, 0.25), (0.9375, 0.25), (0.9375, 0.375), (0.8125, 0.375), (0.8125, 0.25), (0.875, 0.25), (0.875, 0.375), (0.75, 0.375), (0.75, 0.25), (0.8125, 0.25), (0.8125, 0.375), (0.6875, 0.375), (0.6875, 0.25), (0.75, 0.25), (0.75, 0.375), (0.625, 0.375), (0.625, 0.25), (0.6875, 0.25), (0.6875, 0.375), (0.5625, 0.375), (0.5625, 0.25), (0.625, 0.25), (0.625, 0.375), (0.5, 0.375), (0.5, 0.25), (0.5625, 0.25), (0.5625, 0.375), (0.4375, 0.375), (0.4375, 0.25), (0.5, 0.25), (0.5, 0.375), (0.375, 0.375), (0.375, 0.25), (0.4375, 0.25), (0.4375, 0.375), (0.3125, 0.375), (0.3125, 0.25), (0.375, 0.25), (0.375, 0.375), (0.25, 0.375), (0.25, 0.25), (0.3125, 0.25), (0.3125, 0.375), (0.1875, 0.375), (0.1875, 0.25), (0.25, 0.25), (0.25, 0.375), (0.125, 0.375), (0.125, 0.25), (0.1875, 0.25), (0.1875, 0.375), (0.0625, 0.375), (0.0625, 0.25), (0.125, 0.25), (0.125, 0.375), (0, 0.375), (0, 0.25), (0.0625, 0.25), (0.0625, 0.375), (0.9375, 0.25), (0.9375, 0.125), (1, 0.125), (1, 0.25), (0.875, 0.25), (0.875, 0.125), (0.9375, 0.125), (0.9375, 0.25), (0.8125, 0.25), (0.8125, 0.125), (0.875, 0.125), (0.875, 0.25), (0.75, 0.25), (0.75, 0.125), (0.8125, 0.125), (0.8125, 0.25), (0.6875, 0.25), (0.6875, 0.125), (0.75, 0.125), (0.75, 0.25), (0.625, 0.25), (0.625, 0.125), (0.6875, 0.125), (0.6875, 0.25), (0.5625, 0.25), (0.5625, 0.125), (0.625, 0.125), (0.625, 0.25), (0.5, 0.25), (0.5, 0.125), (0.5625, 0.125), (0.5625, 0.25), (0.4375, 0.25), (0.4375, 0.125), (0.5, 0.125), (0.5, 0.25), (0.375, 0.25), (0.375, 0.125), (0.4375, 0.125), (0.4375, 0.25), (0.3125, 0.25), (0.3125, 0.125), (0.375, 0.125), (0.375, 0.25), (0.25, 0.25), (0.25, 0.125), (0.3125, 0.125), (0.3125, 0.25), (0.1875, 0.25), (0.1875, 0.125), (0.25, 0.125), (0.25, 0.25), (0.125, 0.25), (0.125, 0.125), (0.1875, 0.125), (0.1875, 0.25), (0.0625, 0.25), (0.0625, 0.125), (0.125, 0.125), (0.125, 0.25), (0, 0.25), (0, 0.125), (0.0625, 0.125), (0.0625, 0.25), (0.9375, 0.125), (0.96875, 0), (1, 0.125), (0.875, 0.125), (0.90625, 0), (0.9375, 0.125), (0.8125, 0.125), (0.84375, 0), (0.875, 0.125), (0.75, 0.125), (0.78125, 0), (0.8125, 0.125), (0.6875, 0.125), (0.71875, 0), (0.75, 0.125), (0.625, 0.125), (0.65625, 0), (0.6875, 0.125), (0.5625, 0.125), (0.59375, 0), (0.625, 0.125), (0.5, 0.125), (0.53125, 0), (0.5625, 0.125), (0.4375, 0.125), (0.46875, 0), (0.5, 0.125), (0.375, 0.125), (0.40625, 0), (0.4375, 0.125), (0.3125, 0.125), (0.34375, 0), (0.375, 0.125), (0.25, 0.125), (0.28125, 0), (0.3125, 0.125), (0.1875, 0.125), (0.21875, 0), (0.25, 0.125), (0.125, 0.125), (0.15625, 0), (0.1875, 0.125), (0.0625, 0.125), (0.09375, 0), (0.125, 0.125), (0, 0.125), (0.03125, 0), (0.0625, 0.125), (0.9375, 0.875), (1, 0.875), (0.96875, 1), (0.875, 0.875), (0.9375, 0.875), (0.90625, 1), (0.8125, 0.875), (0.875, 0.875), (0.84375, 1), (0.75, 0.875), (0.8125, 0.875), (0.78125, 1), (0.6875, 0.875), (0.75, 0.875), (0.71875, 1), (0.625, 0.875), (0.6875, 0.875), (0.65625, 1), (0.5625, 0.875), (0.625, 0.875), (0.59375, 1), (0.5, 0.875), (0.5625, 0.875), (0.53125, 1), (0.4375, 0.875), (0.5, 0.875), (0.46875, 1), (0.375, 0.875), (0.4375, 0.875), (0.40625, 1), (0.3125, 0.875), (0.375, 0.875), (0.34375, 1), (0.25, 0.875), (0.3125, 0.875), (0.28125, 1), (0.1875, 0.875), (0.25, 0.875), (0.21875, 1), (0.125, 0.875), (0.1875, 0.875), (0.15625, 1), (0.0625, 0.875), (0.125, 0.875), (0.09375, 1), (0, 0.875), (0.0625, 0.875), (0.03125, 1), (0.9375, 0.875), (0.9375, 0.75), (1, 0.75), (1, 0.875), (0.875, 0.875), (0.875, 0.75), (0.9375, 0.75), (0.9375, 0.875), (0.8125, 0.875), (0.8125, 0.75), (0.875, 0.75), (0.875, 0.875), (0.75, 0.875), (0.75, 0.75), (0.8125, 0.75), (0.8125, 0.875), (0.6875, 0.875), (0.6875, 0.75), (0.75, 0.75), (0.75, 0.875), (0.625, 0.875), (0.625, 0.75), (0.6875, 0.75), (0.6875, 0.875), (0.5625, 0.875), (0.5625, 0.75), (0.625, 0.75), (0.625, 0.875), (0.5, 0.875), (0.5, 0.75), (0.5625, 0.75), (0.5625, 0.875), (0.4375, 0.875), (0.4375, 0.75), (0.5, 0.75), (0.5, 0.875), (0.375, 0.875), (0.375, 0.75), (0.4375, 0.75), (0.4375, 0.875), (0.3125, 0.875), (0.3125, 0.75), (0.375, 0.75), (0.375, 0.875), (0.25, 0.875), (0.25, 0.75), (0.3125, 0.75), (0.3125, 0.875), (0.1875, 0.875), (0.1875, 0.75), (0.25, 0.75), (0.25, 0.875), (0.125, 0.875), (0.125, 0.75), (0.1875, 0.75), (0.1875, 0.875), (0.0625, 0.875), (0.0625, 0.75), (0.125, 0.75), (0.125, 0.875), (0, 0.875), (0, 0.75), (0.0625, 0.75), (0.0625, 0.875), (0.9375, 0.75), (0.9375, 0.625), (1, 0.625), (1, 0.75), (0.875, 0.75), (0.875, 0.625), (0.9375, 0.625), (0.9375, 0.75), (0.8125, 0.75), (0.8125, 0.625), (0.875, 0.625), (0.875, 0.75), (0.75, 0.75), (0.75, 0.625), (0.8125, 0.625), (0.8125, 0.75), (0.6875, 0.75), (0.6875, 0.625), (0.75, 0.625), (0.75, 0.75), (0.625, 0.75), (0.625, 0.625), (0.6875, 0.625), (0.6875, 0.75), (0.5625, 0.75), (0.5625, 0.625), (0.625, 0.625), (0.625, 0.75), (0.5, 0.75), (0.5, 0.625), (0.5625, 0.625), (0.5625, 0.75), (0.4375, 0.75), (0.4375, 0.625), (0.5, 0.625), (0.5, 0.75), (0.375, 0.75), (0.375, 0.625), (0.4375, 0.625), (0.4375, 0.75), (0.3125, 0.75), (0.3125, 0.625), (0.375, 0.625), (0.375, 0.75), (0.25, 0.75), (0.25, 0.625), (0.3125, 0.625), (0.3125, 0.75), (0.1875, 0.75), (0.1875, 0.625), (0.25, 0.625), (0.25, 0.75), (0.125, 0.75), (0.125, 0.625), (0.1875, 0.625), (0.1875, 0.75), (0.0625, 0.75), (0.0625, 0.625), (0.125, 0.625), (0.125, 0.75), (0, 0.75), (0, 0.625), (0.0625, 0.625), (0.0625, 0.75), (0.9375, 0.625), (0.9375, 0.5), (1, 0.5), (1, 0.625), (0.875, 0.625), (0.875, 0.5), (0.9375, 0.5), (0.9375, 0.625), (0.8125, 0.625), (0.8125, 0.5), (0.875, 0.5), (0.875, 0.625), (0.75, 0.625), (0.75, 0.5), (0.8125, 0.5), (0.8125, 0.625), (0.6875, 0.625), (0.6875, 0.5), (0.75, 0.5), (0.75, 0.625), (0.625, 0.625), (0.625, 0.5), (0.6875, 0.5), (0.6875, 0.625), (0.5625, 0.625), (0.5625, 0.5), (0.625, 0.5), (0.625, 0.625), (0.5, 0.625), (0.5, 0.5), (0.5625, 0.5), (0.5625, 0.625), (0.4375, 0.625), (0.4375, 0.5), (0.5, 0.5), (0.5, 0.625), (0.375, 0.625), (0.375, 0.5), (0.4375, 0.5), (0.4375, 0.625), (0.3125, 0.625), (0.3125, 0.5), (0.375, 0.5), (0.375, 0.625), (0.25, 0.625), (0.25, 0.5), (0.3125, 0.5), (0.3125, 0.625), (0.1875, 0.625), (0.1875, 0.5), (0.25, 0.5), (0.25, 0.625), (0.125, 0.625), (0.125, 0.5), (0.1875, 0.5), (0.1875, 0.625), (0.0625, 0.625), (0.0625, 0.5), (0.125, 0.5), (0.125, 0.625), (0, 0.625), (0, 0.5), (0.0625, 0.5), (0.0625, 0.625), (0.9375, 0.5), (0.9375, 0.375), (1, 0.375), (1, 0.5), (0.875, 0.5), (0.875, 0.375), (0.9375, 0.375), (0.9375, 0.5), (0.8125, 0.5), (0.8125, 0.375), (0.875, 0.375), (0.875, 0.5), (0.75, 0.5), (0.75, 0.375), (0.8125, 0.375), (0.8125, 0.5), (0.6875, 0.5), (0.6875, 0.375), (0.75, 0.375), (0.75, 0.5), (0.625, 0.5), (0.625, 0.375), (0.6875, 0.375), (0.6875, 0.5), (0.5625, 0.5), (0.5625, 0.375), (0.625, 0.375), (0.625, 0.5), (0.5, 0.5), (0.5, 0.375), (0.5625, 0.375), (0.5625, 0.5), (0.4375, 0.5), (0.4375, 0.375), (0.5, 0.375), (0.5, 0.5), (0.375, 0.5), (0.375, 0.375), (0.4375, 0.375), (0.4375, 0.5), (0.3125, 0.5), (0.3125, 0.375), (0.375, 0.375), (0.375, 0.5), (0.25, 0.5), (0.25, 0.375), (0.3125, 0.375), (0.3125, 0.5), (0.1875, 0.5), (0.1875, 0.375), (0.25, 0.375), (0.25, 0.5), (0.125, 0.5), (0.125, 0.375), (0.1875, 0.375), (0.1875, 0.5), (0.0625, 0.5), (0.0625, 0.375), (0.125, 0.375), (0.125, 0.5), (0, 0.5), (0, 0.375), (0.0625, 0.375), (0.0625, 0.5), (0.9375, 0.375), (0.9375, 0.25), (1, 0.25), (1, 0.375), (0.875, 0.375), (0.875, 0.25), (0.9375, 0.25), (0.9375, 0.375), (0.8125, 0.375), (0.8125, 0.25), (0.875, 0.25), (0.875, 0.375), (0.75, 0.375), (0.75, 0.25), (0.8125, 0.25), (0.8125, 0.375), (0.6875, 0.375), (0.6875, 0.25), (0.75, 0.25), (0.75, 0.375), (0.625, 0.375), (0.625, 0.25), (0.6875, 0.25), (0.6875, 0.375), (0.5625, 0.375), (0.5625, 0.25), (0.625, 0.25), (0.625, 0.375), (0.5, 0.375), (0.5, 0.25), (0.5625, 0.25), (0.5625, 0.375), (0.4375, 0.375), (0.4375, 0.25), (0.5, 0.25), (0.5, 0.375), (0.375, 0.375), (0.375, 0.25), (0.4375, 0.25), (0.4375, 0.375), (0.3125, 0.375), (0.3125, 0.25), (0.375, 0.25), (0.375, 0.375), (0.25, 0.375), (0.25, 0.25), (0.3125, 0.25), (0.3125, 0.375), (0.1875, 0.375), (0.1875, 0.25), (0.25, 0.25), (0.25, 0.375), (0.125, 0.375), (0.125, 0.25), (0.1875, 0.25), (0.1875, 0.375), (0.0625, 0.375), (0.0625, 0.25), (0.125, 0.25), (0.125, 0.375), (0, 0.375), (0, 0.25), (0.0625, 0.25), (0.0625, 0.375), (0.9375, 0.25), (0.9375, 0.125), (1, 0.125), (1, 0.25), (0.875, 0.25), (0.875, 0.125), (0.9375, 0.125), (0.9375, 0.25), (0.8125, 0.25), (0.8125, 0.125), (0.875, 0.125), (0.875, 0.25), (0.75, 0.25), (0.75, 0.125), (0.8125, 0.125), (0.8125, 0.25), (0.6875, 0.25), (0.6875, 0.125), (0.75, 0.125), (0.75, 0.25), (0.625, 0.25), (0.625, 0.125), (0.6875, 0.125), (0.6875, 0.25), (0.5625, 0.25), (0.5625, 0.125), (0.625, 0.125), (0.625, 0.25), (0.5, 0.25), (0.5, 0.125), (0.5625, 0.125), (0.5625, 0.25), (0.4375, 0.25), (0.4375, 0.125), (0.5, 0.125), (0.5, 0.25), (0.375, 0.25), (0.375, 0.125), (0.4375, 0.125), (0.4375, 0.25), (0.3125, 0.25), (0.3125, 0.125), (0.375, 0.125), (0.375, 0.25), (0.25, 0.25), (0.25, 0.125), (0.3125, 0.125), (0.3125, 0.25), (0.1875, 0.25), (0.1875, 0.125), (0.25, 0.125), (0.25, 0.25), (0.125, 0.25), (0.125, 0.125), (0.1875, 0.125), (0.1875, 0.25), (0.0625, 0.25), (0.0625, 0.125), (0.125, 0.125), (0.125, 0.25), (0, 0.25), (0, 0.125), (0.0625, 0.125), (0.0625, 0.25), (0.9375, 0.125), (0.96875, 0), (1, 0.125), (0.875, 0.125), (0.90625, 0), (0.9375, 0.125), (0.8125, 0.125), (0.84375, 0), (0.875, 0.125), (0.75, 0.125), (0.78125, 0), (0.8125, 0.125), (0.6875, 0.125), (0.71875, 0), (0.75, 0.125), (0.625, 0.125), (0.65625, 0), (0.6875, 0.125), (0.5625, 0.125), (0.59375, 0), (0.625, 0.125), (0.5, 0.125), (0.53125, 0), (0.5625, 0.125), (0.4375, 0.125), (0.46875, 0), (0.5, 0.125), (0.375, 0.125), (0.40625, 0), (0.4375, 0.125), (0.3125, 0.125), (0.34375, 0), (0.375, 0.125), (0.25, 0.125), (0.28125, 0), (0.3125, 0.125), (0.1875, 0.125), (0.21875, 0), (0.25, 0.125), (0.125, 0.125), (0.15625, 0), (0.1875, 0.125), (0.0625, 0.125), (0.09375, 0), (0.125, 0.125), (0, 0.125), (0.03125, 0), (0.0625, 0.125), (0.9375, 0.875), (1, 0.875), (0.96875, 1), (0.875, 0.875), (0.9375, 0.875), (0.90625, 1), (0.8125, 0.875), (0.875, 0.875), (0.84375, 1), (0.75, 0.875), (0.8125, 0.875), (0.78125, 1), (0.6875, 0.875), (0.75, 0.875), (0.71875, 1), (0.625, 0.875), (0.6875, 0.875), (0.65625, 1), (0.5625, 0.875), (0.625, 0.875), (0.59375, 1), (0.5, 0.875), (0.5625, 0.875), (0.53125, 1), (0.4375, 0.875), (0.5, 0.875), (0.46875, 1), (0.375, 0.875), (0.4375, 0.875), (0.40625, 1), (0.3125, 0.875), (0.375, 0.875), (0.34375, 1), (0.25, 0.875), (0.3125, 0.875), (0.28125, 1), (0.1875, 0.875), (0.25, 0.875), (0.21875, 1), (0.125, 0.875), (0.1875, 0.875), (0.15625, 1), (0.0625, 0.875), (0.125, 0.875), (0.09375, 1), (0, 0.875), (0.0625, 0.875), (0.03125, 1), (0.9375, 0.875), (0.9375, 0.75), (1, 0.75), (1, 0.875), (0.875, 0.875), (0.875, 0.75), (0.9375, 0.75), (0.9375, 0.875), (0.8125, 0.875), (0.8125, 0.75), (0.875, 0.75), (0.875, 0.875), (0.75, 0.875), (0.75, 0.75), (0.8125, 0.75), (0.8125, 0.875), (0.6875, 0.875), (0.6875, 0.75), (0.75, 0.75), (0.75, 0.875), (0.625, 0.875), (0.625, 0.75), (0.6875, 0.75), (0.6875, 0.875), (0.5625, 0.875), (0.5625, 0.75), (0.625, 0.75), (0.625, 0.875), (0.5, 0.875), (0.5, 0.75), (0.5625, 0.75), (0.5625, 0.875), (0.4375, 0.875), (0.4375, 0.75), (0.5, 0.75), (0.5, 0.875), (0.375, 0.875), (0.375, 0.75), (0.4375, 0.75), (0.4375, 0.875), (0.3125, 0.875), (0.3125, 0.75), (0.375, 0.75), (0.375, 0.875), (0.25, 0.875), (0.25, 0.75), (0.3125, 0.75), (0.3125, 0.875), (0.1875, 0.875), (0.1875, 0.75), (0.25, 0.75), (0.25, 0.875), (0.125, 0.875), (0.125, 0.75), (0.1875, 0.75), (0.1875, 0.875), (0.0625, 0.875), (0.0625, 0.75), (0.125, 0.75), (0.125, 0.875), (0, 0.875), (0, 0.75), (0.0625, 0.75), (0.0625, 0.875), (0.9375, 0.75), (0.9375, 0.625), (1, 0.625), (1, 0.75), (0.875, 0.75), (0.875, 0.625), (0.9375, 0.625), (0.9375, 0.75), (0.8125, 0.75), (0.8125, 0.625), (0.875, 0.625), (0.875, 0.75), (0.75, 0.75), (0.75, 0.625), (0.8125, 0.625), (0.8125, 0.75), (0.6875, 0.75), (0.6875, 0.625), (0.75, 0.625), (0.75, 0.75), (0.625, 0.75), (0.625, 0.625), (0.6875, 0.625), (0.6875, 0.75), (0.5625, 0.75), (0.5625, 0.625), (0.625, 0.625), (0.625, 0.75), (0.5, 0.75), (0.5, 0.625), (0.5625, 0.625), (0.5625, 0.75), (0.4375, 0.75), (0.4375, 0.625), (0.5, 0.625), (0.5, 0.75), (0.375, 0.75), (0.375, 0.625), (0.4375, 0.625), (0.4375, 0.75), (0.3125, 0.75), (0.3125, 0.625), (0.375, 0.625), (0.375, 0.75), (0.25, 0.75), (0.25, 0.625), (0.3125, 0.625), (0.3125, 0.75), (0.1875, 0.75), (0.1875, 0.625), (0.25, 0.625), (0.25, 0.75), (0.125, 0.75), (0.125, 0.625), (0.1875, 0.625), (0.1875, 0.75), (0.0625, 0.75), (0.0625, 0.625), (0.125, 0.625), (0.125, 0.75), (0, 0.75), (0, 0.625), (0.0625, 0.625), (0.0625, 0.75), (0.9375, 0.625), (0.9375, 0.5), (1, 0.5), (1, 0.625), (0.875, 0.625), (0.875, 0.5), (0.9375, 0.5), (0.9375, 0.625), (0.8125, 0.625), (0.8125, 0.5), (0.875, 0.5), (0.875, 0.625), (0.75, 0.625), (0.75, 0.5), (0.8125, 0.5), (0.8125, 0.625), (0.6875, 0.625), (0.6875, 0.5), (0.75, 0.5), (0.75, 0.625), (0.625, 0.625), (0.625, 0.5), (0.6875, 0.5), (0.6875, 0.625), (0.5625, 0.625), (0.5625, 0.5), (0.625, 0.5), (0.625, 0.625), (0.5, 0.625), (0.5, 0.5), (0.5625, 0.5), (0.5625, 0.625), (0.4375, 0.625), (0.4375, 0.5), (0.5, 0.5), (0.5, 0.625), (0.375, 0.625), (0.375, 0.5), (0.4375, 0.5), (0.4375, 0.625), (0.3125, 0.625), (0.3125, 0.5), (0.375, 0.5), (0.375, 0.625), (0.25, 0.625), (0.25, 0.5), (0.3125, 0.5), (0.3125, 0.625), (0.1875, 0.625), (0.1875, 0.5), (0.25, 0.5), (0.25, 0.625), (0.125, 0.625), (0.125, 0.5), (0.1875, 0.5), (0.1875, 0.625), (0.0625, 0.625), (0.0625, 0.5), (0.125, 0.5), (0.125, 0.625), (0, 0.625), (0, 0.5), (0.0625, 0.5), (0.0625, 0.625), (0.9375, 0.5), (0.9375, 0.375), (1, 0.375), (1, 0.5), (0.875, 0.5), (0.875, 0.375), (0.9375, 0.375), (0.9375, 0.5), (0.8125, 0.5), (0.8125, 0.375), (0.875, 0.375), (0.875, 0.5), (0.75, 0.5), (0.75, 0.375), (0.8125, 0.375), (0.8125, 0.5), (0.6875, 0.5), (0.6875, 0.375), (0.75, 0.375), (0.75, 0.5), (0.625, 0.5), (0.625, 0.375), (0.6875, 0.375), (0.6875, 0.5), (0.5625, 0.5), (0.5625, 0.375), (0.625, 0.375), (0.625, 0.5), (0.5, 0.5), (0.5, 0.375), (0.5625, 0.375), (0.5625, 0.5), (0.4375, 0.5), (0.4375, 0.375), (0.5, 0.375), (0.5, 0.5), (0.375, 0.5), (0.375, 0.375), (0.4375, 0.375), (0.4375, 0.5), (0.3125, 0.5), (0.3125, 0.375), (0.375, 0.375), (0.375, 0.5), (0.25, 0.5), (0.25, 0.375), (0.3125, 0.375), (0.3125, 0.5), (0.1875, 0.5), (0.1875, 0.375), (0.25, 0.375), (0.25, 0.5), (0.125, 0.5), (0.125, 0.375), (0.1875, 0.375), (0.1875, 0.5), (0.0625, 0.5), (0.0625, 0.375), (0.125, 0.375), (0.125, 0.5), (0, 0.5), (0, 0.375), (0.0625, 0.375), (0.0625, 0.5), (0.9375, 0.375), (0.9375, 0.25), (1, 0.25), (1, 0.375), (0.875, 0.375), (0.875, 0.25), (0.9375, 0.25), (0.9375, 0.375), (0.8125, 0.375), (0.8125, 0.25), (0.875, 0.25), (0.875, 0.375), (0.75, 0.375), (0.75, 0.25), (0.8125, 0.25), (0.8125, 0.375), (0.6875, 0.375), (0.6875, 0.25), (0.75, 0.25), (0.75, 0.375), (0.625, 0.375), (0.625, 0.25), (0.6875, 0.25), (0.6875, 0.375), (0.5625, 0.375), (0.5625, 0.25), (0.625, 0.25), (0.625, 0.375), (0.5, 0.375), (0.5, 0.25), (0.5625, 0.25), (0.5625, 0.375), (0.4375, 0.375), (0.4375, 0.25), (0.5, 0.25), (0.5, 0.375), (0.375, 0.375), (0.375, 0.25), (0.4375, 0.25), (0.4375, 0.375), (0.3125, 0.375), (0.3125, 0.25), (0.375, 0.25), (0.375, 0.375), (0.25, 0.375), (0.25, 0.25), (0.3125, 0.25), (0.3125, 0.375), (0.1875, 0.375), (0.1875, 0.25), (0.25, 0.25), (0.25, 0.375), (0.125, 0.375), (0.125, 0.25), (0.1875, 0.25), (0.1875, 0.375), (0.0625, 0.375), (0.0625, 0.25), (0.125, 0.25), (0.125, 0.375), (0, 0.375), (0, 0.25), (0.0625, 0.25), (0.0625, 0.375), (0.9375, 0.25), (0.9375, 0.125), (1, 0.125), (1, 0.25), (0.875, 0.25), (0.875, 0.125), (0.9375, 0.125), (0.9375, 0.25), (0.8125, 0.25), (0.8125, 0.125), (0.875, 0.125), (0.875, 0.25), (0.75, 0.25), (0.75, 0.125), (0.8125, 0.125), (0.8125, 0.25), (0.6875, 0.25), (0.6875, 0.125), (0.75, 0.125), (0.75, 0.25), (0.625, 0.25), (0.625, 0.125), (0.6875, 0.125), (0.6875, 0.25), (0.5625, 0.25), (0.5625, 0.125), (0.625, 0.125), (0.625, 0.25), (0.5, 0.25), (0.5, 0.125), (0.5625, 0.125), (0.5625, 0.25), (0.4375, 0.25), (0.4375, 0.125), (0.5, 0.125), (0.5, 0.25), (0.375, 0.25), (0.375, 0.125), (0.4375, 0.125), (0.4375, 0.25), (0.3125, 0.25), (0.3125, 0.125), (0.375, 0.125), (0.375, 0.25), (0.25, 0.25), (0.25, 0.125), (0.3125, 0.125), (0.3125, 0.25), (0.1875, 0.25), (0.1875, 0.125), (0.25, 0.125), (0.25, 0.25), (0.125, 0.25), (0.125, 0.125), (0.1875, 0.125), (0.1875, 0.25), (0.0625, 0.25), (0.0625, 0.125), (0.125, 0.125), (0.125, 0.25), (0, 0.25), (0, 0.125), (0.0625, 0.125), (0.0625, 0.25), (0.9375, 0.125), (0.96875, 0), (1, 0.125), (0.875, 0.125), (0.90625, 0), (0.9375, 0.125), (0.8125, 0.125), (0.84375, 0), (0.875, 0.125), (0.75, 0.125), (0.78125, 0), (0.8125, 0.125), (0.6875, 0.125), (0.71875, 0), (0.75, 0.125), (0.625, 0.125), (0.65625, 0), (0.6875, 0.125), (0.5625, 0.125), (0.59375, 0), (0.625, 0.125), (0.5, 0.125), (0.53125, 0), (0.5625, 0.125), (0.4375, 0.125), (0.46875, 0), (0.5, 0.125), (0.375, 0.125), (0.40625, 0), (0.4375, 0.125), (0.3125, 0.125), (0.34375, 0), (0.375, 0.125), (0.25, 0.125), (0.28125, 0), (0.3125, 0.125), (0.1875, 0.125), (0.21875, 0), (0.25, 0.125), (0.125, 0.125), (0.15625, 0), (0.1875, 0.125), (0.0625, 0.125), (0.09375, 0), (0.125, 0.125), (0, 0.125), (0.03125, 0), (0.0625, 0.125), (0.9375, 0.875), (1, 0.875), (0.96875, 1), (0.875, 0.875), (0.9375, 0.875), (0.90625, 1), (0.8125, 0.875), (0.875, 0.875), (0.84375, 1), (0.75, 0.875), (0.8125, 0.875), (0.78125, 1), (0.6875, 0.875), (0.75, 0.875), (0.71875, 1), (0.625, 0.875), (0.6875, 0.875), (0.65625, 1), (0.5625, 0.875), (0.625, 0.875), (0.59375, 1), (0.5, 0.875), (0.5625, 0.875), (0.53125, 1), (0.4375, 0.875), (0.5, 0.875), (0.46875, 1), (0.375, 0.875), (0.4375, 0.875), (0.40625, 1), (0.3125, 0.875), (0.375, 0.875), (0.34375, 1), (0.25, 0.875), (0.3125, 0.875), (0.28125, 1), (0.1875, 0.875), (0.25, 0.875), (0.21875, 1), (0.125, 0.875), (0.1875, 0.875), (0.15625, 1), (0.0625, 0.875), (0.125, 0.875), (0.09375, 1), (0, 0.875), (0.0625, 0.875), (0.03125, 1), (0.9375, 0.875), (0.9375, 0.75), (1, 0.75), (1, 0.875), (0.875, 0.875), (0.875, 0.75), (0.9375, 0.75), (0.9375, 0.875), (0.8125, 0.875), (0.8125, 0.75), (0.875, 0.75), (0.875, 0.875), (0.75, 0.875), (0.75, 0.75), (0.8125, 0.75), (0.8125, 0.875), (0.6875, 0.875), (0.6875, 0.75), (0.75, 0.75), (0.75, 0.875), (0.625, 0.875), (0.625, 0.75), (0.6875, 0.75), (0.6875, 0.875), (0.5625, 0.875), (0.5625, 0.75), (0.625, 0.75), (0.625, 0.875), (0.5, 0.875), (0.5, 0.75), (0.5625, 0.75), (0.5625, 0.875), (0.4375, 0.875), (0.4375, 0.75), (0.5, 0.75), (0.5, 0.875), (0.375, 0.875), (0.375, 0.75), (0.4375, 0.75), (0.4375, 0.875), (0.3125, 0.875), (0.3125, 0.75), (0.375, 0.75), (0.375, 0.875), (0.25, 0.875), (0.25, 0.75), (0.3125, 0.75), (0.3125, 0.875), (0.1875, 0.875), (0.1875, 0.75), (0.25, 0.75), (0.25, 0.875), (0.125, 0.875), (0.125, 0.75), (0.1875, 0.75), (0.1875, 0.875), (0.0625, 0.875), (0.0625, 0.75), (0.125, 0.75), (0.125, 0.875), (0, 0.875), (0, 0.75), (0.0625, 0.75), (0.0625, 0.875), (0.9375, 0.75), (0.9375, 0.625), (1, 0.625), (1, 0.75), (0.875, 0.75), (0.875, 0.625), (0.9375, 0.625), (0.9375, 0.75), (0.8125, 0.75), (0.8125, 0.625), (0.875, 0.625), (0.875, 0.75), (0.75, 0.75), (0.75, 0.625), (0.8125, 0.625), (0.8125, 0.75), (0.6875, 0.75), (0.6875, 0.625), (0.75, 0.625), (0.75, 0.75), (0.625, 0.75), (0.625, 0.625), (0.6875, 0.625), (0.6875, 0.75), (0.5625, 0.75), (0.5625, 0.625), (0.625, 0.625), (0.625, 0.75), (0.5, 0.75), (0.5, 0.625), (0.5625, 0.625), (0.5625, 0.75), (0.4375, 0.75), (0.4375, 0.625), (0.5, 0.625), (0.5, 0.75), (0.375, 0.75), (0.375, 0.625), (0.4375, 0.625), (0.4375, 0.75), (0.3125, 0.75), (0.3125, 0.625), (0.375, 0.625), (0.375, 0.75), (0.25, 0.75), (0.25, 0.625), (0.3125, 0.625), (0.3125, 0.75), (0.1875, 0.75), (0.1875, 0.625), (0.25, 0.625), (0.25, 0.75), (0.125, 0.75), (0.125, 0.625), (0.1875, 0.625), (0.1875, 0.75), (0.0625, 0.75), (0.0625, 0.625), (0.125, 0.625), (0.125, 0.75), (0, 0.75), (0, 0.625), (0.0625, 0.625), (0.0625, 0.75), (0.9375, 0.625), (0.9375, 0.5), (1, 0.5), (1, 0.625), (0.875, 0.625), (0.875, 0.5), (0.9375, 0.5), (0.9375, 0.625), (0.8125, 0.625), (0.8125, 0.5), (0.875, 0.5), (0.875, 0.625), (0.75, 0.625), (0.75, 0.5), (0.8125, 0.5), (0.8125, 0.625), (0.6875, 0.625), (0.6875, 0.5), (0.75, 0.5), (0.75, 0.625), (0.625, 0.625), (0.625, 0.5), (0.6875, 0.5), (0.6875, 0.625), (0.5625, 0.625), (0.5625, 0.5), (0.625, 0.5), (0.625, 0.625), (0.5, 0.625), (0.5, 0.5), (0.5625, 0.5), (0.5625, 0.625), (0.4375, 0.625), (0.4375, 0.5), (0.5, 0.5), (0.5, 0.625), (0.375, 0.625), (0.375, 0.5), (0.4375, 0.5), (0.4375, 0.625), (0.3125, 0.625), (0.3125, 0.5), (0.375, 0.5), (0.375, 0.625), (0.25, 0.625), (0.25, 0.5), (0.3125, 0.5), (0.3125, 0.625), (0.1875, 0.625), (0.1875, 0.5), (0.25, 0.5), (0.25, 0.625), (0.125, 0.625), (0.125, 0.5), (0.1875, 0.5), (0.1875, 0.625), (0.0625, 0.625), (0.0625, 0.5), (0.125, 0.5), (0.125, 0.625), (0, 0.625), (0, 0.5), (0.0625, 0.5), (0.0625, 0.625), (0.9375, 0.5), (0.9375, 0.375), (1, 0.375), (1, 0.5), (0.875, 0.5), (0.875, 0.375), (0.9375, 0.375), (0.9375, 0.5), (0.8125, 0.5), (0.8125, 0.375), (0.875, 0.375), (0.875, 0.5), (0.75, 0.5), (0.75, 0.375), (0.8125, 0.375), (0.8125, 0.5), (0.6875, 0.5), (0.6875, 0.375), (0.75, 0.375), (0.75, 0.5), (0.625, 0.5), (0.625, 0.375), (0.6875, 0.375), (0.6875, 0.5), (0.5625, 0.5), (0.5625, 0.375), (0.625, 0.375), (0.625, 0.5), (0.5, 0.5), (0.5, 0.375), (0.5625, 0.375), (0.5625, 0.5), (0.4375, 0.5), (0.4375, 0.375), (0.5, 0.375), (0.5, 0.5), (0.375, 0.5), (0.375, 0.375), (0.4375, 0.375), (0.4375, 0.5), (0.3125, 0.5), (0.3125, 0.375), (0.375, 0.375), (0.375, 0.5), (0.25, 0.5), (0.25, 0.375), (0.3125, 0.375), (0.3125, 0.5), (0.1875, 0.5), (0.1875, 0.375), (0.25, 0.375), (0.25, 0.5), (0.125, 0.5), (0.125, 0.375), (0.1875, 0.375), (0.1875, 0.5), (0.0625, 0.5), (0.0625, 0.375), (0.125, 0.375), (0.125, 0.5), (0, 0.5), (0, 0.375), (0.0625, 0.375), (0.0625, 0.5), (0.9375, 0.375), (0.9375, 0.25), (1, 0.25), (1, 0.375), (0.875, 0.375), (0.875, 0.25), (0.9375, 0.25), (0.9375, 0.375), (0.8125, 0.375), (0.8125, 0.25), (0.875, 0.25), (0.875, 0.375), (0.75, 0.375), (0.75, 0.25), (0.8125, 0.25), (0.8125, 0.375), (0.6875, 0.375), (0.6875, 0.25), (0.75, 0.25), (0.75, 0.375), (0.625, 0.375), (0.625, 0.25), (0.6875, 0.25), (0.6875, 0.375), (0.5625, 0.375), (0.5625, 0.25), (0.625, 0.25), (0.625, 0.375), (0.5, 0.375), (0.5, 0.25), (0.5625, 0.25), (0.5625, 0.375), (0.4375, 0.375), (0.4375, 0.25), (0.5, 0.25), (0.5, 0.375), (0.375, 0.375), (0.375, 0.25), (0.4375, 0.25), (0.4375, 0.375), (0.3125, 0.375), (0.3125, 0.25), (0.375, 0.25), (0.375, 0.375), (0.25, 0.375), (0.25, 0.25), (0.3125, 0.25), (0.3125, 0.375), (0.1875, 0.375), (0.1875, 0.25), (0.25, 0.25), (0.25, 0.375), (0.125, 0.375), (0.125, 0.25), (0.1875, 0.25), (0.1875, 0.375), (0.0625, 0.375), (0.0625, 0.25), (0.125, 0.25), (0.125, 0.375), (0, 0.375), (0, 0.25), (0.0625, 0.25), (0.0625, 0.375), (0.9375, 0.25), (0.9375, 0.125), (1, 0.125), (1, 0.25), (0.875, 0.25), (0.875, 0.125), (0.9375, 0.125), (0.9375, 0.25), (0.8125, 0.25), (0.8125, 0.125), (0.875, 0.125), (0.875, 0.25), (0.75, 0.25), (0.75, 0.125), (0.8125, 0.125), (0.8125, 0.25), (0.6875, 0.25), (0.6875, 0.125), (0.75, 0.125), (0.75, 0.25), (0.625, 0.25), (0.625, 0.125), (0.6875, 0.125), (0.6875, 0.25), (0.5625, 0.25), (0.5625, 0.125), (0.625, 0.125), (0.625, 0.25), (0.5, 0.25), (0.5, 0.125), (0.5625, 0.125), (0.5625, 0.25), (0.4375, 0.25), (0.4375, 0.125), (0.5, 0.125), (0.5, 0.25), (0.375, 0.25), (0.375, 0.125), (0.4375, 0.125), (0.4375, 0.25), (0.3125, 0.25), (0.3125, 0.125), (0.375, 0.125), (0.375, 0.25), (0.25, 0.25), (0.25, 0.125), (0.3125, 0.125), (0.3125, 0.25), (0.1875, 0.25), (0.1875, 0.125), (0.25, 0.125), (0.25, 0.25), (0.125, 0.25), (0.125, 0.125), (0.1875, 0.125), (0.1875, 0.25), (0.0625, 0.25), (0.0625, 0.125), (0.125, 0.125), (0.125, 0.25), (0, 0.25), (0, 0.125), (0.0625, 0.125), (0.0625, 0.25), (0.9375, 0.125), (0.96875, 0), (1, 0.125), (0.875, 0.125), (0.90625, 0), (0.9375, 0.125), (0.8125, 0.125), (0.84375, 0), (0.875, 0.125), (0.75, 0.125), (0.78125, 0), (0.8125, 0.125), (0.6875, 0.125), (0.71875, 0), (0.75, 0.125), (0.625, 0.125), (0.65625, 0), (0.6875, 0.125), (0.5625, 0.125), (0.59375, 0), (0.625, 0.125), (0.5, 0.125), (0.53125, 0), (0.5625, 0.125), (0.4375, 0.125), (0.46875, 0), (0.5, 0.125), (0.375, 0.125), (0.40625, 0), (0.4375, 0.125), (0.3125, 0.125), (0.34375, 0), (0.375, 0.125), (0.25, 0.125), (0.28125, 0), (0.3125, 0.125), (0.1875, 0.125), (0.21875, 0), (0.25, 0.125), (0.125, 0.125), (0.15625, 0), (0.1875, 0.125), (0.0625, 0.125), (0.09375, 0), (0.125, 0.125), (0, 0.125), (0.03125, 0), (0.0625, 0.125), (0.9375, 0.875), (1, 0.875), (0.96875, 1), (0.875, 0.875), (0.9375, 0.875), (0.90625, 1), (0.8125, 0.875), (0.875, 0.875), (0.84375, 1), (0.75, 0.875), (0.8125, 0.875), (0.78125, 1), (0.6875, 0.875), (0.75, 0.875), (0.71875, 1), (0.625, 0.875), (0.6875, 0.875), (0.65625, 1), (0.5625, 0.875), (0.625, 0.875), (0.59375, 1), (0.5, 0.875), (0.5625, 0.875), (0.53125, 1), (0.4375, 0.875), (0.5, 0.875), (0.46875, 1), (0.375, 0.875), (0.4375, 0.875), (0.40625, 1), (0.3125, 0.875), (0.375, 0.875), (0.34375, 1), (0.25, 0.875), (0.3125, 0.875), (0.28125, 1), (0.1875, 0.875), (0.25, 0.875), (0.21875, 1), (0.125, 0.875), (0.1875, 0.875), (0.15625, 1), (0.0625, 0.875), (0.125, 0.875), (0.09375, 1), (0, 0.875), (0.0625, 0.875), (0.03125, 1), (0.9375, 0.875), (0.9375, 0.75), (1, 0.75), (1, 0.875), (0.875, 0.875), (0.875, 0.75), (0.9375, 0.75), (0.9375, 0.875), (0.8125, 0.875), (0.8125, 0.75), (0.875, 0.75), (0.875, 0.875), (0.75, 0.875), (0.75, 0.75), (0.8125, 0.75), (0.8125, 0.875), (0.6875, 0.875), (0.6875, 0.75), (0.75, 0.75), (0.75, 0.875), (0.625, 0.875), (0.625, 0.75), (0.6875, 0.75), (0.6875, 0.875), (0.5625, 0.875), (0.5625, 0.75), (0.625, 0.75), (0.625, 0.875), (0.5, 0.875), (0.5, 0.75), (0.5625, 0.75), (0.5625, 0.875), (0.4375, 0.875), (0.4375, 0.75), (0.5, 0.75), (0.5, 0.875), (0.375, 0.875), (0.375, 0.75), (0.4375, 0.75), (0.4375, 0.875), (0.3125, 0.875), (0.3125, 0.75), (0.375, 0.75), (0.375, 0.875), (0.25, 0.875), (0.25, 0.75), (0.3125, 0.75), (0.3125, 0.875), (0.1875, 0.875), (0.1875, 0.75), (0.25, 0.75), (0.25, 0.875), (0.125, 0.875), (0.125, 0.75), (0.1875, 0.75), (0.1875, 0.875), (0.0625, 0.875), (0.0625, 0.75), (0.125, 0.75), (0.125, 0.875), (0, 0.875), (0, 0.75), (0.0625, 0.75), (0.0625, 0.875), (0.9375, 0.75), (0.9375, 0.625), (1, 0.625), (1, 0.75), (0.875, 0.75), (0.875, 0.625), (0.9375, 0.625), (0.9375, 0.75), (0.8125, 0.75), (0.8125, 0.625), (0.875, 0.625), (0.875, 0.75), (0.75, 0.75), (0.75, 0.625), (0.8125, 0.625), (0.8125, 0.75), (0.6875, 0.75), (0.6875, 0.625), (0.75, 0.625), (0.75, 0.75), (0.625, 0.75), (0.625, 0.625), (0.6875, 0.625), (0.6875, 0.75), (0.5625, 0.75), (0.5625, 0.625), (0.625, 0.625), (0.625, 0.75), (0.5, 0.75), (0.5, 0.625), (0.5625, 0.625), (0.5625, 0.75), (0.4375, 0.75), (0.4375, 0.625), (0.5, 0.625), (0.5, 0.75), (0.375, 0.75), (0.375, 0.625), (0.4375, 0.625), (0.4375, 0.75), (0.3125, 0.75), (0.3125, 0.625), (0.375, 0.625), (0.375, 0.75), (0.25, 0.75), (0.25, 0.625), (0.3125, 0.625), (0.3125, 0.75), (0.1875, 0.75), (0.1875, 0.625), (0.25, 0.625), (0.25, 0.75), (0.125, 0.75), (0.125, 0.625), (0.1875, 0.625), (0.1875, 0.75), (0.0625, 0.75), (0.0625, 0.625), (0.125, 0.625), (0.125, 0.75), (0, 0.75), (0, 0.625), (0.0625, 0.625), (0.0625, 0.75), (0.9375, 0.625), (0.9375, 0.5), (1, 0.5), (1, 0.625), (0.875, 0.625), (0.875, 0.5), (0.9375, 0.5), (0.9375, 0.625), (0.8125, 0.625), (0.8125, 0.5), (0.875, 0.5), (0.875, 0.625), (0.75, 0.625), (0.75, 0.5), (0.8125, 0.5), (0.8125, 0.625), (0.6875, 0.625), (0.6875, 0.5), (0.75, 0.5), (0.75, 0.625), (0.625, 0.625), (0.625, 0.5), (0.6875, 0.5), (0.6875, 0.625), (0.5625, 0.625), (0.5625, 0.5), (0.625, 0.5), (0.625, 0.625), (0.5, 0.625), (0.5, 0.5), (0.5625, 0.5), (0.5625, 0.625), (0.4375, 0.625), (0.4375, 0.5), (0.5, 0.5), (0.5, 0.625), (0.375, 0.625), (0.375, 0.5), (0.4375, 0.5), (0.4375, 0.625), (0.3125, 0.625), (0.3125, 0.5), (0.375, 0.5), (0.375, 0.625), (0.25, 0.625), (0.25, 0.5), (0.3125, 0.5), (0.3125, 0.625), (0.1875, 0.625), (0.1875, 0.5), (0.25, 0.5), (0.25, 0.625), (0.125, 0.625), (0.125, 0.5), (0.1875, 0.5), (0.1875, 0.625), (0.0625, 0.625), (0.0625, 0.5), (0.125, 0.5), (0.125, 0.625), (0, 0.625), (0, 0.5), (0.0625, 0.5), (0.0625, 0.625), (0.9375, 0.5), (0.9375, 0.375), (1, 0.375), (1, 0.5), (0.875, 0.5), (0.875, 0.375), (0.9375, 0.375), (0.9375, 0.5), (0.8125, 0.5), (0.8125, 0.375), (0.875, 0.375), (0.875, 0.5), (0.75, 0.5), (0.75, 0.375), (0.8125, 0.375), (0.8125, 0.5), (0.6875, 0.5), (0.6875, 0.375), (0.75, 0.375), (0.75, 0.5), (0.625, 0.5), (0.625, 0.375), (0.6875, 0.375), (0.6875, 0.5), (0.5625, 0.5), (0.5625, 0.375), (0.625, 0.375), (0.625, 0.5), (0.5, 0.5), (0.5, 0.375), (0.5625, 0.375), (0.5625, 0.5), (0.4375, 0.5), (0.4375, 0.375), (0.5, 0.375), (0.5, 0.5), (0.375, 0.5), (0.375, 0.375), (0.4375, 0.375), (0.4375, 0.5), (0.3125, 0.5), (0.3125, 0.375), (0.375, 0.375), (0.375, 0.5), (0.25, 0.5), (0.25, 0.375), (0.3125, 0.375), (0.3125, 0.5), (0.1875, 0.5), (0.1875, 0.375), (0.25, 0.375), (0.25, 0.5), (0.125, 0.5), (0.125, 0.375), (0.1875, 0.375), (0.1875, 0.5), (0.0625, 0.5), (0.0625, 0.375), (0.125, 0.375), (0.125, 0.5), (0, 0.5), (0, 0.375), (0.0625, 0.375), (0.0625, 0.5), (0.9375, 0.375), (0.9375, 0.25), (1, 0.25), (1, 0.375), (0.875, 0.375), (0.875, 0.25), (0.9375, 0.25), (0.9375, 0.375), (0.8125, 0.375), (0.8125, 0.25), (0.875, 0.25), (0.875, 0.375), (0.75, 0.375), (0.75, 0.25), (0.8125, 0.25), (0.8125, 0.375), (0.6875, 0.375), (0.6875, 0.25), (0.75, 0.25), (0.75, 0.375), (0.625, 0.375), (0.625, 0.25), (0.6875, 0.25), (0.6875, 0.375), (0.5625, 0.375), (0.5625, 0.25), (0.625, 0.25), (0.625, 0.375), (0.5, 0.375), (0.5, 0.25), (0.5625, 0.25), (0.5625, 0.375), (0.4375, 0.375), (0.4375, 0.25), (0.5, 0.25), (0.5, 0.375), (0.375, 0.375), (0.375, 0.25), (0.4375, 0.25), (0.4375, 0.375), (0.3125, 0.375), (0.3125, 0.25), (0.375, 0.25), (0.375, 0.375), (0.25, 0.375), (0.25, 0.25), (0.3125, 0.25), (0.3125, 0.375), (0.1875, 0.375), (0.1875, 0.25), (0.25, 0.25), (0.25, 0.375), (0.125, 0.375), (0.125, 0.25), (0.1875, 0.25), (0.1875, 0.375), (0.0625, 0.375), (0.0625, 0.25), (0.125, 0.25), (0.125, 0.375), (0, 0.375), (0, 0.25), (0.0625, 0.25), (0.0625, 0.375), (0.9375, 0.25), (0.9375, 0.125), (1, 0.125), (1, 0.25), (0.875, 0.25), (0.875, 0.125), (0.9375, 0.125), (0.9375, 0.25), (0.8125, 0.25), (0.8125, 0.125), (0.875, 0.125), (0.875, 0.25), (0.75, 0.25), (0.75, 0.125), (0.8125, 0.125), (0.8125, 0.25), (0.6875, 0.25), (0.6875, 0.125), (0.75, 0.125), (0.75, 0.25), (0.625, 0.25), (0.625, 0.125), (0.6875, 0.125), (0.6875, 0.25), (0.5625, 0.25), (0.5625, 0.125), (0.625, 0.125), (0.625, 0.25), (0.5, 0.25), (0.5, 0.125), (0.5625, 0.125), (0.5625, 0.25), (0.4375, 0.25), (0.4375, 0.125), (0.5, 0.125), (0.5, 0.25), (0.375, 0.25), (0.375, 0.125), (0.4375, 0.125), (0.4375, 0.25), (0.3125, 0.25), (0.3125, 0.125), (0.375, 0.125), (0.375, 0.25), (0.25, 0.25), (0.25, 0.125), (0.3125, 0.125), (0.3125, 0.25), (0.1875, 0.25), (0.1875, 0.125), (0.25, 0.125), (0.25, 0.25), (0.125, 0.25), (0.125, 0.125), (0.1875, 0.125), (0.1875, 0.25), (0.0625, 0.25), (0.0625, 0.125), (0.125, 0.125), (0.125, 0.25), (0, 0.25), (0, 0.125), (0.0625, 0.125), (0.0625, 0.25), (0.9375, 0.125), (0.96875, 0), (1, 0.125), (0.875, 0.125), (0.90625, 0), (0.9375, 0.125), (0.8125, 0.125), (0.84375, 0), (0.875, 0.125), (0.75, 0.125), (0.78125, 0), (0.8125, 0.125), (0.6875, 0.125), (0.71875, 0), (0.75, 0.125), (0.625, 0.125), (0.65625, 0), (0.6875, 0.125), (0.5625, 0.125), (0.59375, 0), (0.625, 0.125), (0.5, 0.125), (0.53125, 0), (0.5625, 0.125), (0.4375, 0.125), (0.46875, 0), (0.5, 0.125), (0.375, 0.125), (0.40625, 0), (0.4375, 0.125), (0.3125, 0.125), (0.34375, 0), (0.375, 0.125), (0.25, 0.125), (0.28125, 0), (0.3125, 0.125), (0.1875, 0.125), (0.21875, 0), (0.25, 0.125), (0.125, 0.125), (0.15625, 0), (0.1875, 0.125), (0.0625, 0.125), (0.09375, 0), (0.125, 0.125), (0, 0.125), (0.03125, 0), (0.0625, 0.125), (0.9375, 0.875), (1, 0.875), (0.96875, 1), (0.875, 0.875), (0.9375, 0.875), (0.90625, 1), (0.8125, 0.875), (0.875, 0.875), (0.84375, 1), (0.75, 0.875), (0.8125, 0.875), (0.78125, 1), (0.6875, 0.875), (0.75, 0.875), (0.71875, 1), (0.625, 0.875), (0.6875, 0.875), (0.65625, 1), (0.5625, 0.875), (0.625, 0.875), (0.59375, 1), (0.5, 0.875), (0.5625, 0.875), (0.53125, 1), (0.4375, 0.875), (0.5, 0.875), (0.46875, 1), (0.375, 0.875), (0.4375, 0.875), (0.40625, 1), (0.3125, 0.875), (0.375, 0.875), (0.34375, 1), (0.25, 0.875), (0.3125, 0.875), (0.28125, 1), (0.1875, 0.875), (0.25, 0.875), (0.21875, 1), (0.125, 0.875), (0.1875, 0.875), (0.15625, 1), (0.0625, 0.875), (0.125, 0.875), (0.09375, 1), (0, 0.875), (0.0625, 0.875), (0.03125, 1), (0.9375, 0.875), (0.9375, 0.75), (1, 0.75), (1, 0.875), (0.875, 0.875), (0.875, 0.75), (0.9375, 0.75), (0.9375, 0.875), (0.8125, 0.875), (0.8125, 0.75), (0.875, 0.75), (0.875, 0.875), (0.75, 0.875), (0.75, 0.75), (0.8125, 0.75), (0.8125, 0.875), (0.6875, 0.875), (0.6875, 0.75), (0.75, 0.75), (0.75, 0.875), (0.625, 0.875), (0.625, 0.75), (0.6875, 0.75), (0.6875, 0.875), (0.5625, 0.875), (0.5625, 0.75), (0.625, 0.75), (0.625, 0.875), (0.5, 0.875), (0.5, 0.75), (0.5625, 0.75), (0.5625, 0.875), (0.4375, 0.875), (0.4375, 0.75), (0.5, 0.75), (0.5, 0.875), (0.375, 0.875), (0.375, 0.75), (0.4375, 0.75), (0.4375, 0.875), (0.3125, 0.875), (0.3125, 0.75), (0.375, 0.75), (0.375, 0.875), (0.25, 0.875), (0.25, 0.75), (0.3125, 0.75), (0.3125, 0.875), (0.1875, 0.875), (0.1875, 0.75), (0.25, 0.75), (0.25, 0.875), (0.125, 0.875), (0.125, 0.75), (0.1875, 0.75), (0.1875, 0.875), (0.0625, 0.875), (0.0625, 0.75), (0.125, 0.75), (0.125, 0.875), (0, 0.875), (0, 0.75), (0.0625, 0.75), (0.0625, 0.875), (0.9375, 0.75), (0.9375, 0.625), (1, 0.625), (1, 0.75), (0.875, 0.75), (0.875, 0.625), (0.9375, 0.625), (0.9375, 0.75), (0.8125, 0.75), (0.8125, 0.625), (0.875, 0.625), (0.875, 0.75), (0.75, 0.75), (0.75, 0.625), (0.8125, 0.625), (0.8125, 0.75), (0.6875, 0.75), (0.6875, 0.625), (0.75, 0.625), (0.75, 0.75), (0.625, 0.75), (0.625, 0.625), (0.6875, 0.625), (0.6875, 0.75), (0.5625, 0.75), (0.5625, 0.625), (0.625, 0.625), (0.625, 0.75), (0.5, 0.75), (0.5, 0.625), (0.5625, 0.625), (0.5625, 0.75), (0.4375, 0.75), (0.4375, 0.625), (0.5, 0.625), (0.5, 0.75), (0.375, 0.75), (0.375, 0.625), (0.4375, 0.625), (0.4375, 0.75), (0.3125, 0.75), (0.3125, 0.625), (0.375, 0.625), (0.375, 0.75), (0.25, 0.75), (0.25, 0.625), (0.3125, 0.625), (0.3125, 0.75), (0.1875, 0.75), (0.1875, 0.625), (0.25, 0.625), (0.25, 0.75), (0.125, 0.75), (0.125, 0.625), (0.1875, 0.625), (0.1875, 0.75), (0.0625, 0.75), (0.0625, 0.625), (0.125, 0.625), (0.125, 0.75), (0, 0.75), (0, 0.625), (0.0625, 0.625), (0.0625, 0.75), (0.9375, 0.625), (0.9375, 0.5), (1, 0.5), (1, 0.625), (0.875, 0.625), (0.875, 0.5), (0.9375, 0.5), (0.9375, 0.625), (0.8125, 0.625), (0.8125, 0.5), (0.875, 0.5), (0.875, 0.625), (0.75, 0.625), (0.75, 0.5), (0.8125, 0.5), (0.8125, 0.625), (0.6875, 0.625), (0.6875, 0.5), (0.75, 0.5), (0.75, 0.625), (0.625, 0.625), (0.625, 0.5), (0.6875, 0.5), (0.6875, 0.625), (0.5625, 0.625), (0.5625, 0.5), (0.625, 0.5), (0.625, 0.625), (0.5, 0.625), (0.5, 0.5), (0.5625, 0.5), (0.5625, 0.625), (0.4375, 0.625), (0.4375, 0.5), (0.5, 0.5), (0.5, 0.625), (0.375, 0.625), (0.375, 0.5), (0.4375, 0.5), (0.4375, 0.625), (0.3125, 0.625), (0.3125, 0.5), (0.375, 0.5), (0.375, 0.625), (0.25, 0.625), (0.25, 0.5), (0.3125, 0.5), (0.3125, 0.625), (0.1875, 0.625), (0.1875, 0.5), (0.25, 0.5), (0.25, 0.625), (0.125, 0.625), (0.125, 0.5), (0.1875, 0.5), (0.1875, 0.625), (0.0625, 0.625), (0.0625, 0.5), (0.125, 0.5), (0.125, 0.625), (0, 0.625), (0, 0.5), (0.0625, 0.5), (0.0625, 0.625), (0.9375, 0.5), (0.9375, 0.375), (1, 0.375), (1, 0.5), (0.875, 0.5), (0.875, 0.375), (0.9375, 0.375), (0.9375, 0.5), (0.8125, 0.5), (0.8125, 0.375), (0.875, 0.375), (0.875, 0.5), (0.75, 0.5), (0.75, 0.375), (0.8125, 0.375), (0.8125, 0.5), (0.6875, 0.5), (0.6875, 0.375), (0.75, 0.375), (0.75, 0.5), (0.625, 0.5), (0.625, 0.375), (0.6875, 0.375), (0.6875, 0.5), (0.5625, 0.5), (0.5625, 0.375), (0.625, 0.375), (0.625, 0.5), (0.5, 0.5), (0.5, 0.375), (0.5625, 0.375), (0.5625, 0.5), (0.4375, 0.5), (0.4375, 0.375), (0.5, 0.375), (0.5, 0.5), (0.375, 0.5), (0.375, 0.375), (0.4375, 0.375), (0.4375, 0.5), (0.3125, 0.5), (0.3125, 0.375), (0.375, 0.375), (0.375, 0.5), (0.25, 0.5), (0.25, 0.375), (0.3125, 0.375), (0.3125, 0.5), (0.1875, 0.5), (0.1875, 0.375), (0.25, 0.375), (0.25, 0.5), (0.125, 0.5), (0.125, 0.375), (0.1875, 0.375), (0.1875, 0.5), (0.0625, 0.5), (0.0625, 0.375), (0.125, 0.375), (0.125, 0.5), (0, 0.5), (0, 0.375), (0.0625, 0.375), (0.0625, 0.5), (0.9375, 0.375), (0.9375, 0.25), (1, 0.25), (1, 0.375), (0.875, 0.375), (0.875, 0.25), (0.9375, 0.25), (0.9375, 0.375), (0.8125, 0.375), (0.8125, 0.25), (0.875, 0.25), (0.875, 0.375), (0.75, 0.375), (0.75, 0.25), (0.8125, 0.25), (0.8125, 0.375), (0.6875, 0.375), (0.6875, 0.25), (0.75, 0.25), (0.75, 0.375), (0.625, 0.375), (0.625, 0.25), (0.6875, 0.25), (0.6875, 0.375), (0.5625, 0.375), (0.5625, 0.25), (0.625, 0.25), (0.625, 0.375), (0.5, 0.375), (0.5, 0.25), (0.5625, 0.25), (0.5625, 0.375), (0.4375, 0.375), (0.4375, 0.25), (0.5, 0.25), (0.5, 0.375), (0.375, 0.375), (0.375, 0.25), (0.4375, 0.25), (0.4375, 0.375), (0.3125, 0.375), (0.3125, 0.25), (0.375, 0.25), (0.375, 0.375), (0.25, 0.375), (0.25, 0.25), (0.3125, 0.25), (0.3125, 0.375), (0.1875, 0.375), (0.1875, 0.25), (0.25, 0.25), (0.25, 0.375), (0.125, 0.375), (0.125, 0.25), (0.1875, 0.25), (0.1875, 0.375), (0.0625, 0.375), (0.0625, 0.25), (0.125, 0.25), (0.125, 0.375), (0, 0.375), (0, 0.25), (0.0625, 0.25), (0.0625, 0.375), (0.9375, 0.25), (0.9375, 0.125), (1, 0.125), (1, 0.25), (0.875, 0.25), (0.875, 0.125), (0.9375, 0.125), (0.9375, 0.25), (0.8125, 0.25), (0.8125, 0.125), (0.875, 0.125), (0.875, 0.25), (0.75, 0.25), (0.75, 0.125), (0.8125, 0.125), (0.8125, 0.25), (0.6875, 0.25), (0.6875, 0.125), (0.75, 0.125), (0.75, 0.25), (0.625, 0.25), (0.625, 0.125), (0.6875, 0.125), (0.6875, 0.25), (0.5625, 0.25), (0.5625, 0.125), (0.625, 0.125), (0.625, 0.25), (0.5, 0.25), (0.5, 0.125), (0.5625, 0.125), (0.5625, 0.25), (0.4375, 0.25), (0.4375, 0.125), (0.5, 0.125), (0.5, 0.25), (0.375, 0.25), (0.375, 0.125), (0.4375, 0.125), (0.4375, 0.25), (0.3125, 0.25), (0.3125, 0.125), (0.375, 0.125), (0.375, 0.25), (0.25, 0.25), (0.25, 0.125), (0.3125, 0.125), (0.3125, 0.25), (0.1875, 0.25), (0.1875, 0.125), (0.25, 0.125), (0.25, 0.25), (0.125, 0.25), (0.125, 0.125), (0.1875, 0.125), (0.1875, 0.25), (0.0625, 0.25), (0.0625, 0.125), (0.125, 0.125), (0.125, 0.25), (0, 0.25), (0, 0.125), (0.0625, 0.125), (0.0625, 0.25), (0.9375, 0.125), (0.96875, 0), (1, 0.125), (0.875, 0.125), (0.90625, 0), (0.9375, 0.125), (0.8125, 0.125), (0.84375, 0), (0.875, 0.125), (0.75, 0.125), (0.78125, 0), (0.8125, 0.125), (0.6875, 0.125), (0.71875, 0), (0.75, 0.125), (0.625, 0.125), (0.65625, 0), (0.6875, 0.125), (0.5625, 0.125), (0.59375, 0), (0.625, 0.125), (0.5, 0.125), (0.53125, 0), (0.5625, 0.125), (0.4375, 0.125), (0.46875, 0), (0.5, 0.125), (0.375, 0.125), (0.40625, 0), (0.4375, 0.125), (0.3125, 0.125), (0.34375, 0), (0.375, 0.125), (0.25, 0.125), (0.28125, 0), (0.3125, 0.125), (0.1875, 0.125), (0.21875, 0), (0.25, 0.125), (0.125, 0.125), (0.15625, 0), (0.1875, 0.125), (0.0625, 0.125), (0.09375, 0), (0.125, 0.125), (0, 0.125), (0.03125, 0), (0.0625, 0.125), (0.9375, 0.875), (1, 0.875), (0.96875, 1), (0.875, 0.875), (0.9375, 0.875), (0.90625, 1), (0.8125, 0.875), (0.875, 0.875), (0.84375, 1), (0.75, 0.875), (0.8125, 0.875), (0.78125, 1), (0.6875, 0.875), (0.75, 0.875), (0.71875, 1), (0.625, 0.875), (0.6875, 0.875), (0.65625, 1), (0.5625, 0.875), (0.625, 0.875), (0.59375, 1), (0.5, 0.875), (0.5625, 0.875), (0.53125, 1), (0.4375, 0.875), (0.5, 0.875), (0.46875, 1), (0.375, 0.875), (0.4375, 0.875), (0.40625, 1), (0.3125, 0.875), (0.375, 0.875), (0.34375, 1), (0.25, 0.875), (0.3125, 0.875), (0.28125, 1), (0.1875, 0.875), (0.25, 0.875), (0.21875, 1), (0.125, 0.875), (0.1875, 0.875), (0.15625, 1), (0.0625, 0.875), (0.125, 0.875), (0.09375, 1), (0, 0.875), (0.0625, 0.875), (0.03125, 1), (0.9375, 0.875), (0.9375, 0.75), (1, 0.75), (1, 0.875), (0.875, 0.875), (0.875, 0.75), (0.9375, 0.75), (0.9375, 0.875), (0.8125, 0.875), (0.8125, 0.75), (0.875, 0.75), (0.875, 0.875), (0.75, 0.875), (0.75, 0.75), (0.8125, 0.75), (0.8125, 0.875), (0.6875, 0.875), (0.6875, 0.75), (0.75, 0.75), (0.75, 0.875), (0.625, 0.875), (0.625, 0.75), (0.6875, 0.75), (0.6875, 0.875), (0.5625, 0.875), (0.5625, 0.75), (0.625, 0.75), (0.625, 0.875), (0.5, 0.875), (0.5, 0.75), (0.5625, 0.75), (0.5625, 0.875), (0.4375, 0.875), (0.4375, 0.75), (0.5, 0.75), (0.5, 0.875), (0.375, 0.875), (0.375, 0.75), (0.4375, 0.75), (0.4375, 0.875), (0.3125, 0.875), (0.3125, 0.75), (0.375, 0.75), (0.375, 0.875), (0.25, 0.875), (0.25, 0.75), (0.3125, 0.75), (0.3125, 0.875), (0.1875, 0.875), (0.1875, 0.75), (0.25, 0.75), (0.25, 0.875), (0.125, 0.875), (0.125, 0.75), (0.1875, 0.75), (0.1875, 0.875), (0.0625, 0.875), (0.0625, 0.75), (0.125, 0.75), (0.125, 0.875), (0, 0.875), (0, 0.75), (0.0625, 0.75), (0.0625, 0.875), (0.9375, 0.75), (0.9375, 0.625), (1, 0.625), (1, 0.75), (0.875, 0.75), (0.875, 0.625), (0.9375, 0.625), (0.9375, 0.75), (0.8125, 0.75), (0.8125, 0.625), (0.875, 0.625), (0.875, 0.75), (0.75, 0.75), (0.75, 0.625), (0.8125, 0.625), (0.8125, 0.75), (0.6875, 0.75), (0.6875, 0.625), (0.75, 0.625), (0.75, 0.75), (0.625, 0.75), (0.625, 0.625), (0.6875, 0.625), (0.6875, 0.75), (0.5625, 0.75), (0.5625, 0.625), (0.625, 0.625), (0.625, 0.75), (0.5, 0.75), (0.5, 0.625), (0.5625, 0.625), (0.5625, 0.75), (0.4375, 0.75), (0.4375, 0.625), (0.5, 0.625), (0.5, 0.75), (0.375, 0.75), (0.375, 0.625), (0.4375, 0.625), (0.4375, 0.75), (0.3125, 0.75), (0.3125, 0.625), (0.375, 0.625), (0.375, 0.75), (0.25, 0.75), (0.25, 0.625), (0.3125, 0.625), (0.3125, 0.75), (0.1875, 0.75), (0.1875, 0.625), (0.25, 0.625), (0.25, 0.75), (0.125, 0.75), (0.125, 0.625), (0.1875, 0.625), (0.1875, 0.75), (0.0625, 0.75), (0.0625, 0.625), (0.125, 0.625), (0.125, 0.75), (0, 0.75), (0, 0.625), (0.0625, 0.625), (0.0625, 0.75), (0.9375, 0.625), (0.9375, 0.5), (1, 0.5), (1, 0.625), (0.875, 0.625), (0.875, 0.5), (0.9375, 0.5), (0.9375, 0.625), (0.8125, 0.625), (0.8125, 0.5), (0.875, 0.5), (0.875, 0.625), (0.75, 0.625), (0.75, 0.5), (0.8125, 0.5), (0.8125, 0.625), (0.6875, 0.625), (0.6875, 0.5), (0.75, 0.5), (0.75, 0.625), (0.625, 0.625), (0.625, 0.5), (0.6875, 0.5), (0.6875, 0.625), (0.5625, 0.625), (0.5625, 0.5), (0.625, 0.5), (0.625, 0.625), (0.5, 0.625), (0.5, 0.5), (0.5625, 0.5), (0.5625, 0.625), (0.4375, 0.625), (0.4375, 0.5), (0.5, 0.5), (0.5, 0.625), (0.375, 0.625), (0.375, 0.5), (0.4375, 0.5), (0.4375, 0.625), (0.3125, 0.625), (0.3125, 0.5), (0.375, 0.5), (0.375, 0.625), (0.25, 0.625), (0.25, 0.5), (0.3125, 0.5), (0.3125, 0.625), (0.1875, 0.625), (0.1875, 0.5), (0.25, 0.5), (0.25, 0.625), (0.125, 0.625), (0.125, 0.5), (0.1875, 0.5), (0.1875, 0.625), (0.0625, 0.625), (0.0625, 0.5), (0.125, 0.5), (0.125, 0.625), (0, 0.625), (0, 0.5), (0.0625, 0.5), (0.0625, 0.625), (0.9375, 0.5), (0.9375, 0.375), (1, 0.375), (1, 0.5), (0.875, 0.5), (0.875, 0.375), (0.9375, 0.375), (0.9375, 0.5), (0.8125, 0.5), (0.8125, 0.375), (0.875, 0.375), (0.875, 0.5), (0.75, 0.5), (0.75, 0.375), (0.8125, 0.375), (0.8125, 0.5), (0.6875, 0.5), (0.6875, 0.375), (0.75, 0.375), (0.75, 0.5), (0.625, 0.5), (0.625, 0.375), (0.6875, 0.375), (0.6875, 0.5), (0.5625, 0.5), (0.5625, 0.375), (0.625, 0.375), (0.625, 0.5), (0.5, 0.5), (0.5, 0.375), (0.5625, 0.375), (0.5625, 0.5), (0.4375, 0.5), (0.4375, 0.375), (0.5, 0.375), (0.5, 0.5), (0.375, 0.5), (0.375, 0.375), (0.4375, 0.375), (0.4375, 0.5), (0.3125, 0.5), (0.3125, 0.375), (0.375, 0.375), (0.375, 0.5), (0.25, 0.5), (0.25, 0.375), (0.3125, 0.375), (0.3125, 0.5), (0.1875, 0.5), (0.1875, 0.375), (0.25, 0.375), (0.25, 0.5), (0.125, 0.5), (0.125, 0.375), (0.1875, 0.375), (0.1875, 0.5), (0.0625, 0.5), (0.0625, 0.375), (0.125, 0.375), (0.125, 0.5), (0, 0.5), (0, 0.375), (0.0625, 0.375), (0.0625, 0.5), (0.9375, 0.375), (0.9375, 0.25), (1, 0.25), (1, 0.375), (0.875, 0.375), (0.875, 0.25), (0.9375, 0.25), (0.9375, 0.375), (0.8125, 0.375), (0.8125, 0.25), (0.875, 0.25), (0.875, 0.375), (0.75, 0.375), (0.75, 0.25), (0.8125, 0.25), (0.8125, 0.375), (0.6875, 0.375), (0.6875, 0.25), (0.75, 0.25), (0.75, 0.375), (0.625, 0.375), (0.625, 0.25), (0.6875, 0.25), (0.6875, 0.375), (0.5625, 0.375), (0.5625, 0.25), (0.625, 0.25), (0.625, 0.375), (0.5, 0.375), (0.5, 0.25), (0.5625, 0.25), (0.5625, 0.375), (0.4375, 0.375), (0.4375, 0.25), (0.5, 0.25), (0.5, 0.375), (0.375, 0.375), (0.375, 0.25), (0.4375, 0.25), (0.4375, 0.375), (0.3125, 0.375), (0.3125, 0.25), (0.375, 0.25), (0.375, 0.375), (0.25, 0.375), (0.25, 0.25), (0.3125, 0.25), (0.3125, 0.375), (0.1875, 0.375), (0.1875, 0.25), (0.25, 0.25), (0.25, 0.375), (0.125, 0.375), (0.125, 0.25), (0.1875, 0.25), (0.1875, 0.375), (0.0625, 0.375), (0.0625, 0.25), (0.125, 0.25), (0.125, 0.375), (0, 0.375), (0, 0.25), (0.0625, 0.25), (0.0625, 0.375), (0.9375, 0.25), (0.9375, 0.125), (1, 0.125), (1, 0.25), (0.875, 0.25), (0.875, 0.125), (0.9375, 0.125), (0.9375, 0.25), (0.8125, 0.25), (0.8125, 0.125), (0.875, 0.125), (0.875, 0.25), (0.75, 0.25), (0.75, 0.125), (0.8125, 0.125), (0.8125, 0.25), (0.6875, 0.25), (0.6875, 0.125), (0.75, 0.125), (0.75, 0.25), (0.625, 0.25), (0.625, 0.125), (0.6875, 0.125), (0.6875, 0.25), (0.5625, 0.25), (0.5625, 0.125), (0.625, 0.125), (0.625, 0.25), (0.5, 0.25), (0.5, 0.125), (0.5625, 0.125), (0.5625, 0.25), (0.4375, 0.25), (0.4375, 0.125), (0.5, 0.125), (0.5, 0.25), (0.375, 0.25), (0.375, 0.125), (0.4375, 0.125), (0.4375, 0.25), (0.3125, 0.25), (0.3125, 0.125), (0.375, 0.125), (0.375, 0.25), (0.25, 0.25), (0.25, 0.125), (0.3125, 0.125), (0.3125, 0.25), (0.1875, 0.25), (0.1875, 0.125), (0.25, 0.125), (0.25, 0.25), (0.125, 0.25), (0.125, 0.125), (0.1875, 0.125), (0.1875, 0.25), (0.0625, 0.25), (0.0625, 0.125), (0.125, 0.125), (0.125, 0.25), (0, 0.25), (0, 0.125), (0.0625, 0.125), (0.0625, 0.25), (0.9375, 0.125), (0.96875, 0), (1, 0.125), (0.875, 0.125), (0.90625, 0), (0.9375, 0.125), (0.8125, 0.125), (0.84375, 0), (0.875, 0.125), (0.75, 0.125), (0.78125, 0), (0.8125, 0.125), (0.6875, 0.125), (0.71875, 0), (0.75, 0.125), (0.625, 0.125), (0.65625, 0), (0.6875, 0.125), (0.5625, 0.125), (0.59375, 0), (0.625, 0.125), (0.5, 0.125), (0.53125, 0), (0.5625, 0.125), (0.4375, 0.125), (0.46875, 0), (0.5, 0.125), (0.375, 0.125), (0.40625, 0), (0.4375, 0.125), (0.3125, 0.125), (0.34375, 0), (0.375, 0.125), (0.25, 0.125), (0.28125, 0), (0.3125, 0.125), (0.1875, 0.125), (0.21875, 0), (0.25, 0.125), (0.125, 0.125), (0.15625, 0), (0.1875, 0.125), (0.0625, 0.125), (0.09375, 0), (0.125, 0.125), (0, 0.125), (0.03125, 0), (0.0625, 0.125), (0.9375, 0.875), (1, 0.875), (0.96875, 1), (0.875, 0.875), (0.9375, 0.875), (0.90625, 1), (0.8125, 0.875), (0.875, 0.875), (0.84375, 1), (0.75, 0.875), (0.8125, 0.875), (0.78125, 1), (0.6875, 0.875), (0.75, 0.875), (0.71875, 1), (0.625, 0.875), (0.6875, 0.875), (0.65625, 1), (0.5625, 0.875), (0.625, 0.875), (0.59375, 1), (0.5, 0.875), (0.5625, 0.875), (0.53125, 1), (0.4375, 0.875), (0.5, 0.875), (0.46875, 1), (0.375, 0.875), (0.4375, 0.875), (0.40625, 1), (0.3125, 0.875), (0.375, 0.875), (0.34375, 1), (0.25, 0.875), (0.3125, 0.875), (0.28125, 1), (0.1875, 0.875), (0.25, 0.875), (0.21875, 1), (0.125, 0.875), (0.1875, 0.875), (0.15625, 1), (0.0625, 0.875), (0.125, 0.875), (0.09375, 1), (0, 0.875), (0.0625, 0.875), (0.03125, 1), (0.9375, 0.875), (0.9375, 0.75), (1, 0.75), (1, 0.875), (0.875, 0.875), (0.875, 0.75), (0.9375, 0.75), (0.9375, 0.875), (0.8125, 0.875), (0.8125, 0.75), (0.875, 0.75), (0.875, 0.875), (0.75, 0.875), (0.75, 0.75), (0.8125, 0.75), (0.8125, 0.875), (0.6875, 0.875), (0.6875, 0.75), (0.75, 0.75), (0.75, 0.875), (0.625, 0.875), (0.625, 0.75), (0.6875, 0.75), (0.6875, 0.875), (0.5625, 0.875), (0.5625, 0.75), (0.625, 0.75), (0.625, 0.875), (0.5, 0.875), (0.5, 0.75), (0.5625, 0.75), (0.5625, 0.875), (0.4375, 0.875), (0.4375, 0.75), (0.5, 0.75), (0.5, 0.875), (0.375, 0.875), (0.375, 0.75), (0.4375, 0.75), (0.4375, 0.875), (0.3125, 0.875), (0.3125, 0.75), (0.375, 0.75), (0.375, 0.875), (0.25, 0.875), (0.25, 0.75), (0.3125, 0.75), (0.3125, 0.875), (0.1875, 0.875), (0.1875, 0.75), (0.25, 0.75), (0.25, 0.875), (0.125, 0.875), (0.125, 0.75), (0.1875, 0.75), (0.1875, 0.875), (0.0625, 0.875), (0.0625, 0.75), (0.125, 0.75), (0.125, 0.875), (0, 0.875), (0, 0.75), (0.0625, 0.75), (0.0625, 0.875), (0.9375, 0.75), (0.9375, 0.625), (1, 0.625), (1, 0.75), (0.875, 0.75), (0.875, 0.625), (0.9375, 0.625), (0.9375, 0.75), (0.8125, 0.75), (0.8125, 0.625), (0.875, 0.625), (0.875, 0.75), (0.75, 0.75), (0.75, 0.625), (0.8125, 0.625), (0.8125, 0.75), (0.6875, 0.75), (0.6875, 0.625), (0.75, 0.625), (0.75, 0.75), (0.625, 0.75), (0.625, 0.625), (0.6875, 0.625), (0.6875, 0.75), (0.5625, 0.75), (0.5625, 0.625), (0.625, 0.625), (0.625, 0.75), (0.5, 0.75), (0.5, 0.625), (0.5625, 0.625), (0.5625, 0.75), (0.4375, 0.75), (0.4375, 0.625), (0.5, 0.625), (0.5, 0.75), (0.375, 0.75), (0.375, 0.625), (0.4375, 0.625), (0.4375, 0.75), (0.3125, 0.75), (0.3125, 0.625), (0.375, 0.625), (0.375, 0.75), (0.25, 0.75), (0.25, 0.625), (0.3125, 0.625), (0.3125, 0.75), (0.1875, 0.75), (0.1875, 0.625), (0.25, 0.625), (0.25, 0.75), (0.125, 0.75), (0.125, 0.625), (0.1875, 0.625), (0.1875, 0.75), (0.0625, 0.75), (0.0625, 0.625), (0.125, 0.625), (0.125, 0.75), (0, 0.75), (0, 0.625), (0.0625, 0.625), (0.0625, 0.75), (0.9375, 0.625), (0.9375, 0.5), (1, 0.5), (1, 0.625), (0.875, 0.625), (0.875, 0.5), (0.9375, 0.5), (0.9375, 0.625), (0.8125, 0.625), (0.8125, 0.5), (0.875, 0.5), (0.875, 0.625), (0.75, 0.625), (0.75, 0.5), (0.8125, 0.5), (0.8125, 0.625), (0.6875, 0.625), (0.6875, 0.5), (0.75, 0.5), (0.75, 0.625), (0.625, 0.625), (0.625, 0.5), (0.6875, 0.5), (0.6875, 0.625), (0.5625, 0.625), (0.5625, 0.5), (0.625, 0.5), (0.625, 0.625), (0.5, 0.625), (0.5, 0.5), (0.5625, 0.5), (0.5625, 0.625), (0.4375, 0.625), (0.4375, 0.5), (0.5, 0.5), (0.5, 0.625), (0.375, 0.625), (0.375, 0.5), (0.4375, 0.5), (0.4375, 0.625), (0.3125, 0.625), (0.3125, 0.5), (0.375, 0.5), (0.375, 0.625), (0.25, 0.625), (0.25, 0.5), (0.3125, 0.5), (0.3125, 0.625), (0.1875, 0.625), (0.1875, 0.5), (0.25, 0.5), (0.25, 0.625), (0.125, 0.625), (0.125, 0.5), (0.1875, 0.5), (0.1875, 0.625), (0.0625, 0.625), (0.0625, 0.5), (0.125, 0.5), (0.125, 0.625), (0, 0.625), (0, 0.5), (0.0625, 0.5), (0.0625, 0.625), (0.9375, 0.5), (0.9375, 0.375), (1, 0.375), (1, 0.5), (0.875, 0.5), (0.875, 0.375), (0.9375, 0.375), (0.9375, 0.5), (0.8125, 0.5), (0.8125, 0.375), (0.875, 0.375), (0.875, 0.5), (0.75, 0.5), (0.75, 0.375), (0.8125, 0.375), (0.8125, 0.5), (0.6875, 0.5), (0.6875, 0.375), (0.75, 0.375), (0.75, 0.5), (0.625, 0.5), (0.625, 0.375), (0.6875, 0.375), (0.6875, 0.5), (0.5625, 0.5), (0.5625, 0.375), (0.625, 0.375), (0.625, 0.5), (0.5, 0.5), (0.5, 0.375), (0.5625, 0.375), (0.5625, 0.5), (0.4375, 0.5), (0.4375, 0.375), (0.5, 0.375), (0.5, 0.5), (0.375, 0.5), (0.375, 0.375), (0.4375, 0.375), (0.4375, 0.5), (0.3125, 0.5), (0.3125, 0.375), (0.375, 0.375), (0.375, 0.5), (0.25, 0.5), (0.25, 0.375), (0.3125, 0.375), (0.3125, 0.5), (0.1875, 0.5), (0.1875, 0.375), (0.25, 0.375), (0.25, 0.5), (0.125, 0.5), (0.125, 0.375), (0.1875, 0.375), (0.1875, 0.5), (0.0625, 0.5), (0.0625, 0.375), (0.125, 0.375), (0.125, 0.5), (0, 0.5), (0, 0.375), (0.0625, 0.375), (0.0625, 0.5), (0.9375, 0.375), (0.9375, 0.25), (1, 0.25), (1, 0.375), (0.875, 0.375), (0.875, 0.25), (0.9375, 0.25), (0.9375, 0.375), (0.8125, 0.375), (0.8125, 0.25), (0.875, 0.25), (0.875, 0.375), (0.75, 0.375), (0.75, 0.25), (0.8125, 0.25), (0.8125, 0.375), (0.6875, 0.375), (0.6875, 0.25), (0.75, 0.25), (0.75, 0.375), (0.625, 0.375), (0.625, 0.25), (0.6875, 0.25), (0.6875, 0.375), (0.5625, 0.375), (0.5625, 0.25), (0.625, 0.25), (0.625, 0.375), (0.5, 0.375), (0.5, 0.25), (0.5625, 0.25), (0.5625, 0.375), (0.4375, 0.375), (0.4375, 0.25), (0.5, 0.25), (0.5, 0.375), (0.375, 0.375), (0.375, 0.25), (0.4375, 0.25), (0.4375, 0.375), (0.3125, 0.375), (0.3125, 0.25), (0.375, 0.25), (0.375, 0.375), (0.25, 0.375), (0.25, 0.25), (0.3125, 0.25), (0.3125, 0.375), (0.1875, 0.375), (0.1875, 0.25), (0.25, 0.25), (0.25, 0.375), (0.125, 0.375), (0.125, 0.25), (0.1875, 0.25), (0.1875, 0.375), (0.0625, 0.375), (0.0625, 0.25), (0.125, 0.25), (0.125, 0.375), (0, 0.375), (0, 0.25), (0.0625, 0.25), (0.0625, 0.375), (0.9375, 0.25), (0.9375, 0.125), (1, 0.125), (1, 0.25), (0.875, 0.25), (0.875, 0.125), (0.9375, 0.125), (0.9375, 0.25), (0.8125, 0.25), (0.8125, 0.125), (0.875, 0.125), (0.875, 0.25), (0.75, 0.25), (0.75, 0.125), (0.8125, 0.125), (0.8125, 0.25), (0.6875, 0.25), (0.6875, 0.125), (0.75, 0.125), (0.75, 0.25), (0.625, 0.25), (0.625, 0.125), (0.6875, 0.125), (0.6875, 0.25), (0.5625, 0.25), (0.5625, 0.125), (0.625, 0.125), (0.625, 0.25), (0.5, 0.25), (0.5, 0.125), (0.5625, 0.125), (0.5625, 0.25), (0.4375, 0.25), (0.4375, 0.125), (0.5, 0.125), (0.5, 0.25), (0.375, 0.25), (0.375, 0.125), (0.4375, 0.125), (0.4375, 0.25), (0.3125, 0.25), (0.3125, 0.125), (0.375, 0.125), (0.375, 0.25), (0.25, 0.25), (0.25, 0.125), (0.3125, 0.125), (0.3125, 0.25), (0.1875, 0.25), (0.1875, 0.125), (0.25, 0.125), (0.25, 0.25), (0.125, 0.25), (0.125, 0.125), (0.1875, 0.125), (0.1875, 0.25), (0.0625, 0.25), (0.0625, 0.125), (0.125, 0.125), (0.125, 0.25), (0, 0.25), (0, 0.125), (0.0625, 0.125), (0.0625, 0.25), (0.9375, 0.125), (0.96875, 0), (1, 0.125), (0.875, 0.125), (0.90625, 0), (0.9375, 0.125), (0.8125, 0.125), (0.84375, 0), (0.875, 0.125), (0.75, 0.125), (0.78125, 0), (0.8125, 0.125), (0.6875, 0.125), (0.71875, 0), (0.75, 0.125), (0.625, 0.125), (0.65625, 0), (0.6875, 0.125), (0.5625, 0.125), (0.59375, 0), (0.625, 0.125), (0.5, 0.125), (0.53125, 0), (0.5625, 0.125), (0.4375, 0.125), (0.46875, 0), (0.5, 0.125), (0.375, 0.125), (0.40625, 0), (0.4375, 0.125), (0.3125, 0.125), (0.34375, 0), (0.375, 0.125), (0.25, 0.125), (0.28125, 0), (0.3125, 0.125), (0.1875, 0.125), (0.21875, 0), (0.25, 0.125), (0.125, 0.125), (0.15625, 0), (0.1875, 0.125), (0.0625, 0.125), (0.09375, 0), (0.125, 0.125), (0, 0.125), (0.03125, 0), (0.0625, 0.125), (0.9375, 0.875), (1, 0.875), (0.96875, 1), (0.875, 0.875), (0.9375, 0.875), (0.90625, 1), (0.8125, 0.875), (0.875, 0.875), (0.84375, 1), (0.75, 0.875), (0.8125, 0.875), (0.78125, 1), (0.6875, 0.875), (0.75, 0.875), (0.71875, 1), (0.625, 0.875), (0.6875, 0.875), (0.65625, 1), (0.5625, 0.875), (0.625, 0.875), (0.59375, 1), (0.5, 0.875), (0.5625, 0.875), (0.53125, 1), (0.4375, 0.875), (0.5, 0.875), (0.46875, 1), (0.375, 0.875), (0.4375, 0.875), (0.40625, 1), (0.3125, 0.875), (0.375, 0.875), (0.34375, 1), (0.25, 0.875), (0.3125, 0.875), (0.28125, 1), (0.1875, 0.875), (0.25, 0.875), (0.21875, 1), (0.125, 0.875), (0.1875, 0.875), (0.15625, 1), (0.0625, 0.875), (0.125, 0.875), (0.09375, 1), (0, 0.875), (0.0625, 0.875), (0.03125, 1), (0.9375, 0.875), (0.9375, 0.75), (1, 0.75), (1, 0.875), (0.875, 0.875), (0.875, 0.75), (0.9375, 0.75), (0.9375, 0.875), (0.8125, 0.875), (0.8125, 0.75), (0.875, 0.75), (0.875, 0.875), (0.75, 0.875), (0.75, 0.75), (0.8125, 0.75), (0.8125, 0.875), (0.6875, 0.875), (0.6875, 0.75), (0.75, 0.75), (0.75, 0.875), (0.625, 0.875), (0.625, 0.75), (0.6875, 0.75), (0.6875, 0.875), (0.5625, 0.875), (0.5625, 0.75), (0.625, 0.75), (0.625, 0.875), (0.5, 0.875), (0.5, 0.75), (0.5625, 0.75), (0.5625, 0.875), (0.4375, 0.875), (0.4375, 0.75), (0.5, 0.75), (0.5, 0.875), (0.375, 0.875), (0.375, 0.75), (0.4375, 0.75), (0.4375, 0.875), (0.3125, 0.875), (0.3125, 0.75), (0.375, 0.75), (0.375, 0.875), (0.25, 0.875), (0.25, 0.75), (0.3125, 0.75), (0.3125, 0.875), (0.1875, 0.875), (0.1875, 0.75), (0.25, 0.75), (0.25, 0.875), (0.125, 0.875), (0.125, 0.75), (0.1875, 0.75), (0.1875, 0.875), (0.0625, 0.875), (0.0625, 0.75), (0.125, 0.75), (0.125, 0.875), (0, 0.875), (0, 0.75), (0.0625, 0.75), (0.0625, 0.875), (0.9375, 0.75), (0.9375, 0.625), (1, 0.625), (1, 0.75), (0.875, 0.75), (0.875, 0.625), (0.9375, 0.625), (0.9375, 0.75), (0.8125, 0.75), (0.8125, 0.625), (0.875, 0.625), (0.875, 0.75), (0.75, 0.75), (0.75, 0.625), (0.8125, 0.625), (0.8125, 0.75), (0.6875, 0.75), (0.6875, 0.625), (0.75, 0.625), (0.75, 0.75), (0.625, 0.75), (0.625, 0.625), (0.6875, 0.625), (0.6875, 0.75), (0.5625, 0.75), (0.5625, 0.625), (0.625, 0.625), (0.625, 0.75), (0.5, 0.75), (0.5, 0.625), (0.5625, 0.625), (0.5625, 0.75), (0.4375, 0.75), (0.4375, 0.625), (0.5, 0.625), (0.5, 0.75), (0.375, 0.75), (0.375, 0.625), (0.4375, 0.625), (0.4375, 0.75), (0.3125, 0.75), (0.3125, 0.625), (0.375, 0.625), (0.375, 0.75), (0.25, 0.75), (0.25, 0.625), (0.3125, 0.625), (0.3125, 0.75), (0.1875, 0.75), (0.1875, 0.625), (0.25, 0.625), (0.25, 0.75), (0.125, 0.75), (0.125, 0.625), (0.1875, 0.625), (0.1875, 0.75), (0.0625, 0.75), (0.0625, 0.625), (0.125, 0.625), (0.125, 0.75), (0, 0.75), (0, 0.625), (0.0625, 0.625), (0.0625, 0.75), (0.9375, 0.625), (0.9375, 0.5), (1, 0.5), (1, 0.625), (0.875, 0.625), (0.875, 0.5), (0.9375, 0.5), (0.9375, 0.625), (0.8125, 0.625), (0.8125, 0.5), (0.875, 0.5), (0.875, 0.625), (0.75, 0.625), (0.75, 0.5), (0.8125, 0.5), (0.8125, 0.625), (0.6875, 0.625), (0.6875, 0.5), (0.75, 0.5), (0.75, 0.625), (0.625, 0.625), (0.625, 0.5), (0.6875, 0.5), (0.6875, 0.625), (0.5625, 0.625), (0.5625, 0.5), (0.625, 0.5), (0.625, 0.625), (0.5, 0.625), (0.5, 0.5), (0.5625, 0.5), (0.5625, 0.625), (0.4375, 0.625), (0.4375, 0.5), (0.5, 0.5), (0.5, 0.625), (0.375, 0.625), (0.375, 0.5), (0.4375, 0.5), (0.4375, 0.625), (0.3125, 0.625), (0.3125, 0.5), (0.375, 0.5), (0.375, 0.625), (0.25, 0.625), (0.25, 0.5), (0.3125, 0.5), (0.3125, 0.625), (0.1875, 0.625), (0.1875, 0.5), (0.25, 0.5), (0.25, 0.625), (0.125, 0.625), (0.125, 0.5), (0.1875, 0.5), (0.1875, 0.625), (0.0625, 0.625), (0.0625, 0.5), (0.125, 0.5), (0.125, 0.625), (0, 0.625), (0, 0.5), (0.0625, 0.5), (0.0625, 0.625), (0.9375, 0.5), (0.9375, 0.375), (1, 0.375), (1, 0.5), (0.875, 0.5), (0.875, 0.375), (0.9375, 0.375), (0.9375, 0.5), (0.8125, 0.5), (0.8125, 0.375), (0.875, 0.375), (0.875, 0.5), (0.75, 0.5), (0.75, 0.375), (0.8125, 0.375), (0.8125, 0.5), (0.6875, 0.5), (0.6875, 0.375), (0.75, 0.375), (0.75, 0.5), (0.625, 0.5), (0.625, 0.375), (0.6875, 0.375), (0.6875, 0.5), (0.5625, 0.5), (0.5625, 0.375), (0.625, 0.375), (0.625, 0.5), (0.5, 0.5), (0.5, 0.375), (0.5625, 0.375), (0.5625, 0.5), (0.4375, 0.5), (0.4375, 0.375), (0.5, 0.375), (0.5, 0.5), (0.375, 0.5), (0.375, 0.375), (0.4375, 0.375), (0.4375, 0.5), (0.3125, 0.5), (0.3125, 0.375), (0.375, 0.375), (0.375, 0.5), (0.25, 0.5), (0.25, 0.375), (0.3125, 0.375), (0.3125, 0.5), (0.1875, 0.5), (0.1875, 0.375), (0.25, 0.375), (0.25, 0.5), (0.125, 0.5), (0.125, 0.375), (0.1875, 0.375), (0.1875, 0.5), (0.0625, 0.5), (0.0625, 0.375), (0.125, 0.375), (0.125, 0.5), (0, 0.5), (0, 0.375), (0.0625, 0.375), (0.0625, 0.5), (0.9375, 0.375), (0.9375, 0.25), (1, 0.25), (1, 0.375), (0.875, 0.375), (0.875, 0.25), (0.9375, 0.25), (0.9375, 0.375), (0.8125, 0.375), (0.8125, 0.25), (0.875, 0.25), (0.875, 0.375), (0.75, 0.375), (0.75, 0.25), (0.8125, 0.25), (0.8125, 0.375), (0.6875, 0.375), (0.6875, 0.25), (0.75, 0.25), (0.75, 0.375), (0.625, 0.375), (0.625, 0.25), (0.6875, 0.25), (0.6875, 0.375), (0.5625, 0.375), (0.5625, 0.25), (0.625, 0.25), (0.625, 0.375), (0.5, 0.375), (0.5, 0.25), (0.5625, 0.25), (0.5625, 0.375), (0.4375, 0.375), (0.4375, 0.25), (0.5, 0.25), (0.5, 0.375), (0.375, 0.375), (0.375, 0.25), (0.4375, 0.25), (0.4375, 0.375), (0.3125, 0.375), (0.3125, 0.25), (0.375, 0.25), (0.375, 0.375), (0.25, 0.375), (0.25, 0.25), (0.3125, 0.25), (0.3125, 0.375), (0.1875, 0.375), (0.1875, 0.25), (0.25, 0.25), (0.25, 0.375), (0.125, 0.375), (0.125, 0.25), (0.1875, 0.25), (0.1875, 0.375), (0.0625, 0.375), (0.0625, 0.25), (0.125, 0.25), (0.125, 0.375), (0, 0.375), (0, 0.25), (0.0625, 0.25), (0.0625, 0.375), (0.9375, 0.25), (0.9375, 0.125), (1, 0.125), (1, 0.25), (0.875, 0.25), (0.875, 0.125), (0.9375, 0.125), (0.9375, 0.25), (0.8125, 0.25), (0.8125, 0.125), (0.875, 0.125), (0.875, 0.25), (0.75, 0.25), (0.75, 0.125), (0.8125, 0.125), (0.8125, 0.25), (0.6875, 0.25), (0.6875, 0.125), (0.75, 0.125), (0.75, 0.25), (0.625, 0.25), (0.625, 0.125), (0.6875, 0.125), (0.6875, 0.25), (0.5625, 0.25), (0.5625, 0.125), (0.625, 0.125), (0.625, 0.25), (0.5, 0.25), (0.5, 0.125), (0.5625, 0.125), (0.5625, 0.25), (0.4375, 0.25), (0.4375, 0.125), (0.5, 0.125), (0.5, 0.25), (0.375, 0.25), (0.375, 0.125), (0.4375, 0.125), (0.4375, 0.25), (0.3125, 0.25), (0.3125, 0.125), (0.375, 0.125), (0.375, 0.25), (0.25, 0.25), (0.25, 0.125), (0.3125, 0.125), (0.3125, 0.25), (0.1875, 0.25), (0.1875, 0.125), (0.25, 0.125), (0.25, 0.25), (0.125, 0.25), (0.125, 0.125), (0.1875, 0.125), (0.1875, 0.25), (0.0625, 0.25), (0.0625, 0.125), (0.125, 0.125), (0.125, 0.25), (0, 0.25), (0, 0.125), (0.0625, 0.125), (0.0625, 0.25), (0.9375, 0.125), (0.96875, 0), (1, 0.125), (0.875, 0.125), (0.90625, 0), (0.9375, 0.125), (0.8125, 0.125), (0.84375, 0), (0.875, 0.125), (0.75, 0.125), (0.78125, 0), (0.8125, 0.125), (0.6875, 0.125), (0.71875, 0), (0.75, 0.125), (0.625, 0.125), (0.65625, 0), (0.6875, 0.125), (0.5625, 0.125), (0.59375, 0), (0.625, 0.125), (0.5, 0.125), (0.53125, 0), (0.5625, 0.125), (0.4375, 0.125), (0.46875, 0), (0.5, 0.125), (0.375, 0.125), (0.40625, 0), (0.4375, 0.125), (0.3125, 0.125), (0.34375, 0), (0.375, 0.125), (0.25, 0.125), (0.28125, 0), (0.3125, 0.125), (0.1875, 0.125), (0.21875, 0), (0.25, 0.125), (0.125, 0.125), (0.15625, 0), (0.1875, 0.125), (0.0625, 0.125), (0.09375, 0), (0.125, 0.125), (0, 0.125), (0.03125, 0), (0.0625, 0.125), (0.9375, 0.875), (1, 0.875), (0.96875, 1), (0.875, 0.875), (0.9375, 0.875), (0.90625, 1), (0.8125, 0.875), (0.875, 0.875), (0.84375, 1), (0.75, 0.875), (0.8125, 0.875), (0.78125, 1), (0.6875, 0.875), (0.75, 0.875), (0.71875, 1), (0.625, 0.875), (0.6875, 0.875), (0.65625, 1), (0.5625, 0.875), (0.625, 0.875), (0.59375, 1), (0.5, 0.875), (0.5625, 0.875), (0.53125, 1), (0.4375, 0.875), (0.5, 0.875), (0.46875, 1), (0.375, 0.875), (0.4375, 0.875), (0.40625, 1), (0.3125, 0.875), (0.375, 0.875), (0.34375, 1), (0.25, 0.875), (0.3125, 0.875), (0.28125, 1), (0.1875, 0.875), (0.25, 0.875), (0.21875, 1), (0.125, 0.875), (0.1875, 0.875), (0.15625, 1), (0.0625, 0.875), (0.125, 0.875), (0.09375, 1), (0, 0.875), (0.0625, 0.875), (0.03125, 1), (0.9375, 0.875), (0.9375, 0.75), (1, 0.75), (1, 0.875), (0.875, 0.875), (0.875, 0.75), (0.9375, 0.75), (0.9375, 0.875), (0.8125, 0.875), (0.8125, 0.75), (0.875, 0.75), (0.875, 0.875), (0.75, 0.875), (0.75, 0.75), (0.8125, 0.75), (0.8125, 0.875), (0.6875, 0.875), (0.6875, 0.75), (0.75, 0.75), (0.75, 0.875), (0.625, 0.875), (0.625, 0.75), (0.6875, 0.75), (0.6875, 0.875), (0.5625, 0.875), (0.5625, 0.75), (0.625, 0.75), (0.625, 0.875), (0.5, 0.875), (0.5, 0.75), (0.5625, 0.75), (0.5625, 0.875), (0.4375, 0.875), (0.4375, 0.75), (0.5, 0.75), (0.5, 0.875), (0.375, 0.875), (0.375, 0.75), (0.4375, 0.75), (0.4375, 0.875), (0.3125, 0.875), (0.3125, 0.75), (0.375, 0.75), (0.375, 0.875), (0.25, 0.875), (0.25, 0.75), (0.3125, 0.75), (0.3125, 0.875), (0.1875, 0.875), (0.1875, 0.75), (0.25, 0.75), (0.25, 0.875), (0.125, 0.875), (0.125, 0.75), (0.1875, 0.75), (0.1875, 0.875), (0.0625, 0.875), (0.0625, 0.75), (0.125, 0.75), (0.125, 0.875), (0, 0.875), (0, 0.75), (0.0625, 0.75), (0.0625, 0.875), (0.9375, 0.75), (0.9375, 0.625), (1, 0.625), (1, 0.75), (0.875, 0.75), (0.875, 0.625), (0.9375, 0.625), (0.9375, 0.75), (0.8125, 0.75), (0.8125, 0.625), (0.875, 0.625), (0.875, 0.75), (0.75, 0.75), (0.75, 0.625), (0.8125, 0.625), (0.8125, 0.75), (0.6875, 0.75), (0.6875, 0.625), (0.75, 0.625), (0.75, 0.75), (0.625, 0.75), (0.625, 0.625), (0.6875, 0.625), (0.6875, 0.75), (0.5625, 0.75), (0.5625, 0.625), (0.625, 0.625), (0.625, 0.75), (0.5, 0.75), (0.5, 0.625), (0.5625, 0.625), (0.5625, 0.75), (0.4375, 0.75), (0.4375, 0.625), (0.5, 0.625), (0.5, 0.75), (0.375, 0.75), (0.375, 0.625), (0.4375, 0.625), (0.4375, 0.75), (0.3125, 0.75), (0.3125, 0.625), (0.375, 0.625), (0.375, 0.75), (0.25, 0.75), (0.25, 0.625), (0.3125, 0.625), (0.3125, 0.75), (0.1875, 0.75), (0.1875, 0.625), (0.25, 0.625), (0.25, 0.75), (0.125, 0.75), (0.125, 0.625), (0.1875, 0.625), (0.1875, 0.75), (0.0625, 0.75), (0.0625, 0.625), (0.125, 0.625), (0.125, 0.75), (0, 0.75), (0, 0.625), (0.0625, 0.625), (0.0625, 0.75), (0.9375, 0.625), (0.9375, 0.5), (1, 0.5), (1, 0.625), (0.875, 0.625), (0.875, 0.5), (0.9375, 0.5), (0.9375, 0.625), (0.8125, 0.625), (0.8125, 0.5), (0.875, 0.5), (0.875, 0.625), (0.75, 0.625), (0.75, 0.5), (0.8125, 0.5), (0.8125, 0.625), (0.6875, 0.625), (0.6875, 0.5), (0.75, 0.5), (0.75, 0.625), (0.625, 0.625), (0.625, 0.5), (0.6875, 0.5), (0.6875, 0.625), (0.5625, 0.625), (0.5625, 0.5), (0.625, 0.5), (0.625, 0.625), (0.5, 0.625), (0.5, 0.5), (0.5625, 0.5), (0.5625, 0.625), (0.4375, 0.625), (0.4375, 0.5), (0.5, 0.5), (0.5, 0.625), (0.375, 0.625), (0.375, 0.5), (0.4375, 0.5), (0.4375, 0.625), (0.3125, 0.625), (0.3125, 0.5), (0.375, 0.5), (0.375, 0.625), (0.25, 0.625), (0.25, 0.5), (0.3125, 0.5), (0.3125, 0.625), (0.1875, 0.625), (0.1875, 0.5), (0.25, 0.5), (0.25, 0.625), (0.125, 0.625), (0.125, 0.5), (0.1875, 0.5), (0.1875, 0.625), (0.0625, 0.625), (0.0625, 0.5), (0.125, 0.5), (0.125, 0.625), (0, 0.625), (0, 0.5), (0.0625, 0.5), (0.0625, 0.625), (0.9375, 0.5), (0.9375, 0.375), (1, 0.375), (1, 0.5), (0.875, 0.5), (0.875, 0.375), (0.9375, 0.375), (0.9375, 0.5), (0.8125, 0.5), (0.8125, 0.375), (0.875, 0.375), (0.875, 0.5), (0.75, 0.5), (0.75, 0.375), (0.8125, 0.375), (0.8125, 0.5), (0.6875, 0.5), (0.6875, 0.375), (0.75, 0.375), (0.75, 0.5), (0.625, 0.5), (0.625, 0.375), (0.6875, 0.375), (0.6875, 0.5), (0.5625, 0.5), (0.5625, 0.375), (0.625, 0.375), (0.625, 0.5), (0.5, 0.5), (0.5, 0.375), (0.5625, 0.375), (0.5625, 0.5), (0.4375, 0.5), (0.4375, 0.375), (0.5, 0.375), (0.5, 0.5), (0.375, 0.5), (0.375, 0.375), (0.4375, 0.375), (0.4375, 0.5), (0.3125, 0.5), (0.3125, 0.375), (0.375, 0.375), (0.375, 0.5), (0.25, 0.5), (0.25, 0.375), (0.3125, 0.375), (0.3125, 0.5), (0.1875, 0.5), (0.1875, 0.375), (0.25, 0.375), (0.25, 0.5), (0.125, 0.5), (0.125, 0.375), (0.1875, 0.375), (0.1875, 0.5), (0.0625, 0.5), (0.0625, 0.375), (0.125, 0.375), (0.125, 0.5), (0, 0.5), (0, 0.375), (0.0625, 0.375), (0.0625, 0.5), (0.9375, 0.375), (0.9375, 0.25), (1, 0.25), (1, 0.375), (0.875, 0.375), (0.875, 0.25), (0.9375, 0.25), (0.9375, 0.375), (0.8125, 0.375), (0.8125, 0.25), (0.875, 0.25), (0.875, 0.375), (0.75, 0.375), (0.75, 0.25), (0.8125, 0.25), (0.8125, 0.375), (0.6875, 0.375), (0.6875, 0.25), (0.75, 0.25), (0.75, 0.375), (0.625, 0.375), (0.625, 0.25), (0.6875, 0.25), (0.6875, 0.375), (0.5625, 0.375), (0.5625, 0.25), (0.625, 0.25), (0.625, 0.375), (0.5, 0.375), (0.5, 0.25), (0.5625, 0.25), (0.5625, 0.375), (0.4375, 0.375), (0.4375, 0.25), (0.5, 0.25), (0.5, 0.375), (0.375, 0.375), (0.375, 0.25), (0.4375, 0.25), (0.4375, 0.375), (0.3125, 0.375), (0.3125, 0.25), (0.375, 0.25), (0.375, 0.375), (0.25, 0.375), (0.25, 0.25), (0.3125, 0.25), (0.3125, 0.375), (0.1875, 0.375), (0.1875, 0.25), (0.25, 0.25), (0.25, 0.375), (0.125, 0.375), (0.125, 0.25), (0.1875, 0.25), (0.1875, 0.375), (0.0625, 0.375), (0.0625, 0.25), (0.125, 0.25), (0.125, 0.375), (0, 0.375), (0, 0.25), (0.0625, 0.25), (0.0625, 0.375), (0.9375, 0.25), (0.9375, 0.125), (1, 0.125), (1, 0.25), (0.875, 0.25), (0.875, 0.125), (0.9375, 0.125), (0.9375, 0.25), (0.8125, 0.25), (0.8125, 0.125), (0.875, 0.125), (0.875, 0.25), (0.75, 0.25), (0.75, 0.125), (0.8125, 0.125), (0.8125, 0.25), (0.6875, 0.25), (0.6875, 0.125), (0.75, 0.125), (0.75, 0.25), (0.625, 0.25), (0.625, 0.125), (0.6875, 0.125), (0.6875, 0.25), (0.5625, 0.25), (0.5625, 0.125), (0.625, 0.125), (0.625, 0.25), (0.5, 0.25), (0.5, 0.125), (0.5625, 0.125), (0.5625, 0.25), (0.4375, 0.25), (0.4375, 0.125), (0.5, 0.125), (0.5, 0.25), (0.375, 0.25), (0.375, 0.125), (0.4375, 0.125), (0.4375, 0.25), (0.3125, 0.25), (0.3125, 0.125), (0.375, 0.125), (0.375, 0.25), (0.25, 0.25), (0.25, 0.125), (0.3125, 0.125), (0.3125, 0.25), (0.1875, 0.25), (0.1875, 0.125), (0.25, 0.125), (0.25, 0.25), (0.125, 0.25), (0.125, 0.125), (0.1875, 0.125), (0.1875, 0.25), (0.0625, 0.25), (0.0625, 0.125), (0.125, 0.125), (0.125, 0.25), (0, 0.25), (0, 0.125), (0.0625, 0.125), (0.0625, 0.25), (0.9375, 0.125), (0.96875, 0), (1, 0.125), (0.875, 0.125), (0.90625, 0), (0.9375, 0.125), (0.8125, 0.125), (0.84375, 0), (0.875, 0.125), (0.75, 0.125), (0.78125, 0), (0.8125, 0.125), (0.6875, 0.125), (0.71875, 0), (0.75, 0.125), (0.625, 0.125), (0.65625, 0), (0.6875, 0.125), (0.5625, 0.125), (0.59375, 0), (0.625, 0.125), (0.5, 0.125), (0.53125, 0), (0.5625, 0.125), (0.4375, 0.125), (0.46875, 0), (0.5, 0.125), (0.375, 0.125), (0.40625, 0), (0.4375, 0.125), (0.3125, 0.125), (0.34375, 0), (0.375, 0.125), (0.25, 0.125), (0.28125, 0), (0.3125, 0.125), (0.1875, 0.125), (0.21875, 0), (0.25, 0.125), (0.125, 0.125), (0.15625, 0), (0.1875, 0.125), (0.0625, 0.125), (0.09375, 0), (0.125, 0.125), (0, 0.125), (0.03125, 0), (0.0625, 0.125), (0.9375, 0.875), (1, 0.875), (0.96875, 1), (0.875, 0.875), (0.9375, 0.875), (0.90625, 1), (0.8125, 0.875), (0.875, 0.875), (0.84375, 1), (0.75, 0.875), (0.8125, 0.875), (0.78125, 1), (0.6875, 0.875), (0.75, 0.875), (0.71875, 1), (0.625, 0.875), (0.6875, 0.875), (0.65625, 1), (0.5625, 0.875), (0.625, 0.875), (0.59375, 1), (0.5, 0.875), (0.5625, 0.875), (0.53125, 1), (0.4375, 0.875), (0.5, 0.875), (0.46875, 1), (0.375, 0.875), (0.4375, 0.875), (0.40625, 1), (0.3125, 0.875), (0.375, 0.875), (0.34375, 1), (0.25, 0.875), (0.3125, 0.875), (0.28125, 1), (0.1875, 0.875), (0.25, 0.875), (0.21875, 1), (0.125, 0.875), (0.1875, 0.875), (0.15625, 1), (0.0625, 0.875), (0.125, 0.875), (0.09375, 1), (0, 0.875), (0.0625, 0.875), (0.03125, 1), (0.9375, 0.875), (0.9375, 0.75), (1, 0.75), (1, 0.875), (0.875, 0.875), (0.875, 0.75), (0.9375, 0.75), (0.9375, 0.875), (0.8125, 0.875), (0.8125, 0.75), (0.875, 0.75), (0.875, 0.875), (0.75, 0.875), (0.75, 0.75), (0.8125, 0.75), (0.8125, 0.875), (0.6875, 0.875), (0.6875, 0.75), (0.75, 0.75), (0.75, 0.875), (0.625, 0.875), (0.625, 0.75), (0.6875, 0.75), (0.6875, 0.875), (0.5625, 0.875), (0.5625, 0.75), (0.625, 0.75), (0.625, 0.875), (0.5, 0.875), (0.5, 0.75), (0.5625, 0.75), (0.5625, 0.875), (0.4375, 0.875), (0.4375, 0.75), (0.5, 0.75), (0.5, 0.875), (0.375, 0.875), (0.375, 0.75), (0.4375, 0.75), (0.4375, 0.875), (0.3125, 0.875), (0.3125, 0.75), (0.375, 0.75), (0.375, 0.875), (0.25, 0.875), (0.25, 0.75), (0.3125, 0.75), (0.3125, 0.875), (0.1875, 0.875), (0.1875, 0.75), (0.25, 0.75), (0.25, 0.875), (0.125, 0.875), (0.125, 0.75), (0.1875, 0.75), (0.1875, 0.875), (0.0625, 0.875), (0.0625, 0.75), (0.125, 0.75), (0.125, 0.875), (0, 0.875), (0, 0.75), (0.0625, 0.75), (0.0625, 0.875), (0.9375, 0.75), (0.9375, 0.625), (1, 0.625), (1, 0.75), (0.875, 0.75), (0.875, 0.625), (0.9375, 0.625), (0.9375, 0.75), (0.8125, 0.75), (0.8125, 0.625), (0.875, 0.625), (0.875, 0.75), (0.75, 0.75), (0.75, 0.625), (0.8125, 0.625), (0.8125, 0.75), (0.6875, 0.75), (0.6875, 0.625), (0.75, 0.625), (0.75, 0.75), (0.625, 0.75), (0.625, 0.625), (0.6875, 0.625), (0.6875, 0.75), (0.5625, 0.75), (0.5625, 0.625), (0.625, 0.625), (0.625, 0.75), (0.5, 0.75), (0.5, 0.625), (0.5625, 0.625), (0.5625, 0.75), (0.4375, 0.75), (0.4375, 0.625), (0.5, 0.625), (0.5, 0.75), (0.375, 0.75), (0.375, 0.625), (0.4375, 0.625), (0.4375, 0.75), (0.3125, 0.75), (0.3125, 0.625), (0.375, 0.625), (0.375, 0.75), (0.25, 0.75), (0.25, 0.625), (0.3125, 0.625), (0.3125, 0.75), (0.1875, 0.75), (0.1875, 0.625), (0.25, 0.625), (0.25, 0.75), (0.125, 0.75), (0.125, 0.625), (0.1875, 0.625), (0.1875, 0.75), (0.0625, 0.75), (0.0625, 0.625), (0.125, 0.625), (0.125, 0.75), (0, 0.75), (0, 0.625), (0.0625, 0.625), (0.0625, 0.75), (0.9375, 0.625), (0.9375, 0.5), (1, 0.5), (1, 0.625), (0.875, 0.625), (0.875, 0.5), (0.9375, 0.5), (0.9375, 0.625), (0.8125, 0.625), (0.8125, 0.5), (0.875, 0.5), (0.875, 0.625), (0.75, 0.625), (0.75, 0.5), (0.8125, 0.5), (0.8125, 0.625), (0.6875, 0.625), (0.6875, 0.5), (0.75, 0.5), (0.75, 0.625), (0.625, 0.625), (0.625, 0.5), (0.6875, 0.5), (0.6875, 0.625), (0.5625, 0.625), (0.5625, 0.5), (0.625, 0.5), (0.625, 0.625), (0.5, 0.625), (0.5, 0.5), (0.5625, 0.5), (0.5625, 0.625), (0.4375, 0.625), (0.4375, 0.5), (0.5, 0.5), (0.5, 0.625), (0.375, 0.625), (0.375, 0.5), (0.4375, 0.5), (0.4375, 0.625), (0.3125, 0.625), (0.3125, 0.5), (0.375, 0.5), (0.375, 0.625), (0.25, 0.625), (0.25, 0.5), (0.3125, 0.5), (0.3125, 0.625), (0.1875, 0.625), (0.1875, 0.5), (0.25, 0.5), (0.25, 0.625), (0.125, 0.625), (0.125, 0.5), (0.1875, 0.5), (0.1875, 0.625), (0.0625, 0.625), (0.0625, 0.5), (0.125, 0.5), (0.125, 0.625), (0, 0.625), (0, 0.5), (0.0625, 0.5), (0.0625, 0.625), (0.9375, 0.5), (0.9375, 0.375), (1, 0.375), (1, 0.5), (0.875, 0.5), (0.875, 0.375), (0.9375, 0.375), (0.9375, 0.5), (0.8125, 0.5), (0.8125, 0.375), (0.875, 0.375), (0.875, 0.5), (0.75, 0.5), (0.75, 0.375), (0.8125, 0.375), (0.8125, 0.5), (0.6875, 0.5), (0.6875, 0.375), (0.75, 0.375), (0.75, 0.5), (0.625, 0.5), (0.625, 0.375), (0.6875, 0.375), (0.6875, 0.5), (0.5625, 0.5), (0.5625, 0.375), (0.625, 0.375), (0.625, 0.5), (0.5, 0.5), (0.5, 0.375), (0.5625, 0.375), (0.5625, 0.5), (0.4375, 0.5), (0.4375, 0.375), (0.5, 0.375), (0.5, 0.5), (0.375, 0.5), (0.375, 0.375), (0.4375, 0.375), (0.4375, 0.5), (0.3125, 0.5), (0.3125, 0.375), (0.375, 0.375), (0.375, 0.5), (0.25, 0.5), (0.25, 0.375), (0.3125, 0.375), (0.3125, 0.5), (0.1875, 0.5), (0.1875, 0.375), (0.25, 0.375), (0.25, 0.5), (0.125, 0.5), (0.125, 0.375), (0.1875, 0.375), (0.1875, 0.5), (0.0625, 0.5), (0.0625, 0.375), (0.125, 0.375), (0.125, 0.5), (0, 0.5), (0, 0.375), (0.0625, 0.375), (0.0625, 0.5), (0.9375, 0.375), (0.9375, 0.25), (1, 0.25), (1, 0.375), (0.875, 0.375), (0.875, 0.25), (0.9375, 0.25), (0.9375, 0.375), (0.8125, 0.375), (0.8125, 0.25), (0.875, 0.25), (0.875, 0.375), (0.75, 0.375), (0.75, 0.25), (0.8125, 0.25), (0.8125, 0.375), (0.6875, 0.375), (0.6875, 0.25), (0.75, 0.25), (0.75, 0.375), (0.625, 0.375), (0.625, 0.25), (0.6875, 0.25), (0.6875, 0.375), (0.5625, 0.375), (0.5625, 0.25), (0.625, 0.25), (0.625, 0.375), (0.5, 0.375), (0.5, 0.25), (0.5625, 0.25), (0.5625, 0.375), (0.4375, 0.375), (0.4375, 0.25), (0.5, 0.25), (0.5, 0.375), (0.375, 0.375), (0.375, 0.25), (0.4375, 0.25), (0.4375, 0.375), (0.3125, 0.375), (0.3125, 0.25), (0.375, 0.25), (0.375, 0.375), (0.25, 0.375), (0.25, 0.25), (0.3125, 0.25), (0.3125, 0.375), (0.1875, 0.375), (0.1875, 0.25), (0.25, 0.25), (0.25, 0.375), (0.125, 0.375), (0.125, 0.25), (0.1875, 0.25), (0.1875, 0.375), (0.0625, 0.375), (0.0625, 0.25), (0.125, 0.25), (0.125, 0.375), (0, 0.375), (0, 0.25), (0.0625, 0.25), (0.0625, 0.375), (0.9375, 0.25), (0.9375, 0.125), (1, 0.125), (1, 0.25), (0.875, 0.25), (0.875, 0.125), (0.9375, 0.125), (0.9375, 0.25), (0.8125, 0.25), (0.8125, 0.125), (0.875, 0.125), (0.875, 0.25), (0.75, 0.25), (0.75, 0.125), (0.8125, 0.125), (0.8125, 0.25), (0.6875, 0.25), (0.6875, 0.125), (0.75, 0.125), (0.75, 0.25), (0.625, 0.25), (0.625, 0.125), (0.6875, 0.125), (0.6875, 0.25), (0.5625, 0.25), (0.5625, 0.125), (0.625, 0.125), (0.625, 0.25), (0.5, 0.25), (0.5, 0.125), (0.5625, 0.125), (0.5625, 0.25), (0.4375, 0.25), (0.4375, 0.125), (0.5, 0.125), (0.5, 0.25), (0.375, 0.25), (0.375, 0.125), (0.4375, 0.125), (0.4375, 0.25), (0.3125, 0.25), (0.3125, 0.125), (0.375, 0.125), (0.375, 0.25), (0.25, 0.25), (0.25, 0.125), (0.3125, 0.125), (0.3125, 0.25), (0.1875, 0.25), (0.1875, 0.125), (0.25, 0.125), (0.25, 0.25), (0.125, 0.25), (0.125, 0.125), (0.1875, 0.125), (0.1875, 0.25), (0.0625, 0.25), (0.0625, 0.125), (0.125, 0.125), (0.125, 0.25), (0, 0.25), (0, 0.125), (0.0625, 0.125), (0.0625, 0.25), (0.9375, 0.125), (0.96875, 0), (1, 0.125), (0.875, 0.125), (0.90625, 0), (0.9375, 0.125), (0.8125, 0.125), (0.84375, 0), (0.875, 0.125), (0.75, 0.125), (0.78125, 0), (0.8125, 0.125), (0.6875, 0.125), (0.71875, 0), (0.75, 0.125), (0.625, 0.125), (0.65625, 0), (0.6875, 0.125), (0.5625, 0.125), (0.59375, 0), (0.625, 0.125), (0.5, 0.125), (0.53125, 0), (0.5625, 0.125), (0.4375, 0.125), (0.46875, 0), (0.5, 0.125), (0.375, 0.125), (0.40625, 0), (0.4375, 0.125), (0.3125, 0.125), (0.34375, 0), (0.375, 0.125), (0.25, 0.125), (0.28125, 0), (0.3125, 0.125), (0.1875, 0.125), (0.21875, 0), (0.25, 0.125), (0.125, 0.125), (0.15625, 0), (0.1875, 0.125), (0.0625, 0.125), (0.09375, 0), (0.125, 0.125), (0, 0.125), (0.03125, 0), (0.0625, 0.125), (0.9375, 0.875), (1, 0.875), (0.96875, 1), (0.875, 0.875), (0.9375, 0.875), (0.90625, 1), (0.8125, 0.875), (0.875, 0.875), (0.84375, 1), (0.75, 0.875), (0.8125, 0.875), (0.78125, 1), (0.6875, 0.875), (0.75, 0.875), (0.71875, 1), (0.625, 0.875), (0.6875, 0.875), (0.65625, 1), (0.5625, 0.875), (0.625, 0.875), (0.59375, 1), (0.5, 0.875), (0.5625, 0.875), (0.53125, 1), (0.4375, 0.875), (0.5, 0.875), (0.46875, 1), (0.375, 0.875), (0.4375, 0.875), (0.40625, 1), (0.3125, 0.875), (0.375, 0.875), (0.34375, 1), (0.25, 0.875), (0.3125, 0.875), (0.28125, 1), (0.1875, 0.875), (0.25, 0.875), (0.21875, 1), (0.125, 0.875), (0.1875, 0.875), (0.15625, 1), (0.0625, 0.875), (0.125, 0.875), (0.09375, 1), (0, 0.875), (0.0625, 0.875), (0.03125, 1), (0.9375, 0.875), (0.9375, 0.75), (1, 0.75), (1, 0.875), (0.875, 0.875), (0.875, 0.75), (0.9375, 0.75), (0.9375, 0.875), (0.8125, 0.875), (0.8125, 0.75), (0.875, 0.75), (0.875, 0.875), (0.75, 0.875), (0.75, 0.75), (0.8125, 0.75), (0.8125, 0.875), (0.6875, 0.875), (0.6875, 0.75), (0.75, 0.75), (0.75, 0.875), (0.625, 0.875), (0.625, 0.75), (0.6875, 0.75), (0.6875, 0.875), (0.5625, 0.875), (0.5625, 0.75), (0.625, 0.75), (0.625, 0.875), (0.5, 0.875), (0.5, 0.75), (0.5625, 0.75), (0.5625, 0.875), (0.4375, 0.875), (0.4375, 0.75), (0.5, 0.75), (0.5, 0.875), (0.375, 0.875), (0.375, 0.75), (0.4375, 0.75), (0.4375, 0.875), (0.3125, 0.875), (0.3125, 0.75), (0.375, 0.75), (0.375, 0.875), (0.25, 0.875), (0.25, 0.75), (0.3125, 0.75), (0.3125, 0.875), (0.1875, 0.875), (0.1875, 0.75), (0.25, 0.75), (0.25, 0.875), (0.125, 0.875), (0.125, 0.75), (0.1875, 0.75), (0.1875, 0.875), (0.0625, 0.875), (0.0625, 0.75), (0.125, 0.75), (0.125, 0.875), (0, 0.875), (0, 0.75), (0.0625, 0.75), (0.0625, 0.875), (0.9375, 0.75), (0.9375, 0.625), (1, 0.625), (1, 0.75), (0.875, 0.75), (0.875, 0.625), (0.9375, 0.625), (0.9375, 0.75), (0.8125, 0.75), (0.8125, 0.625), (0.875, 0.625), (0.875, 0.75), (0.75, 0.75), (0.75, 0.625), (0.8125, 0.625), (0.8125, 0.75), (0.6875, 0.75), (0.6875, 0.625), (0.75, 0.625), (0.75, 0.75), (0.625, 0.75), (0.625, 0.625), (0.6875, 0.625), (0.6875, 0.75), (0.5625, 0.75), (0.5625, 0.625), (0.625, 0.625), (0.625, 0.75), (0.5, 0.75), (0.5, 0.625), (0.5625, 0.625), (0.5625, 0.75), (0.4375, 0.75), (0.4375, 0.625), (0.5, 0.625), (0.5, 0.75), (0.375, 0.75), (0.375, 0.625), (0.4375, 0.625), (0.4375, 0.75), (0.3125, 0.75), (0.3125, 0.625), (0.375, 0.625), (0.375, 0.75), (0.25, 0.75), (0.25, 0.625), (0.3125, 0.625), (0.3125, 0.75), (0.1875, 0.75), (0.1875, 0.625), (0.25, 0.625), (0.25, 0.75), (0.125, 0.75), (0.125, 0.625), (0.1875, 0.625), (0.1875, 0.75), (0.0625, 0.75), (0.0625, 0.625), (0.125, 0.625), (0.125, 0.75), (0, 0.75), (0, 0.625), (0.0625, 0.625), (0.0625, 0.75), (0.9375, 0.625), (0.9375, 0.5), (1, 0.5), (1, 0.625), (0.875, 0.625), (0.875, 0.5), (0.9375, 0.5), (0.9375, 0.625), (0.8125, 0.625), (0.8125, 0.5), (0.875, 0.5), (0.875, 0.625), (0.75, 0.625), (0.75, 0.5), (0.8125, 0.5), (0.8125, 0.625), (0.6875, 0.625), (0.6875, 0.5), (0.75, 0.5), (0.75, 0.625), (0.625, 0.625), (0.625, 0.5), (0.6875, 0.5), (0.6875, 0.625), (0.5625, 0.625), (0.5625, 0.5), (0.625, 0.5), (0.625, 0.625), (0.5, 0.625), (0.5, 0.5), (0.5625, 0.5), (0.5625, 0.625), (0.4375, 0.625), (0.4375, 0.5), (0.5, 0.5), (0.5, 0.625), (0.375, 0.625), (0.375, 0.5), (0.4375, 0.5), (0.4375, 0.625), (0.3125, 0.625), (0.3125, 0.5), (0.375, 0.5), (0.375, 0.625), (0.25, 0.625), (0.25, 0.5), (0.3125, 0.5), (0.3125, 0.625), (0.1875, 0.625), (0.1875, 0.5), (0.25, 0.5), (0.25, 0.625), (0.125, 0.625), (0.125, 0.5), (0.1875, 0.5), (0.1875, 0.625), (0.0625, 0.625), (0.0625, 0.5), (0.125, 0.5), (0.125, 0.625), (0, 0.625), (0, 0.5), (0.0625, 0.5), (0.0625, 0.625), (0.9375, 0.5), (0.9375, 0.375), (1, 0.375), (1, 0.5), (0.875, 0.5), (0.875, 0.375), (0.9375, 0.375), (0.9375, 0.5), (0.8125, 0.5), (0.8125, 0.375), (0.875, 0.375), (0.875, 0.5), (0.75, 0.5), (0.75, 0.375), (0.8125, 0.375), (0.8125, 0.5), (0.6875, 0.5), (0.6875, 0.375), (0.75, 0.375), (0.75, 0.5), (0.625, 0.5), (0.625, 0.375), (0.6875, 0.375), (0.6875, 0.5), (0.5625, 0.5), (0.5625, 0.375), (0.625, 0.375), (0.625, 0.5), (0.5, 0.5), (0.5, 0.375), (0.5625, 0.375), (0.5625, 0.5), (0.4375, 0.5), (0.4375, 0.375), (0.5, 0.375), (0.5, 0.5), (0.375, 0.5), (0.375, 0.375), (0.4375, 0.375), (0.4375, 0.5), (0.3125, 0.5), (0.3125, 0.375), (0.375, 0.375), (0.375, 0.5), (0.25, 0.5), (0.25, 0.375), (0.3125, 0.375), (0.3125, 0.5), (0.1875, 0.5), (0.1875, 0.375), (0.25, 0.375), (0.25, 0.5), (0.125, 0.5), (0.125, 0.375), (0.1875, 0.375), (0.1875, 0.5), (0.0625, 0.5), (0.0625, 0.375), (0.125, 0.375), (0.125, 0.5), (0, 0.5), (0, 0.375), (0.0625, 0.375), (0.0625, 0.5), (0.9375, 0.375), (0.9375, 0.25), (1, 0.25), (1, 0.375), (0.875, 0.375), (0.875, 0.25), (0.9375, 0.25), (0.9375, 0.375), (0.8125, 0.375), (0.8125, 0.25), (0.875, 0.25), (0.875, 0.375), (0.75, 0.375), (0.75, 0.25), (0.8125, 0.25), (0.8125, 0.375), (0.6875, 0.375), (0.6875, 0.25), (0.75, 0.25), (0.75, 0.375), (0.625, 0.375), (0.625, 0.25), (0.6875, 0.25), (0.6875, 0.375), (0.5625, 0.375), (0.5625, 0.25), (0.625, 0.25), (0.625, 0.375), (0.5, 0.375), (0.5, 0.25), (0.5625, 0.25), (0.5625, 0.375), (0.4375, 0.375), (0.4375, 0.25), (0.5, 0.25), (0.5, 0.375), (0.375, 0.375), (0.375, 0.25), (0.4375, 0.25), (0.4375, 0.375), (0.3125, 0.375), (0.3125, 0.25), (0.375, 0.25), (0.375, 0.375), (0.25, 0.375), (0.25, 0.25), (0.3125, 0.25), (0.3125, 0.375), (0.1875, 0.375), (0.1875, 0.25), (0.25, 0.25), (0.25, 0.375), (0.125, 0.375), (0.125, 0.25), (0.1875, 0.25), (0.1875, 0.375), (0.0625, 0.375), (0.0625, 0.25), (0.125, 0.25), (0.125, 0.375), (0, 0.375), (0, 0.25), (0.0625, 0.25), (0.0625, 0.375), (0.9375, 0.25), (0.9375, 0.125), (1, 0.125), (1, 0.25), (0.875, 0.25), (0.875, 0.125), (0.9375, 0.125), (0.9375, 0.25), (0.8125, 0.25), (0.8125, 0.125), (0.875, 0.125), (0.875, 0.25), (0.75, 0.25), (0.75, 0.125), (0.8125, 0.125), (0.8125, 0.25), (0.6875, 0.25), (0.6875, 0.125), (0.75, 0.125), (0.75, 0.25), (0.625, 0.25), (0.625, 0.125), (0.6875, 0.125), (0.6875, 0.25), (0.5625, 0.25), (0.5625, 0.125), (0.625, 0.125), (0.625, 0.25), (0.5, 0.25), (0.5, 0.125), (0.5625, 0.125), (0.5625, 0.25), (0.4375, 0.25), (0.4375, 0.125), (0.5, 0.125), (0.5, 0.25), (0.375, 0.25), (0.375, 0.125), (0.4375, 0.125), (0.4375, 0.25), (0.3125, 0.25), (0.3125, 0.125), (0.375, 0.125), (0.375, 0.25), (0.25, 0.25), (0.25, 0.125), (0.3125, 0.125), (0.3125, 0.25), (0.1875, 0.25), (0.1875, 0.125), (0.25, 0.125), (0.25, 0.25), (0.125, 0.25), (0.125, 0.125), (0.1875, 0.125), (0.1875, 0.25), (0.0625, 0.25), (0.0625, 0.125), (0.125, 0.125), (0.125, 0.25), (0, 0.25), (0, 0.125), (0.0625, 0.125), (0.0625, 0.25), (0.9375, 0.125), (0.96875, 0), (1, 0.125), (0.875, 0.125), (0.90625, 0), (0.9375, 0.125), (0.8125, 0.125), (0.84375, 0), (0.875, 0.125), (0.75, 0.125), (0.78125, 0), (0.8125, 0.125), (0.6875, 0.125), (0.71875, 0), (0.75, 0.125), (0.625, 0.125), (0.65625, 0), (0.6875, 0.125), (0.5625, 0.125), (0.59375, 0), (0.625, 0.125), (0.5, 0.125), (0.53125, 0), (0.5625, 0.125), (0.4375, 0.125), (0.46875, 0), (0.5, 0.125), (0.375, 0.125), (0.40625, 0), (0.4375, 0.125), (0.3125, 0.125), (0.34375, 0), (0.375, 0.125), (0.25, 0.125), (0.28125, 0), (0.3125, 0.125), (0.1875, 0.125), (0.21875, 0), (0.25, 0.125), (0.125, 0.125), (0.15625, 0), (0.1875, 0.125), (0.0625, 0.125), (0.09375, 0), (0.125, 0.125), (0, 0.125), (0.03125, 0), (0.0625, 0.125), (0.9375, 0.875), (1, 0.875), (0.96875, 1), (0.875, 0.875), (0.9375, 0.875), (0.90625, 1), (0.8125, 0.875), (0.875, 0.875), (0.84375, 1), (0.75, 0.875), (0.8125, 0.875), (0.78125, 1), (0.6875, 0.875), (0.75, 0.875), (0.71875, 1), (0.625, 0.875), (0.6875, 0.875), (0.65625, 1), (0.5625, 0.875), (0.625, 0.875), (0.59375, 1), (0.5, 0.875), (0.5625, 0.875), (0.53125, 1), (0.4375, 0.875), (0.5, 0.875), (0.46875, 1), (0.375, 0.875), (0.4375, 0.875), (0.40625, 1), (0.3125, 0.875), (0.375, 0.875), (0.34375, 1), (0.25, 0.875), (0.3125, 0.875), (0.28125, 1), (0.1875, 0.875), (0.25, 0.875), (0.21875, 1), (0.125, 0.875), (0.1875, 0.875), (0.15625, 1), (0.0625, 0.875), (0.125, 0.875), (0.09375, 1), (0, 0.875), (0.0625, 0.875), (0.03125, 1), (0.9375, 0.875), (0.9375, 0.75), (1, 0.75), (1, 0.875), (0.875, 0.875), (0.875, 0.75), (0.9375, 0.75), (0.9375, 0.875), (0.8125, 0.875), (0.8125, 0.75), (0.875, 0.75), (0.875, 0.875), (0.75, 0.875), (0.75, 0.75), (0.8125, 0.75), (0.8125, 0.875), (0.6875, 0.875), (0.6875, 0.75), (0.75, 0.75), (0.75, 0.875), (0.625, 0.875), (0.625, 0.75), (0.6875, 0.75), (0.6875, 0.875), (0.5625, 0.875), (0.5625, 0.75), (0.625, 0.75), (0.625, 0.875), (0.5, 0.875), (0.5, 0.75), (0.5625, 0.75), (0.5625, 0.875), (0.4375, 0.875), (0.4375, 0.75), (0.5, 0.75), (0.5, 0.875), (0.375, 0.875), (0.375, 0.75), (0.4375, 0.75), (0.4375, 0.875), (0.3125, 0.875), (0.3125, 0.75), (0.375, 0.75), (0.375, 0.875), (0.25, 0.875), (0.25, 0.75), (0.3125, 0.75), (0.3125, 0.875), (0.1875, 0.875), (0.1875, 0.75), (0.25, 0.75), (0.25, 0.875), (0.125, 0.875), (0.125, 0.75), (0.1875, 0.75), (0.1875, 0.875), (0.0625, 0.875), (0.0625, 0.75), (0.125, 0.75), (0.125, 0.875), (0, 0.875), (0, 0.75), (0.0625, 0.75), (0.0625, 0.875), (0.9375, 0.75), (0.9375, 0.625), (1, 0.625), (1, 0.75), (0.875, 0.75), (0.875, 0.625), (0.9375, 0.625), (0.9375, 0.75), (0.8125, 0.75), (0.8125, 0.625), (0.875, 0.625), (0.875, 0.75), (0.75, 0.75), (0.75, 0.625), (0.8125, 0.625), (0.8125, 0.75), (0.6875, 0.75), (0.6875, 0.625), (0.75, 0.625), (0.75, 0.75), (0.625, 0.75), (0.625, 0.625), (0.6875, 0.625), (0.6875, 0.75), (0.5625, 0.75), (0.5625, 0.625), (0.625, 0.625), (0.625, 0.75), (0.5, 0.75), (0.5, 0.625), (0.5625, 0.625), (0.5625, 0.75), (0.4375, 0.75), (0.4375, 0.625), (0.5, 0.625), (0.5, 0.75), (0.375, 0.75), (0.375, 0.625), (0.4375, 0.625), (0.4375, 0.75), (0.3125, 0.75), (0.3125, 0.625), (0.375, 0.625), (0.375, 0.75), (0.25, 0.75), (0.25, 0.625), (0.3125, 0.625), (0.3125, 0.75), (0.1875, 0.75), (0.1875, 0.625), (0.25, 0.625), (0.25, 0.75), (0.125, 0.75), (0.125, 0.625), (0.1875, 0.625), (0.1875, 0.75), (0.0625, 0.75), (0.0625, 0.625), (0.125, 0.625), (0.125, 0.75), (0, 0.75), (0, 0.625), (0.0625, 0.625), (0.0625, 0.75), (0.9375, 0.625), (0.9375, 0.5), (1, 0.5), (1, 0.625), (0.875, 0.625), (0.875, 0.5), (0.9375, 0.5), (0.9375, 0.625), (0.8125, 0.625), (0.8125, 0.5), (0.875, 0.5), (0.875, 0.625), (0.75, 0.625), (0.75, 0.5), (0.8125, 0.5), (0.8125, 0.625), (0.6875, 0.625), (0.6875, 0.5), (0.75, 0.5), (0.75, 0.625), (0.625, 0.625), (0.625, 0.5), (0.6875, 0.5), (0.6875, 0.625), (0.5625, 0.625), (0.5625, 0.5), (0.625, 0.5), (0.625, 0.625), (0.5, 0.625), (0.5, 0.5), (0.5625, 0.5), (0.5625, 0.625), (0.4375, 0.625), (0.4375, 0.5), (0.5, 0.5), (0.5, 0.625), (0.375, 0.625), (0.375, 0.5), (0.4375, 0.5), (0.4375, 0.625), (0.3125, 0.625), (0.3125, 0.5), (0.375, 0.5), (0.375, 0.625), (0.25, 0.625), (0.25, 0.5), (0.3125, 0.5), (0.3125, 0.625), (0.1875, 0.625), (0.1875, 0.5), (0.25, 0.5), (0.25, 0.625), (0.125, 0.625), (0.125, 0.5), (0.1875, 0.5), (0.1875, 0.625), (0.0625, 0.625), (0.0625, 0.5), (0.125, 0.5), (0.125, 0.625), (0, 0.625), (0, 0.5), (0.0625, 0.5), (0.0625, 0.625), (0.9375, 0.5), (0.9375, 0.375), (1, 0.375), (1, 0.5), (0.875, 0.5), (0.875, 0.375), (0.9375, 0.375), (0.9375, 0.5), (0.8125, 0.5), (0.8125, 0.375), (0.875, 0.375), (0.875, 0.5), (0.75, 0.5), (0.75, 0.375), (0.8125, 0.375), (0.8125, 0.5), (0.6875, 0.5), (0.6875, 0.375), (0.75, 0.375), (0.75, 0.5), (0.625, 0.5), (0.625, 0.375), (0.6875, 0.375), (0.6875, 0.5), (0.5625, 0.5), (0.5625, 0.375), (0.625, 0.375), (0.625, 0.5), (0.5, 0.5), (0.5, 0.375), (0.5625, 0.375), (0.5625, 0.5), (0.4375, 0.5), (0.4375, 0.375), (0.5, 0.375), (0.5, 0.5), (0.375, 0.5), (0.375, 0.375), (0.4375, 0.375), (0.4375, 0.5), (0.3125, 0.5), (0.3125, 0.375), (0.375, 0.375), (0.375, 0.5), (0.25, 0.5), (0.25, 0.375), (0.3125, 0.375), (0.3125, 0.5), (0.1875, 0.5), (0.1875, 0.375), (0.25, 0.375), (0.25, 0.5), (0.125, 0.5), (0.125, 0.375), (0.1875, 0.375), (0.1875, 0.5), (0.0625, 0.5), (0.0625, 0.375), (0.125, 0.375), (0.125, 0.5), (0, 0.5), (0, 0.375), (0.0625, 0.375), (0.0625, 0.5), (0.9375, 0.375), (0.9375, 0.25), (1, 0.25), (1, 0.375), (0.875, 0.375), (0.875, 0.25), (0.9375, 0.25), (0.9375, 0.375), (0.8125, 0.375), (0.8125, 0.25), (0.875, 0.25), (0.875, 0.375), (0.75, 0.375), (0.75, 0.25), (0.8125, 0.25), (0.8125, 0.375), (0.6875, 0.375), (0.6875, 0.25), (0.75, 0.25), (0.75, 0.375), (0.625, 0.375), (0.625, 0.25), (0.6875, 0.25), (0.6875, 0.375), (0.5625, 0.375), (0.5625, 0.25), (0.625, 0.25), (0.625, 0.375), (0.5, 0.375), (0.5, 0.25), (0.5625, 0.25), (0.5625, 0.375), (0.4375, 0.375), (0.4375, 0.25), (0.5, 0.25), (0.5, 0.375), (0.375, 0.375), (0.375, 0.25), (0.4375, 0.25), (0.4375, 0.375), (0.3125, 0.375), (0.3125, 0.25), (0.375, 0.25), (0.375, 0.375), (0.25, 0.375), (0.25, 0.25), (0.3125, 0.25), (0.3125, 0.375), (0.1875, 0.375), (0.1875, 0.25), (0.25, 0.25), (0.25, 0.375), (0.125, 0.375), (0.125, 0.25), (0.1875, 0.25), (0.1875, 0.375), (0.0625, 0.375), (0.0625, 0.25), (0.125, 0.25), (0.125, 0.375), (0, 0.375), (0, 0.25), (0.0625, 0.25), (0.0625, 0.375), (0.9375, 0.25), (0.9375, 0.125), (1, 0.125), (1, 0.25), (0.875, 0.25), (0.875, 0.125), (0.9375, 0.125), (0.9375, 0.25), (0.8125, 0.25), (0.8125, 0.125), (0.875, 0.125), (0.875, 0.25), (0.75, 0.25), (0.75, 0.125), (0.8125, 0.125), (0.8125, 0.25), (0.6875, 0.25), (0.6875, 0.125), (0.75, 0.125), (0.75, 0.25), (0.625, 0.25), (0.625, 0.125), (0.6875, 0.125), (0.6875, 0.25), (0.5625, 0.25), (0.5625, 0.125), (0.625, 0.125), (0.625, 0.25), (0.5, 0.25), (0.5, 0.125), (0.5625, 0.125), (0.5625, 0.25), (0.4375, 0.25), (0.4375, 0.125), (0.5, 0.125), (0.5, 0.25), (0.375, 0.25), (0.375, 0.125), (0.4375, 0.125), (0.4375, 0.25), (0.3125, 0.25), (0.3125, 0.125), (0.375, 0.125), (0.375, 0.25), (0.25, 0.25), (0.25, 0.125), (0.3125, 0.125), (0.3125, 0.25), (0.1875, 0.25), (0.1875, 0.125), (0.25, 0.125), (0.25, 0.25), (0.125, 0.25), (0.125, 0.125), (0.1875, 0.125), (0.1875, 0.25), (0.0625, 0.25), (0.0625, 0.125), (0.125, 0.125), (0.125, 0.25), (0, 0.25), (0, 0.125), (0.0625, 0.125), (0.0625, 0.25), (0.9375, 0.125), (0.96875, 0), (1, 0.125), (0.875, 0.125), (0.90625, 0), (0.9375, 0.125), (0.8125, 0.125), (0.84375, 0), (0.875, 0.125), (0.75, 0.125), (0.78125, 0), (0.8125, 0.125), (0.6875, 0.125), (0.71875, 0), (0.75, 0.125), (0.625, 0.125), (0.65625, 0), (0.6875, 0.125), (0.5625, 0.125), (0.59375, 0), (0.625, 0.125), (0.5, 0.125), (0.53125, 0), (0.5625, 0.125), (0.4375, 0.125), (0.46875, 0), (0.5, 0.125), (0.375, 0.125), (0.40625, 0), (0.4375, 0.125), (0.3125, 0.125), (0.34375, 0), (0.375, 0.125), (0.25, 0.125), (0.28125, 0), (0.3125, 0.125), (0.1875, 0.125), (0.21875, 0), (0.25, 0.125), (0.125, 0.125), (0.15625, 0), (0.1875, 0.125), (0.0625, 0.125), (0.09375, 0), (0.125, 0.125), (0, 0.125), (0.03125, 0), (0.0625, 0.125)] (
interpolation = "faceVarying"
)
int[] primvars:st:indices = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259, 1260, 1261, 1262, 1263, 1264, 1265, 1266, 1267, 1268, 1269, 1270, 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293, 1294, 1295, 1296, 1297, 1298, 1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341, 1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391, 1392, 1393, 1394, 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408, 1409, 1410, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1437, 1438, 1439, 1440, 1441, 1442, 1443, 1444, 1445, 1446, 1447, 1448, 1449, 1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471, 1472, 1473, 1474, 1475, 1476, 1477, 1478, 1479, 1480, 1481, 1482, 1483, 1484, 1485, 1486, 1487, 1488, 1489, 1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509, 1510, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519, 1520, 1521, 1522, 1523, 1524, 1525, 1526, 1527, 1528, 1529, 1530, 1531, 1532, 1533, 1534, 1535, 1536, 1537, 1538, 1539, 1540, 1541, 1542, 1543, 1544, 1545, 1546, 1547, 1548, 1549, 1550, 1551, 1552, 1553, 1554, 1555, 1556, 1557, 1558, 1559, 1560, 1561, 1562, 1563, 1564, 1565, 1566, 1567, 1568, 1569, 1570, 1571, 1572, 1573, 1574, 1575, 1576, 1577, 1578, 1579, 1580, 1581, 1582, 1583, 1584, 1585, 1586, 1587, 1588, 1589, 1590, 1591, 1592, 1593, 1594, 1595, 1596, 1597, 1598, 1599, 1600, 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1608, 1609, 1610, 1611, 1612, 1613, 1614, 1615, 1616, 1617, 1618, 1619, 1620, 1621, 1622, 1623, 1624, 1625, 1626, 1627, 1628, 1629, 1630, 1631, 1632, 1633, 1634, 1635, 1636, 1637, 1638, 1639, 1640, 1641, 1642, 1643, 1644, 1645, 1646, 1647, 1648, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1656, 1657, 1658, 1659, 1660, 1661, 1662, 1663, 1664, 1665, 1666, 1667, 1668, 1669, 1670, 1671, 1672, 1673, 1674, 1675, 1676, 1677, 1678, 1679, 1680, 1681, 1682, 1683, 1684, 1685, 1686, 1687, 1688, 1689, 1690, 1691, 1692, 1693, 1694, 1695, 1696, 1697, 1698, 1699, 1700, 1701, 1702, 1703, 1704, 1705, 1706, 1707, 1708, 1709, 1710, 1711, 1712, 1713, 1714, 1715, 1716, 1717, 1718, 1719, 1720, 1721, 1722, 1723, 1724, 1725, 1726, 1727, 1728, 1729, 1730, 1731, 1732, 1733, 1734, 1735, 1736, 1737, 1738, 1739, 1740, 1741, 1742, 1743, 1744, 1745, 1746, 1747, 1748, 1749, 1750, 1751, 1752, 1753, 1754, 1755, 1756, 1757, 1758, 1759, 1760, 1761, 1762, 1763, 1764, 1765, 1766, 1767, 1768, 1769, 1770, 1771, 1772, 1773, 1774, 1775, 1776, 1777, 1778, 1779, 1780, 1781, 1782, 1783, 1784, 1785, 1786, 1787, 1788, 1789, 1790, 1791, 1792, 1793, 1794, 1795, 1796, 1797, 1798, 1799, 1800, 1801, 1802, 1803, 1804, 1805, 1806, 1807, 1808, 1809, 1810, 1811, 1812, 1813, 1814, 1815, 1816, 1817, 1818, 1819, 1820, 1821, 1822, 1823, 1824, 1825, 1826, 1827, 1828, 1829, 1830, 1831, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1845, 1846, 1847, 1848, 1849, 1850, 1851, 1852, 1853, 1854, 1855, 1856, 1857, 1858, 1859, 1860, 1861, 1862, 1863, 1864, 1865, 1866, 1867, 1868, 1869, 1870, 1871, 1872, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1893, 1894, 1895, 1896, 1897, 1898, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916, 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1980, 1981, 1982, 1983, 1984, 1985, 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026, 2027, 2028, 2029, 2030, 2031, 2032, 2033, 2034, 2035, 2036, 2037, 2038, 2039, 2040, 2041, 2042, 2043, 2044, 2045, 2046, 2047, 2048, 2049, 2050, 2051, 2052, 2053, 2054, 2055, 2056, 2057, 2058, 2059, 2060, 2061, 2062, 2063, 2064, 2065, 2066, 2067, 2068, 2069, 2070, 2071, 2072, 2073, 2074, 2075, 2076, 2077, 2078, 2079, 2080, 2081, 2082, 2083, 2084, 2085, 2086, 2087, 2088, 2089, 2090, 2091, 2092, 2093, 2094, 2095, 2096, 2097, 2098, 2099, 2100, 2101, 2102, 2103, 2104, 2105, 2106, 2107, 2108, 2109, 2110, 2111, 2112, 2113, 2114, 2115, 2116, 2117, 2118, 2119, 2120, 2121, 2122, 2123, 2124, 2125, 2126, 2127, 2128, 2129, 2130, 2131, 2132, 2133, 2134, 2135, 2136, 2137, 2138, 2139, 2140, 2141, 2142, 2143, 2144, 2145, 2146, 2147, 2148, 2149, 2150, 2151, 2152, 2153, 2154, 2155, 2156, 2157, 2158, 2159, 2160, 2161, 2162, 2163, 2164, 2165, 2166, 2167, 2168, 2169, 2170, 2171, 2172, 2173, 2174, 2175, 2176, 2177, 2178, 2179, 2180, 2181, 2182, 2183, 2184, 2185, 2186, 2187, 2188, 2189, 2190, 2191, 2192, 2193, 2194, 2195, 2196, 2197, 2198, 2199, 2200, 2201, 2202, 2203, 2204, 2205, 2206, 2207, 2208, 2209, 2210, 2211, 2212, 2213, 2214, 2215, 2216, 2217, 2218, 2219, 2220, 2221, 2222, 2223, 2224, 2225, 2226, 2227, 2228, 2229, 2230, 2231, 2232, 2233, 2234, 2235, 2236, 2237, 2238, 2239, 2240, 2241, 2242, 2243, 2244, 2245, 2246, 2247, 2248, 2249, 2250, 2251, 2252, 2253, 2254, 2255, 2256, 2257, 2258, 2259, 2260, 2261, 2262, 2263, 2264, 2265, 2266, 2267, 2268, 2269, 2270, 2271, 2272, 2273, 2274, 2275, 2276, 2277, 2278, 2279, 2280, 2281, 2282, 2283, 2284, 2285, 2286, 2287, 2288, 2289, 2290, 2291, 2292, 2293, 2294, 2295, 2296, 2297, 2298, 2299, 2300, 2301, 2302, 2303, 2304, 2305, 2306, 2307, 2308, 2309, 2310, 2311, 2312, 2313, 2314, 2315, 2316, 2317, 2318, 2319, 2320, 2321, 2322, 2323, 2324, 2325, 2326, 2327, 2328, 2329, 2330, 2331, 2332, 2333, 2334, 2335, 2336, 2337, 2338, 2339, 2340, 2341, 2342, 2343, 2344, 2345, 2346, 2347, 2348, 2349, 2350, 2351, 2352, 2353, 2354, 2355, 2356, 2357, 2358, 2359, 2360, 2361, 2362, 2363, 2364, 2365, 2366, 2367, 2368, 2369, 2370, 2371, 2372, 2373, 2374, 2375, 2376, 2377, 2378, 2379, 2380, 2381, 2382, 2383, 2384, 2385, 2386, 2387, 2388, 2389, 2390, 2391, 2392, 2393, 2394, 2395, 2396, 2397, 2398, 2399, 2400, 2401, 2402, 2403, 2404, 2405, 2406, 2407, 2408, 2409, 2410, 2411, 2412, 2413, 2414, 2415, 2416, 2417, 2418, 2419, 2420, 2421, 2422, 2423, 2424, 2425, 2426, 2427, 2428, 2429, 2430, 2431, 2432, 2433, 2434, 2435, 2436, 2437, 2438, 2439, 2440, 2441, 2442, 2443, 2444, 2445, 2446, 2447, 2448, 2449, 2450, 2451, 2452, 2453, 2454, 2455, 2456, 2457, 2458, 2459, 2460, 2461, 2462, 2463, 2464, 2465, 2466, 2467, 2468, 2469, 2470, 2471, 2472, 2473, 2474, 2475, 2476, 2477, 2478, 2479, 2480, 2481, 2482, 2483, 2484, 2485, 2486, 2487, 2488, 2489, 2490, 2491, 2492, 2493, 2494, 2495, 2496, 2497, 2498, 2499, 2500, 2501, 2502, 2503, 2504, 2505, 2506, 2507, 2508, 2509, 2510, 2511, 2512, 2513, 2514, 2515, 2516, 2517, 2518, 2519, 2520, 2521, 2522, 2523, 2524, 2525, 2526, 2527, 2528, 2529, 2530, 2531, 2532, 2533, 2534, 2535, 2536, 2537, 2538, 2539, 2540, 2541, 2542, 2543, 2544, 2545, 2546, 2547, 2548, 2549, 2550, 2551, 2552, 2553, 2554, 2555, 2556, 2557, 2558, 2559, 2560, 2561, 2562, 2563, 2564, 2565, 2566, 2567, 2568, 2569, 2570, 2571, 2572, 2573, 2574, 2575, 2576, 2577, 2578, 2579, 2580, 2581, 2582, 2583, 2584, 2585, 2586, 2587, 2588, 2589, 2590, 2591, 2592, 2593, 2594, 2595, 2596, 2597, 2598, 2599, 2600, 2601, 2602, 2603, 2604, 2605, 2606, 2607, 2608, 2609, 2610, 2611, 2612, 2613, 2614, 2615, 2616, 2617, 2618, 2619, 2620, 2621, 2622, 2623, 2624, 2625, 2626, 2627, 2628, 2629, 2630, 2631, 2632, 2633, 2634, 2635, 2636, 2637, 2638, 2639, 2640, 2641, 2642, 2643, 2644, 2645, 2646, 2647, 2648, 2649, 2650, 2651, 2652, 2653, 2654, 2655, 2656, 2657, 2658, 2659, 2660, 2661, 2662, 2663, 2664, 2665, 2666, 2667, 2668, 2669, 2670, 2671, 2672, 2673, 2674, 2675, 2676, 2677, 2678, 2679, 2680, 2681, 2682, 2683, 2684, 2685, 2686, 2687, 2688, 2689, 2690, 2691, 2692, 2693, 2694, 2695, 2696, 2697, 2698, 2699, 2700, 2701, 2702, 2703, 2704, 2705, 2706, 2707, 2708, 2709, 2710, 2711, 2712, 2713, 2714, 2715, 2716, 2717, 2718, 2719, 2720, 2721, 2722, 2723, 2724, 2725, 2726, 2727, 2728, 2729, 2730, 2731, 2732, 2733, 2734, 2735, 2736, 2737, 2738, 2739, 2740, 2741, 2742, 2743, 2744, 2745, 2746, 2747, 2748, 2749, 2750, 2751, 2752, 2753, 2754, 2755, 2756, 2757, 2758, 2759, 2760, 2761, 2762, 2763, 2764, 2765, 2766, 2767, 2768, 2769, 2770, 2771, 2772, 2773, 2774, 2775, 2776, 2777, 2778, 2779, 2780, 2781, 2782, 2783, 2784, 2785, 2786, 2787, 2788, 2789, 2790, 2791, 2792, 2793, 2794, 2795, 2796, 2797, 2798, 2799, 2800, 2801, 2802, 2803, 2804, 2805, 2806, 2807, 2808, 2809, 2810, 2811, 2812, 2813, 2814, 2815, 2816, 2817, 2818, 2819, 2820, 2821, 2822, 2823, 2824, 2825, 2826, 2827, 2828, 2829, 2830, 2831, 2832, 2833, 2834, 2835, 2836, 2837, 2838, 2839, 2840, 2841, 2842, 2843, 2844, 2845, 2846, 2847, 2848, 2849, 2850, 2851, 2852, 2853, 2854, 2855, 2856, 2857, 2858, 2859, 2860, 2861, 2862, 2863, 2864, 2865, 2866, 2867, 2868, 2869, 2870, 2871, 2872, 2873, 2874, 2875, 2876, 2877, 2878, 2879, 2880, 2881, 2882, 2883, 2884, 2885, 2886, 2887, 2888, 2889, 2890, 2891, 2892, 2893, 2894, 2895, 2896, 2897, 2898, 2899, 2900, 2901, 2902, 2903, 2904, 2905, 2906, 2907, 2908, 2909, 2910, 2911, 2912, 2913, 2914, 2915, 2916, 2917, 2918, 2919, 2920, 2921, 2922, 2923, 2924, 2925, 2926, 2927, 2928, 2929, 2930, 2931, 2932, 2933, 2934, 2935, 2936, 2937, 2938, 2939, 2940, 2941, 2942, 2943, 2944, 2945, 2946, 2947, 2948, 2949, 2950, 2951, 2952, 2953, 2954, 2955, 2956, 2957, 2958, 2959, 2960, 2961, 2962, 2963, 2964, 2965, 2966, 2967, 2968, 2969, 2970, 2971, 2972, 2973, 2974, 2975, 2976, 2977, 2978, 2979, 2980, 2981, 2982, 2983, 2984, 2985, 2986, 2987, 2988, 2989, 2990, 2991, 2992, 2993, 2994, 2995, 2996, 2997, 2998, 2999, 3000, 3001, 3002, 3003, 3004, 3005, 3006, 3007, 3008, 3009, 3010, 3011, 3012, 3013, 3014, 3015, 3016, 3017, 3018, 3019, 3020, 3021, 3022, 3023, 3024, 3025, 3026, 3027, 3028, 3029, 3030, 3031, 3032, 3033, 3034, 3035, 3036, 3037, 3038, 3039, 3040, 3041, 3042, 3043, 3044, 3045, 3046, 3047, 3048, 3049, 3050, 3051, 3052, 3053, 3054, 3055, 3056, 3057, 3058, 3059, 3060, 3061, 3062, 3063, 3064, 3065, 3066, 3067, 3068, 3069, 3070, 3071, 3072, 3073, 3074, 3075, 3076, 3077, 3078, 3079, 3080, 3081, 3082, 3083, 3084, 3085, 3086, 3087, 3088, 3089, 3090, 3091, 3092, 3093, 3094, 3095, 3096, 3097, 3098, 3099, 3100, 3101, 3102, 3103, 3104, 3105, 3106, 3107, 3108, 3109, 3110, 3111, 3112, 3113, 3114, 3115, 3116, 3117, 3118, 3119, 3120, 3121, 3122, 3123, 3124, 3125, 3126, 3127, 3128, 3129, 3130, 3131, 3132, 3133, 3134, 3135, 3136, 3137, 3138, 3139, 3140, 3141, 3142, 3143, 3144, 3145, 3146, 3147, 3148, 3149, 3150, 3151, 3152, 3153, 3154, 3155, 3156, 3157, 3158, 3159, 3160, 3161, 3162, 3163, 3164, 3165, 3166, 3167, 3168, 3169, 3170, 3171, 3172, 3173, 3174, 3175, 3176, 3177, 3178, 3179, 3180, 3181, 3182, 3183, 3184, 3185, 3186, 3187, 3188, 3189, 3190, 3191, 3192, 3193, 3194, 3195, 3196, 3197, 3198, 3199, 3200, 3201, 3202, 3203, 3204, 3205, 3206, 3207, 3208, 3209, 3210, 3211, 3212, 3213, 3214, 3215, 3216, 3217, 3218, 3219, 3220, 3221, 3222, 3223, 3224, 3225, 3226, 3227, 3228, 3229, 3230, 3231, 3232, 3233, 3234, 3235, 3236, 3237, 3238, 3239, 3240, 3241, 3242, 3243, 3244, 3245, 3246, 3247, 3248, 3249, 3250, 3251, 3252, 3253, 3254, 3255, 3256, 3257, 3258, 3259, 3260, 3261, 3262, 3263, 3264, 3265, 3266, 3267, 3268, 3269, 3270, 3271, 3272, 3273, 3274, 3275, 3276, 3277, 3278, 3279, 3280, 3281, 3282, 3283, 3284, 3285, 3286, 3287, 3288, 3289, 3290, 3291, 3292, 3293, 3294, 3295, 3296, 3297, 3298, 3299, 3300, 3301, 3302, 3303, 3304, 3305, 3306, 3307, 3308, 3309, 3310, 3311, 3312, 3313, 3314, 3315, 3316, 3317, 3318, 3319, 3320, 3321, 3322, 3323, 3324, 3325, 3326, 3327, 3328, 3329, 3330, 3331, 3332, 3333, 3334, 3335, 3336, 3337, 3338, 3339, 3340, 3341, 3342, 3343, 3344, 3345, 3346, 3347, 3348, 3349, 3350, 3351, 3352, 3353, 3354, 3355, 3356, 3357, 3358, 3359, 3360, 3361, 3362, 3363, 3364, 3365, 3366, 3367, 3368, 3369, 3370, 3371, 3372, 3373, 3374, 3375, 3376, 3377, 3378, 3379, 3380, 3381, 3382, 3383, 3384, 3385, 3386, 3387, 3388, 3389, 3390, 3391, 3392, 3393, 3394, 3395, 3396, 3397, 3398, 3399, 3400, 3401, 3402, 3403, 3404, 3405, 3406, 3407, 3408, 3409, 3410, 3411, 3412, 3413, 3414, 3415, 3416, 3417, 3418, 3419, 3420, 3421, 3422, 3423, 3424, 3425, 3426, 3427, 3428, 3429, 3430, 3431, 3432, 3433, 3434, 3435, 3436, 3437, 3438, 3439, 3440, 3441, 3442, 3443, 3444, 3445, 3446, 3447, 3448, 3449, 3450, 3451, 3452, 3453, 3454, 3455, 3456, 3457, 3458, 3459, 3460, 3461, 3462, 3463, 3464, 3465, 3466, 3467, 3468, 3469, 3470, 3471, 3472, 3473, 3474, 3475, 3476, 3477, 3478, 3479, 3480, 3481, 3482, 3483, 3484, 3485, 3486, 3487, 3488, 3489, 3490, 3491, 3492, 3493, 3494, 3495, 3496, 3497, 3498, 3499, 3500, 3501, 3502, 3503, 3504, 3505, 3506, 3507, 3508, 3509, 3510, 3511, 3512, 3513, 3514, 3515, 3516, 3517, 3518, 3519, 3520, 3521, 3522, 3523, 3524, 3525, 3526, 3527, 3528, 3529, 3530, 3531, 3532, 3533, 3534, 3535, 3536, 3537, 3538, 3539, 3540, 3541, 3542, 3543, 3544, 3545, 3546, 3547, 3548, 3549, 3550, 3551, 3552, 3553, 3554, 3555, 3556, 3557, 3558, 3559, 3560, 3561, 3562, 3563, 3564, 3565, 3566, 3567, 3568, 3569, 3570, 3571, 3572, 3573, 3574, 3575, 3576, 3577, 3578, 3579, 3580, 3581, 3582, 3583, 3584, 3585, 3586, 3587, 3588, 3589, 3590, 3591, 3592, 3593, 3594, 3595, 3596, 3597, 3598, 3599, 3600, 3601, 3602, 3603, 3604, 3605, 3606, 3607, 3608, 3609, 3610, 3611, 3612, 3613, 3614, 3615, 3616, 3617, 3618, 3619, 3620, 3621, 3622, 3623, 3624, 3625, 3626, 3627, 3628, 3629, 3630, 3631, 3632, 3633, 3634, 3635, 3636, 3637, 3638, 3639, 3640, 3641, 3642, 3643, 3644, 3645, 3646, 3647, 3648, 3649, 3650, 3651, 3652, 3653, 3654, 3655, 3656, 3657, 3658, 3659, 3660, 3661, 3662, 3663, 3664, 3665, 3666, 3667, 3668, 3669, 3670, 3671, 3672, 3673, 3674, 3675, 3676, 3677, 3678, 3679, 3680, 3681, 3682, 3683, 3684, 3685, 3686, 3687, 3688, 3689, 3690, 3691, 3692, 3693, 3694, 3695, 3696, 3697, 3698, 3699, 3700, 3701, 3702, 3703, 3704, 3705, 3706, 3707, 3708, 3709, 3710, 3711, 3712, 3713, 3714, 3715, 3716, 3717, 3718, 3719, 3720, 3721, 3722, 3723, 3724, 3725, 3726, 3727, 3728, 3729, 3730, 3731, 3732, 3733, 3734, 3735, 3736, 3737, 3738, 3739, 3740, 3741, 3742, 3743, 3744, 3745, 3746, 3747, 3748, 3749, 3750, 3751, 3752, 3753, 3754, 3755, 3756, 3757, 3758, 3759, 3760, 3761, 3762, 3763, 3764, 3765, 3766, 3767, 3768, 3769, 3770, 3771, 3772, 3773, 3774, 3775, 3776, 3777, 3778, 3779, 3780, 3781, 3782, 3783, 3784, 3785, 3786, 3787, 3788, 3789, 3790, 3791, 3792, 3793, 3794, 3795, 3796, 3797, 3798, 3799, 3800, 3801, 3802, 3803, 3804, 3805, 3806, 3807, 3808, 3809, 3810, 3811, 3812, 3813, 3814, 3815, 3816, 3817, 3818, 3819, 3820, 3821, 3822, 3823, 3824, 3825, 3826, 3827, 3828, 3829, 3830, 3831, 3832, 3833, 3834, 3835, 3836, 3837, 3838, 3839, 3840, 3841, 3842, 3843, 3844, 3845, 3846, 3847, 3848, 3849, 3850, 3851, 3852, 3853, 3854, 3855, 3856, 3857, 3858, 3859, 3860, 3861, 3862, 3863, 3864, 3865, 3866, 3867, 3868, 3869, 3870, 3871, 3872, 3873, 3874, 3875, 3876, 3877, 3878, 3879, 3880, 3881, 3882, 3883, 3884, 3885, 3886, 3887, 3888, 3889, 3890, 3891, 3892, 3893, 3894, 3895, 3896, 3897, 3898, 3899, 3900, 3901, 3902, 3903, 3904, 3905, 3906, 3907, 3908, 3909, 3910, 3911, 3912, 3913, 3914, 3915, 3916, 3917, 3918, 3919, 3920, 3921, 3922, 3923, 3924, 3925, 3926, 3927, 3928, 3929, 3930, 3931, 3932, 3933, 3934, 3935, 3936, 3937, 3938, 3939, 3940, 3941, 3942, 3943, 3944, 3945, 3946, 3947, 3948, 3949, 3950, 3951, 3952, 3953, 3954, 3955, 3956, 3957, 3958, 3959, 3960, 3961, 3962, 3963, 3964, 3965, 3966, 3967, 3968, 3969, 3970, 3971, 3972, 3973, 3974, 3975, 3976, 3977, 3978, 3979, 3980, 3981, 3982, 3983, 3984, 3985, 3986, 3987, 3988, 3989, 3990, 3991, 3992, 3993, 3994, 3995, 3996, 3997, 3998, 3999, 4000, 4001, 4002, 4003, 4004, 4005, 4006, 4007, 4008, 4009, 4010, 4011, 4012, 4013, 4014, 4015, 4016, 4017, 4018, 4019, 4020, 4021, 4022, 4023, 4024, 4025, 4026, 4027, 4028, 4029, 4030, 4031, 4032, 4033, 4034, 4035, 4036, 4037, 4038, 4039, 4040, 4041, 4042, 4043, 4044, 4045, 4046, 4047, 4048, 4049, 4050, 4051, 4052, 4053, 4054, 4055, 4056, 4057, 4058, 4059, 4060, 4061, 4062, 4063, 4064, 4065, 4066, 4067, 4068, 4069, 4070, 4071, 4072, 4073, 4074, 4075, 4076, 4077, 4078, 4079, 4080, 4081, 4082, 4083, 4084, 4085, 4086, 4087, 4088, 4089, 4090, 4091, 4092, 4093, 4094, 4095, 4096, 4097, 4098, 4099, 4100, 4101, 4102, 4103, 4104, 4105, 4106, 4107, 4108, 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118, 4119, 4120, 4121, 4122, 4123, 4124, 4125, 4126, 4127, 4128, 4129, 4130, 4131, 4132, 4133, 4134, 4135, 4136, 4137, 4138, 4139, 4140, 4141, 4142, 4143, 4144, 4145, 4146, 4147, 4148, 4149, 4150, 4151, 4152, 4153, 4154, 4155, 4156, 4157, 4158, 4159, 4160, 4161, 4162, 4163, 4164, 4165, 4166, 4167, 4168, 4169, 4170, 4171, 4172, 4173, 4174, 4175, 4176, 4177, 4178, 4179, 4180, 4181, 4182, 4183, 4184, 4185, 4186, 4187, 4188, 4189, 4190, 4191, 4192, 4193, 4194, 4195, 4196, 4197, 4198, 4199, 4200, 4201, 4202, 4203, 4204, 4205, 4206, 4207, 4208, 4209, 4210, 4211, 4212, 4213, 4214, 4215, 4216, 4217, 4218, 4219, 4220, 4221, 4222, 4223, 4224, 4225, 4226, 4227, 4228, 4229, 4230, 4231, 4232, 4233, 4234, 4235, 4236, 4237, 4238, 4239, 4240, 4241, 4242, 4243, 4244, 4245, 4246, 4247, 4248, 4249, 4250, 4251, 4252, 4253, 4254, 4255, 4256, 4257, 4258, 4259, 4260, 4261, 4262, 4263, 4264, 4265, 4266, 4267, 4268, 4269, 4270, 4271, 4272, 4273, 4274, 4275, 4276, 4277, 4278, 4279, 4280, 4281, 4282, 4283, 4284, 4285, 4286, 4287, 4288, 4289, 4290, 4291, 4292, 4293, 4294, 4295, 4296, 4297, 4298, 4299, 4300, 4301, 4302, 4303, 4304, 4305, 4306, 4307, 4308, 4309, 4310, 4311, 4312, 4313, 4314, 4315, 4316, 4317, 4318, 4319, 4320, 4321, 4322, 4323, 4324, 4325, 4326, 4327, 4328, 4329, 4330, 4331, 4332, 4333, 4334, 4335, 4336, 4337, 4338, 4339, 4340, 4341, 4342, 4343, 4344, 4345, 4346, 4347, 4348, 4349, 4350, 4351, 4352, 4353, 4354, 4355, 4356, 4357, 4358, 4359, 4360, 4361, 4362, 4363, 4364, 4365, 4366, 4367, 4368, 4369, 4370, 4371, 4372, 4373, 4374, 4375, 4376, 4377, 4378, 4379, 4380, 4381, 4382, 4383, 4384, 4385, 4386, 4387, 4388, 4389, 4390, 4391, 4392, 4393, 4394, 4395, 4396, 4397, 4398, 4399, 4400, 4401, 4402, 4403, 4404, 4405, 4406, 4407, 4408, 4409, 4410, 4411, 4412, 4413, 4414, 4415, 4416, 4417, 4418, 4419, 4420, 4421, 4422, 4423, 4424, 4425, 4426, 4427, 4428, 4429, 4430, 4431, 4432, 4433, 4434, 4435, 4436, 4437, 4438, 4439, 4440, 4441, 4442, 4443, 4444, 4445, 4446, 4447, 4448, 4449, 4450, 4451, 4452, 4453, 4454, 4455, 4456, 4457, 4458, 4459, 4460, 4461, 4462, 4463, 4464, 4465, 4466, 4467, 4468, 4469, 4470, 4471, 4472, 4473, 4474, 4475, 4476, 4477, 4478, 4479, 4480, 4481, 4482, 4483, 4484, 4485, 4486, 4487, 4488, 4489, 4490, 4491, 4492, 4493, 4494, 4495, 4496, 4497, 4498, 4499, 4500, 4501, 4502, 4503, 4504, 4505, 4506, 4507, 4508, 4509, 4510, 4511, 4512, 4513, 4514, 4515, 4516, 4517, 4518, 4519, 4520, 4521, 4522, 4523, 4524, 4525, 4526, 4527, 4528, 4529, 4530, 4531, 4532, 4533, 4534, 4535, 4536, 4537, 4538, 4539, 4540, 4541, 4542, 4543, 4544, 4545, 4546, 4547, 4548, 4549, 4550, 4551, 4552, 4553, 4554, 4555, 4556, 4557, 4558, 4559, 4560, 4561, 4562, 4563, 4564, 4565, 4566, 4567, 4568, 4569, 4570, 4571, 4572, 4573, 4574, 4575, 4576, 4577, 4578, 4579, 4580, 4581, 4582, 4583, 4584, 4585, 4586, 4587, 4588, 4589, 4590, 4591, 4592, 4593, 4594, 4595, 4596, 4597, 4598, 4599, 4600, 4601, 4602, 4603, 4604, 4605, 4606, 4607, 4608, 4609, 4610, 4611, 4612, 4613, 4614, 4615, 4616, 4617, 4618, 4619, 4620, 4621, 4622, 4623, 4624, 4625, 4626, 4627, 4628, 4629, 4630, 4631, 4632, 4633, 4634, 4635, 4636, 4637, 4638, 4639, 4640, 4641, 4642, 4643, 4644, 4645, 4646, 4647, 4648, 4649, 4650, 4651, 4652, 4653, 4654, 4655, 4656, 4657, 4658, 4659, 4660, 4661, 4662, 4663, 4664, 4665, 4666, 4667, 4668, 4669, 4670, 4671, 4672, 4673, 4674, 4675, 4676, 4677, 4678, 4679, 4680, 4681, 4682, 4683, 4684, 4685, 4686, 4687, 4688, 4689, 4690, 4691, 4692, 4693, 4694, 4695, 4696, 4697, 4698, 4699, 4700, 4701, 4702, 4703, 4704, 4705, 4706, 4707, 4708, 4709, 4710, 4711, 4712, 4713, 4714, 4715, 4716, 4717, 4718, 4719, 4720, 4721, 4722, 4723, 4724, 4725, 4726, 4727, 4728, 4729, 4730, 4731, 4732, 4733, 4734, 4735, 4736, 4737, 4738, 4739, 4740, 4741, 4742, 4743, 4744, 4745, 4746, 4747, 4748, 4749, 4750, 4751, 4752, 4753, 4754, 4755, 4756, 4757, 4758, 4759, 4760, 4761, 4762, 4763, 4764, 4765, 4766, 4767, 4768, 4769, 4770, 4771, 4772, 4773, 4774, 4775, 4776, 4777, 4778, 4779, 4780, 4781, 4782, 4783, 4784, 4785, 4786, 4787, 4788, 4789, 4790, 4791, 4792, 4793, 4794, 4795, 4796, 4797, 4798, 4799, 4800, 4801, 4802, 4803, 4804, 4805, 4806, 4807, 4808, 4809, 4810, 4811, 4812, 4813, 4814, 4815, 4816, 4817, 4818, 4819, 4820, 4821, 4822, 4823, 4824, 4825, 4826, 4827, 4828, 4829, 4830, 4831, 4832, 4833, 4834, 4835, 4836, 4837, 4838, 4839, 4840, 4841, 4842, 4843, 4844, 4845, 4846, 4847, 4848, 4849, 4850, 4851, 4852, 4853, 4854, 4855, 4856, 4857, 4858, 4859, 4860, 4861, 4862, 4863, 4864, 4865, 4866, 4867, 4868, 4869, 4870, 4871, 4872, 4873, 4874, 4875, 4876, 4877, 4878, 4879, 4880, 4881, 4882, 4883, 4884, 4885, 4886, 4887, 4888, 4889, 4890, 4891, 4892, 4893, 4894, 4895, 4896, 4897, 4898, 4899, 4900, 4901, 4902, 4903, 4904, 4905, 4906, 4907, 4908, 4909, 4910, 4911, 4912, 4913, 4914, 4915, 4916, 4917, 4918, 4919, 4920, 4921, 4922, 4923, 4924, 4925, 4926, 4927, 4928, 4929, 4930, 4931, 4932, 4933, 4934, 4935, 4936, 4937, 4938, 4939, 4940, 4941, 4942, 4943, 4944, 4945, 4946, 4947, 4948, 4949, 4950, 4951, 4952, 4953, 4954, 4955, 4956, 4957, 4958, 4959, 4960, 4961, 4962, 4963, 4964, 4965, 4966, 4967, 4968, 4969, 4970, 4971, 4972, 4973, 4974, 4975, 4976, 4977, 4978, 4979, 4980, 4981, 4982, 4983, 4984, 4985, 4986, 4987, 4988, 4989, 4990, 4991, 4992, 4993, 4994, 4995, 4996, 4997, 4998, 4999, 5000, 5001, 5002, 5003, 5004, 5005, 5006, 5007, 5008, 5009, 5010, 5011, 5012, 5013, 5014, 5015, 5016, 5017, 5018, 5019, 5020, 5021, 5022, 5023, 5024, 5025, 5026, 5027, 5028, 5029, 5030, 5031, 5032, 5033, 5034, 5035, 5036, 5037, 5038, 5039, 5040, 5041, 5042, 5043, 5044, 5045, 5046, 5047, 5048, 5049, 5050, 5051, 5052, 5053, 5054, 5055, 5056, 5057, 5058, 5059, 5060, 5061, 5062, 5063, 5064, 5065, 5066, 5067, 5068, 5069, 5070, 5071, 5072, 5073, 5074, 5075, 5076, 5077, 5078, 5079, 5080, 5081, 5082, 5083, 5084, 5085, 5086, 5087, 5088, 5089, 5090, 5091, 5092, 5093, 5094, 5095, 5096, 5097, 5098, 5099, 5100, 5101, 5102, 5103, 5104, 5105, 5106, 5107, 5108, 5109, 5110, 5111, 5112, 5113, 5114, 5115, 5116, 5117, 5118, 5119, 5120, 5121, 5122, 5123, 5124, 5125, 5126, 5127, 5128, 5129, 5130, 5131, 5132, 5133, 5134, 5135, 5136, 5137, 5138, 5139, 5140, 5141, 5142, 5143, 5144, 5145, 5146, 5147, 5148, 5149, 5150, 5151, 5152, 5153, 5154, 5155, 5156, 5157, 5158, 5159, 5160, 5161, 5162, 5163, 5164, 5165, 5166, 5167, 5168, 5169, 5170, 5171, 5172, 5173, 5174, 5175, 5176, 5177, 5178, 5179, 5180, 5181, 5182, 5183, 5184, 5185, 5186, 5187, 5188, 5189, 5190, 5191, 5192, 5193, 5194, 5195, 5196, 5197, 5198, 5199, 5200, 5201, 5202, 5203, 5204, 5205, 5206, 5207, 5208, 5209, 5210, 5211, 5212, 5213, 5214, 5215, 5216, 5217, 5218, 5219, 5220, 5221, 5222, 5223, 5224, 5225, 5226, 5227, 5228, 5229, 5230, 5231, 5232, 5233, 5234, 5235, 5236, 5237, 5238, 5239, 5240, 5241, 5242, 5243, 5244, 5245, 5246, 5247, 5248, 5249, 5250, 5251, 5252, 5253, 5254, 5255, 5256, 5257, 5258, 5259, 5260, 5261, 5262, 5263, 5264, 5265, 5266, 5267, 5268, 5269, 5270, 5271, 5272, 5273, 5274, 5275, 5276, 5277, 5278, 5279, 5280, 5281, 5282, 5283, 5284, 5285, 5286, 5287, 5288, 5289, 5290, 5291, 5292, 5293, 5294, 5295, 5296, 5297, 5298, 5299, 5300, 5301, 5302, 5303, 5304, 5305, 5306, 5307, 5308, 5309, 5310, 5311, 5312, 5313, 5314, 5315, 5316, 5317, 5318, 5319, 5320, 5321, 5322, 5323, 5324, 5325, 5326, 5327, 5328, 5329, 5330, 5331, 5332, 5333, 5334, 5335, 5336, 5337, 5338, 5339, 5340, 5341, 5342, 5343, 5344, 5345, 5346, 5347, 5348, 5349, 5350, 5351, 5352, 5353, 5354, 5355, 5356, 5357, 5358, 5359, 5360, 5361, 5362, 5363, 5364, 5365, 5366, 5367, 5368, 5369, 5370, 5371, 5372, 5373, 5374, 5375, 5376, 5377, 5378, 5379, 5380, 5381, 5382, 5383, 5384, 5385, 5386, 5387, 5388, 5389, 5390, 5391, 5392, 5393, 5394, 5395, 5396, 5397, 5398, 5399, 5400, 5401, 5402, 5403, 5404, 5405, 5406, 5407, 5408, 5409, 5410, 5411, 5412, 5413, 5414, 5415, 5416, 5417, 5418, 5419, 5420, 5421, 5422, 5423, 5424, 5425, 5426, 5427, 5428, 5429, 5430, 5431, 5432, 5433, 5434, 5435, 5436, 5437, 5438, 5439, 5440, 5441, 5442, 5443, 5444, 5445, 5446, 5447, 5448, 5449, 5450, 5451, 5452, 5453, 5454, 5455, 5456, 5457, 5458, 5459, 5460, 5461, 5462, 5463, 5464, 5465, 5466, 5467, 5468, 5469, 5470, 5471, 5472, 5473, 5474, 5475, 5476, 5477, 5478, 5479, 5480, 5481, 5482, 5483, 5484, 5485, 5486, 5487, 5488, 5489, 5490, 5491, 5492, 5493, 5494, 5495, 5496, 5497, 5498, 5499, 5500, 5501, 5502, 5503, 5504, 5505, 5506, 5507, 5508, 5509, 5510, 5511, 5512, 5513, 5514, 5515, 5516, 5517, 5518, 5519, 5520, 5521, 5522, 5523, 5524, 5525, 5526, 5527, 5528, 5529, 5530, 5531, 5532, 5533, 5534, 5535, 5536, 5537, 5538, 5539, 5540, 5541, 5542, 5543, 5544, 5545, 5546, 5547, 5548, 5549, 5550, 5551, 5552, 5553, 5554, 5555, 5556, 5557, 5558, 5559, 5560, 5561, 5562, 5563, 5564, 5565, 5566, 5567, 5568, 5569, 5570, 5571, 5572, 5573, 5574, 5575, 5576, 5577, 5578, 5579, 5580, 5581, 5582, 5583, 5584, 5585, 5586, 5587, 5588, 5589, 5590, 5591, 5592, 5593, 5594, 5595, 5596, 5597, 5598, 5599, 5600, 5601, 5602, 5603, 5604, 5605, 5606, 5607, 5608, 5609, 5610, 5611, 5612, 5613, 5614, 5615, 5616, 5617, 5618, 5619, 5620, 5621, 5622, 5623, 5624, 5625, 5626, 5627, 5628, 5629, 5630, 5631, 5632, 5633, 5634, 5635, 5636, 5637, 5638, 5639, 5640, 5641, 5642, 5643, 5644, 5645, 5646, 5647, 5648, 5649, 5650, 5651, 5652, 5653, 5654, 5655, 5656, 5657, 5658, 5659, 5660, 5661, 5662, 5663, 5664, 5665, 5666, 5667, 5668, 5669, 5670, 5671, 5672, 5673, 5674, 5675, 5676, 5677, 5678, 5679, 5680, 5681, 5682, 5683, 5684, 5685, 5686, 5687, 5688, 5689, 5690, 5691, 5692, 5693, 5694, 5695, 5696, 5697, 5698, 5699, 5700, 5701, 5702, 5703, 5704, 5705, 5706, 5707, 5708, 5709, 5710, 5711, 5712, 5713, 5714, 5715, 5716, 5717, 5718, 5719, 5720, 5721, 5722, 5723, 5724, 5725, 5726, 5727, 5728, 5729, 5730, 5731, 5732, 5733, 5734, 5735, 5736, 5737, 5738, 5739, 5740, 5741, 5742, 5743, 5744, 5745, 5746, 5747, 5748, 5749, 5750, 5751, 5752, 5753, 5754, 5755, 5756, 5757, 5758, 5759, 5760, 5761, 5762, 5763, 5764, 5765, 5766, 5767, 5768, 5769, 5770, 5771, 5772, 5773, 5774, 5775, 5776, 5777, 5778, 5779, 5780, 5781, 5782, 5783, 5784, 5785, 5786, 5787, 5788, 5789, 5790, 5791, 5792, 5793, 5794, 5795, 5796, 5797, 5798, 5799, 5800, 5801, 5802, 5803, 5804, 5805, 5806, 5807, 5808, 5809, 5810, 5811, 5812, 5813, 5814, 5815, 5816, 5817, 5818, 5819, 5820, 5821, 5822, 5823, 5824, 5825, 5826, 5827, 5828, 5829, 5830, 5831, 5832, 5833, 5834, 5835, 5836, 5837, 5838, 5839, 5840, 5841, 5842, 5843, 5844, 5845, 5846, 5847, 5848, 5849, 5850, 5851, 5852, 5853, 5854, 5855, 5856, 5857, 5858, 5859, 5860, 5861, 5862, 5863, 5864, 5865, 5866, 5867, 5868, 5869, 5870, 5871, 5872, 5873, 5874, 5875, 5876, 5877, 5878, 5879, 5880, 5881, 5882, 5883, 5884, 5885, 5886, 5887, 5888, 5889, 5890, 5891, 5892, 5893, 5894, 5895, 5896, 5897, 5898, 5899, 5900, 5901, 5902, 5903, 5904, 5905, 5906, 5907, 5908, 5909, 5910, 5911, 5912, 5913, 5914, 5915, 5916, 5917, 5918, 5919, 5920, 5921, 5922, 5923, 5924, 5925, 5926, 5927, 5928, 5929, 5930, 5931, 5932, 5933, 5934, 5935, 5936, 5937, 5938, 5939, 5940, 5941, 5942, 5943, 5944, 5945, 5946, 5947, 5948, 5949, 5950, 5951, 5952, 5953, 5954, 5955, 5956, 5957, 5958, 5959, 5960, 5961, 5962, 5963, 5964, 5965, 5966, 5967, 5968, 5969, 5970, 5971, 5972, 5973, 5974, 5975, 5976, 5977, 5978, 5979, 5980, 5981, 5982, 5983, 5984, 5985, 5986, 5987, 5988, 5989, 5990, 5991, 5992, 5993, 5994, 5995, 5996, 5997, 5998, 5999, 6000, 6001, 6002, 6003, 6004, 6005, 6006, 6007, 6008, 6009, 6010, 6011, 6012, 6013, 6014, 6015, 6016, 6017, 6018, 6019, 6020, 6021, 6022, 6023, 6024, 6025, 6026, 6027, 6028, 6029, 6030, 6031, 6032, 6033, 6034, 6035, 6036, 6037, 6038, 6039, 6040, 6041, 6042, 6043, 6044, 6045, 6046, 6047, 6048, 6049, 6050, 6051, 6052, 6053, 6054, 6055, 6056, 6057, 6058, 6059, 6060, 6061, 6062, 6063, 6064, 6065, 6066, 6067, 6068, 6069, 6070, 6071, 6072, 6073, 6074, 6075, 6076, 6077, 6078, 6079, 6080, 6081, 6082, 6083, 6084, 6085, 6086, 6087, 6088, 6089, 6090, 6091, 6092, 6093, 6094, 6095, 6096, 6097, 6098, 6099, 6100, 6101, 6102, 6103, 6104, 6105, 6106, 6107, 6108, 6109, 6110, 6111, 6112, 6113, 6114, 6115, 6116, 6117, 6118, 6119, 6120, 6121, 6122, 6123, 6124, 6125, 6126, 6127, 6128, 6129, 6130, 6131, 6132, 6133, 6134, 6135, 6136, 6137, 6138, 6139, 6140, 6141, 6142, 6143, 6144, 6145, 6146, 6147, 6148, 6149, 6150, 6151, 6152, 6153, 6154, 6155, 6156, 6157, 6158, 6159, 6160, 6161, 6162, 6163, 6164, 6165, 6166, 6167, 6168, 6169, 6170, 6171, 6172, 6173, 6174, 6175, 6176, 6177, 6178, 6179, 6180, 6181, 6182, 6183, 6184, 6185, 6186, 6187, 6188, 6189, 6190, 6191, 6192, 6193, 6194, 6195, 6196, 6197, 6198, 6199, 6200, 6201, 6202, 6203, 6204, 6205, 6206, 6207, 6208, 6209, 6210, 6211, 6212, 6213, 6214, 6215, 6216, 6217, 6218, 6219, 6220, 6221, 6222, 6223, 6224, 6225, 6226, 6227, 6228, 6229, 6230, 6231, 6232, 6233, 6234, 6235, 6236, 6237, 6238, 6239, 6240, 6241, 6242, 6243, 6244, 6245, 6246, 6247, 6248, 6249, 6250, 6251, 6252, 6253, 6254, 6255, 6256, 6257, 6258, 6259, 6260, 6261, 6262, 6263, 6264, 6265, 6266, 6267, 6268, 6269, 6270, 6271, 6272, 6273, 6274, 6275, 6276, 6277, 6278, 6279, 6280, 6281, 6282, 6283, 6284, 6285, 6286, 6287, 6288, 6289, 6290, 6291, 6292, 6293, 6294, 6295, 6296, 6297, 6298, 6299, 6300, 6301, 6302, 6303, 6304, 6305, 6306, 6307, 6308, 6309, 6310, 6311, 6312, 6313, 6314, 6315, 6316, 6317, 6318, 6319, 6320, 6321, 6322, 6323, 6324, 6325, 6326, 6327, 6328, 6329, 6330, 6331, 6332, 6333, 6334, 6335, 6336, 6337, 6338, 6339, 6340, 6341, 6342, 6343, 6344, 6345, 6346, 6347, 6348, 6349, 6350, 6351, 6352, 6353, 6354, 6355, 6356, 6357, 6358, 6359, 6360, 6361, 6362, 6363, 6364, 6365, 6366, 6367, 6368, 6369, 6370, 6371, 6372, 6373, 6374, 6375, 6376, 6377, 6378, 6379, 6380, 6381, 6382, 6383, 6384, 6385, 6386, 6387, 6388, 6389, 6390, 6391, 6392, 6393, 6394, 6395, 6396, 6397, 6398, 6399, 6400, 6401, 6402, 6403, 6404, 6405, 6406, 6407, 6408, 6409, 6410, 6411, 6412, 6413, 6414, 6415, 6416, 6417, 6418, 6419, 6420, 6421, 6422, 6423, 6424, 6425, 6426, 6427, 6428, 6429, 6430, 6431, 6432, 6433, 6434, 6435, 6436, 6437, 6438, 6439, 6440, 6441, 6442, 6443, 6444, 6445, 6446, 6447, 6448, 6449, 6450, 6451, 6452, 6453, 6454, 6455, 6456, 6457, 6458, 6459, 6460, 6461, 6462, 6463, 6464, 6465, 6466, 6467, 6468, 6469, 6470, 6471, 6472, 6473, 6474, 6475, 6476, 6477, 6478, 6479, 6480, 6481, 6482, 6483, 6484, 6485, 6486, 6487, 6488, 6489, 6490, 6491, 6492, 6493, 6494, 6495, 6496, 6497, 6498, 6499, 6500, 6501, 6502, 6503, 6504, 6505, 6506, 6507, 6508, 6509, 6510, 6511, 6512, 6513, 6514, 6515, 6516, 6517, 6518, 6519, 6520, 6521, 6522, 6523, 6524, 6525, 6526, 6527, 6528, 6529, 6530, 6531, 6532, 6533, 6534, 6535, 6536, 6537, 6538, 6539, 6540, 6541, 6542, 6543, 6544, 6545, 6546, 6547, 6548, 6549, 6550, 6551, 6552, 6553, 6554, 6555, 6556, 6557, 6558, 6559, 6560, 6561, 6562, 6563, 6564, 6565, 6566, 6567, 6568, 6569, 6570, 6571, 6572, 6573, 6574, 6575, 6576, 6577, 6578, 6579, 6580, 6581, 6582, 6583, 6584, 6585, 6586, 6587, 6588, 6589, 6590, 6591, 6592, 6593, 6594, 6595, 6596, 6597, 6598, 6599, 6600, 6601, 6602, 6603, 6604, 6605, 6606, 6607, 6608, 6609, 6610, 6611, 6612, 6613, 6614, 6615, 6616, 6617, 6618, 6619, 6620, 6621, 6622, 6623, 6624, 6625, 6626, 6627, 6628, 6629, 6630, 6631, 6632, 6633, 6634, 6635, 6636, 6637, 6638, 6639, 6640, 6641, 6642, 6643, 6644, 6645, 6646, 6647, 6648, 6649, 6650, 6651, 6652, 6653, 6654, 6655, 6656, 6657, 6658, 6659, 6660, 6661, 6662, 6663, 6664, 6665, 6666, 6667, 6668, 6669, 6670, 6671, 6672, 6673, 6674, 6675, 6676, 6677, 6678, 6679, 6680, 6681, 6682, 6683, 6684, 6685, 6686, 6687, 6688, 6689, 6690, 6691, 6692, 6693, 6694, 6695, 6696, 6697, 6698, 6699, 6700, 6701, 6702, 6703, 6704, 6705, 6706, 6707, 6708, 6709, 6710, 6711, 6712, 6713, 6714, 6715, 6716, 6717, 6718, 6719, 6720, 6721, 6722, 6723, 6724, 6725, 6726, 6727, 6728, 6729, 6730, 6731, 6732, 6733, 6734, 6735, 6736, 6737, 6738, 6739, 6740, 6741, 6742, 6743, 6744, 6745, 6746, 6747, 6748, 6749, 6750, 6751, 6752, 6753, 6754, 6755, 6756, 6757, 6758, 6759, 6760, 6761, 6762, 6763, 6764, 6765, 6766, 6767, 6768, 6769, 6770, 6771, 6772, 6773, 6774, 6775, 6776, 6777, 6778, 6779, 6780, 6781, 6782, 6783, 6784, 6785, 6786, 6787, 6788, 6789, 6790, 6791, 6792, 6793, 6794, 6795, 6796, 6797, 6798, 6799, 6800, 6801, 6802, 6803, 6804, 6805, 6806, 6807, 6808, 6809, 6810, 6811, 6812, 6813, 6814, 6815, 6816, 6817, 6818, 6819, 6820, 6821, 6822, 6823, 6824, 6825, 6826, 6827, 6828, 6829, 6830, 6831, 6832, 6833, 6834, 6835, 6836, 6837, 6838, 6839, 6840, 6841, 6842, 6843, 6844, 6845, 6846, 6847, 6848, 6849, 6850, 6851, 6852, 6853, 6854, 6855, 6856, 6857, 6858, 6859, 6860, 6861, 6862, 6863, 6864, 6865, 6866, 6867, 6868, 6869, 6870, 6871, 6872, 6873, 6874, 6875, 6876, 6877, 6878, 6879, 6880, 6881, 6882, 6883, 6884, 6885, 6886, 6887, 6888, 6889, 6890, 6891, 6892, 6893, 6894, 6895, 6896, 6897, 6898, 6899, 6900, 6901, 6902, 6903, 6904, 6905, 6906, 6907, 6908, 6909, 6910, 6911, 6912, 6913, 6914, 6915, 6916, 6917, 6918, 6919, 6920, 6921, 6922, 6923, 6924, 6925, 6926, 6927, 6928, 6929, 6930, 6931, 6932, 6933, 6934, 6935, 6936, 6937, 6938, 6939, 6940, 6941, 6942, 6943, 6944, 6945, 6946, 6947, 6948, 6949, 6950, 6951, 6952, 6953, 6954, 6955, 6956, 6957, 6958, 6959, 6960, 6961, 6962, 6963, 6964, 6965, 6966, 6967, 6968, 6969, 6970, 6971, 6972, 6973, 6974, 6975, 6976, 6977, 6978, 6979, 6980, 6981, 6982, 6983, 6984, 6985, 6986, 6987, 6988, 6989, 6990, 6991, 6992, 6993, 6994, 6995, 6996, 6997, 6998, 6999, 7000, 7001, 7002, 7003, 7004, 7005, 7006, 7007, 7008, 7009, 7010, 7011, 7012, 7013, 7014, 7015, 7016, 7017, 7018, 7019, 7020, 7021, 7022, 7023, 7024, 7025, 7026, 7027, 7028, 7029, 7030, 7031, 7032, 7033, 7034, 7035, 7036, 7037, 7038, 7039, 7040, 7041, 7042, 7043, 7044, 7045, 7046, 7047, 7048, 7049, 7050, 7051, 7052, 7053, 7054, 7055, 7056, 7057, 7058, 7059, 7060, 7061, 7062, 7063, 7064, 7065, 7066, 7067, 7068, 7069, 7070, 7071, 7072, 7073, 7074, 7075, 7076, 7077, 7078, 7079, 7080, 7081, 7082, 7083, 7084, 7085, 7086, 7087, 7088, 7089, 7090, 7091, 7092, 7093, 7094, 7095, 7096, 7097, 7098, 7099, 7100, 7101, 7102, 7103, 7104, 7105, 7106, 7107, 7108, 7109, 7110, 7111, 7112, 7113, 7114, 7115, 7116, 7117, 7118, 7119, 7120, 7121, 7122, 7123, 7124, 7125, 7126, 7127, 7128, 7129, 7130, 7131, 7132, 7133, 7134, 7135, 7136, 7137, 7138, 7139, 7140, 7141, 7142, 7143, 7144, 7145, 7146, 7147, 7148, 7149, 7150, 7151, 7152, 7153, 7154, 7155, 7156, 7157, 7158, 7159, 7160, 7161, 7162, 7163, 7164, 7165, 7166, 7167, 7168, 7169, 7170, 7171, 7172, 7173, 7174, 7175, 7176, 7177, 7178, 7179, 7180, 7181, 7182, 7183, 7184, 7185, 7186, 7187, 7188, 7189, 7190, 7191, 7192, 7193, 7194, 7195, 7196, 7197, 7198, 7199]
uniform token subdivisionScheme = "none"
}
}
|
ft-lab/omniverse_sample_scripts/Prim/TypeName/readme.md | # TypeName
PrimのTypeName(Xform/Mesh/DistantLightなど)を取得。
|ファイル|説明|
|---|---|
|[GetTypeName.py](./GetTypeName.py)|PrimのTypeNameを取得|
|
ft-lab/omniverse_sample_scripts/Prim/TypeName/GetTypeName.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
for path in paths:
# Get prim.
prim = stage.GetPrimAtPath(path)
if prim.IsValid() == False:
continue
print('[ ' + prim.GetName() + ' ] TypeName = ' + prim.GetTypeName())
|
ft-lab/omniverse_sample_scripts/Prim/Variant/Variant_01.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Reference : https://github.com/PixarAnimationStudios/USD/blob/release/extras/usd/tutorials/authoringVariants/authorVariants.py
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get default prim.
defaultPrim = stage.GetDefaultPrim()
defaultPrimPath = defaultPrim.GetPath().pathString
# Create empty node(Xform).
path = defaultPrimPath + '/Chair'
UsdGeom.Xform.Define(stage, path)
prim = stage.GetPrimAtPath(path)
# Set VariantSet.
variantSet = prim.GetVariantSet('variantGroup')
variantSet.AddVariant('chair1')
variantSet.AddVariant('chair2')
variantSet.AddVariant('chair3')
# -----------------------------------------------.
# Set Chair.
# -----------------------------------------------.
def SetChair (index : int, path : str, colorV):
# Create reference.
# The USD file to be referenced should be changed to suit your environment.
usdPath = "https://ft-lab.github.io/usd/omniverse/usd/simple_chair.usda"
path2 = path + '/simple_chair_' + str(index)
UsdGeom.Xform.Define(stage, path2)
prim2 = stage.GetPrimAtPath(path2)
prim2.GetReferences().AddReference(usdPath)
path3 = path2 + '/simple_chair'
targetPrim = UsdGeom.Gprim.Get(stage, path3)
try:
# Clear Material.
UsdShade.MaterialBindingAPI(targetPrim).UnbindAllBindings()
# Set Display Color.
colorAttr = targetPrim.GetDisplayColorAttr()
colorAttr.Set([colorV])
except Exception as e:
pass
# -----------------------------------------------.
# Set 'chair1'.
variantSet.SetVariantSelection("chair1")
with variantSet.GetVariantEditContext():
SetChair(1, path, (1,0,0))
# Set 'chair2'.
variantSet.SetVariantSelection("chair2")
with variantSet.GetVariantEditContext():
SetChair(2, path, (0,1,0))
# Set 'chair3'.
variantSet.SetVariantSelection("chair3")
with variantSet.GetVariantEditContext():
SetChair(3, path, (0,0,1))
# Select current variant.
variantSet.SetVariantSelection("chair1")
|
ft-lab/omniverse_sample_scripts/Prim/Variant/readme.md | # Variant
PrimのGetVariant( https://graphics.pixar.com/usd/release/api/class_usd_prim.html#a607da249e11bc4f5f3b4bf0db99861ab )を使用して、1つのPrim内で複数のPrimを「VariantSet」として登録します。
この例の場合は椅子のusdファイル([simple_chair.usda](../Reference/usd/simple_chair.usda))を参照し、色を変えて3つの形状としています。

表示されるのはVariantで指定された1つの形状のみです。
|ファイル|説明|
|---|---|
|[Variant_01.py](./Variant_01.py)|Variantを使ったPrimの切り替えのテスト|
|
ft-lab/omniverse_sample_scripts/Prim/Transform/SetRotate.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
import omni.usd
import omni.timeline
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
# --------------------------------------------------.
# Set Rotate.
# --------------------------------------------------.
def _setRotate (prim : Usd.Prim, rV : Gf.Vec3f):
if prim == None:
return
# Get rotOrder.
# If rotation does not exist, rotOrder = UsdGeom.XformCommonAPI.RotationOrderXYZ.
xformAPI = UsdGeom.XformCommonAPI(prim)
time_code = Usd.TimeCode.Default()
translation, rotation, scale, pivot, rotOrder = xformAPI.GetXformVectors(time_code)
# Convert rotOrder to "xformOp:rotateXYZ" etc.
t = xformAPI.ConvertRotationOrderToOpType(rotOrder)
rotateAttrName = "xformOp:" + UsdGeom.XformOp.GetOpTypeToken(t)
# Set rotate.
rotate = prim.GetAttribute(rotateAttrName).Get()
if rotate != None:
# Specify a value for each type.
if type(rotate) == Gf.Vec3f:
prim.GetAttribute(rotateAttrName).Set(Gf.Vec3f(rV))
elif type(rotate) == Gf.Vec3d:
prim.GetAttribute(rotateAttrName).Set(Gf.Vec3d(rV))
else:
# xformOpOrder is also updated.
xformAPI.SetRotate(Gf.Vec3f(rV), rotOrder)
for path in paths:
prim = stage.GetPrimAtPath(path)
if prim.IsValid() == True:
# Print prim name.
print(f"[ {prim.GetName()} ]")
rV = Gf.Vec3f(10.0, 25.0, 12.0)
_setRotate(prim, rV)
|
ft-lab/omniverse_sample_scripts/Prim/Transform/GetTransformOrder.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
for path in paths:
prim = stage.GetPrimAtPath(path)
if prim.IsValid() == True:
# Print prim name.
print(f"[ {prim.GetName()} ]")
# Order of Transform elements.
transformOrder = prim.GetAttribute('xformOpOrder').Get()
for sV in transformOrder:
print(f" {sV}")
|
ft-lab/omniverse_sample_scripts/Prim/Transform/SetTransform.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Create cube.
pathName = '/World/cube'
cubeGeom = UsdGeom.Cube.Define(stage, pathName)
# Set cube size.
cubeGeom.CreateSizeAttr(10.0)
# Set color.
cubeGeom.CreateDisplayColorAttr([(0.0, 1.0, 0.0)])
# Set transform.
prim = stage.GetPrimAtPath(pathName)
prim.CreateAttribute("xformOp:translate", Sdf.ValueTypeNames.Float3, False).Set(Gf.Vec3f(0, 10, 0))
prim.CreateAttribute("xformOp:scale", Sdf.ValueTypeNames.Float3, False).Set(Gf.Vec3f(1, 2, 1))
prim.CreateAttribute("xformOp:rotateXYZ", Sdf.ValueTypeNames.Float3, False).Set(Gf.Vec3f(120, 45, 0))
transformOrder = prim.CreateAttribute("xformOpOrder", Sdf.ValueTypeNames.String, False)
transformOrder.Set(["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"])
|
ft-lab/omniverse_sample_scripts/Prim/Transform/SetRotateWithQuat.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
import omni.usd
import omni.timeline
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
# --------------------------------------------------.
# Set Rotate.
# --------------------------------------------------.
def _setRotate (prim : Usd.Prim, rV : Gf.Vec3f):
if prim == None:
return
# Get rotOrder.
# If rotation does not exist, rotOrder = UsdGeom.XformCommonAPI.RotationOrderXYZ.
xformAPI = UsdGeom.XformCommonAPI(prim)
time_code = Usd.TimeCode.Default()
translation, rotation, scale, pivot, rotOrder = xformAPI.GetXformVectors(time_code)
# If with orientation, specify rotation with quat.
tV = prim.GetAttribute("xformOp:orient")
if tV.IsValid():
rotX = Gf.Rotation(Gf.Vec3d(1, 0, 0), rV[0])
rotY = Gf.Rotation(Gf.Vec3d(0, 1, 0), rV[1])
rotZ = Gf.Rotation(Gf.Vec3d(0, 0, 1), rV[2])
rotXYZ = rotX * rotY * rotZ
if type(tV.Get()) == Gf.Quatd:
tV.Set(rotXYZ.GetQuat())
elif type(tV.Get()) == Gf.Quatf:
tV.Set(Gf.Quatf(rotXYZ.GetQuat()))
else:
# Convert rotOrder to "xformOp:rotateXYZ" etc.
t = xformAPI.ConvertRotationOrderToOpType(rotOrder)
rotateAttrName = "xformOp:" + UsdGeom.XformOp.GetOpTypeToken(t)
# Set rotate.
rotate = prim.GetAttribute(rotateAttrName).Get()
if rotate != None:
# Specify a value for each type.
if type(rotate) == Gf.Vec3f:
prim.GetAttribute(rotateAttrName).Set(Gf.Vec3f(rV))
elif type(rotate) == Gf.Vec3d:
prim.GetAttribute(rotateAttrName).Set(Gf.Vec3d(rV))
else:
# xformOpOrder is also updated.
xformAPI.SetRotate(Gf.Vec3f(rV), rotOrder)
for path in paths:
prim = stage.GetPrimAtPath(path)
if prim.IsValid() == True:
# Print prim name.
print(f"[ {prim.GetName()} ]")
rV = Gf.Vec3f(10.0, 25.0, 12.0)
_setRotate(prim, rV)
|
ft-lab/omniverse_sample_scripts/Prim/Transform/SetPivot.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
import omni.usd
import omni.timeline
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
# --------------------------------------------------.
# Set pivot.
# --------------------------------------------------.
def _setPivot (prim : Usd.Prim, pV : Gf.Vec3f):
pivot = prim.GetAttribute("xformOp:translate:pivot").Get()
if pivot != None:
# Specify a value for each type.
if type(pivot) == Gf.Vec3f:
prim.GetAttribute("xformOp:translate:pivot").Set(Gf.Vec3f(pV))
elif type(pivot) == Gf.Vec3d:
prim.GetAttribute("xformOp:translate:pivot").Set(Gf.Vec3d(pV))
else:
# xformOpOrder is also updated.
# ["xformOp:translate", "xformOp:translate:pivot", "xformOp:rotateXYZ", "xformOp:scale", "!invert!xformOp:translate:pivot"]
# The following do not work correctly?
#xformAPI = UsdGeom.XformCommonAPI(prim)
#xformAPI.SetPivot(Gf.Vec3f(pV))
prim.CreateAttribute("xformOp:translate:pivot", Sdf.ValueTypeNames.Float3, False).Set(Gf.Vec3f(pV))
# ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale", "xformOp:translate:pivot", "!invert!xformOp:translate:pivot"]
transformOrder = prim.GetAttribute("xformOpOrder").Get()
orderList = []
for sV in transformOrder:
orderList.append(sV)
orderList.append("xformOp:translate:pivot")
orderList.append("!invert!xformOp:translate:pivot")
prim.GetAttribute("xformOpOrder").Set(orderList)
# --------------------------------------------------.
for path in paths:
prim = stage.GetPrimAtPath(path)
if prim.IsValid() == True:
# Print prim name.
print(f"[ {prim.GetName()} ]")
pV = Gf.Vec3f(10.0, 20.0, 0.0)
_setPivot(prim, pV)
|
ft-lab/omniverse_sample_scripts/Prim/Transform/readme.md | # Transform
Transform(scale/rotate/translate)情報の取得/設定。
|ファイル|説明|
|---|---|
|[GetTransform.py](./GetTransform.py)|選択された形状のTransform要素を取得|
|[GetTransformOrder.py](./GetTransformOrder.py)|選択された形状のxformOpOrder(Transformの変換順)を取得|
|[SetTransform.py](./SetTransform.py)|Cubeを作成し、Transformを指定|
|[GetWorldTransform.py](./GetWorldTransform.py)|選択形状のTransformをワールド変換して表示|
|[GetLocalMatrix.py](./GetLocalMatrix.py)|選択形状のローカル座標での4x4変換行列を取得|
|[GetTransformVectors.py](./GetTransformVectors.py)|UsdGeom.XformCommonAPIを使用して、選択形状の移動/回転/スケール/Pivot/回転を取得|
|[SetTranslate.py](./SetTranslate.py)|選択形状の移動を指定。存在しなければxformOpOrderも考慮して追加|
|[SetScale.py](./SetScale.py)|選択形状のスケールを指定。存在しなければxformOpOrderも考慮して追加|
|[SetRotate.py](./SetRotate.py)|選択形状の回転を指定。存在しなければxformOpOrderも考慮して追加|
|[SetRotateWithQuat.py](./SetRotateWithQuat.py)|選択形状の回転をQuatで指定|
|[SetPivot.py](./SetPivot.py)|選択形状のPivotを指定。存在しなければxformOpOrderも考慮して追加|
|[DeletePivot.py](./DeletePivot.py)|選択形状のPivotを削除。一部 omni.kit.commands.execute('RemoveProperty') を使用|
|
ft-lab/omniverse_sample_scripts/Prim/Transform/GetWorldTransform.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, UsdSkel, Sdf, Gf, Tf
import omni.kit
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
xformCache = UsdGeom.XformCache(0)
for path in paths:
prim = stage.GetPrimAtPath(path)
if prim.IsValid():
# Get world Transform.
globalPose = xformCache.GetLocalToWorldTransform(prim)
print(globalPose)
# Decompose transform.
translate, rotation, scale = UsdSkel.DecomposeTransform(globalPose)
# Conv Quat to eular angles.
# Rotate XYZ.
rV = Gf.Rotation(rotation).Decompose(Gf.Vec3d(0, 0, 1), Gf.Vec3d(0, 1, 0), Gf.Vec3d(1, 0, 0))
rV = Gf.Vec3d(rV[2], rV[1], rV[0])
print(f"==> translate : {translate}")
print(f"==> rotation : {rV}")
print(f"==> scale : {scale}")
|
ft-lab/omniverse_sample_scripts/Prim/Transform/GetTransform.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
for path in paths:
prim = stage.GetPrimAtPath(path)
if prim.IsValid() == True:
# Print prim name.
print('[ ' + prim.GetName() + ' ]')
# Order of Transform elements.
transformOrder = prim.GetAttribute('xformOpOrder')
if transformOrder.IsValid() and transformOrder.Get() != None:
print(f" TransformOrder : {transformOrder.Get()}")
for transV in transformOrder.Get():
# 'xformOp:scale', 'xformOp:rotateXYZ', 'xformOp:translate', etc.
tV = prim.GetAttribute(transV)
if tV.IsValid():
print(f" {transV} ( {tV.GetTypeName()} ) : {tV.Get()}")
|
ft-lab/omniverse_sample_scripts/Prim/Transform/SetScale.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
import omni.usd
import omni.timeline
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
# --------------------------------------------------.
# Set scale.
# --------------------------------------------------.
def _setScale (prim : Usd.Prim, sV : Gf.Vec3f):
if prim == None:
return
scale = prim.GetAttribute("xformOp:scale").Get()
if scale != None:
# Specify a value for each type.
if type(scale) == Gf.Vec3f:
prim.GetAttribute("xformOp:scale").Set(Gf.Vec3f(sV))
elif type(scale) == Gf.Vec3d:
prim.GetAttribute("xformOp:scale").Set(Gf.Vec3d(sV))
else:
# xformOpOrder is also updated.
xformAPI = UsdGeom.XformCommonAPI(prim)
xformAPI.SetScale(Gf.Vec3f(sV))
# --------------------------------------------------.
for path in paths:
prim = stage.GetPrimAtPath(path)
if prim.IsValid() == True:
# Print prim name.
print(f"[ {prim.GetName()} ]")
sV = Gf.Vec3f(1.1, 1.2, 1.3)
_setScale(prim, sV)
|
ft-lab/omniverse_sample_scripts/Prim/Transform/GetTransformVectors.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
import omni.usd
import omni.timeline
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
time_code = Usd.TimeCode.Default()
for path in paths:
prim = stage.GetPrimAtPath(path)
if prim.IsValid() == True:
# Print prim name.
print(f"[ {prim.GetName()} ]")
# Get transform.
# However, the type that can be obtained here is different from the actual Type.
xformAPI = UsdGeom.XformCommonAPI(prim)
translation, rotation, scale, pivot, rotOrder = xformAPI.GetXformVectors(time_code)
print("** GetXformVectors **")
print(f"translation : {type(translation)} {translation}")
print(f"rotation : {type(rotation)} {rotation}")
print(f"scale : {type(scale)} {scale}")
print(f"pivot : {type(pivot)} {pivot}")
print(f"rotOrder : {type(rotOrder)} {rotOrder}")
print("** prim.GetAttribute **")
trans = prim.GetAttribute("xformOp:translate").Get()
print(f"trans : {type(trans)} {trans}")
# Convert rotOrder to "xformOp:rotateXYZ" etc.
t = xformAPI.ConvertRotationOrderToOpType(rotOrder)
rotateAttrName = "xformOp:" + UsdGeom.XformOp.GetOpTypeToken(t)
rotate = prim.GetAttribute(rotateAttrName).Get()
print(f"rotate ({rotateAttrName}) : {type(rotate)} {rotate}")
scale = prim.GetAttribute("xformOp:scale").Get()
print(f"scale : {type(scale)} {scale}")
pivot = prim.GetAttribute("xformOp:translate:pivot").Get()
print(f"pivot : {type(pivot)} {pivot}")
|
ft-lab/omniverse_sample_scripts/Prim/Transform/SetTranslate.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
import omni.usd
import omni.timeline
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
# --------------------------------------------------.
# Set translate.
# --------------------------------------------------.
def _setTranslate (prim : Usd.Prim, tV : Gf.Vec3f):
if prim == None:
return
trans = prim.GetAttribute("xformOp:translate").Get()
if trans != None:
# Specify a value for each type.
if type(trans) == Gf.Vec3f:
prim.GetAttribute("xformOp:translate").Set(Gf.Vec3f(tV))
elif type(trans) == Gf.Vec3d:
prim.GetAttribute("xformOp:translate").Set(Gf.Vec3d(tV))
else:
# xformOpOrder is also updated.
xformAPI = UsdGeom.XformCommonAPI(prim)
xformAPI.SetTranslate(Gf.Vec3d(tV))
# -------------------------------------------------.
for path in paths:
prim = stage.GetPrimAtPath(path)
if prim.IsValid() == True:
# Print prim name.
print('[ ' + prim.GetName() + ' ]')
tV = Gf.Vec3f(10, 20, 30)
_setTranslate(prim, tV)
|
ft-lab/omniverse_sample_scripts/Prim/Transform/DeletePivot.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
import omni.usd
import omni.kit.commands
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
# --------------------------------------------------.
# Delete pivot.
# --------------------------------------------------.
def _deletePivot (prim : Usd.Prim):
if prim == None:
return
path = prim.GetPath().pathString + ".xformOp:translate:pivot"
omni.kit.commands.execute('RemoveProperty', prop_path=path)
transformOrder = prim.GetAttribute("xformOpOrder").Get()
if transformOrder != None:
orderList = []
for sV in transformOrder:
if sV == "xformOp:translate:pivot" or sV == "!invert!xformOp:translate:pivot":
continue
orderList.append(sV)
prim.GetAttribute("xformOpOrder").Set(orderList)
# --------------------------------------------------.
for path in paths:
prim = stage.GetPrimAtPath(path)
if prim.IsValid() == True:
# Print prim name.
print('[ ' + prim.GetName() + ' ]')
# Delete pivot.
_deletePivot(prim)
|
ft-lab/omniverse_sample_scripts/Prim/Transform/GetLocalMatrix.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
xformCache = UsdGeom.XformCache(0)
for path in paths:
prim = stage.GetPrimAtPath(path)
if prim.IsValid() == True:
# Print prim name.
print(f"[ {prim.GetName()} ]")
# Calc local matrix.
matrix = xformCache.GetLocalTransformation(prim)[0]
print(matrix)
# Decompose matrix.
# If the result is False, then reduce the value of eps and call Factor again.
eps = 1e-10
result = matrix.Factor(eps)
if result[0]:
scale = result[2]
rotate = result[3].ExtractRotation()
translation = result[4]
# Convert Rotate to Euler.
# Rotate XYZ.
rotateE = rotate.Decompose(Gf.Vec3d(0, 0, 1), Gf.Vec3d(0, 1, 0), Gf.Vec3d(1, 0, 0))
rotateE = Gf.Vec3d(rotateE[2], rotateE[1], rotateE[0])
print(f"Translation : {translation}")
print(f"rotate : {rotateE}")
print(f"scale : {scale}")
|
ft-lab/omniverse_sample_scripts/Operation/FocusPrim.py | # "omni.kit.viewport_legacy" is no longer available in kit104.
#import omni.kit.viewport_legacy
from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
import omni.kit.commands
# Kit104 : changed from omni.kit.viewport_legacy to omni.kit.viewport.utility.get_active_viewport_window
import omni.kit.viewport.utility
# Get active viewport window.
active_vp_window = omni.kit.viewport.utility.get_active_viewport_window()
viewport_api = active_vp_window.viewport_api
# Get camera path ("/OmniverseKit_Persp" etc).
cameraPath = viewport_api.camera_path.pathString
# Get stage.
stage = omni.usd.get_context().get_stage()
#time_code = omni.timeline.get_timeline_interface().get_current_time() * stage.GetTimeCodesPerSecond()
time_code = Usd.TimeCode()
# Get active camera.
cameraPrim = stage.GetPrimAtPath(cameraPath)
if cameraPrim.IsValid():
camera = UsdGeom.Camera(cameraPrim) # UsdGeom.Camera
cameraV = camera.GetCamera(time_code) # Gf.Camera
# Aspect ratio.
aspect = cameraV.aspectRatio
# Taret prim path.
targetPrimPath = "/World/Sphere"
prim = stage.GetPrimAtPath(targetPrimPath)
if prim.IsValid():
# Set focus.
omni.kit.commands.execute('FramePrimsCommand',
prim_to_move=Sdf.Path(cameraPath),
prims_to_frame=[targetPrimPath],
time_code=time_code,
usd_context_name='',
aspect_ratio=aspect)
|
ft-lab/omniverse_sample_scripts/Operation/readme.md | # Operation
Ominverseの操作/イベント処理を行います。
|ファイル|説明|
|---|---|
|[FocusPrim.py](./FocusPrim.py)|Kit104以上で動作。<br>指定のPrim(ここでは"/World/Sphere")にフォーカスを合わせる<br>(キーボードの[F]をプッシュした時と同じ動作)|
|サンプル|説明|
|---|---|
|[Selection](./Selection)|Stageウィンドウでの選択を取得|
|[GamePad](./GamePad)|GamePadの入力イベント取得|
|[Keyboard](./Keyboard)|Keyboardの入力イベント取得|
|[UNDO](./UNDO)|UNDO処理|
|[CommandsExecute](./CommandsExecute)|omni.kit.commandsを使用したコマンド実行|
|
ft-lab/omniverse_sample_scripts/Operation/GamePad/GamePad_moveSelectPrim.py | from pxr import Usd, UsdGeom, UsdSkel, UsdPhysics, UsdShade, Sdf, Gf, Tf
import carb
import carb.input
import omni.kit.app
import omni.ext
# Reference : kit/exts/omni.kit.debug.input
# Get stage.
stage = omni.usd.get_context().get_stage()
# ------------------------------------------.
# Move the selected Prim.
# ------------------------------------------.
def moveSelectedPrim (mV : Gf.Vec3f):
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
for path in paths:
prim = stage.GetPrimAtPath(path)
Gf.Vec3f(0, 0, 0)
if prim.IsValid() == True:
# Get translate.
transformOrder = prim.GetAttribute('xformOpOrder')
if transformOrder.IsValid():
tV = prim.GetAttribute("xformOp:translate")
if tV.IsValid():
pos = Gf.Vec3f(tV.Get())
# Update translate.
pos += mV
tV.Set(pos)
# ------------------------------------------.
# Gamepad discription.
# ------------------------------------------.
class GamepadDesc:
def _cleanup(self):
self.name = None
self.guid = None
self.gamepad_device = None
self.input_device = None
self.is_connected = False
self.input_val = {}
def __init__(self):
self._cleanup()
def __del__(self):
self._cleanup()
# ------------------------------------------.
# Input with GamePad.
# ------------------------------------------.
class InputGamePad:
_gamepads = None
_input = None
_input_provider = None
_gamepad_connection_subs = None
_gamepad_inputs = None
_app = None
_pre_update_sub = None
def __init__(self):
pass
def _update_gamepad_connection_state(self, gamepad_device, connection_state):
for gamepad_desc in self._gamepads:
if gamepad_desc.gamepad_device == gamepad_device:
gamepad_desc.is_connected = connection_state
# gamepad connection event.
def _gamepad_connection_event(self, event):
# Gamepad created.
if event.type == carb.input.GamepadConnectionEventType.CREATED:
gamepad_desc = GamepadDesc()
gamepad_desc.name = self._input.get_gamepad_name(event.gamepad)
gamepad_desc.guid = self._input.get_gamepad_guid(event.gamepad)
gamepad_desc.gamepad_device = event.gamepad
gamepad_desc.input_device = event.device
self._gamepads.append(gamepad_desc)
print("carb.input.GamepadConnectionEventType.CREATED")
print("name : " + str(gamepad_desc.name))
print("guid : " + str(gamepad_desc.guid))
# Gamepad destroyed.
elif event.type == carb.input.GamepadConnectionEventType.DESTROYED:
for gamepad_desc in self._gamepads:
if gamepad_desc.gamepad_device == event.gamepad:
self._gamepads.remove(gamepad_desc)
print("carb.input.GamepadConnectionEventType.DESTROYED")
# Gamepad connected.
elif event.type == carb.input.GamepadConnectionEventType.CONNECTED:
self._update_gamepad_connection_state(event.gamepad, True)
print(" carb.input.GamepadConnectionEventType.CONNECTED")
# Gamepad disconnected.
elif event.type == carb.input.GamepadConnectionEventType.DISCONNECTED:
self._update_gamepad_connection_state(event.gamepad, False)
print(" carb.input.GamepadConnectionEventType.DISCONNECTED")
# gamepad update event.
def _update_gamepads_data(self, event):
gamepad_descD = None
for gamepad_desc in self._gamepads:
gamepad_descD = gamepad_desc
for gamepad_input in self._gamepad_inputs:
# Store value.
val = self._input.get_gamepad_value(gamepad_descD.gamepad_device, gamepad_input)
gamepad_descD.input_val[gamepad_input] = float(val)
# gamepad_input : DPAD (0.0 or 1.0).
# carb.input.GamepadInput.DPAD_DOWN
# carb.input.GamepadInput.DPAD_UP
# carb.input.GamepadInput.DPAD_LEFT
# carb.input.GamepadInput.DPAD_RIGHT
# gamepad_input : buttons (0.0 or 1.0).
# carb.input.GamepadInput.X
# carb.input.GamepadInput.Y
# carb.input.GamepadInput.A
# carb.input.GamepadInput.B
# carb.input.GamepadInput.MENU1 (Back)
# carb.input.GamepadInput.MENU2 (Start)
# gamepad_input : stick (0.0 - 1.0).
# carb.input.GamepadInput.LEFT_STICK_DOWN
# carb.input.GamepadInput.LEFT_STICK_UP
# carb.input.GamepadInput.LEFT_STICK_LEFT
# carb.input.GamepadInput.LEFT_STICK_RIGHT
# carb.input.GamepadInput.RIGHT_STICK_DOWN
# carb.input.GamepadInput.RIGHT_STICK_UP
# carb.input.GamepadInput.RIGHT_STICK_LEFT
# carb.input.GamepadInput.RIGHT_STICK_RIGHT
# gamepad_input : stick push (0.0 or 1.0).
# carb.input.GamepadInput.LEFT_STICK
# carb.input.GamepadInput.RIGHT_STICK
# gamepad_input : trigger (0.0 - 1.0).
# carb.input.GamepadInput.LEFT_TRIGGER
# carb.input.GamepadInput.RIGHT_TRIGGER
# gamepad_input : shoulder (0.0 or 1.0).
# carb.input.GamepadInput.LEFT_SHOULDER
# carb.input.GamepadInput.RIGHT_SHOULDER
if gamepad_descD == None:
return
# Move the selected Prim.
mV = Gf.Vec3f(0, 0, 0)
scaleV = 2.0
minV = 0.3
if gamepad_desc.input_val[carb.input.GamepadInput.LEFT_STICK_DOWN] > minV:
mV[2] += scaleV * gamepad_desc.input_val[carb.input.GamepadInput.LEFT_STICK_DOWN]
if gamepad_desc.input_val[carb.input.GamepadInput.LEFT_STICK_UP] > minV:
mV[2] -= scaleV * gamepad_desc.input_val[carb.input.GamepadInput.LEFT_STICK_UP]
if gamepad_desc.input_val[carb.input.GamepadInput.LEFT_STICK_LEFT] > minV:
mV[0] -= scaleV * gamepad_desc.input_val[carb.input.GamepadInput.LEFT_STICK_LEFT]
if gamepad_desc.input_val[carb.input.GamepadInput.LEFT_STICK_RIGHT] > minV:
mV[0] += scaleV * gamepad_desc.input_val[carb.input.GamepadInput.LEFT_STICK_RIGHT]
moveSelectedPrim(mV)
def startup (self):
self._gamepads = []
self._input = carb.input.acquire_input_interface()
self._input_provider = carb.input.acquire_input_provider()
self._gamepad_connection_subs = self._input.subscribe_to_gamepad_connection_events(self._gamepad_connection_event)
# Creating a dict of processed GamepadInput enumeration for convenience
def filter_gamepad_input_attribs(attr):
return not callable(getattr(carb.input.GamepadInput, attr)) and not attr.startswith("__") and attr != "name" and attr != "COUNT"
self._gamepad_inputs = dict((getattr(carb.input.GamepadInput, attr), attr) for attr in dir(carb.input.GamepadInput) if filter_gamepad_input_attribs(attr))
self._app = omni.kit.app.get_app()
self._pre_update_sub = self._app.get_pre_update_event_stream().create_subscription_to_pop(
self._update_gamepads_data, name="GamePad test"
)
def shutdown (self):
self._input.unsubscribe_to_gamepad_connection_events(self._gamepad_connection_subs)
self._gamepad_connection_subs = None
self._gamepad_inputs = None
self._gamepads = None
self._app = None
self._pre_update_sub = None
self._input_provider = None
self._input = None
gamePadV = InputGamePad()
gamePadV.startup()
# stop.
#gamePadV.shutdown()
|
ft-lab/omniverse_sample_scripts/Operation/GamePad/readme.md | # GamePad
GamePadでの操作を取得します。
XBOX Controllerの場合は以下のような入力になります。

|入力|値|
|---|---|
|carb.input.GamepadInput.LEFT_SHOULDER|0 or 1|
|carb.input.GamepadInput.RIGHT_SHOULDER|0 or 1|
|carb.input.GamepadInput.LEFT_TRIGGER|0 - 1|
|carb.input.GamepadInput.RIGHT_TRIGGER|0 - 1|
|carb.input.GamepadInput.DPAD_DOWN<br>carb.input.GamepadInput.DPAD_UP<br>carb.input.GamepadInput.DPAD_LEFT<br>carb.input.GamepadInput.DPAD_RIGHT|0 or 1|
|carb.input.GamepadInput.X|0 or 1|
|carb.input.GamepadInput.Y|0 or 1|
|carb.input.GamepadInput.A|0 or 1|
|carb.input.GamepadInput.B|0 or 1|
|carb.input.GamepadInput.MENU1|0 or 1|
|carb.input.GamepadInput.MENU2|0 or 1|
|carb.input.GamepadInput.LEFT_STICK_DOWN<br>carb.input.GamepadInput.LEFT_STICK_UP<br>carb.input.GamepadInput.LEFT_STICK_LEFT<br>carb.input.GamepadInput.LEFT_STICK_RIGHT|0 - 1|
|carb.input.GamepadInput.RIGHT_STICK_DOWN<br>carb.input.GamepadInput.RIGHT_STICK_UP<br>carb.input.GamepadInput.RIGHT_STICK_LEFT<br>carb.input.GamepadInput.RIGHT_STICK_RIGHT|0 - 1|
|carb.input.GamepadInput.LEFT_STICK |0 or 1|
|carb.input.GamepadInput.RIGHT_STICK |0 or 1|
## サンプル
|ファイル|説明|
|---|---|
|[GamePad.py](./GamePad.py)|GamePad情報を取得(特定のボタンのみ)|
|[GamePad_moveSelectPrim.py](./GamePad_moveSelectPrim.py)|GamePadのLeftStick操作で選択形状を移動|
|
ft-lab/omniverse_sample_scripts/Operation/GamePad/GamePad.py | from pxr import Usd, UsdGeom, UsdSkel, UsdPhysics, UsdShade, Sdf, Gf, Tf
import carb
import carb.input
import omni.kit.app
import omni.ext
# Reference : kit/exts/omni.kit.debug.input
# ------------------------------------------.
# Gamepad discription.
# ------------------------------------------.
class GamepadDesc:
def _cleanup(self):
self.name = None
self.guid = None
self.gamepad_device = None
self.input_device = None
self.is_connected = False
self.input_val = {}
def __init__(self):
self._cleanup()
def __del__(self):
self._cleanup()
# ------------------------------------------.
# Input with GamePad.
# ------------------------------------------.
class InputGamePad:
_gamepads = None
_input = None
_input_provider = None
_gamepad_connection_subs = None
_gamepad_inputs = None
_app = None
_pre_update_sub = None
def __init__(self):
pass
def _update_gamepad_connection_state(self, gamepad_device, connection_state):
for gamepad_desc in self._gamepads:
if gamepad_desc.gamepad_device == gamepad_device:
gamepad_desc.is_connected = connection_state
# gamepad connection event.
def _gamepad_connection_event(self, event):
# Gamepad created.
if event.type == carb.input.GamepadConnectionEventType.CREATED:
gamepad_desc = GamepadDesc()
gamepad_desc.name = self._input.get_gamepad_name(event.gamepad)
gamepad_desc.guid = self._input.get_gamepad_guid(event.gamepad)
gamepad_desc.gamepad_device = event.gamepad
gamepad_desc.input_device = event.device
self._gamepads.append(gamepad_desc)
print("carb.input.GamepadConnectionEventType.CREATED")
print("name : " + str(gamepad_desc.name))
print("guid : " + str(gamepad_desc.guid))
# Gamepad destroyed.
elif event.type == carb.input.GamepadConnectionEventType.DESTROYED:
for gamepad_desc in self._gamepads:
if gamepad_desc.gamepad_device == event.gamepad:
self._gamepads.remove(gamepad_desc)
print("carb.input.GamepadConnectionEventType.DESTROYED")
# Gamepad connected.
elif event.type == carb.input.GamepadConnectionEventType.CONNECTED:
self._update_gamepad_connection_state(event.gamepad, True)
print(" carb.input.GamepadConnectionEventType.CONNECTED")
# Gamepad disconnected.
elif event.type == carb.input.GamepadConnectionEventType.DISCONNECTED:
self._update_gamepad_connection_state(event.gamepad, False)
print(" carb.input.GamepadConnectionEventType.DISCONNECTED")
# gamepad update event.
def _update_gamepads_data(self, event):
gamepad_descD = None
for gamepad_desc in self._gamepads:
gamepad_descD = gamepad_desc
for gamepad_input in self._gamepad_inputs:
# Store value.
val = self._input.get_gamepad_value(gamepad_descD.gamepad_device, gamepad_input)
gamepad_descD.input_val[gamepad_input] = float(val)
# gamepad_input : DPAD (0.0 or 1.0).
# carb.input.GamepadInput.DPAD_DOWN
# carb.input.GamepadInput.DPAD_UP
# carb.input.GamepadInput.DPAD_LEFT
# carb.input.GamepadInput.DPAD_RIGHT
# gamepad_input : buttons (0.0 or 1.0).
# carb.input.GamepadInput.X
# carb.input.GamepadInput.Y
# carb.input.GamepadInput.A
# carb.input.GamepadInput.B
# carb.input.GamepadInput.MENU1 (Back)
# carb.input.GamepadInput.MENU2 (Start)
# gamepad_input : stick (0.0 - 1.0).
# carb.input.GamepadInput.LEFT_STICK_DOWN
# carb.input.GamepadInput.LEFT_STICK_UP
# carb.input.GamepadInput.LEFT_STICK_LEFT
# carb.input.GamepadInput.LEFT_STICK_RIGHT
# carb.input.GamepadInput.RIGHT_STICK_DOWN
# carb.input.GamepadInput.RIGHT_STICK_UP
# carb.input.GamepadInput.RIGHT_STICK_LEFT
# carb.input.GamepadInput.RIGHT_STICK_RIGHT
# gamepad_input : stick push (0.0 or 1.0).
# carb.input.GamepadInput.LEFT_STICK
# carb.input.GamepadInput.RIGHT_STICK
# gamepad_input : trigger (0.0 - 1.0).
# carb.input.GamepadInput.LEFT_TRIGGER
# carb.input.GamepadInput.RIGHT_TRIGGER
# gamepad_input : shoulder (0.0 or 1.0).
# carb.input.GamepadInput.LEFT_SHOULDER
# carb.input.GamepadInput.RIGHT_SHOULDER
if gamepad_descD == None:
return
if gamepad_desc.input_val[carb.input.GamepadInput.A] != 0.0:
print("A")
if gamepad_desc.input_val[carb.input.GamepadInput.B] != 0.0:
print("B")
if gamepad_desc.input_val[carb.input.GamepadInput.X] != 0.0:
print("X")
if gamepad_desc.input_val[carb.input.GamepadInput.Y] != 0.0:
print("Y")
if gamepad_desc.input_val[carb.input.GamepadInput.MENU1] != 0.0:
print("Back")
if gamepad_desc.input_val[carb.input.GamepadInput.MENU2] != 0.0:
print("Start")
if gamepad_desc.input_val[carb.input.GamepadInput.LEFT_SHOULDER] != 0.0:
print("Left shoulder")
if gamepad_desc.input_val[carb.input.GamepadInput.RIGHT_SHOULDER] != 0.0:
print("Right shoulder")
if gamepad_desc.input_val[carb.input.GamepadInput.LEFT_STICK] != 0.0:
print("Push Left stick")
if gamepad_desc.input_val[carb.input.GamepadInput.RIGHT_STICK] != 0.0:
print("Push Right stick")
v = gamepad_desc.input_val[carb.input.GamepadInput.LEFT_TRIGGER]
if v != 0.0:
print("Left trigger : " + str(v))
v = gamepad_desc.input_val[carb.input.GamepadInput.RIGHT_TRIGGER]
if v != 0.0:
print("Right trigger : " + str(v))
def startup (self):
self._gamepads = []
self._input = carb.input.acquire_input_interface()
self._input_provider = carb.input.acquire_input_provider()
self._gamepad_connection_subs = self._input.subscribe_to_gamepad_connection_events(self._gamepad_connection_event)
# Creating a dict of processed GamepadInput enumeration for convenience
def filter_gamepad_input_attribs(attr):
return not callable(getattr(carb.input.GamepadInput, attr)) and not attr.startswith("__") and attr != "name" and attr != "COUNT"
self._gamepad_inputs = dict((getattr(carb.input.GamepadInput, attr), attr) for attr in dir(carb.input.GamepadInput) if filter_gamepad_input_attribs(attr))
self._app = omni.kit.app.get_app()
self._pre_update_sub = self._app.get_pre_update_event_stream().create_subscription_to_pop(
self._update_gamepads_data, name="GamePad test"
)
def shutdown (self):
self._input.unsubscribe_to_gamepad_connection_events(self._gamepad_connection_subs)
self._gamepad_connection_subs = None
self._gamepad_inputs = None
self._gamepads = None
self._app = None
self._pre_update_sub = None
self._input_provider = None
self._input = None
gamePadV = InputGamePad()
gamePadV.startup()
# stop.
#gamePadV.shutdown()
|
ft-lab/omniverse_sample_scripts/Operation/CommandsExecute/SelectNone.py | import omni.kit
omni.kit.commands.execute("SelectNone")
|
ft-lab/omniverse_sample_scripts/Operation/CommandsExecute/GetCommandsList.py | import omni.kit
# Get commands list (dict).
listA = omni.kit.commands.get_commands()
keys = listA.keys()
print(str(keys))
|
ft-lab/omniverse_sample_scripts/Operation/CommandsExecute/readme.md | # Execute
omni.kit.commandsを使用して、Omniverseのコマンドを実行します。
## サンプル
|ファイル|説明|
|---|---|
|[GetCommandsList.py](./GetCommandsList.py)|コマンドのリストを一覧。|
|[SelectNone.py](./SelectNone.py)|Stageウィンドウでの選択を解除|
|[CopyPrim.py](./CopyPrim.py)|選択されたPrimの複製を作成|
|[DeletePrims.py](./DeletePrims.py)|選択されたPrimを削除|
|[MovePrim.py](./MovePrim.py)|選択されたPrimのパスを変更。<br>/World/Xform 内に選択されたPrimを移動する。|
|[RenamePrim.py](./RenamePrim.py)|選択されたPrimの名前を変更。<br>"MovePrim"でPrimの名前変更できる。|
|
ft-lab/omniverse_sample_scripts/Operation/CommandsExecute/CopyPrim.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
import omni.kit
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
selectedPaths = selection.get_selected_prim_paths()
newPrimPathList = []
for path in selectedPaths:
# Duplicate Prim from specified path.
omni.kit.commands.execute("CopyPrim", path_from=path)
# Stores the path of the newly duplicated Prim.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
if len(paths) >= 1:
newPrimPathList.append(paths[0])
# Show the path of the newly duplicated Prim.
print(newPrimPathList)
|
ft-lab/omniverse_sample_scripts/Operation/CommandsExecute/DeletePrims.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
import omni.kit
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
selectedPaths = selection.get_selected_prim_paths()
# Delete prims.
omni.kit.commands.execute("DeletePrims", paths=selectedPaths)
|
ft-lab/omniverse_sample_scripts/Operation/CommandsExecute/RenamePrim.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
import omni.kit
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get selection.
selection = omni.usd.get_context().get_selection()
selectedPaths = selection.get_selected_prim_paths()
for path in selectedPaths:
# Get prim.
prim = stage.GetPrimAtPath(path)
if prim.IsValid() == False:
continue
newPathName = path + "_rename"
# Rename Prim name.
omni.kit.commands.execute("MovePrim", path_from=path, path_to=newPathName)
break
|
ft-lab/omniverse_sample_scripts/Operation/CommandsExecute/MovePrim.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
import omni.kit
# Get stage.
stage = omni.usd.get_context().get_stage()
# Get default prim.
defaultPrim = stage.GetDefaultPrim()
# Create empty node(Xform).
defaultPrimPath = defaultPrim.GetPath().pathString
xformPath = defaultPrimPath + '/Xform'
UsdGeom.Xform.Define(stage, xformPath)
# Get selection.
selection = omni.usd.get_context().get_selection()
selectedPaths = selection.get_selected_prim_paths()
for path in selectedPaths:
# Get prim.
prim = stage.GetPrimAtPath(path)
if prim.IsValid() == False:
continue
pathTo = xformPath + "/" + str(prim.GetName())
# Change Prim's path.
# path_from : Path of the original Prim.
# path_to : Path to move to.
omni.kit.commands.execute("MovePrim", path_from=path, path_to=pathTo)
|
ft-lab/omniverse_sample_scripts/Operation/UNDO/CreateSphereUndo.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
import omni.kit.commands
import omni.kit.undo
# Get stage.
stage = omni.usd.get_context().get_stage()
# Process to create a sphere.
class MyCreateSphere (omni.kit.commands.Command):
_path = ""
def __init__ (self, path : str):
self._path = path
def do (self):
sphereGeom = UsdGeom.Sphere.Define(stage, self._path)
# Set radius.
sphereGeom.CreateRadiusAttr(5.0)
# Set color.
sphereGeom.CreateDisplayColorAttr([(1.0, 0.0, 0.0)])
# Set position.
UsdGeom.XformCommonAPI(sphereGeom).SetTranslate((0.0, 5.0, 0.0))
def undo (self):
stage.RemovePrim(self._path)
# Create sphere.
pathName = '/World/sphere'
# Register a Class and run it.
omni.kit.commands.register(MyCreateSphere)
omni.kit.commands.execute("MyCreateSphere", path=pathName)
# UNDO.
omni.kit.undo.undo()
# REDO.
omni.kit.undo.redo()
|
ft-lab/omniverse_sample_scripts/Operation/UNDO/readme.md | # UNDO
UNDO処理。
特にSkeleton情報を変更する場合、UNDOに対応しないと正常に動作しないケースがありました。
Omniverse Kitのドキュメントの"Bundled Extensions/omni.kit.commands"が参考になります。
|ファイル|説明|
|---|---|
|[simpleClassUNDO.py](./simpleClassUNDO.py)|classを使用してUNDO対応。|
|[CreateSphereUndo.py](./CreateSphereUndo.py)|球を生成する処理でUNDO対応して位置|
|
ft-lab/omniverse_sample_scripts/Operation/UNDO/simpleClassUndo.py | # From "Bundled Extensions/omni.kit.commands" in Omniverse Kit documentation.
import omni.kit.commands
import omni.kit.undo
# Class for UNDO processing.
class MyOrange (omni.kit.commands.Command):
def __init__ (self, bar: list):
self._bar = bar
def do (self):
self._bar.append('orange')
def undo (self):
del self._bar[-1]
# Register a Class and run it.
omni.kit.commands.register(MyOrange)
my_list = []
omni.kit.commands.execute("MyOrange", bar=my_list)
print(my_list)
# UNDO.
omni.kit.undo.undo()
print(my_list)
# REDO.
omni.kit.undo.redo()
print(my_list)
|
ft-lab/omniverse_sample_scripts/Operation/Selection/GetSelection.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get selection.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
for path in paths:
print(path)
|
ft-lab/omniverse_sample_scripts/Operation/Selection/readme.md | # Selection
StageウィンドウでのPrimの選択を取得。
|ファイル|説明|
|---|---|
|[GetSelection.py](./GetSelection.py)|Primの選択を取得|
|[IsSelected.py](./IsSelected.py)|指定されたパスのPrimが選択されているかどうか|
|[Select.py](./Select.py)|指定されたパスのPrimを選択|
|[EventSelection.py](./EventSelection.py)|選択変更イベントを取得し、選択されたPrim名を表示|
|[EventSelection_showFacesCount.py](./EventSelection_showFacesCount.py)|選択されたPrim名、子要素も含めたMeshの面数をビューポートに表示<br>
|
ft-lab/omniverse_sample_scripts/Operation/Selection/EventSelection.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get context.
context = omni.usd.get_context()
# Get stage.
stage = context.get_stage()
# ---------------------------------------------.
# Selected event.
# ---------------------------------------------.
def onStageEvent(evt):
if evt.type == int(omni.usd.StageEventType.SELECTION_CHANGED):
# Get selection paths.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
for path in paths:
prim = stage.GetPrimAtPath(path)
if prim.IsValid() == True:
print('Selected [ ' + prim.GetName() + ' ]')
# ------------------------------------------------.
# Register for stage events.
# Specify "subs=None" to end the event.
subs = context.get_stage_event_stream().create_subscription_to_pop(onStageEvent, name="sampleStageEvent")
|
ft-lab/omniverse_sample_scripts/Operation/Selection/IsSelected.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get selection.
selection = omni.usd.get_context().get_selection()
pathStr = '/World'
selectedF = selection.is_prim_path_selected(pathStr)
if selectedF:
print('[' + pathStr + ' ] Selected')
else:
print('[' + pathStr + ' ] Not selected')
|
ft-lab/omniverse_sample_scripts/Operation/Selection/EventSelection_showFacesCount.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
import omni.ui
import omni.kit.app
# Get context.
context = omni.usd.get_context()
# Get stage.
stage = context.get_stage()
# Get main window viewport.
window = omni.ui.Window('Viewport')
# ---------------------------------------------.
# Get the number of faces in the mesh.
# ---------------------------------------------.
def GetFacesCount (prim):
if prim.IsValid() == None:
return 0
typeName = prim.GetTypeName()
allCou = 0
if typeName == 'Mesh':
m = UsdGeom.Mesh(prim)
# If it is displayed.
if m.ComputeVisibility() == 'inherited':
# Get the number of faces of Mesh.
allCou += len(m.GetFaceVertexCountsAttr().Get())
# Recursively traverse the hierarchy.
pChildren = prim.GetChildren()
for cPrim in pChildren:
allCou += GetFacesCount(cPrim)
return allCou
# ---------------------------------------------.
# Update Viewport UI.
# Show the number of faces of the selected shape in the Viewport.
# ---------------------------------------------.
def UpdateViewportUI(paths):
if len(paths) == 0:
with window.frame:
with omni.ui.VStack(height=0):
with omni.ui.Placer(offset_x=20, offset_y=0):
omni.ui.Spacer(width=0, height=8)
return
with window.frame:
with omni.ui.VStack(height=0):
with omni.ui.Placer(offset_x=20, offset_y=50):
f = omni.ui.Label("--- Selection Shapes ---")
f.visible = True
f.set_style({"color": 0xff00ffff, "font_size": 32})
with omni.ui.Placer(offset_x=20, offset_y=0):
omni.ui.Spacer(width=0, height=8)
# Show selection shape name.
for path in paths:
prim = stage.GetPrimAtPath(path)
if prim.IsValid() == True:
facesCou = GetFacesCount(prim)
with omni.ui.Placer(offset_x=28, offset_y=0):
f2 = omni.ui.Label('[ ' + prim.GetName() + ' ] faces ' + str(facesCou))
f2.visible = True
f2.set_style({"color": 0xff00ff00, "font_size": 32})
# ---------------------------------------------.
# Selected event.
# ---------------------------------------------.
def onStageEvent(evt):
if evt.type == int(omni.usd.StageEventType.SELECTION_CHANGED):
# Get selection paths.
selection = omni.usd.get_context().get_selection()
paths = selection.get_selected_prim_paths()
# Show selected shapes info.
UpdateViewportUI(paths)
# ------------------------------------------------.
# Register for stage events.
# Specify "subs=None" to end the event.
subs = context.get_stage_event_stream().create_subscription_to_pop(onStageEvent, name="sampleStageEvent")
|
ft-lab/omniverse_sample_scripts/Operation/Selection/Select.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Get selection.
selection = omni.usd.get_context().get_selection()
# Select one.
selection.set_selected_prim_paths(['/World'], True)
# Multiple selection.
selection.set_selected_prim_paths(['/World', '/World/defaultLight'], True)
# Deselection.
selection.clear_selected_prim_paths()
|
ft-lab/omniverse_sample_scripts/Operation/Keyboard/readme.md | # Keyboard
キーボードの入力を取得します。
## サンプル
|ファイル|説明|
|---|---|
|[InputKeyboard.py](./InputKeyboard.py)|キーボードの入力を取得。|
|[InputKeyboard_ShowViewport.py](./InputKeyboard_ShowViewport.py)|キーボードの入力を取得し、キー入力をViewportの左上に表示。|
|
ft-lab/omniverse_sample_scripts/Operation/Keyboard/InputKeyboard.py | from pxr import Usd, UsdGeom, UsdSkel, UsdShade, Sdf, Gf, Tf
import carb
import carb.input
import omni.kit.app
import omni.ext
# ------------------------------------------.
# Input with Keyboard.
# ------------------------------------------.
class InputKeyboard:
_keyboard = None
_input = None
_keyboard_subs = None
def __init__(self):
pass
# Keyboard event.
def _keyboard_event (self, event : carb.input.KeyboardEvent):
if event.type == carb.input.KeyboardEventType.KEY_PRESS:
print("KEY_PRESS : " + str(event.input))
if event.type == carb.input.KeyboardEventType.KEY_RELEASE:
print("KEY_RELEASE : " + str(event.input))
return True
def startup (self):
# Assign keyboard event.
appwindow = omni.appwindow.get_default_app_window()
self._keyboard = appwindow.get_keyboard()
self._input = carb.input.acquire_input_interface()
self._keyboard_subs = self._input.subscribe_to_keyboard_events(self._keyboard, self._keyboard_event)
def shutdown (self):
# Release keyboard event.
if self._input != None:
self._input.unsubscribe_to_keyboard_events(self._keyboard, self._keyboard_subs)
self._keyboard_subs = None
self._keyboard = None
self._input = None
# -----------------------------------------.
keyboardV = InputKeyboard()
keyboardV.startup()
# stop.
#keyboardV.shutdown()
|
ft-lab/omniverse_sample_scripts/Operation/Keyboard/InputKeyboard_ShowViewport.py | from pxr import Usd, UsdGeom, UsdSkel, UsdShade, Sdf, Gf, Tf
import carb
import carb.input
import carb.events
import omni.kit.app
import omni.ext
# ------------------------------------------.
# Input with Keyboard.
# ------------------------------------------.
class InputKeyboard:
_keyboard = None
_input = None
_keyboard_subs = None
_update_subs = None
_window = None
_keyboard_input_value = None
def __init__(self):
pass
# Keyboard event.
def _keyboard_event (self, event):
if event.type == carb.input.KeyboardEventType.KEY_PRESS:
self._keyboard_input_value = event.input
print("KEY_PRESS : " + str(event.input))
if event.type == carb.input.KeyboardEventType.KEY_RELEASE:
print("KEY_RELEASE : " + str(event.input))
return True
# UI Update event.
def _on_update (self, e: carb.events.IEvent):
with self._window.frame:
with omni.ui.VStack(height=0):
with omni.ui.Placer(offset_x=20, offset_y=50):
# Set label.
f = omni.ui.Label("Input : " + str(self._keyboard_input_value))
f.visible = True
f.set_style({"color": 0xff00ffff, "font_size": 20})
def startup (self):
# Assign keyboard event.
appwindow = omni.appwindow.get_default_app_window()
self._keyboard = appwindow.get_keyboard()
self._input = carb.input.acquire_input_interface()
self._keyboard_subs = self._input.subscribe_to_keyboard_events(self._keyboard, self._keyboard_event)
# Get main window viewport.
self._window = omni.ui.Window('Viewport')
# Assing update event.
self._update_subs = omni.kit.app.get_app().get_update_event_stream().create_subscription_to_pop(self._on_update, name="update")
def shutdown (self):
# Release update event.
if self._update_subs != None:
self._update_subs.unsubscribe()
# Release keyboard event.
if self._input != None:
self._input.unsubscribe_to_keyboard_events(self._keyboard, self._keyboard_subs)
self._keyboard_subs = None
self._keyboard = None
self._input = None
self._update_subs = None
# -----------------------------------------.
keyboardV = InputKeyboard()
keyboardV.startup()
# stop.
#keyboardV.shutdown()
|
ft-lab/omniverse_sample_scripts/Math/CalcMatrix.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Identity matrix.
m = Gf.Matrix4f()
print(m)
# Initialize with rotation and translate.
rotV = Gf.Rotation(Gf.Vec3d(1, 0, 0), 90.0)
transV = Gf.Vec3f(10, 5, 2.3)
m1 = Gf.Matrix4f(rotV, transV)
print(m1)
# Get data.
for i in range(4):
print(f"{m1[i,0]} , {m1[i,1]} , {m1[i,2]} , {m1[i,3]}")
# Set identity.
m1.SetIdentity()
print(m1)
# Matrix multiplication.
rot1 = Gf.Rotation(Gf.Vec3d(1, 0, 0), 90.0)
m2 = Gf.Matrix4f(rot1, Gf.Vec3f())
rot2 = Gf.Rotation(Gf.Vec3d(0, 1, 0), 30.0)
m3 = Gf.Matrix4f(rot2, Gf.Vec3f())
m4 = m2 * m3 # Gf.Matrix4f * Gf.Matrix4f
print(m4)
rot3 = rot1 * rot2 # Gf.Rotation * Gf.Rotation
print(Gf.Matrix4f(rot3, Gf.Vec3f()))
# Inverse matrix.
m4Inv = m4.GetInverse()
print(m4Inv)
# vector3 * matrix4.
rotV = Gf.Rotation(Gf.Vec3d(1, 0, 0), 90.0)
transV = Gf.Vec3f(10, 5, 2.3)
m5 = Gf.Matrix4f(rotV, transV)
v1 = Gf.Vec3f(1.2, 1.0, 2.5)
v2 = m5.Transform(v1)
print(f"{v2}")
# vector3 * matrix4 (Ignore position).
v1 = Gf.Vec3f(1.2, 1.0, 2.5)
v2 = m5.TransformDir(v1)
print(f"{v2}")
|
ft-lab/omniverse_sample_scripts/Math/DecomposeTransform2.py | from pxr import Usd, UsdGeom, UsdSkel, UsdPhysics, UsdShade, Sdf, Gf, Tf
# Dump matrix.
def DumpMatrix(m : Gf.Matrix4d):
print("---------------------")
for i in range(4):
print(f"{mm[i,0]} {mm[i,1]} {mm[i,2]} {mm[i,3]}")
print("")
# Create Matrix4.
translate = Gf.Vec3d(10.5, 2.8, 6.0)
rotation = Gf.Rotation(Gf.Vec3d(0, 1, 0), 20) * Gf.Rotation(Gf.Vec3d(0, 0, 1), 45)
scale = Gf.Vec3d(2.0, 0.5, 1.0)
mm = Gf.Matrix4d().SetScale(scale) * Gf.Matrix4d(rotation, Gf.Vec3d(0)) * Gf.Matrix4d().SetTranslate(translate)
DumpMatrix(mm)
# Decompose matrix.
mm2 = mm.RemoveScaleShear()
rTrans = mm2.ExtractTranslation()
rRot = mm2.ExtractRotation()
mm3 = mm * mm2.GetInverse()
rScale = Gf.Vec3d(mm3[0][0], mm3[1][1], mm3[2][2])
rAxisX = Gf.Vec3d(1, 0, 0)
rAxisY = Gf.Vec3d(0, 1, 0)
rAxisZ = Gf.Vec3d(0, 0, 1)
rRotE = rRot.Decompose(rAxisZ, rAxisY, rAxisX)
rRotE = Gf.Vec3d(rRotE[2], rRotE[1], rRotE[0])
print(f"Trans : {rTrans}")
print(f"Rot : {rRotE}")
print(f"Scale : {rScale}")
|
ft-lab/omniverse_sample_scripts/Math/CalcDotCrossProduct.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
v1 = Gf.Vec3f(1.0, 2.0, -5.0)
v2 = Gf.Vec3f(2.5, 14.0, 12.0)
# Dot : Inner product.
print(f"{v1} x {v2} = {v1 * v2}")
print(f"{v1} x {v2} = {Gf.Dot(v1, v2)}")
# Cross : Outer product.
vx = v1[1] * v2[2] - v1[2] * v2[1]
vy = v1[2] * v2[0] - v1[0] * v2[2]
vz = v1[0] * v2[1] - v1[1] * v2[0]
print(f"Cross product : ( {vx}, {vy}, {vz} )")
v1_2 = Gf.Vec4f(v1[0], v1[1], v1[2],1.0)
v2_2 = Gf.Vec4f(v2[0], v2[1], v2[2],1.0)
v3_2 = Gf.HomogeneousCross(v1_2, v2_2)
print(f"Cross product : {v3_2}")
|
ft-lab/omniverse_sample_scripts/Math/readme.md | # Math
ベクトルや行列計算関連。
USDのベクトル/行列計算は、"Gf"にまとまっているためそれを使用します。
numpyを経由しなくても計算できます。
ベクトルはfloat型のGf.Vec3f ( https://graphics.pixar.com/usd/release/api/class_gf_vec3f.html )、
double型のGf.Vec3d ( https://graphics.pixar.com/usd/release/api/class_gf_vec3d.html )が使用されます。
行列はfloat型のGf.Matrix4f ( https://graphics.pixar.com/usd/release/api/class_gf_matrix4f.html )、
double型のGf.Matrix4d ( https://graphics.pixar.com/usd/release/api/class_gf_matrix4d.html )が使用されます。
|ファイル|説明|
|---|---|
|[CalcDotCrossProduct.py](./CalcDotCrossProduct.py)|ベクトルの内積/外積計算|
|[CalcMatrix.py](./CalcMatrix.py)|4x4行列の計算。行列とベクトルの乗算|
|[CalcVector3.py](./CalcVector3.py)|Vector3の計算.|
|[DecomposeTransform.py](./DecomposeTransform.py)|行列を移動(translate), 回転(rotation), スケール(scale)に変換。UsdSkelを使用。|
|[DecomposeTransform2.py](./DecomposeTransform2.py)|行列を移動(translate), 回転(rotation), スケール(scale)に変換|
|[GetVector3Length.py](./GetVector3Length.py)|Vector3の長さを計算|
|[VectorToRotationAngle.py](./VectorToRotationAngle.py)|指定のベクトルをXYZ軸回転の角度(度数)に変換|
|[NormalizeVector3.py](./NormalizeVector3.py)|Vector3の正規化|
|[QuatToRotation.py](./QuatToRotation.py)|クォータニオンと回転角度(度数)の変換|
|[TransRotationFrom2Vec.py](./TransRotationFrom2Vec.py)|ベクトルAをベクトルBに変換する回転を計算。|
|[ConvRGB2SRGB.py](./ConvRGB2SRGB.py)|色のsRGBとRGBの相互変換。|
|
ft-lab/omniverse_sample_scripts/Math/TransRotationFrom2Vec.py | from pxr import Usd, UsdGeom, UsdShade, Sdf, Gf, Tf
# No need to normalize.
dirA = Gf.Vec3f(1.0, 0.0, 0.0).GetNormalized()
dirB = Gf.Vec3f(-0.2, 12.0, 15.0).GetNormalized()
print(f"dirA : {dirA}")
print(f"dirB : {dirB}")
# Calculate the rotation to transform dirA to dirB.
rot = Gf.Rotation().SetRotateInto(Gf.Vec3d(dirA), Gf.Vec3d(dirB))
# Check that rot is correct.
# v will have the same result as dirB.
m = Gf.Matrix4f(rot, Gf.Vec3f(0, 0, 0))
v = m.Transform(dirA)
print(f"dirA * m = {v}")
|
ft-lab/omniverse_sample_scripts/Math/NormalizeVector3.py | from pxr import Usd, UsdGeom, UsdPhysics, UsdShade, Sdf, Gf, Tf
v1 = Gf.Vec3f(1.0, 2.0, -5.0)
v1N = v1.GetNormalized()
print(f"{v1} ==> {v1N}")
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.